diff --git a/.github/workflows/hsp2-pip-install-test.yml b/.github/workflows/hsp2-pip-install-test.yml index 16f7db1c..92eda6d9 100644 --- a/.github/workflows/hsp2-pip-install-test.yml +++ b/.github/workflows/hsp2-pip-install-test.yml @@ -1,87 +1,94 @@ +--- name: Python application -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master", "develop", "develop-specact" ] +on: # yamllint disable-line rule:truthy + push: + branches: [master] + pull_request: + branches: [master, develop, develop-specact] permissions: - contents: read + contents: read jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: "3.11" - cache: "pip" - - name: Install dependencies - run: | - pip install flake8 - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --ignore=F821 --show-source --statistics --exclude=build/* - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - test-pytest: - runs-on: ubuntu-latest - continue-on-error: true - strategy: - matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] - pandas-version: [""] - include: - - python-version: "3.11" - pandas-version: "pandas>2.0" - coverage: true - - python-version: "3.11" - pandas-version: "pandas>1.5,<2.0" - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - cache: "pip" - - name: Install hsp2 - run: | - # install the hsp2 executable - pip install .[dev] - - if: ${{ matrix.pandas-version }} - run: pip install "${{ matrix.pandas-version }}" - - if: ${{ matrix.coverage }} - run: | - # python coverage - NUMBA_DISABLE_JIT=1 pytest --cov --cov-branch --cov-report term-missing - - if: ${{ ! matrix.coverage }} - run: pytest - - test-cmd: - runs-on: ubuntu-latest - continue-on-error: true - strategy: - matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - cache: "pip" - - name: Install hsp2 - run: | - # install the hsp2 executable - pip install . - - name: Run hsp2 - run: | - # TODO: find much shorter test case. - hsp2 import_uci ./tests/test10/HSP2results/test10.uci _temp_test10.h5 - hsp2 run _temp_test10.h5 - + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.11' + cache: pip + - name: Install dependencies + run: | + pip install flake8 + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or + # undefined names + flake8 . --count --select=E9,F63,F7,F82 --ignore=F821 \ + --show-source --statistics --exclude=build/* + # exit-zero treats all errors as warnings. + # The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 \ + --max-line-length=127 --statistics + + test-pytest: + runs-on: ubuntu-latest + continue-on-error: true + strategy: + matrix: + python-version: ['3.9', '3.10', '3.11', '3.12'] + pandas-version: [''] + include: + - python-version: '3.11' + pandas-version: pandas>2.0 + coverage: true + - python-version: '3.11' + pandas-version: pandas>1.5,<2.0 + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + cache: pip + - name: Install hsp2 + run: | + # install the hsp2 executable + pip install .[dev] + - if: ${{ matrix.pandas-version }} + run: pip install "${{ matrix.pandas-version }}" + - if: ${{ matrix.coverage }} + run: | + # python coverage + NUMBA_DISABLE_JIT=1 pytest --cov --cov-branch --cov-report \ + term-missing + - if: ${{ ! matrix.coverage }} + run: pytest + + test-cmd: + runs-on: ubuntu-latest + continue-on-error: true + strategy: + matrix: + python-version: ['3.9', '3.10', '3.11', '3.12'] + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + cache: pip + - name: Install hsp2 + run: | + # install the hsp2 executable + pip install . + - name: Run hsp2 + run: | + # TODO: find much shorter test case. + hsp2 import_uci \ + ./tests/test10/HSP2results/test10.uci \ + _temp_test10.h5 + hsp2 run _temp_test10.h5 diff --git a/.gitignore b/.gitignore index 8cad0c9b..7a22225a 100644 --- a/.gitignore +++ b/.gitignore @@ -68,7 +68,7 @@ tests/GLWACSO/HSP2results/hspp007.uci tests/test_report_conversion.html # Omit big files -tests/**/*.h5 +tests/**/**/*.h5 tests/testcbp/HSP2results/*.csv # R files diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 00000000..bdc42a59 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,96 @@ +--- +# See https://pre-commit.com for more information +# See https://pre-commit.com/hooks.html for more hooks + +exclude: | + (?x)^( + .*\.hbn| + .*\.wdm| + .*\.hdf5| + .*\.h5 + )$ + +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.6.0 + hooks: + - id: check-case-conflict + - id: check-docstring-first + - id: check-executables-have-shebangs + - id: check-json + - id: check-merge-conflict + - id: check-shebang-scripts-are-executable + - id: check-toml + - id: check-xml + - id: end-of-file-fixer + exclude: notebooks/tstoolbox_plot_bash.sh + - id: fix-encoding-pragma + args: [--remove] + - id: mixed-line-ending + - id: trailing-whitespace + exclude: notebooks/tstoolbox_plot_bash.sh + + - repo: https://github.com/astral-sh/ruff-pre-commit + # Ruff version. + rev: v0.5.5 + hooks: + # Run the linter. + # Uncomment the following lines to enable the linter. + # Right now way to many things fail. + # - id: ruff + # types_or: [python, pyi, jupyter] + # args: [--fix] + + # Run the linter sort imports. + - id: ruff + types_or: [python, pyi, jupyter] + args: [--select, I, --fix] + + # Run the formatter. + - id: ruff-format + types_or: [python, pyi, jupyter] + + - repo: https://github.com/pappasam/toml-sort + rev: v0.23.1 + hooks: + - id: toml-sort-fix + args: [--in-place, --spaces-indent-inline-array, '4'] + + - repo: https://github.com/adrienverge/yamllint.git + rev: v1.35.1 + hooks: + - id: yamllint + args: [--format, parsable, --strict] + + - repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt + rev: 0.2.3 + hooks: + - id: yamlfmt + + - repo: https://github.com/jumanjihouse/pre-commit-hooks + rev: 3.0.0 + hooks: + - id: shellcheck + args: [-s, bash] + + - repo: https://github.com/lovesegfault/beautysh + rev: v6.2.1 + hooks: + - id: beautysh + args: [--indent-size, '4'] + + - repo: https://github.com/asottile/blacken-docs + rev: 1.18.0 + hooks: + - id: blacken-docs + + - repo: https://github.com/asottile/pyupgrade + rev: v3.16.0 + hooks: + - id: pyupgrade + + - repo: https://github.com/commitizen-tools/commitizen + rev: v3.28.0 + hooks: + - id: commitizen + stages: [commit-msg] diff --git a/HSP2_Driver.py b/HSP2_Driver.py index c91b8963..262699e8 100644 --- a/HSP2_Driver.py +++ b/HSP2_Driver.py @@ -1,4 +1,5 @@ -import os, sys +import os +import sys # print('in HSP2_Driver') command_line = "" @@ -6,25 +7,29 @@ if len(sys.argv) >= 2: # see if anything on command line command_line = sys.argv[1] - print('command line' + command_line) + print("command line" + command_line) # if given UCI, import to h5 file # if given WDM, import to h5 file # if given h5, run HSP2 -from PyQt5.QtWidgets import QFileDialog, QApplication +from PyQt5.QtWidgets import QApplication, QFileDialog application = QApplication(sys.argv) -if command_line == '': - file_filter = "Run HDF5 (*.h5) Full Output;;" \ - "Run HDF5 (*.h5) Light Output;;" \ - "Import UCI to HDF5 (*.uci);;" \ - "Import WDM to HDF5 (*.wdm)" - filename, filetype = QFileDialog.getOpenFileName(None, 'HSP2 Open File...', '', file_filter) +if command_line == "": + file_filter = ( + "Run HDF5 (*.h5) Full Output;;" + "Run HDF5 (*.h5) Light Output;;" + "Import UCI to HDF5 (*.uci);;" + "Import WDM to HDF5 (*.wdm)" + ) + filename, filetype = QFileDialog.getOpenFileName( + None, "HSP2 Open File...", "", file_filter + ) else: filename = command_line - filetype = '' + filetype = "" file_ext = filename[-3:] dir_name = os.path.dirname(filename) @@ -33,12 +38,14 @@ if file_ext.upper() == "UCI": h5_name = filename[:-3] + "h5" from hsp2.hsp2tools.readUCI import readUCI + readUCI(filename, h5_name) # readUCI('HSPF.uci', 'test.h5') if file_ext.upper() == "WDM": h5_name = filename[:-3] + "h5" from hsp2.hsp2tools.readWDM import readWDM + readWDM(filename, h5_name) # readWDM('GRICM.wdm', 'test.h5') # readWDM('ZUMBROSCEN.WDM', 'test.h5') @@ -52,11 +59,7 @@ io_manager = IOManager(hdf5_instance) SaveLevel = True - if 'Light' in filetype: + if "Light" in filetype: SaveLevel = False main(io_manager, saveall=SaveLevel, jupyterlab=False) # main('test.h5', saveall=True) - - - - diff --git a/README.rst b/README.rst index 179d43a9..e4003f95 100644 --- a/README.rst +++ b/README.rst @@ -44,7 +44,7 @@ Source Code Directories future automation and model coupling. - NOTE: With v0.10 the I/O abstraction classes provide an alternate approach to running HSP2. Our plan is to migrate solely using the I/O abstracted methods, but we will maintain both approaches - for for several more releases for backward compatibility. + for for several more releases for backward compatibility. - **docs** contains relevant reference documentation. @@ -65,13 +65,13 @@ We recommend getting started by: HSP2 Installation ================= -We **recommend Python 3.10**. +We **recommend Python 3.10**. Install From Pre-built Packages ------------------------------- Python Package Index (PyPI) +++++++++++++++++++++++++++ -Starting with version 0.11.0a1 we provide a PyPI wheel package for HSP2 which +Starting with version 0.11.0a1 we provide `a PyPI wheel package for HSP2`_ which should work on any supported platform for Python 3.10, 3.11, and 3.12. .. code-block:: console @@ -113,13 +113,17 @@ Option 1: Install using "conda" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Follow these steps to install using the conda_ package manager. -1. Install the Anaconda Python Distribution +1. Install Miniconda or Anaconda Python Distribution ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Install the `latest release`_ of the Anaconda Distribution, which includes the -conda package manager, a complete Python (and R) data science stack, and the -Anaconda Navigator GUI. Follow `Anaconda Installation`_ documentation. +We recommend installing the light-weight Miniconda_ that includes Python, the +conda_ environment and package management system, and their dependencies. + +NOTE: Follow conda defaults to install in your local user directory. DO NOT +install for all users, to avoid substantial headaches with permissions. + +If you have already installed the Anaconda Distribution, you can use it to +complete the next steps, but you may need to update to the `latest release`_. -A lighter-weight alternative is to install Miniconda_. 2. Create a Conda Environment for HSP2 Modeling (optional) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -131,7 +135,7 @@ Use the following `conda create`_ command in your terminal or console: .. code-block:: console - conda create -c conda-forge -n hsp2_310 python=3.10 + conda create -c conda-forge -n hsp2_310 python=3.10 Install the necessary and optional packages for HSP2 in the new environment: @@ -147,13 +151,21 @@ Install the necessary and optional packages for HSP2 in the new environment: cd /path/to/module/hsp2 pip install . # or "pip install -e ." to install in editable mode +**Alternately**, you can replace all of the create and install steps above by +creating the new environment from the included `environment.yml` file +from this single line of code: + +.. code-block:: console + + conda env create --file=environment.yml --solver=libmamba + You should now be able to run the Tutorials and create your own Jupyter Notebooks! Option 2: Install From Source Code Using `pip` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Installing HSP2 using `pip`, the `Package Installer for Python`_ -is an alternative method to installing with `conda`. +is an alternative method to installing with `conda`. 1. Install Python ^^^^^^^^^^^^^^^^^ @@ -170,7 +182,7 @@ activate a new environment for running HSP2. python -m venv hsp2_env /path/to/python/virtual/environments/hsp2_env -3. PIP install HSP2 +3. PIP install HSP2 ^^^^^^^^^^^^^^^^^^^ Navigate to your copy of the HSPsquared folder (for these instructions /path/to/module/hsp2) on your computer in the command @@ -221,8 +233,9 @@ The HSP2 API is designed to be used in Python scripts and Jupyter notebooks. .. _`HSPF Conversion Project`: https://github.com/respec/HSPsquared/blob/archivePy2/Why%20HSP2%20(EAA).pdf .. _`Introduction to HSP2 by Jason Love (RESPEC)`: https://www.youtube.com/watch?v=aeLScKsP1Wk .. _`initial release`: https://github.com/respec/HSPsquared/releases/tag/0.7.7 -.. _`GNU Affero General Public License (AGPL), copyrighted 2017 by RESPEC`: https://github.com/respec/HSPsquared/blob/master/LICENSE +.. _`GNU Affero General Public License (AGPL), copyrighted 2017 by RESPEC`: https://github.com/respec/HSPsquared/blob/master/LICENSE .. _JupyterLab: https://jupyterlab.readthedocs.io/en/stable/ +.. _`a PyPI wheel package for HSP2`: https://pypi.org/project/hsp2/ .. _conda: https://docs.conda.io/en/latest/ .. _`latest release`: https://docs.anaconda.com/anaconda/reference/release-notes/ .. _`Anaconda Installation`: https://docs.anaconda.com/anaconda/install/ diff --git a/_version.py b/_version.py deleted file mode 100644 index 2fb6788e..00000000 --- a/_version.py +++ /dev/null @@ -1,4 +0,0 @@ -import os - -with open(os.path.join(os.path.dirname(__file__), "VERSION"), encoding="ascii") as version_file: - __version__ = version_file.read().strip() diff --git a/compare_case.json b/compare_case.json index 5cd4e8c3..cb746076 100644 --- a/compare_case.json +++ b/compare_case.json @@ -17,4 +17,3 @@ } } } - diff --git a/environment.yml b/environment.yml index 807dd2c7..343e179d 100644 --- a/environment.yml +++ b/environment.yml @@ -1,45 +1,49 @@ -name: hsp2_py38 +--- +name: hsp2 channels: - conda-forge + - nodefaults # Speeds solving env, by limiting the number of options dependencies: - # Aligned with Anaconda 2021.05 (May 13, 2021) - # package management - - conda - - conda-build - - pip + - python >=3.10 # Running HSP2 - - python =3.8* - - scipy # Scipy also installs numpy - - pandas ==1.2.* # Pandas installs most scientific Python modules, such as Numpy, etc. - - numba ==0.53.1 - - numpy ==1.20.* # for compatibility with numba version <0.53 - - hdf5 ==1.10.6 # latest compatible with both versions of PyTables & h5py below - doesn't work with setup.py - - pytables ==3.6.1 - - h5py >=3.1 + - scipy # Scipy also installs numpy + # Pandas installs most scientific Python modules, such as Numpy, etc. + - pandas + - numba + - numpy + - hdf5 + - pytables + - h5py - hdf5plugin # HDF5 compression filters for h5py & jupyterlab_hdf - - mando # for Python CLI app in HSP2tools/HSP2_CLI.py; hasn't been updated since 2017 and doesn't support Python 3.9: https://github.com/rubik/mando + - cltoolbox - # Interactivity & Visualization via Jupyter Notebooks (optional, but required for tutorials) - - jupyterlab ==3.0.* # also installs classic Jupyter notbook - - ipympl # jupyter-matplotlib, https://github.com/matplotlib/ipympl - - nodejs # required for many JupyterLab extensions - - nb_conda # Conda environment & package access extension from within Jupyter - # HoloViz, https://holoviz.org + # Operational Model (om) + - pyparsing + + # Interactivity via Jupyter Notebooks (optional, but required for tutorials) + - jupyterlab # also installs classic Jupyter notbook + - nodejs # required for many JupyterLab extensions + + # Visualization (optional) - hvplot # hvPlot installs most HoloViz libs, including matplotlib + - ipympl # jupyter-matplotlib, https://github.com/matplotlib/ipympl - ipywidgets # Required for HoloViz interactivity in Jupyter notebooks + - ipywidgets_bokeh + - jupyter_bokeh # Renders Holviz / Bokeh objects in Jupyter + - pyviz_comms # bidirectional communication between Python & JavaScript for Jupyter # Dev tools (optional) - - python-language-server - - jupyter-lsp-python # Includes both the server extension (jupyter-lsp) and pyls third-party server (python-language-server) - - jupyterlab-lsp # Docs at https://github.com/krassowski/jupyterlab-lsp - + # Language Server Protocol (LSP) extension for Python (pylsp) + - python-lsp-server + - jupyterlab-lsp # Provides both server extension and lab extension + # Environment and package management + - conda + - conda-libmamba-solver + - pip # PIP install requirements only if it is not possible with conda # https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#using-pip-in-an-environment - pip: - # Optional, but recommended for tutorials - # - lckr-jupyterlab-variableinspector # https://github.com/lckr/jupyterlab-variableInspector - # - jupyterlab_hdf # Explore HDF5 files in JupyterLab. Requires an additional step to install. - # Installation instructions: https://github.com/jupyterlab/jupyterlab-hdf5#installation + - hsp2 diff --git a/environment_dev.yml b/environment_dev.yml index 2bf310a7..78bfc5a9 100644 --- a/environment_dev.yml +++ b/environment_dev.yml @@ -1,40 +1,45 @@ +--- name: hsp2_py311_dev channels: - conda-forge - - nodefaults # Speeds solving env, by limiting the number of options + - nodefaults # Speeds solving env, by limiting the number of options dependencies: - # Python 3.11 is supported by Anaconda since 2023.03-0 (Mar 20, 2023) - # https://docs.anaconda.com/free/anaconda/release-notes/#anaconda-2023-03-0-mar-20-2023 - # package management - - conda - - conda-build - - conda-libmamba-solver - - pip + # Python 3.11 was default for Anaconda 2023.07-0 (Jul 11, 2023) + # https://docs.anaconda.com/anaconda/release-notes/#anaconda-2023-07-0-jul-11-2023 + - python =3.11 # Running HSP2 - - python =3.11 - - scipy # Scipy also installs numpy - - pandas >=2.0 # Pandas installs most scientific Python modules, such as Numpy, etc. - - numba - - numpy + - scipy # Scipy also installs numpy + # Pandas installs most scientific Python modules, such as Numpy, etc. + - pandas >=2.0 + - numba + - numpy - hdf5 - - pytables - - h5py + - pytables + - h5py - hdf5plugin # HDF5 compression filters for h5py & jupyterlab_hdf # - dask # for future performance enhancements - - mando # for Python CLI app in HSP2tools/HSP2_CLI.py; hasn't been updated since 2017 and doesn't support Python 3.9: https://github.com/rubik/mando + - cltoolbox - # Interactivity & Visualization via Jupyter Notebooks (optional, but required for tutorials) - - jupyterlab # also installs classic Jupyter notbook - - ipympl # jupyter-matplotlib, https://github.com/matplotlib/ipympl - - nodejs # required for many JupyterLab extensions - # HoloViz, https://holoviz.org + # Operational Model (om) + - pyparsing + + # Interactivity via Jupyter Notebooks (optional, but required for tutorials) + - jupyterlab # also installs classic Jupyter notbook + - nodejs # required for many JupyterLab extensions + + # Visualization (optional) - hvplot # hvPlot installs most HoloViz libs, including matplotlib + - ipympl # jupyter-matplotlib, https://github.com/matplotlib/ipympl - ipywidgets # Required for HoloViz interactivity in Jupyter notebooks + - ipywidgets_bokeh + - jupyter_bokeh # Renders Holviz / Bokeh objects in Jupyter + - pyviz_comms # bidirectional communication between Python & JavaScript for Jupyter # Dev tools (optional) - - python-lsp-server # Language Server Protocol (LSP) extension for Python (pylsp) + # Language Server Protocol (LSP) extension for Python (pylsp) + - python-lsp-server # Rope for Completions and renaming # Pyflakes linter to detect various errors # McCabe linter for complexity checking @@ -46,7 +51,12 @@ dependencies: # pylint for code linting (disabled by default) - jupyterlab-lsp # Provides both server extension and lab extension - + # Environment and package management + - conda + - conda-build + - conda-libmamba-solver + - pip # PIP install requirements only if it is not possible with conda # https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#using-pip-in-an-environment - - pip: \ No newline at end of file + - pip: + # For developing HPS2, we recommend using the `conda build` command to "install" diff --git a/examples/1_Intro_to_HSP2.ipynb b/examples/1_Intro_to_HSP2.ipynb index 0e15e45b..61d5964e 100644 --- a/examples/1_Intro_to_HSP2.ipynb +++ b/examples/1_Intro_to_HSP2.ipynb @@ -34,56 +34,184 @@ "source": [ "# Installation and Setup\n", "\n", - "## Install HSP2\n", - "\n", - "Carefully follow our **[Installation Instructions](https://github.com/respec/HSPsquared#installation)**, especially including:\n", - "- Creating a virtual environment for HSP2 (step 3)\n", - "- Adding HSPsquared to your Python path (step 4)" + "This notebook is designed to be run from: \n", + "- a cloned or copied version of the [HSPsquared](https://github.com/respec/HSPsquared) respository and \n", + "- a custom virtual environment as described in our **[HSP2 Installation](https://github.com/respec/HSPsquared#hsp2-installation) Instructions**, especially including:\n", + " - Creating a virtual environment for HSP2 (step 3)\n", + " - Adding HSP2 to your Python path (step 4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Python Imports" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### General Imports" ] }, { "cell_type": "code", "execution_count": 1, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T17:40:19.613424Z", + "iopub.status.busy": "2024-05-21T17:40:19.613169Z", + "iopub.status.idle": "2024-05-21T17:40:19.737150Z", + "shell.execute_reply": "2024-05-21T17:40:19.736693Z", + "shell.execute_reply.started": "2024-05-21T17:40:19.613404Z" + } + }, + "outputs": [], + "source": [ + "import os\n", + "from pathlib import Path\n", + "\n", + "import tables" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import HSP2" + ] + }, + { + "cell_type": "code", + "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "'hsp2_py38'" + "'hsp2'" ] }, - "execution_count": 1, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Confirm that your active environment for this notebook is the one you created for HSP2.\n", - "import os\n", - "\n", "os.environ[\"CONDA_DEFAULT_ENV\"]" ] }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Install HSP2, HSP2 Tools, and HSP2 IO Utillties\n", + "from hsp2 import hsp2, hsp2tools, hsp2io" + ] + }, { "cell_type": "markdown", "metadata": {}, "source": [ - "## Import Python Dependencies\n", - "- Most dependancies get installed when you import the `HSP2` and `HSP2tools` modules. " + "### If you get `ModuleNotFoundError`\n", + "\n", + "If you get `ModuleNotFoundError`, you need to install hsp2 into your environment, either using \n", + "- `pip` (see [HSP2 Installation](https://github.com/respec/HSPsquared#hsp2-installation) Instructions) for normal use, or using\n", + "- [`conda develop`](https://docs.conda.io/projects/conda-build/en/latest/resources/commands/conda-develop.html) if you want to develop HSP2.\n", + "\n", + "If using the development environment, the following steps will install in develop mode:\n", + "1. Run the [`conda develop`](https://docs.conda.io/projects/conda-build/en/latest/resources/commands/conda-develop.html) command in your terminal with your local absolute path to the `src` directory of this repo.\n", + "2. Restart the kernel.\n", + "3. Rerun the import statements above." ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "PosixPath('/Users/aaufdenkampe/Documents/Python/respec.HSPsquared')" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Find project directory (i.e. the parent to `/examples` directory for this notebook)\n", + "project_path = Path.cwd().parent\n", + "project_path" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "PosixPath('/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/src')" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your source directory should be: \n", + "src_path = project_path / 'src' \n", + "src_path" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### To install in developer mode:\n", + "- Copy from the output of `src_path` from the cell above, and \n", + "- Paste it after `!conda develop` in the cell below (replacing the previous user's path). \n", + " - NOTE 1: If your path has any blank spaces, you must enclose the path with quotes.\n", + " - NOTE 2: The Jupyter `!` magic command runs a the follwoing terminal command from this notebook." + ] + }, + { + "cell_type": "code", + "execution_count": 6, "metadata": { "execution": { - "iopub.execute_input": "2024-05-21T17:40:19.613424Z", - "iopub.status.busy": "2024-05-21T17:40:19.613169Z", - "iopub.status.idle": "2024-05-21T17:40:19.737150Z", - "shell.execute_reply": "2024-05-21T17:40:19.736693Z", - "shell.execute_reply.started": "2024-05-21T17:40:19.613404Z" + "iopub.execute_input": "2024-05-21T17:40:25.655357Z", + "iopub.status.busy": "2024-05-21T17:40:25.654849Z", + "iopub.status.idle": "2024-05-21T17:40:25.768746Z", + "shell.execute_reply": "2024-05-21T17:40:25.768142Z", + "shell.execute_reply.started": "2024-05-21T17:40:25.655339Z" } }, + "outputs": [], + "source": [ + " # !conda develop '/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/src'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You now need to **restart the Python kernel** for this notebook, if the path didn't already exist." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, "outputs": [ { "data": { @@ -116,47 +244,47 @@ " \n", " \n", " Python\n", - " 3.10.14 | packaged by conda-forge | (main, Mar...\n", + " 3.12.8 | packaged by conda-forge | (main, Dec ...\n", " \n", " \n", - " HSP2\n", + " hsp2\n", " n/a\n", " \n", " \n", " numpy\n", - " 1.26.4\n", + " 2.0.2\n", " \n", " \n", " numba\n", - " 0.59.1\n", + " 0.60.0\n", " \n", " \n", " pandas\n", - " 1.5.3\n", + " 2.2.3\n", " \n", " \n", " matplotlib\n", - " 3.8.4\n", + " 3.10.0\n", " \n", " \n", " tables\n", - " 3.9.2\n", + " 3.10.1\n", " \n", " \n", " h5py\n", - " 3.11.0\n", + " 3.12.1\n", " \n", " \n", " os\n", - " Linux-5.15.0-91-generic-x86_64-with-glibc2.35\n", + " macOS-14.7.1-arm64-arm-64bit\n", " \n", " \n", " processor\n", - " x86_64\n", + " arm\n", " \n", " \n", " Date/Time\n", - " 2024-05-21T13:40:19.728733\n", + " 2024-12-17T10:48:52.834595\n", " \n", " \n", "\n", @@ -165,77 +293,89 @@ "text/plain": [ " version\n", "name \n", - "Python 3.10.14 | packaged by conda-forge | (main, Mar...\n", - "HSP2 n/a\n", - "numpy 1.26.4\n", - "numba 0.59.1\n", - "pandas 1.5.3\n", - "matplotlib 3.8.4\n", - "tables 3.9.2\n", - "h5py 3.11.0\n", - "os Linux-5.15.0-91-generic-x86_64-with-glibc2.35\n", - "processor x86_64\n", - "Date/Time 2024-05-21T13:40:19.728733" + "Python 3.12.8 | packaged by conda-forge | (main, Dec ...\n", + "hsp2 n/a\n", + "numpy 2.0.2\n", + "numba 0.60.0\n", + "pandas 2.2.3\n", + "matplotlib 3.10.0\n", + "tables 3.10.1\n", + "h5py 3.12.1\n", + "os macOS-14.7.1-arm64-arm-64bit\n", + "processor arm\n", + "Date/Time 2024-12-17T10:48:52.834595" ] }, - "execution_count": 2, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "import os\n", - "from pathlib import Path\n", - "\n", - "import tables\n", - "\n", - "from hsp2 import hsp2, hsp2tools\n", - "from hsp2.hsp2io import hdf, io\n", - "\n", "# Confirm installed versions of HSP2 and key dependencies\n", - "hsp2.versions([\"matplotlib\", \"tables\", \"h5py\"])" + "hsp2.versions([\"matplotlib\", \"tables\", \"h5py\"])\n", + "# TODO: need to fix hsp2 version links" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "### If you get HSP2 `ModuleNotFoundError`:\n", - "\n", - "If you get this error:\n", - "```python\n", - "ModuleNotFoundError: No module named 'HSP2'\n", - "```\n", - "Then:\n", - "1. Run the following terminal command with your local absolute path to this repo.\n", - " - NOTE: Here we use Jupyter `!` magic command to run from the terminal via this notebook. \n", - "2. Restart the kernel.\n", - "3. Rerun the import statements above." + "Alternate ways to get the HSP2 version:" ] }, { "cell_type": "code", - "execution_count": 3, - "metadata": { - "execution": { - "iopub.execute_input": "2024-05-21T17:40:25.655357Z", - "iopub.status.busy": "2024-05-21T17:40:25.654849Z", - "iopub.status.idle": "2024-05-21T17:40:25.768746Z", - "shell.execute_reply": "2024-05-21T17:40:25.768142Z", - "shell.execute_reply.started": "2024-05-21T17:40:25.655339Z" + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Built in approach, that will work with next release\n", + "# hsp2.__version__" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'0.11.0a1'" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" } - }, + ], + "source": [ + "# From PyPI Package\n", + "# NOTE: this won't work when in `conda develop` mode.\n", + "from importlib.metadata import version\n", + "version('hsp2')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "/bin/bash: line 1: conda-develop: command not found\n" + "# packages in environment at /Users/aaufdenkampe/miniconda3/envs/hsp2:\n", + "#\n", + "# Name Version Build Channel\n", + "hsp2 0.11.0a1 pypi_0 pypi\n" ] } ], "source": [ - "!conda-develop /Users/aaufdenkampe/Documents/Python/respec.HSPsquared/" + "# From conda magic command\n", + "!conda list hsp2" ] }, { @@ -249,50 +389,31 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 11, "metadata": { "execution": { - "iopub.execute_input": "2024-05-21T17:40:35.309422Z", - "iopub.status.busy": "2024-05-21T17:40:35.309181Z", - "iopub.status.idle": "2024-05-21T17:40:35.312823Z", - "shell.execute_reply": "2024-05-21T17:40:35.312344Z", - "shell.execute_reply.started": "2024-05-21T17:40:35.309405Z" + "iopub.execute_input": "2024-05-21T17:40:36.407261Z", + "iopub.status.busy": "2024-05-21T17:40:36.406989Z", + "iopub.status.idle": "2024-05-21T17:40:36.409351Z", + "shell.execute_reply": "2024-05-21T17:40:36.408997Z", + "shell.execute_reply.started": "2024-05-21T17:40:36.407244Z" } }, "outputs": [ { "data": { "text/plain": [ - "PosixPath('/home/tim/programming/HSPsquared/examples')" + "PosixPath('/Users/aaufdenkampe/Documents/Python/respec.HSPsquared')" ] }, - "execution_count": 4, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# Get your current working directory, for reference\n", - "Path.cwd()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "execution": { - "iopub.execute_input": "2024-05-21T17:40:36.407261Z", - "iopub.status.busy": "2024-05-21T17:40:36.406989Z", - "iopub.status.idle": "2024-05-21T17:40:36.409351Z", - "shell.execute_reply": "2024-05-21T17:40:36.408997Z", - "shell.execute_reply.started": "2024-05-21T17:40:36.407244Z" - } - }, - "outputs": [], - "source": [ - "# Set your project directory to your local folder for your clone of the HSPsquared repository\n", - "\n", - "project_folder = Path(\"/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/\")" + "# Project directory, found above, is local folder for your clone or copy of the HSPsquared repository\n", + "project_path" ] }, { @@ -308,7 +429,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 12, "metadata": { "execution": { "iopub.execute_input": "2024-05-21T18:52:11.477985Z", @@ -323,17 +444,18 @@ "name": "stdout", "output_type": "stream", "text": [ - "../tests/test10/HSP2results/test10.uci\n", + "/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/tests/test10/HSP2results/test10.uci\n", "File exists? True\n", - "../tests/test10/HSP2results/test10.wdm\n", + "/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/tests/test10/HSP2results/test10.wdm\n", "File exists? True\n" ] } ], "source": [ - "# Set input data paths, using our Test10 example\n", + "# Get input data paths for the Test10 example\n", + "# Using `pathlib` concatenation\n", + "inputs_path = project_path / 'tests' / 'test10' / 'HSP2results' \n", "\n", - "input_data_folder = Path(\"../tests/test10/HSP2results/\")\n", "\n", "input_files = [\n", " \"test10.uci\",\n", @@ -341,16 +463,16 @@ "]\n", "\n", "# HSPF User Control Inputs text file\n", - "input_uci_path = input_data_folder / input_files[0]\n", + "input_uci_filepath = inputs_path / input_files[0]\n", "\n", - "print(input_uci_path)\n", - "print(f\"File exists? {input_uci_path.exists()}\")\n", + "print(input_uci_filepath)\n", + "print(f\"File exists? {input_uci_filepath.exists()}\")\n", "\n", "# HSPF Watershed Data Management Fortran binary file for timeseries inputs\n", - "input_wdm_path = input_data_folder / input_files[1]\n", + "input_wdm_filepath = inputs_path / input_files[1]\n", "\n", - "print(input_wdm_path)\n", - "print(f\"File exists? {input_wdm_path.exists()}\")" + "print(input_wdm_filepath)\n", + "print(f\"File exists? {input_wdm_filepath.exists()}\")" ] }, { @@ -362,7 +484,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 13, "metadata": { "execution": { "iopub.execute_input": "2024-05-21T17:40:42.208083Z", @@ -374,61 +496,26 @@ }, "outputs": [ { - "ename": "PermissionError", - "evalue": "[Errno 13] Permission denied: '/Users'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1175\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1174\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1175\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_accessor\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1176\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: '/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData'", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1175\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1174\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1175\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_accessor\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1176\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: '/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples'", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1175\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1174\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1175\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_accessor\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1176\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: '/Users/aaufdenkampe/Documents/Python/respec.HSPsquared'", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1175\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1174\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1175\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_accessor\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1176\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: '/Users/aaufdenkampe/Documents/Python'", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1175\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1174\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1175\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_accessor\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1176\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: '/Users/aaufdenkampe/Documents'", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1175\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1174\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1175\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_accessor\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1176\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: '/Users/aaufdenkampe'", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mPermissionError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[7], line 7\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[38;5;66;03m# Create temporary directory, which we ignore in Git\u001b[39;00m\n\u001b[1;32m 6\u001b[0m tutoral_temp_path \u001b[38;5;241m=\u001b[39m project_folder \u001b[38;5;241m/\u001b[39m output_data_folder\n\u001b[0;32m----> 7\u001b[0m \u001b[43mtutoral_temp_path\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[43mparents\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mexist_ok\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mFolder exists? \u001b[39m\u001b[38;5;124m'\u001b[39m \u001b[38;5;241m+\u001b[39m \u001b[38;5;28mstr\u001b[39m(tutoral_temp_path\u001b[38;5;241m.\u001b[39mexists()) )\n", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1179\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1177\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m parents \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mparent \u001b[38;5;241m==\u001b[39m \u001b[38;5;28mself\u001b[39m:\n\u001b[1;32m 1178\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m\n\u001b[0;32m-> 1179\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mparent\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[43mparents\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mexist_ok\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m\n\u001b[1;32m 1180\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmkdir(mode, parents\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, exist_ok\u001b[38;5;241m=\u001b[39mexist_ok)\n\u001b[1;32m 1181\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m:\n\u001b[1;32m 1182\u001b[0m \u001b[38;5;66;03m# Cannot rely on checking for EEXIST, since the operating system\u001b[39;00m\n\u001b[1;32m 1183\u001b[0m \u001b[38;5;66;03m# could give priority to other errors like EACCES or EROFS\u001b[39;00m\n", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1179\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1177\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m parents \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mparent \u001b[38;5;241m==\u001b[39m \u001b[38;5;28mself\u001b[39m:\n\u001b[1;32m 1178\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m\n\u001b[0;32m-> 1179\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mparent\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[43mparents\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mexist_ok\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m\n\u001b[1;32m 1180\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmkdir(mode, parents\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, exist_ok\u001b[38;5;241m=\u001b[39mexist_ok)\n\u001b[1;32m 1181\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m:\n\u001b[1;32m 1182\u001b[0m \u001b[38;5;66;03m# Cannot rely on checking for EEXIST, since the operating system\u001b[39;00m\n\u001b[1;32m 1183\u001b[0m \u001b[38;5;66;03m# could give priority to other errors like EACCES or EROFS\u001b[39;00m\n", - " \u001b[0;31m[... skipping similar frames: Path.mkdir at line 1179 (3 times)]\u001b[0m\n", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1179\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1177\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m parents \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mparent \u001b[38;5;241m==\u001b[39m \u001b[38;5;28mself\u001b[39m:\n\u001b[1;32m 1178\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m\n\u001b[0;32m-> 1179\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mparent\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[43mparents\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mexist_ok\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mTrue\u001b[39;49;00m\u001b[43m)\u001b[49m\n\u001b[1;32m 1180\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mmkdir(mode, parents\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, exist_ok\u001b[38;5;241m=\u001b[39mexist_ok)\n\u001b[1;32m 1181\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m:\n\u001b[1;32m 1182\u001b[0m \u001b[38;5;66;03m# Cannot rely on checking for EEXIST, since the operating system\u001b[39;00m\n\u001b[1;32m 1183\u001b[0m \u001b[38;5;66;03m# could give priority to other errors like EACCES or EROFS\u001b[39;00m\n", - "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/pathlib.py:1175\u001b[0m, in \u001b[0;36mPath.mkdir\u001b[0;34m(self, mode, parents, exist_ok)\u001b[0m\n\u001b[1;32m 1171\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 1172\u001b[0m \u001b[38;5;124;03mCreate a new directory at this given path.\u001b[39;00m\n\u001b[1;32m 1173\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 1174\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 1175\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_accessor\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmkdir\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1176\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m:\n\u001b[1;32m 1177\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m parents \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mparent \u001b[38;5;241m==\u001b[39m \u001b[38;5;28mself\u001b[39m:\n", - "\u001b[0;31mPermissionError\u001b[0m: [Errno 13] Permission denied: '/Users'" + "name": "stdout", + "output_type": "stream", + "text": [ + "Folder exists? True\n" ] } ], "source": [ "# Create temporary data output folder, where you want to store your outputs\n", - "\n", - "output_data_folder = Path(\"examples/_TutorialData\")\n", + "tutoral_temp_path = project_path / 'examples' / '_TutorialData'\n", "\n", "# Create temporary directory, which we ignore in Git\n", - "tutoral_temp_path = project_folder / output_data_folder\n", "tutoral_temp_path.mkdir(parents=True, exist_ok=True)\n", "\n", - "print(\"Folder exists? \" + str(tutoral_temp_path.exists()))" + "print('Folder exists? ', tutoral_temp_path.exists())" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 14, "metadata": { "execution": { "iopub.execute_input": "2024-05-21T17:40:43.187481Z", @@ -444,18 +531,15 @@ "output_type": "stream", "text": [ "/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData/test10.h5\n", - "File exists? False\n" + "File exists? True\n" ] } ], "source": [ "# Create path for temporary data output file\n", - "\n", "output_file = \"test10.h5\" # HSP2 data HDF5 binary file, for all inputs and outputs\n", "\n", - "output_hdf5_path = (\n", - " project_folder / output_data_folder / output_file\n", - ") # pathlib concatenation\n", + "output_hdf5_path = tutoral_temp_path / output_file\n", "\n", "print(output_hdf5_path)\n", "print(\"File exists? \" + str(output_hdf5_path.exists()))\n", @@ -490,15 +574,159 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 15, "metadata": {}, "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n", + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2tools/readUCI.py:102: FutureWarning: errors='ignore' is deprecated and will raise in a future version. Use to_numeric without passing `errors` and catch exceptions explicitly instead\n", + " df = df.apply(pd.to_numeric, errors='ignore') # todo: 'ignore' is deprecated.\n" + ] + }, { "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 18.2 s, sys: 621 ms, total: 18.8 s\n", - "Wall time: 18.9 s\n" + "CPU times: user 5.91 s, sys: 340 ms, total: 6.25 s\n", + "Wall time: 6.31 s\n" ] } ], @@ -508,13 +736,13 @@ "# from the HSPF *.uci text file in Fortran punchard format\n", "# to the HDF5 file\n", "\n", - "HSP2tools.readUCI(input_uci_path, output_hdf5_path)\n", - "# NOTE that parsing this text file is not very efficient!" + "hsp2tools.readUCI(input_uci_filepath, output_hdf5_path)\n", + "# NOTE that parsing this text file is not very efficient, takign 8-20 seconds" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 16, "metadata": {}, "outputs": [ { @@ -532,7 +760,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 17, "metadata": {}, "outputs": [ { @@ -558,8 +786,8 @@ "135 reading from wdm\n", "136 reading from wdm\n", "140 reading from wdm\n", - "CPU times: user 2.88 s, sys: 70.1 ms, total: 2.95 s\n", - "Wall time: 3.05 s\n" + "CPU times: user 1.26 s, sys: 201 ms, total: 1.46 s\n", + "Wall time: 17.5 s\n" ] }, { @@ -598,7 +826,7 @@ " TS039\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 1H\n", + " 1h\n", " 8784\n", " PREC\n", " -999.0\n", @@ -631,7 +859,7 @@ " TS046\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 2H\n", + " 2h\n", " 4392\n", " SOLR\n", " -999.0\n", @@ -664,7 +892,7 @@ " TS121\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 2H\n", + " 2h\n", " 4392\n", " ATMP\n", " -999.0\n", @@ -675,7 +903,7 @@ " TS122\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 2H\n", + " 2h\n", " 4392\n", " ATMP\n", " -999.0\n", @@ -686,7 +914,7 @@ " TS123\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 2H\n", + " 2h\n", " 4392\n", " ATMP\n", " -999.0\n", @@ -741,7 +969,7 @@ " TS131\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 1H\n", + " 1h\n", " 8784\n", " PREC\n", " -999.0\n", @@ -752,7 +980,7 @@ " TS132\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 1H\n", + " 1h\n", " 8784\n", " PREC\n", " -999.0\n", @@ -809,21 +1037,21 @@ ], "text/plain": [ " Start Stop Freq Length TSTYPE TFILL \\\n", - "TS039 1976-01-01 00:00:00 1977-01-01 00:00:00 1H 8784 PREC -999.0 \n", + "TS039 1976-01-01 00:00:00 1977-01-01 00:00:00 1h 8784 PREC -999.0 \n", "TS041 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 EVAP -999.0 \n", "TS042 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 WIND -999.0 \n", - "TS046 1976-01-01 00:00:00 1977-01-01 00:00:00 2H 4392 SOLR -999.0 \n", + "TS046 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 SOLR -999.0 \n", "TS113 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 FLOW -999.0 \n", "TS119 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 FLOW -999.0 \n", - "TS121 1976-01-01 00:00:00 1977-01-01 00:00:00 2H 4392 ATMP -999.0 \n", - "TS122 1976-01-01 00:00:00 1977-01-01 00:00:00 2H 4392 ATMP -999.0 \n", - "TS123 1976-01-01 00:00:00 1977-01-01 00:00:00 2H 4392 ATMP -999.0 \n", + "TS121 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 ATMP -999.0 \n", + "TS122 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 ATMP -999.0 \n", + "TS123 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 ATMP -999.0 \n", "TS124 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 DEWP -999.0 \n", "TS125 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 DEWP -999.0 \n", "TS126 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 DEWP -999.0 \n", "TS127 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 SEDM -999.0 \n", - "TS131 1976-01-01 00:00:00 1977-01-01 00:00:00 1H 8784 PREC -999.0 \n", - "TS132 1976-01-01 00:00:00 1977-01-01 00:00:00 1H 8784 PREC -999.0 \n", + "TS131 1976-01-01 00:00:00 1977-01-01 00:00:00 1h 8784 PREC -999.0 \n", + "TS132 1976-01-01 00:00:00 1977-01-01 00:00:00 1h 8784 PREC -999.0 \n", "TS134 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 WTMP -999.0 \n", "TS135 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 CLDC -999.0 \n", "TS136 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 FLOW -999.0 \n", @@ -851,7 +1079,7 @@ "TS140 COLIND COLUMN INDICATOR MEIER POND SUMMER-WINTER OUTLET " ] }, - "execution_count": 11, + "execution_count": 17, "metadata": {}, "output_type": "execute_result" } @@ -862,7 +1090,11 @@ "# from the HSPF Watershd Data Management (WDM) file in Fortran binary format\n", "# to the HDF5 file\n", "\n", - "HSP2tools.readWDM(input_wdm_path, output_hdf5_path)" + "hsp2tools.readWDM(input_wdm_filepath, output_hdf5_path)\n", + "\n", + "# NOTE: The `readWDM()` function has been sped up with Numba, which compiles it the\n", + "# first time you runs. The second time will use the precompiled code, executing \n", + "# 80 times faster! Try it!" ] }, { @@ -887,16 +1119,16 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 12, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } @@ -904,14 +1136,13 @@ "source": [ "## Create instance of HSPFIO.HDF5 class, from the file created by reading HSPF inputs\n", "\n", - "hdf5_instance = HSP2IO.hdf.HDF5(output_hdf5_path)\n", - "\n", + "hdf5_instance = hsp2io.hdf.HDF5(output_hdf5_path)\n", "hdf5_instance" ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 19, "metadata": {}, "outputs": [ { @@ -920,7 +1151,7 @@ "['/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData/test10.h5']" ] }, - "execution_count": 13, + "execution_count": 19, "metadata": {}, "output_type": "execute_result" } @@ -935,16 +1166,16 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 20, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 14, + "execution_count": 20, "metadata": {}, "output_type": "execute_result" } @@ -952,14 +1183,14 @@ "source": [ "## Create an instance of the IOManager: Management class for IO operations needed to execute the HSP2 model\n", "\n", - "io_manager = HSP2IO.io.IOManager(hdf5_instance)\n", + "io_manager = hsp2io.io.IOManager(hdf5_instance)\n", "\n", "io_manager" ] }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 21, "metadata": {}, "outputs": [ { @@ -967,33 +1198,33 @@ "output_type": "stream", "text": [ "\u001b[0;31mType:\u001b[0m IOManager\n", - "\u001b[0;31mString form:\u001b[0m \n", - "\u001b[0;31mFile:\u001b[0m ~/Documents/Python/respec.HSPsquared/HSP2IO/io.py\n", + "\u001b[0;31mString form:\u001b[0m \n", + "\u001b[0;31mFile:\u001b[0m ~/miniconda3/envs/hsp2/lib/python3.12/site-packages/hsp2/hsp2io/io.py\n", "\u001b[0;31mDocstring:\u001b[0m Management class for IO operations needed to execute the HSP2 model\n", "\u001b[0;31mInit docstring:\u001b[0m\n", - "io_combined: SupportsReadUCI & SupportsReadTS & SupportsWriteTS & SupportsWriteLogging / None \n", - " Intended to allow users with a object that combines protocols for \n", - " UCI, Input, Output and Log a shortcut where only a \n", - " single argument needs to be provided. If UCI, Input, Output and/or \n", - " Log are not specified this argument will be used as the default. \n", + "io_combined: SupportsReadUCI & SupportsReadTS & SupportsWriteTS & SupportsWriteLogging / None\n", + " Intended to allow users with a object that combines protocols for\n", + " UCI, Input, Output and Log a shortcut where only a\n", + " single argument needs to be provided. If UCI, Input, Output and/or\n", + " Log are not specified this argument will be used as the default.\n", "uci: SupportsReadUCI/None (Default None)\n", - " A class instance implementing the SupportReadUCI protocol. \n", - " This class acts as the data source for UCI information. \n", + " A class instance implementing the SupportReadUCI protocol.\n", + " This class acts as the data source for UCI information.\n", " The argument io_combined be used in place by default if this argument is not specified.\n", "input: SupportsReadUCI/None (Default None)\n", - " A class instance implementing SupportReadTS protocol. \n", - " This class acts as the data source for any input timeseries. \n", + " A class instance implementing SupportReadTS protocol.\n", + " This class acts as the data source for any input timeseries.\n", " The argument io_combined be used in place by default if this argument is not specified.\n", "output: SupportsWriteTS & SupportsReadTS / None (Default None)\n", " A class implementing SupportsWriteTS & SupportReadTS protocol\n", - " This class acts as the location for outputing result timeseries as \n", - " well as the data source should those result timeseries be needed for \n", - " inputs into a model modules. \n", + " This class acts as the location for outputing result timeseries as\n", + " well as the data source should those result timeseries be needed for\n", + " inputs into a model modules.\n", " The argument io_combined be used in place by default if this argument is not specified.\n", "log: SupportsWriteLogging/None (Default None)\n", " A class implementing SupportWriteLogging protocol. This class\n", " This class acts as the location to output logging information.\n", - " The argument io_combined be used in place by default if this argument is not specified.\n" + " The argument io_combined be used in place by default if this argument is not specified." ] } ], @@ -1020,100 +1251,99 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "2022-06-23 10:03:45.64 Processing started for file ./; saveall=False\n", - "2022-06-23 10:03:51.39 Simulation Start: 1976-01-01 00:00:00, Stop: 1977-01-01 00:00:00\n", - "2022-06-23 10:03:51.39 PERLND P001 DELT(minutes): 60\n", - "2022-06-23 10:03:53.14 SNOW\n", - "2022-06-23 10:03:54.27 PWATER\n", - "2022-06-23 10:03:54.84 PSTEMP\n", - "2022-06-23 10:03:54.85 PWTGAS\n", - "2022-06-23 10:03:54.88 RCHRES R001 DELT(minutes): 60\n", - "2022-06-23 10:03:54.91 HYDR\n", - "2022-06-23 10:03:55.17 ADCALC\n", - "2022-06-23 10:03:55.20 CONS\n", - "2022-06-23 10:03:55.53 HTRCH\n", - "2022-06-23 10:03:55.56 SEDTRN\n", - "2022-06-23 10:03:55.62 RQUAL\n", - "2022-06-23 10:03:56.53 GQUAL\n", - "2022-06-23 10:03:57.72 GENER G001 DELT(minutes): 60\n", - "GENER 'G001' encountered unsupported feature during initialization and may not function correctly. Unsupported feature: 'Invalid SVOL. GENER module does not currently support reading TimeSeries for 'RCHRES''\n", - "2022-06-23 10:03:57.72 RCHRES R002 DELT(minutes): 60\n", - "2022-06-23 10:03:57.75 HYDR\n", - "2022-06-23 10:03:57.82 ADCALC\n", - "2022-06-23 10:03:57.83 CONS\n", - "2022-06-23 10:03:57.84 HTRCH\n", - "2022-06-23 10:03:57.84 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", - "2022-06-23 10:03:57.85 SEDTRN\n", - "2022-06-23 10:03:57.86 Error count 3598: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", - "2022-06-23 10:03:57.88 RQUAL\n", - "2022-06-23 10:03:58.24 GQUAL\n", - "2022-06-23 10:03:58.98 RCHRES R003 DELT(minutes): 60\n", - "2022-06-23 10:03:59.01 HYDR\n", - "2022-06-23 10:03:59.04 ADCALC\n", - "2022-06-23 10:03:59.05 CONS\n", - "2022-06-23 10:03:59.06 HTRCH\n", - "2022-06-23 10:03:59.06 Error count 3: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", - "2022-06-23 10:03:59.07 SEDTRN\n", - "2022-06-23 10:03:59.08 Error count 513: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", - "2022-06-23 10:03:59.10 RQUAL\n", - "2022-06-23 10:03:59.43 GQUAL\n", - "2022-06-23 10:04:00.02 RCHRES R004 DELT(minutes): 60\n", - "2022-06-23 10:04:00.09 HYDR\n", - "2022-06-23 10:04:00.16 ADCALC\n", - "2022-06-23 10:04:00.17 CONS\n", - "2022-06-23 10:04:00.18 HTRCH\n", - "2022-06-23 10:04:00.18 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", - "2022-06-23 10:04:00.19 SEDTRN\n", - "2022-06-23 10:04:00.21 Error count 6720: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", - "2022-06-23 10:04:00.22 RQUAL\n", - "2022-06-23 10:04:00.59 GQUAL\n", - "2022-06-23 10:04:01.38 IMPLND I001 DELT(minutes): 60\n", - "2022-06-23 10:04:01.39 SNOW\n", - "2022-06-23 10:04:01.50 IWATER\n", - "2022-06-23 10:04:01.56 SOLIDS\n", - "2022-06-23 10:04:01.57 IWTGAS\n", - "2022-06-23 10:04:01.59 IQUAL\n", - "2022-06-23 10:04:01.61 RCHRES R005 DELT(minutes): 60\n", - "2022-06-23 10:04:01.64 HYDR\n", - "2022-06-23 10:04:01.68 ADCALC\n", - "2022-06-23 10:04:01.69 CONS\n", - "2022-06-23 10:04:01.70 HTRCH\n", - "2022-06-23 10:04:01.70 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", - "2022-06-23 10:04:01.71 SEDTRN\n", - "2022-06-23 10:04:01.73 RQUAL\n", - "2022-06-23 10:04:02.10 GQUAL\n", - "2022-06-23 10:04:02.94 GENER G002 DELT(minutes): 60\n", - "GENER 'G002' encountered unsupported feature during initialization and may not function correctly. Unsupported feature: 'Invalid SVOL. GENER module does not currently support reading TimeSeries for 'RCHRES''\n", - "2022-06-23 10:04:02.94 Done; Run time is about 00:17.2 (mm:ss)\n", + "2024-12-17 10:49:30.22 Processing started for file /Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData/test10.h5; saveall=False\n", + "2024-12-17 10:49:33.79 Simulation Start: 1976-01-01 00:00:00, Stop: 1977-01-01 00:00:00\n", + "2024-12-17 10:49:33.79 PERLND P001 DELT(minutes): 60\n", + "2024-12-17 10:49:34.03 SNOW\n", + "2024-12-17 10:49:35.97 PWATER\n", + "2024-12-17 10:49:37.89 PSTEMP\n", + "2024-12-17 10:49:38.21 PWTGAS\n", + "2024-12-17 10:49:39.04 RCHRES R001 DELT(minutes): 60\n", + "2024-12-17 10:49:39.05 HYDR\n", + "2024-12-17 10:49:42.82 ADCALC\n", + "2024-12-17 10:49:43.26 CONS\n", + "2024-12-17 10:49:43.76 HTRCH\n", + "2024-12-17 10:49:44.82 SEDTRN\n", + "2024-12-17 10:49:49.95 RQUAL\n", + "2024-12-17 10:50:11.12 GQUAL\n", + "2024-12-17 10:50:12.40 GENER G001 DELT(minutes): 60\n", + "2024-12-17 10:50:12.40 RCHRES R002 DELT(minutes): 60\n", + "2024-12-17 10:50:12.41 HYDR\n", + "2024-12-17 10:50:14.50 ADCALC\n", + "2024-12-17 10:50:14.51 CONS\n", + "2024-12-17 10:50:14.51 HTRCH\n", + "2024-12-17 10:50:14.51 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:14.51 SEDTRN\n", + "2024-12-17 10:50:14.52 Error count 3598: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-12-17 10:50:14.52 RQUAL\n", + "2024-12-17 10:50:14.66 GQUAL\n", + "2024-12-17 10:50:14.96 RCHRES R003 DELT(minutes): 60\n", + "2024-12-17 10:50:14.96 HYDR\n", + "2024-12-17 10:50:14.98 ADCALC\n", + "2024-12-17 10:50:14.98 CONS\n", + "2024-12-17 10:50:14.99 HTRCH\n", + "2024-12-17 10:50:14.99 Error count 3: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:14.99 SEDTRN\n", + "2024-12-17 10:50:15.00 Error count 513: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-12-17 10:50:15.00 RQUAL\n", + "2024-12-17 10:50:15.13 GQUAL\n", + "2024-12-17 10:50:15.36 RCHRES R004 DELT(minutes): 60\n", + "2024-12-17 10:50:15.38 HYDR\n", + "2024-12-17 10:50:15.40 ADCALC\n", + "2024-12-17 10:50:15.40 CONS\n", + "2024-12-17 10:50:15.40 HTRCH\n", + "2024-12-17 10:50:15.40 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:15.41 SEDTRN\n", + "2024-12-17 10:50:15.42 Error count 6720: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-12-17 10:50:15.42 RQUAL\n", + "2024-12-17 10:50:15.55 GQUAL\n", + "2024-12-17 10:50:15.88 IMPLND I001 DELT(minutes): 60\n", + "2024-12-17 10:50:15.89 SNOW\n", + "2024-12-17 10:50:15.93 IWATER\n", + "2024-12-17 10:50:16.61 SOLIDS\n", + "2024-12-17 10:50:16.83 IWTGAS\n", + "2024-12-17 10:50:17.12 IQUAL\n", + "2024-12-17 10:50:17.58 RCHRES R005 DELT(minutes): 60\n", + "2024-12-17 10:50:17.59 HYDR\n", + "2024-12-17 10:50:17.61 ADCALC\n", + "2024-12-17 10:50:17.61 CONS\n", + "2024-12-17 10:50:17.61 HTRCH\n", + "2024-12-17 10:50:17.61 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:17.62 SEDTRN\n", + "2024-12-17 10:50:17.63 RQUAL\n", + "2024-12-17 10:50:17.77 GQUAL\n", + "2024-12-17 10:50:18.09 GENER G002 DELT(minutes): 60\n", + "2024-12-17 10:50:18.10 Done; Run time is about 00:47.8 (mm:ss)\n", "\n", "\n", " version\n", - "Python 3.8.12 | packaged by conda-forge | (default, O...\n", - "HSP2 0.10.1\n", - "numpy 1.20.3\n", - "numba 0.53.1\n", - "pandas 1.2.5\n", - "jupyterlab 3.2.8\n", - "notebook 6.4.7\n", - "os macOS-10.16-x86_64-i386-64bit\n", - "processor i386\n", - "Date/Time 2022-06-23 10:04:03\n", - "CPU times: user 16.8 s, sys: 610 ms, total: 17.4 s\n", - "Wall time: 17.4 s\n" + "name \n", + "Python 3.12.8 | packaged by conda-forge | (main, Dec ...\n", + "hsp2 n/a\n", + "numpy 2.0.2\n", + "numba 0.60.0\n", + "pandas 2.2.3\n", + "jupyterlab 4.3.3\n", + "notebook n/a\n", + "os macOS-14.7.1-arm64-arm-64bit\n", + "processor arm\n", + "Date/Time 2024-12-17T10:50:22.776259\n", + "CPU times: user 46.4 s, sys: 1.27 s, total: 47.6 s\n", + "Wall time: 52.6 s\n" ] } ], "source": [ "%%time\n", - "# This model should take 2-4 minutes to run the first time\n", - "HSP2.main(io_manager, saveall=False)" + "# This model should take 1-4 minutes to run the first time\n", + "hsp2.main(io_manager, saveall=False)" ] }, { @@ -1133,7 +1363,104 @@ "\n", "Note the total run time before and after you rerun the model. You'll notice the model runs much faster the second time.\n", "- During the first model run, numba compiles specified code blocks, then saves the complied code.\n", - "- During all subsequent model runs, numba-compiled code is used directly, avoiding the time to compile, saving 1-2 minutes of runtime." + "- During all subsequent model runs, numba-compiled code is used directly, avoiding the time to compile, executing **~11x faster**!" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-12-17 10:50:22.79 Processing started for file /Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData/test10.h5; saveall=False\n", + "2024-12-17 10:50:24.99 Simulation Start: 1976-01-01 00:00:00, Stop: 1977-01-01 00:00:00\n", + "2024-12-17 10:50:24.99 PERLND P001 DELT(minutes): 60\n", + "2024-12-17 10:50:24.99 SNOW\n", + "2024-12-17 10:50:25.04 PWATER\n", + "2024-12-17 10:50:25.08 PSTEMP\n", + "2024-12-17 10:50:25.08 PWTGAS\n", + "2024-12-17 10:50:25.09 RCHRES R001 DELT(minutes): 60\n", + "2024-12-17 10:50:25.09 HYDR\n", + "2024-12-17 10:50:25.12 ADCALC\n", + "2024-12-17 10:50:25.12 CONS\n", + "2024-12-17 10:50:25.13 HTRCH\n", + "2024-12-17 10:50:25.13 SEDTRN\n", + "2024-12-17 10:50:25.14 RQUAL\n", + "2024-12-17 10:50:25.47 GQUAL\n", + "2024-12-17 10:50:25.94 GENER G001 DELT(minutes): 60\n", + "2024-12-17 10:50:25.94 RCHRES R002 DELT(minutes): 60\n", + "2024-12-17 10:50:25.95 HYDR\n", + "2024-12-17 10:50:25.97 ADCALC\n", + "2024-12-17 10:50:25.97 CONS\n", + "2024-12-17 10:50:25.97 HTRCH\n", + "2024-12-17 10:50:25.98 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:25.98 SEDTRN\n", + "2024-12-17 10:50:25.98 Error count 3598: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-12-17 10:50:25.99 RQUAL\n", + "2024-12-17 10:50:26.13 GQUAL\n", + "2024-12-17 10:50:26.42 RCHRES R003 DELT(minutes): 60\n", + "2024-12-17 10:50:26.43 HYDR\n", + "2024-12-17 10:50:26.45 ADCALC\n", + "2024-12-17 10:50:26.45 CONS\n", + "2024-12-17 10:50:26.46 HTRCH\n", + "2024-12-17 10:50:26.46 Error count 3: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:26.46 SEDTRN\n", + "2024-12-17 10:50:26.47 Error count 513: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-12-17 10:50:26.47 RQUAL\n", + "2024-12-17 10:50:26.61 GQUAL\n", + "2024-12-17 10:50:26.84 RCHRES R004 DELT(minutes): 60\n", + "2024-12-17 10:50:26.85 HYDR\n", + "2024-12-17 10:50:26.87 ADCALC\n", + "2024-12-17 10:50:26.87 CONS\n", + "2024-12-17 10:50:26.88 HTRCH\n", + "2024-12-17 10:50:26.88 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:26.88 SEDTRN\n", + "2024-12-17 10:50:26.89 Error count 6720: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-12-17 10:50:26.89 RQUAL\n", + "2024-12-17 10:50:27.05 GQUAL\n", + "2024-12-17 10:50:27.38 IMPLND I001 DELT(minutes): 60\n", + "2024-12-17 10:50:27.38 SNOW\n", + "2024-12-17 10:50:27.43 IWATER\n", + "2024-12-17 10:50:27.45 SOLIDS\n", + "2024-12-17 10:50:27.45 IWTGAS\n", + "2024-12-17 10:50:27.45 IQUAL\n", + "2024-12-17 10:50:27.46 RCHRES R005 DELT(minutes): 60\n", + "2024-12-17 10:50:27.46 HYDR\n", + "2024-12-17 10:50:27.49 ADCALC\n", + "2024-12-17 10:50:27.49 CONS\n", + "2024-12-17 10:50:27.49 HTRCH\n", + "2024-12-17 10:50:27.49 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:27.49 SEDTRN\n", + "2024-12-17 10:50:27.50 RQUAL\n", + "2024-12-17 10:50:27.67 GQUAL\n", + "2024-12-17 10:50:28.00 GENER G002 DELT(minutes): 60\n", + "2024-12-17 10:50:28.00 Done; Run time is about 00:05.2 (mm:ss)\n", + "\n", + "\n", + " version\n", + "name \n", + "Python 3.12.8 | packaged by conda-forge | (main, Dec ...\n", + "hsp2 n/a\n", + "numpy 2.0.2\n", + "numba 0.60.0\n", + "pandas 2.2.3\n", + "jupyterlab 4.3.3\n", + "notebook n/a\n", + "os macOS-14.7.1-arm64-arm-64bit\n", + "processor arm\n", + "Date/Time 2024-12-17T10:50:28.014884\n", + "CPU times: user 4.95 s, sys: 219 ms, total: 5.17 s\n", + "Wall time: 5.23 s\n" + ] + } + ], + "source": [ + "%%time\n", + "# This model should now take <1 minute to run, now that it has already compiled\n", + "hsp2.main(io_manager, saveall=False)" ] }, { @@ -1148,7 +1475,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 24, "metadata": {}, "outputs": [ { @@ -1157,7 +1484,7 @@ "['/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData/test10.h5']" ] }, - "execution_count": 17, + "execution_count": 24, "metadata": {}, "output_type": "execute_result" } @@ -1169,7 +1496,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ @@ -1179,7 +1506,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -1188,7 +1515,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 27, "metadata": {}, "outputs": [ { @@ -1197,7 +1524,7 @@ "['/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData/test10.h5']" ] }, - "execution_count": 20, + "execution_count": 27, "metadata": {}, "output_type": "execute_result" } @@ -1209,14 +1536,15 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 28, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ - "Closing remaining open files:/Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData/test10.h5...done\n" + "/Users/aaufdenkampe/miniconda3/envs/hsp2/lib/python3.12/site-packages/tables/file.py:114: UnclosedFileWarning: Closing remaining open file: /Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData/test10.h5\n", + " warnings.warn(UnclosedFileWarning(msg))\n" ] } ], @@ -1227,7 +1555,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 29, "metadata": {}, "outputs": [ { @@ -1236,7 +1564,7 @@ "[]" ] }, - "execution_count": 22, + "execution_count": 29, "metadata": {}, "output_type": "execute_result" } @@ -1260,93 +1588,92 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 30, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "2022-06-23 10:04:03.69 Processing started for file ./; saveall=True\n", - "2022-06-23 10:04:10.12 Simulation Start: 1976-01-01 00:00:00, Stop: 1977-01-01 00:00:00\n", - "2022-06-23 10:04:10.12 PERLND P001 DELT(minutes): 60\n", - "2022-06-23 10:04:10.21 SNOW\n", - "2022-06-23 10:04:10.43 PWATER\n", - "2022-06-23 10:04:10.77 PSTEMP\n", - "2022-06-23 10:04:10.81 PWTGAS\n", - "2022-06-23 10:04:11.00 RCHRES R001 DELT(minutes): 60\n", - "2022-06-23 10:04:11.03 HYDR\n", - "2022-06-23 10:04:11.17 ADCALC\n", - "2022-06-23 10:04:11.18 CONS\n", - "2022-06-23 10:04:11.27 HTRCH\n", - "2022-06-23 10:04:11.40 SEDTRN\n", - "2022-06-23 10:04:11.74 RQUAL\n", - "2022-06-23 10:04:14.21 GQUAL\n", - "2022-06-23 10:04:16.23 GENER G001 DELT(minutes): 60\n", - "GENER 'G001' encountered unsupported feature during initialization and may not function correctly. Unsupported feature: 'Invalid SVOL. GENER module does not currently support reading TimeSeries for 'RCHRES''\n", - "2022-06-23 10:04:16.23 RCHRES R002 DELT(minutes): 60\n", - "2022-06-23 10:04:16.25 HYDR\n", - "2022-06-23 10:04:16.36 ADCALC\n", - "2022-06-23 10:04:16.37 CONS\n", - "2022-06-23 10:04:16.43 HTRCH\n", - "2022-06-23 10:04:16.44 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", - "2022-06-23 10:04:16.55 SEDTRN\n", - "2022-06-23 10:04:16.56 Error count 3598: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", - "2022-06-23 10:04:16.79 RQUAL\n", - "2022-06-23 10:04:18.75 GQUAL\n", - "2022-06-23 10:04:20.10 RCHRES R003 DELT(minutes): 60\n", - "2022-06-23 10:04:20.13 HYDR\n", - "2022-06-23 10:04:20.23 ADCALC\n", - "2022-06-23 10:04:20.24 CONS\n", - "2022-06-23 10:04:20.32 HTRCH\n", - "2022-06-23 10:04:20.32 Error count 3: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", - "2022-06-23 10:04:20.44 SEDTRN\n", - "2022-06-23 10:04:20.45 Error count 513: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", - "2022-06-23 10:04:20.73 RQUAL\n", - "2022-06-23 10:04:22.47 GQUAL\n", - "2022-06-23 10:04:23.67 RCHRES R004 DELT(minutes): 60\n", - "2022-06-23 10:04:23.74 HYDR\n", - "2022-06-23 10:04:23.85 ADCALC\n", - "2022-06-23 10:04:23.86 CONS\n", - "2022-06-23 10:04:23.92 HTRCH\n", - "2022-06-23 10:04:23.93 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", - "2022-06-23 10:04:24.04 SEDTRN\n", - "2022-06-23 10:04:24.06 Error count 6720: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", - "2022-06-23 10:04:24.31 RQUAL\n", - "2022-06-23 10:04:26.15 GQUAL\n", - "2022-06-23 10:04:27.62 IMPLND I001 DELT(minutes): 60\n", - "2022-06-23 10:04:27.63 SNOW\n", - "2022-06-23 10:04:27.84 IWATER\n", - "2022-06-23 10:04:27.94 SOLIDS\n", - "2022-06-23 10:04:27.97 IWTGAS\n", - "2022-06-23 10:04:28.03 IQUAL\n", - "2022-06-23 10:04:28.14 RCHRES R005 DELT(minutes): 60\n", - "2022-06-23 10:04:28.17 HYDR\n", - "2022-06-23 10:04:28.28 ADCALC\n", - "2022-06-23 10:04:28.28 CONS\n", - "2022-06-23 10:04:28.35 HTRCH\n", - "2022-06-23 10:04:28.36 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", - "2022-06-23 10:04:28.47 SEDTRN\n", - "2022-06-23 10:04:28.73 RQUAL\n", - "2022-06-23 10:04:30.57 GQUAL\n", - "2022-06-23 10:04:31.98 GENER G002 DELT(minutes): 60\n", - "GENER 'G002' encountered unsupported feature during initialization and may not function correctly. Unsupported feature: 'Invalid SVOL. GENER module does not currently support reading TimeSeries for 'RCHRES''\n", - "2022-06-23 10:04:31.98 Done; Run time is about 00:28.2 (mm:ss)\n", + "2024-12-17 10:50:28.06 Processing started for file /Users/aaufdenkampe/Documents/Python/respec.HSPsquared/examples/_TutorialData/test10.h5; saveall=True\n", + "2024-12-17 10:50:30.10 Simulation Start: 1976-01-01 00:00:00, Stop: 1977-01-01 00:00:00\n", + "2024-12-17 10:50:30.10 PERLND P001 DELT(minutes): 60\n", + "2024-12-17 10:50:30.13 SNOW\n", + "2024-12-17 10:50:30.19 PWATER\n", + "2024-12-17 10:50:30.29 PSTEMP\n", + "2024-12-17 10:50:30.31 PWTGAS\n", + "2024-12-17 10:50:30.37 RCHRES R001 DELT(minutes): 60\n", + "2024-12-17 10:50:30.38 HYDR\n", + "2024-12-17 10:50:30.44 ADCALC\n", + "2024-12-17 10:50:30.45 CONS\n", + "2024-12-17 10:50:30.47 HTRCH\n", + "2024-12-17 10:50:30.52 SEDTRN\n", + "2024-12-17 10:50:30.62 RQUAL\n", + "2024-12-17 10:50:31.39 GQUAL\n", + "2024-12-17 10:50:32.04 GENER G001 DELT(minutes): 60\n", + "2024-12-17 10:50:32.04 RCHRES R002 DELT(minutes): 60\n", + "2024-12-17 10:50:32.05 HYDR\n", + "2024-12-17 10:50:32.10 ADCALC\n", + "2024-12-17 10:50:32.10 CONS\n", + "2024-12-17 10:50:32.12 HTRCH\n", + "2024-12-17 10:50:32.13 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:32.16 SEDTRN\n", + "2024-12-17 10:50:32.17 Error count 3598: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-12-17 10:50:32.24 RQUAL\n", + "2024-12-17 10:50:32.78 GQUAL\n", + "2024-12-17 10:50:33.24 RCHRES R003 DELT(minutes): 60\n", + "2024-12-17 10:50:33.25 HYDR\n", + "2024-12-17 10:50:33.30 ADCALC\n", + "2024-12-17 10:50:33.30 CONS\n", + "2024-12-17 10:50:33.32 HTRCH\n", + "2024-12-17 10:50:33.32 Error count 3: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:33.35 SEDTRN\n", + "2024-12-17 10:50:33.36 Error count 513: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-12-17 10:50:33.43 RQUAL\n", + "2024-12-17 10:50:33.93 GQUAL\n", + "2024-12-17 10:50:34.31 RCHRES R004 DELT(minutes): 60\n", + "2024-12-17 10:50:34.34 HYDR\n", + "2024-12-17 10:50:34.39 ADCALC\n", + "2024-12-17 10:50:34.39 CONS\n", + "2024-12-17 10:50:34.41 HTRCH\n", + "2024-12-17 10:50:34.42 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:34.45 SEDTRN\n", + "2024-12-17 10:50:34.46 Error count 6720: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-12-17 10:50:34.54 RQUAL\n", + "2024-12-17 10:50:35.10 GQUAL\n", + "2024-12-17 10:50:35.58 IMPLND I001 DELT(minutes): 60\n", + "2024-12-17 10:50:35.58 SNOW\n", + "2024-12-17 10:50:35.64 IWATER\n", + "2024-12-17 10:50:35.67 SOLIDS\n", + "2024-12-17 10:50:35.68 IWTGAS\n", + "2024-12-17 10:50:35.70 IQUAL\n", + "2024-12-17 10:50:35.73 RCHRES R005 DELT(minutes): 60\n", + "2024-12-17 10:50:35.74 HYDR\n", + "2024-12-17 10:50:35.79 ADCALC\n", + "2024-12-17 10:50:35.79 CONS\n", + "2024-12-17 10:50:35.81 HTRCH\n", + "2024-12-17 10:50:35.81 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-12-17 10:50:35.85 SEDTRN\n", + "2024-12-17 10:50:35.93 RQUAL\n", + "2024-12-17 10:50:36.51 GQUAL\n", + "2024-12-17 10:50:37.01 GENER G002 DELT(minutes): 60\n", + "2024-12-17 10:50:37.01 Done; Run time is about 00:08.9 (mm:ss)\n", "\n", "\n", " version\n", - "Python 3.8.12 | packaged by conda-forge | (default, O...\n", - "HSP2 0.10.1\n", - "numpy 1.20.3\n", - "numba 0.53.1\n", - "pandas 1.2.5\n", - "jupyterlab 3.2.8\n", - "notebook 6.4.7\n", - "os macOS-10.16-x86_64-i386-64bit\n", - "processor i386\n", - "Date/Time 2022-06-23 10:04:32\n", - "CPU times: user 26.5 s, sys: 1.7 s, total: 28.2 s\n", - "Wall time: 28.4 s\n" + "name \n", + "Python 3.12.8 | packaged by conda-forge | (main, Dec ...\n", + "hsp2 n/a\n", + "numpy 2.0.2\n", + "numba 0.60.0\n", + "pandas 2.2.3\n", + "jupyterlab 4.3.3\n", + "notebook n/a\n", + "os macOS-14.7.1-arm64-arm-64bit\n", + "processor arm\n", + "Date/Time 2024-12-17T10:50:37.025483\n", + "CPU times: user 8.56 s, sys: 408 ms, total: 8.97 s\n", + "Wall time: 8.99 s\n" ] } ], @@ -1355,14 +1682,14 @@ "# Setup IO Manager and run the model, as recommended,\n", "# all within a Python `with` statement as a context manager\n", "\n", - "with HSP2IO.hdf.HDF5(output_hdf5_path) as hdf5_instance:\n", - " io_manager = HSP2IO.io.IOManager(hdf5_instance)\n", - " HSP2.main(io_manager, saveall=True)" + "with hsp2io.hdf.HDF5(output_hdf5_path) as hdf5_instance:\n", + " io_manager = hsp2io.io.IOManager(hdf5_instance)\n", + " hsp2.main(io_manager, saveall=True)" ] }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 31, "metadata": {}, "outputs": [ { @@ -1371,7 +1698,7 @@ "[]" ] }, - "execution_count": 24, + "execution_count": 31, "metadata": {}, "output_type": "execute_result" } @@ -1394,11 +1721,8 @@ } ], "metadata": { - "interpreter": { - "hash": "776e005896af2bdd35b514f04d0649047a67df21e3539ef9c16d2c229e31ef47" - }, "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "hsp2", "language": "python", "name": "python3" }, @@ -1412,7 +1736,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.14" + "version": "3.12.8" }, "toc-autonumbering": true, "toc-showmarkdowntxt": false diff --git a/examples/2_ExploreResultsHDF5.ipynb b/examples/2_ExploreResultsHDF5.ipynb index 38d6885b..8d132e5d 100644 --- a/examples/2_ExploreResultsHDF5.ipynb +++ b/examples/2_ExploreResultsHDF5.ipynb @@ -59,7 +59,7 @@ { "data": { "text/plain": [ - "'hsp2_py38'" + "'hsp2_py310'" ] }, "execution_count": 2, @@ -230,7 +230,7 @@ " TS039\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 1H\n", + " 1h\n", " 8784\n", " PREC\n", " -999.0\n", @@ -263,7 +263,7 @@ " TS046\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 2H\n", + " 2h\n", " 4392\n", " SOLR\n", " -999.0\n", @@ -296,7 +296,7 @@ " TS121\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 2H\n", + " 2h\n", " 4392\n", " ATMP\n", " -999.0\n", @@ -307,7 +307,7 @@ " TS122\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 2H\n", + " 2h\n", " 4392\n", " ATMP\n", " -999.0\n", @@ -318,7 +318,7 @@ " TS123\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 2H\n", + " 2h\n", " 4392\n", " ATMP\n", " -999.0\n", @@ -373,7 +373,7 @@ " TS131\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 1H\n", + " 1h\n", " 8784\n", " PREC\n", " -999.0\n", @@ -384,7 +384,7 @@ " TS132\n", " 1976-01-01 00:00:00\n", " 1977-01-01 00:00:00\n", - " 1H\n", + " 1h\n", " 8784\n", " PREC\n", " -999.0\n", @@ -440,22 +440,22 @@ "" ], "text/plain": [ - " Start Stop Freq Length TSTYPE TFILL \\\n", - "TS039 1976-01-01 00:00:00 1977-01-01 00:00:00 1H 8784 PREC -999.0 \n", + " Start Stop Freq Length TSTYPE TFILL \n", + "TS039 1976-01-01 00:00:00 1977-01-01 00:00:00 1h 8784 PREC -999.0 \\\n", "TS041 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 EVAP -999.0 \n", "TS042 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 WIND -999.0 \n", - "TS046 1976-01-01 00:00:00 1977-01-01 00:00:00 2H 4392 SOLR -999.0 \n", + "TS046 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 SOLR -999.0 \n", "TS113 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 FLOW -999.0 \n", "TS119 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 FLOW -999.0 \n", - "TS121 1976-01-01 00:00:00 1977-01-01 00:00:00 2H 4392 ATMP -999.0 \n", - "TS122 1976-01-01 00:00:00 1977-01-01 00:00:00 2H 4392 ATMP -999.0 \n", - "TS123 1976-01-01 00:00:00 1977-01-01 00:00:00 2H 4392 ATMP -999.0 \n", + "TS121 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 ATMP -999.0 \n", + "TS122 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 ATMP -999.0 \n", + "TS123 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 ATMP -999.0 \n", "TS124 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 DEWP -999.0 \n", "TS125 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 DEWP -999.0 \n", "TS126 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 DEWP -999.0 \n", "TS127 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 SEDM -999.0 \n", - "TS131 1976-01-01 00:00:00 1977-01-01 00:00:00 1H 8784 PREC -999.0 \n", - "TS132 1976-01-01 00:00:00 1977-01-01 00:00:00 1H 8784 PREC -999.0 \n", + "TS131 1976-01-01 00:00:00 1977-01-01 00:00:00 1h 8784 PREC -999.0 \n", + "TS132 1976-01-01 00:00:00 1977-01-01 00:00:00 1h 8784 PREC -999.0 \n", "TS134 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 WTMP -999.0 \n", "TS135 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 CLDC -999.0 \n", "TS136 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 FLOW -999.0 \n", @@ -598,13 +598,18 @@ " \n", " \n", " \n", + " AVDEP\n", + " AVVEL\n", " DEP\n", + " HRAD\n", " IVOL\n", + " POTEV\n", " PRSUPY\n", " RO\n", " ROVOL\n", " SAREA\n", " TAU\n", + " TWID\n", " USTAR\n", " VOL\n", " VOLEV\n", @@ -613,65 +618,90 @@ " \n", " \n", " 1976-01-01 01:00:00\n", + " 0.702923\n", + " 1.857768\n", " 0.822988\n", + " 0.562775\n", " 1.747608\n", + " 0.000583\n", " 0.0\n", " 7.371986\n", " 0.304628\n", " 2.052829\n", " 0.088680\n", + " 5.645279\n", " 0.213918\n", " 1.442980\n", " 0.000000\n", " \n", " \n", " 1976-01-01 02:00:00\n", + " 0.651220\n", + " 1.770455\n", " 0.754730\n", + " 0.526685\n", " 0.428585\n", + " 0.000583\n", " 0.0\n", " 6.350832\n", " 0.567059\n", " 2.003019\n", " 0.082993\n", + " 5.508303\n", " 0.206945\n", " 1.304407\n", " 0.000100\n", " \n", " \n", " 1976-01-01 03:00:00\n", + " 0.534142\n", + " 1.576605\n", " 0.604331\n", + " 0.443217\n", " 0.150780\n", + " 0.000583\n", " 0.0\n", " 4.385298\n", " 0.443642\n", " 1.893593\n", " 0.069840\n", + " 5.207382\n", " 0.189840\n", " 1.011448\n", " 0.000097\n", " \n", " \n", " 1976-01-01 04:00:00\n", + " 0.429286\n", + " 1.416886\n", " 0.474719\n", + " 0.365824\n", " 0.066827\n", + " 0.000583\n", " 0.0\n", " 3.010308\n", " 0.305604\n", " 1.799683\n", " 0.057645\n", + " 4.949128\n", " 0.172471\n", " 0.772579\n", " 0.000092\n", " \n", " \n", " 1976-01-01 05:00:00\n", + " 0.346840\n", + " 1.221629\n", " 0.376407\n", + " 0.302669\n", " 0.034621\n", + " 0.000583\n", " 0.0\n", " 2.013996\n", " 0.207616\n", " 1.728451\n", " 0.047693\n", + " 4.753240\n", " 0.156879\n", " 0.599497\n", " 0.000087\n", @@ -688,11 +718,20 @@ " ...\n", " ...\n", " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", " \n", " \n", " 1976-12-31 20:00:00\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000583\n", " 0.0\n", " 0.000000\n", " 0.000000\n", @@ -701,11 +740,16 @@ " 0.000000\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", " \n", " \n", " 1976-12-31 21:00:00\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000583\n", " 0.0\n", " 0.000000\n", " 0.000000\n", @@ -714,11 +758,16 @@ " 0.000000\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", " \n", " \n", " 1976-12-31 22:00:00\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000583\n", " 0.0\n", " 0.000000\n", " 0.000000\n", @@ -727,11 +776,16 @@ " 0.000000\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", " \n", " \n", " 1976-12-31 23:00:00\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000583\n", " 0.0\n", " 0.000000\n", " 0.000000\n", @@ -740,11 +794,16 @@ " 0.000000\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", " \n", " \n", " 1977-01-01 00:00:00\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000583\n", " 0.0\n", " 0.000000\n", " 0.000000\n", @@ -753,32 +812,46 @@ " 0.000000\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", " \n", " \n", "\n", - "

8784 rows × 10 columns

\n", + "

8784 rows × 15 columns

\n", "" ], "text/plain": [ - " DEP IVOL PRSUPY RO ROVOL SAREA \\\n", - "1976-01-01 01:00:00 0.822988 1.747608 0.0 7.371986 0.304628 2.052829 \n", - "1976-01-01 02:00:00 0.754730 0.428585 0.0 6.350832 0.567059 2.003019 \n", - "1976-01-01 03:00:00 0.604331 0.150780 0.0 4.385298 0.443642 1.893593 \n", - "1976-01-01 04:00:00 0.474719 0.066827 0.0 3.010308 0.305604 1.799683 \n", - "1976-01-01 05:00:00 0.376407 0.034621 0.0 2.013996 0.207616 1.728451 \n", - "... ... ... ... ... ... ... \n", - "1976-12-31 20:00:00 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 \n", - "1976-12-31 21:00:00 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 \n", - "1976-12-31 22:00:00 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 \n", - "1976-12-31 23:00:00 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 \n", - "1977-01-01 00:00:00 0.000000 0.000000 0.0 0.000000 0.000000 0.000000 \n", + " AVDEP AVVEL DEP HRAD IVOL \n", + "1976-01-01 01:00:00 0.702923 1.857768 0.822988 0.562775 1.747608 \\\n", + "1976-01-01 02:00:00 0.651220 1.770455 0.754730 0.526685 0.428585 \n", + "1976-01-01 03:00:00 0.534142 1.576605 0.604331 0.443217 0.150780 \n", + "1976-01-01 04:00:00 0.429286 1.416886 0.474719 0.365824 0.066827 \n", + "1976-01-01 05:00:00 0.346840 1.221629 0.376407 0.302669 0.034621 \n", + "... ... ... ... ... ... \n", + "1976-12-31 20:00:00 0.000000 0.000000 0.000000 0.000000 0.000000 \n", + "1976-12-31 21:00:00 0.000000 0.000000 0.000000 0.000000 0.000000 \n", + "1976-12-31 22:00:00 0.000000 0.000000 0.000000 0.000000 0.000000 \n", + "1976-12-31 23:00:00 0.000000 0.000000 0.000000 0.000000 0.000000 \n", + "1977-01-01 00:00:00 0.000000 0.000000 0.000000 0.000000 0.000000 \n", "\n", - " TAU USTAR VOL VOLEV \n", - "1976-01-01 01:00:00 0.088680 0.213918 1.442980 0.000000 \n", - "1976-01-01 02:00:00 0.082993 0.206945 1.304407 0.000100 \n", - "1976-01-01 03:00:00 0.069840 0.189840 1.011448 0.000097 \n", - "1976-01-01 04:00:00 0.057645 0.172471 0.772579 0.000092 \n", - "1976-01-01 05:00:00 0.047693 0.156879 0.599497 0.000087 \n", + " POTEV PRSUPY RO ROVOL SAREA TAU \n", + "1976-01-01 01:00:00 0.000583 0.0 7.371986 0.304628 2.052829 0.088680 \\\n", + "1976-01-01 02:00:00 0.000583 0.0 6.350832 0.567059 2.003019 0.082993 \n", + "1976-01-01 03:00:00 0.000583 0.0 4.385298 0.443642 1.893593 0.069840 \n", + "1976-01-01 04:00:00 0.000583 0.0 3.010308 0.305604 1.799683 0.057645 \n", + "1976-01-01 05:00:00 0.000583 0.0 2.013996 0.207616 1.728451 0.047693 \n", + "... ... ... ... ... ... ... \n", + "1976-12-31 20:00:00 0.000583 0.0 0.000000 0.000000 0.000000 0.000000 \n", + "1976-12-31 21:00:00 0.000583 0.0 0.000000 0.000000 0.000000 0.000000 \n", + "1976-12-31 22:00:00 0.000583 0.0 0.000000 0.000000 0.000000 0.000000 \n", + "1976-12-31 23:00:00 0.000583 0.0 0.000000 0.000000 0.000000 0.000000 \n", + "1977-01-01 00:00:00 0.000583 0.0 0.000000 0.000000 0.000000 0.000000 \n", + "\n", + " TWID USTAR VOL VOLEV \n", + "1976-01-01 01:00:00 5.645279 0.213918 1.442980 0.000000 \n", + "1976-01-01 02:00:00 5.508303 0.206945 1.304407 0.000100 \n", + "1976-01-01 03:00:00 5.207382 0.189840 1.011448 0.000097 \n", + "1976-01-01 04:00:00 4.949128 0.172471 0.772579 0.000092 \n", + "1976-01-01 05:00:00 4.753240 0.156879 0.599497 0.000087 \n", "... ... ... ... ... \n", "1976-12-31 20:00:00 0.000000 0.000000 0.000000 0.000000 \n", "1976-12-31 21:00:00 0.000000 0.000000 0.000000 0.000000 \n", @@ -786,7 +859,7 @@ "1976-12-31 23:00:00 0.000000 0.000000 0.000000 0.000000 \n", "1977-01-01 00:00:00 0.000000 0.000000 0.000000 0.000000 \n", "\n", - "[8784 rows x 10 columns]" + "[8784 rows x 15 columns]" ] }, "execution_count": 9, @@ -825,13 +898,18 @@ " \n", " \n", " \n", + " AVDEP\n", + " AVVEL\n", " DEP\n", + " HRAD\n", " IVOL\n", + " POTEV\n", " PRSUPY\n", " RO\n", " ROVOL\n", " SAREA\n", " TAU\n", + " TWID\n", " USTAR\n", " VOL\n", " VOLEV\n", @@ -841,38 +919,53 @@ " \n", " count\n", " 8784.000000\n", + " 8784.000000\n", + " 8784.000000\n", + " 8784.000000\n", " 8.784000e+03\n", " 8784.000000\n", " 8784.000000\n", + " 8784.000000\n", " 8.784000e+03\n", " 8784.000000\n", " 8784.000000\n", " 8784.000000\n", " 8784.000000\n", " 8784.000000\n", + " 8784.000000\n", " \n", " \n", " mean\n", + " 0.416398\n", + " 1.182163\n", " 0.590523\n", + " 0.334599\n", " 9.918233e-01\n", + " 0.004514\n", " 0.004978\n", " 12.050080\n", " 9.958744e-01\n", " 1.920959\n", " 0.052725\n", + " 5.282637\n", " 0.128277\n", " 1.846853\n", " 0.000927\n", " \n", " \n", " std\n", + " 0.454887\n", + " 0.935364\n", " 0.926055\n", + " 0.350942\n", " 6.259102e+00\n", + " 0.003897\n", " 0.078443\n", " 51.651436\n", " 4.111245e+00\n", " 5.763461\n", " 0.055300\n", + " 15.849516\n", " 0.103699\n", " 8.604043\n", " 0.004121\n", @@ -880,7 +973,11 @@ " \n", " min\n", " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000000\n", " -1.664352e-07\n", + " 0.000292\n", " 0.000000\n", " 0.000000\n", " -9.247787e-07\n", @@ -889,11 +986,16 @@ " 0.000000\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", " \n", " \n", " 25%\n", " 0.000000\n", + " 0.000000\n", + " 0.000000\n", + " 0.000000\n", " 0.000000e+00\n", + " 0.000875\n", " 0.000000\n", " 0.000000\n", " 0.000000e+00\n", @@ -902,42 +1004,58 @@ " 0.000000\n", " 0.000000\n", " 0.000000\n", + " 0.000000\n", " \n", " \n", " 50%\n", + " 0.241527\n", + " 1.098524\n", " 0.259827\n", + " 0.213238\n", " 7.014202e-02\n", + " 0.003354\n", " 0.000000\n", " 0.966114\n", " 8.215849e-02\n", " 1.324102\n", " 0.033601\n", + " 3.641279\n", " 0.131678\n", " 0.319806\n", " 0.000133\n", " \n", " \n", " 75%\n", + " 0.719509\n", + " 1.882429\n", " 0.845124\n", + " 0.574267\n", " 5.902275e-01\n", + " 0.007875\n", " 0.000000\n", " 7.708535\n", " 6.481222e-01\n", " 2.068982\n", " 0.090491\n", + " 5.689701\n", " 0.216091\n", " 1.488651\n", " 0.000953\n", " \n", " \n", " max\n", + " 2.665695\n", + " 4.079803\n", " 7.691414\n", + " 2.023250\n", " 2.333915e+02\n", + " 0.015458\n", " 3.413368\n", " 987.538513\n", " 7.383160e+01\n", " 93.850304\n", " 0.318815\n", + " 258.088318\n", " 0.405607\n", " 192.907166\n", " 0.088074\n", @@ -947,25 +1065,35 @@ "" ], "text/plain": [ - " DEP IVOL PRSUPY RO ROVOL \\\n", - "count 8784.000000 8.784000e+03 8784.000000 8784.000000 8.784000e+03 \n", - "mean 0.590523 9.918233e-01 0.004978 12.050080 9.958744e-01 \n", - "std 0.926055 6.259102e+00 0.078443 51.651436 4.111245e+00 \n", - "min 0.000000 -1.664352e-07 0.000000 0.000000 -9.247787e-07 \n", - "25% 0.000000 0.000000e+00 0.000000 0.000000 0.000000e+00 \n", - "50% 0.259827 7.014202e-02 0.000000 0.966114 8.215849e-02 \n", - "75% 0.845124 5.902275e-01 0.000000 7.708535 6.481222e-01 \n", - "max 7.691414 2.333915e+02 3.413368 987.538513 7.383160e+01 \n", + " AVDEP AVVEL DEP HRAD IVOL \n", + "count 8784.000000 8784.000000 8784.000000 8784.000000 8.784000e+03 \\\n", + "mean 0.416398 1.182163 0.590523 0.334599 9.918233e-01 \n", + "std 0.454887 0.935364 0.926055 0.350942 6.259102e+00 \n", + "min 0.000000 0.000000 0.000000 0.000000 -1.664352e-07 \n", + "25% 0.000000 0.000000 0.000000 0.000000 0.000000e+00 \n", + "50% 0.241527 1.098524 0.259827 0.213238 7.014202e-02 \n", + "75% 0.719509 1.882429 0.845124 0.574267 5.902275e-01 \n", + "max 2.665695 4.079803 7.691414 2.023250 2.333915e+02 \n", + "\n", + " POTEV PRSUPY RO ROVOL SAREA \n", + "count 8784.000000 8784.000000 8784.000000 8.784000e+03 8784.000000 \\\n", + "mean 0.004514 0.004978 12.050080 9.958744e-01 1.920959 \n", + "std 0.003897 0.078443 51.651436 4.111245e+00 5.763461 \n", + "min 0.000292 0.000000 0.000000 -9.247787e-07 0.000000 \n", + "25% 0.000875 0.000000 0.000000 0.000000e+00 0.000000 \n", + "50% 0.003354 0.000000 0.966114 8.215849e-02 1.324102 \n", + "75% 0.007875 0.000000 7.708535 6.481222e-01 2.068982 \n", + "max 0.015458 3.413368 987.538513 7.383160e+01 93.850304 \n", "\n", - " SAREA TAU USTAR VOL VOLEV \n", + " TAU TWID USTAR VOL VOLEV \n", "count 8784.000000 8784.000000 8784.000000 8784.000000 8784.000000 \n", - "mean 1.920959 0.052725 0.128277 1.846853 0.000927 \n", - "std 5.763461 0.055300 0.103699 8.604043 0.004121 \n", + "mean 0.052725 5.282637 0.128277 1.846853 0.000927 \n", + "std 0.055300 15.849516 0.103699 8.604043 0.004121 \n", "min 0.000000 0.000000 0.000000 0.000000 0.000000 \n", "25% 0.000000 0.000000 0.000000 0.000000 0.000000 \n", - "50% 1.324102 0.033601 0.131678 0.319806 0.000133 \n", - "75% 2.068982 0.090491 0.216091 1.488651 0.000953 \n", - "max 93.850304 0.318815 0.405607 192.907166 0.088074 " + "50% 0.033601 3.641279 0.131678 0.319806 0.000133 \n", + "75% 0.090491 5.689701 0.216091 1.488651 0.000953 \n", + "max 0.318815 258.088318 0.405607 192.907166 0.088074 " ] }, "execution_count": 10, @@ -1036,8 +1164,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/SEASONS_Table (Group) ''\n", "/TIMESERIES/SEASONS_Table/table (Table(12,)) ''\n", " description := {\n", @@ -1047,8 +1175,8 @@ " chunkshape := (7281,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/SUMMARY (Group) ''\n", "/TIMESERIES/SUMMARY/table (Table(19,)) ''\n", " description := {\n", @@ -1065,15 +1193,15 @@ " chunkshape := (512,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Start\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Stop\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Freq\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Length\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSTYPE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TFILL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"STAID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"STNAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Start\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Stop\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Freq\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Length\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSTYPE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TFILL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"STAID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"STNAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/Saturated_Vapor_Pressure_Table (Group) ''\n", "/TIMESERIES/Saturated_Vapor_Pressure_Table/table (Table(40,)) ''\n", " description := {\n", @@ -1083,8 +1211,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS039 (Group) ''\n", "/TIMESERIES/TS039/table (Table(8784,)) ''\n", " description := {\n", @@ -1094,8 +1222,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS041 (Group) ''\n", "/TIMESERIES/TS041/table (Table(366,)) ''\n", " description := {\n", @@ -1105,8 +1233,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS042 (Group) ''\n", "/TIMESERIES/TS042/table (Table(366,)) ''\n", " description := {\n", @@ -1116,8 +1244,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS046 (Group) ''\n", "/TIMESERIES/TS046/table (Table(4392,)) ''\n", " description := {\n", @@ -1127,8 +1255,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS113 (Group) ''\n", "/TIMESERIES/TS113/table (Table(366,)) ''\n", " description := {\n", @@ -1138,8 +1266,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS119 (Group) ''\n", "/TIMESERIES/TS119/table (Table(366,)) ''\n", " description := {\n", @@ -1149,8 +1277,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS121 (Group) ''\n", "/TIMESERIES/TS121/table (Table(4392,)) ''\n", " description := {\n", @@ -1160,8 +1288,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS122 (Group) ''\n", "/TIMESERIES/TS122/table (Table(4392,)) ''\n", " description := {\n", @@ -1171,8 +1299,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS123 (Group) ''\n", "/TIMESERIES/TS123/table (Table(4392,)) ''\n", " description := {\n", @@ -1182,8 +1310,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS124 (Group) ''\n", "/TIMESERIES/TS124/table (Table(366,)) ''\n", " description := {\n", @@ -1193,8 +1321,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS125 (Group) ''\n", "/TIMESERIES/TS125/table (Table(366,)) ''\n", " description := {\n", @@ -1204,8 +1332,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS126 (Group) ''\n", "/TIMESERIES/TS126/table (Table(366,)) ''\n", " description := {\n", @@ -1215,8 +1343,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS127 (Group) ''\n", "/TIMESERIES/TS127/table (Table(366,)) ''\n", " description := {\n", @@ -1226,8 +1354,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS131 (Group) ''\n", "/TIMESERIES/TS131/table (Table(8784,)) ''\n", " description := {\n", @@ -1237,8 +1365,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS132 (Group) ''\n", "/TIMESERIES/TS132/table (Table(8784,)) ''\n", " description := {\n", @@ -1248,8 +1376,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS134 (Group) ''\n", "/TIMESERIES/TS134/table (Table(366,)) ''\n", " description := {\n", @@ -1259,8 +1387,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS135 (Group) ''\n", "/TIMESERIES/TS135/table (Table(366,)) ''\n", " description := {\n", @@ -1270,8 +1398,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS136 (Group) ''\n", "/TIMESERIES/TS136/table (Table(366,)) ''\n", " description := {\n", @@ -1281,8 +1409,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/TIMESERIES/TS140 (Group) ''\n", "/TIMESERIES/TS140/table (Table(366,)) ''\n", " description := {\n", @@ -1292,8 +1420,8 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"values\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"values\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RUN_INFO/LOGFILE (Group) ''\n", "/RUN_INFO/LOGFILE/table (Table(63,)) ''\n", " description := {\n", @@ -1303,19 +1431,19 @@ " chunkshape := (399,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"logfile\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"logfile\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RUN_INFO/VERSIONS (Group) ''\n", "/RUN_INFO/VERSIONS/table (Table(10,)) ''\n", " description := {\n", " \"index\": StringCol(itemsize=10, shape=(), dflt=b'', pos=0),\n", - " \"version\": StringCol(itemsize=84, shape=(), dflt=b'', pos=1)}\n", + " \"version\": StringCol(itemsize=81, shape=(), dflt=b'', pos=1)}\n", " byteorder := 'irrelevant'\n", - " chunkshape := (697,)\n", + " chunkshape := (720,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"version\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"version\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/IMPLND_I001 (Group) ''\n", "/RESULTS/PERLND_P001 (Group) ''\n", "/RESULTS/RCHRES_R001 (Group) ''\n", @@ -1337,13 +1465,13 @@ " chunkshape := (2048,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_CON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ICON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ROCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_CON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ICON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ROCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R005/GQUAL (Group) ''\n", "/RESULTS/RCHRES_R005/GQUAL/table (Table(8784,)) ''\n", " description := {\n", @@ -1414,69 +1542,69 @@ " chunkshape := (256,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_IDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_PDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RODQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RRQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TIQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TROQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_IDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_PDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RODQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RRQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TIQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TROQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R005/HTRCH (Group) ''\n", "/RESULTS/RCHRES_R005/HTRCH/table (Table(8784,)) ''\n", " description := {\n", @@ -1497,48 +1625,58 @@ " chunkshape := (1170,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HTEXCH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QBED\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QEVAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QLONGW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QPREC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QSOLAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QTOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TW\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HTEXCH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QBED\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QEVAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QLONGW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QPREC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QSOLAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QTOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TW\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R005/HYDR (Group) ''\n", "/RESULTS/RCHRES_R005/HYDR/table (Table(8784,)) ''\n", " description := {\n", " \"index\": Int64Col(shape=(), dflt=0, pos=0),\n", - " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", - " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", - " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=3),\n", - " \"RO\": Float32Col(shape=(), dflt=0.0, pos=4),\n", - " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=5),\n", - " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=6),\n", - " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=7),\n", - " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=8),\n", - " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=9),\n", - " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=10)}\n", + " \"AVDEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", + " \"AVVEL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", + " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=3),\n", + " \"HRAD\": Float32Col(shape=(), dflt=0.0, pos=4),\n", + " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=5),\n", + " \"POTEV\": Float32Col(shape=(), dflt=0.0, pos=6),\n", + " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=7),\n", + " \"RO\": Float32Col(shape=(), dflt=0.0, pos=8),\n", + " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=9),\n", + " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=10),\n", + " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=11),\n", + " \"TWID\": Float32Col(shape=(), dflt=0.0, pos=12),\n", + " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=13),\n", + " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=14),\n", + " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=15)}\n", " byteorder := 'little'\n", - " chunkshape := (1365,)\n", + " chunkshape := (963,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRSUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SAREA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAU\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"USTAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOLEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVVEL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HRAD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRSUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SAREA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAU\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TWID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"USTAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOLEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R005/NUTRX (Group) ''\n", "/RESULTS/RCHRES_R005/NUTRX/table (Table(8784,)) ''\n", " description := {\n", @@ -1613,73 +1751,73 @@ " chunkshape := (240,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BALNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BODNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_DENNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_NITNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_PHYNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_TOTNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_ZOONO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BALTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BNRTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BODTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_NITTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_PHYTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_TOTTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_VOLNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_ZOOTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_NITNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_TOTNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BALPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BNRPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BODPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_PHYPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_TOTPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_ZOOPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BALNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BODNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_DENNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_NITNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_PHYNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_TOTNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_ZOONO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BALTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BNRTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BODTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_NITTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_PHYTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_TOTTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_VOLNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_ZOOTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_NITNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_TOTNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BALPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BNRPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BODPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_PHYPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_TOTPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_ZOOPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R005/OXRX (Group) ''\n", "/RESULTS/RCHRES_R005/OXRX/table (Table(8784,)) ''\n", " description := {\n", @@ -1710,29 +1848,29 @@ " chunkshape := (682,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IDOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BENDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_NITR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_REAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BENR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_SNK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IDOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BENDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_NITR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_REAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BENR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_SNK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R005/PHCARB (Group) ''\n", "/RESULTS/RCHRES_R005/PHCARB/table (Table(8784,)) ''\n", " description := {\n", @@ -1758,24 +1896,24 @@ " chunkshape := (862,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ITIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCO21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OTIC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BGRCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BRECO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_DECCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_INVCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_PHYCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_TOTCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_ZOOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ITIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCO21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OTIC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BGRCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BRECO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_DECCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_INVCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_PHYCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_TOTCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_ZOOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R005/PLANK (Group) ''\n", "/RESULTS/RCHRES_R005/PLANK/table (Table(8784,)) ''\n", " description := {\n", @@ -1854,77 +1992,77 @@ " chunkshape := (227,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYCLA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYTO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTBORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTPORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTZORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_SNKORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_TOTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_DTHPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_GROPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_SNKPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_TOTPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_ZOOPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_DTHZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_GROZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_TOTZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_DTHBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_GROBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTBORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTPORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTZORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_SNKORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_TOTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTBORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTPORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTZORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_SNKORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_TOTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POTBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYCLA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYTO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTBORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTPORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTZORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_SNKORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_TOTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_DTHPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_GROPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_SNKPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_TOTPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_ZOOPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_DTHZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_GROZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_TOTZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_DTHBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_GROBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTBORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTPORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTZORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_SNKORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_TOTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTBORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTPORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTZORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_SNKORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_TOTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R005/SEDTRN (Group) ''\n", "/RESULTS/RCHRES_R005/SEDTRN/table (Table(8784,)) ''\n", " description := {\n", @@ -1962,36 +2100,36 @@ " chunkshape := (528,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BEDDEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BEDDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R004/CONS (Group) ''\n", "/RESULTS/RCHRES_R004/CONS/table (Table(8784,)) ''\n", " description := {\n", @@ -2006,13 +2144,13 @@ " chunkshape := (2048,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_CON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ICON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ROCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_CON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ICON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ROCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R004/GQUAL (Group) ''\n", "/RESULTS/RCHRES_R004/GQUAL/table (Table(8784,)) ''\n", " description := {\n", @@ -2083,69 +2221,69 @@ " chunkshape := (256,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_IDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_PDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RODQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RRQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TIQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TROQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_IDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_PDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RODQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RRQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TIQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TROQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R004/HTRCH (Group) ''\n", "/RESULTS/RCHRES_R004/HTRCH/table (Table(8784,)) ''\n", " description := {\n", @@ -2166,48 +2304,58 @@ " chunkshape := (1170,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HTEXCH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QBED\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QEVAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QLONGW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QPREC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QSOLAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QTOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TW\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HTEXCH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QBED\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QEVAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QLONGW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QPREC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QSOLAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QTOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TW\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R004/HYDR (Group) ''\n", "/RESULTS/RCHRES_R004/HYDR/table (Table(8784,)) ''\n", " description := {\n", " \"index\": Int64Col(shape=(), dflt=0, pos=0),\n", - " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", - " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", - " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=3),\n", - " \"RO\": Float32Col(shape=(), dflt=0.0, pos=4),\n", - " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=5),\n", - " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=6),\n", - " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=7),\n", - " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=8),\n", - " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=9),\n", - " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=10)}\n", + " \"AVDEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", + " \"AVVEL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", + " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=3),\n", + " \"HRAD\": Float32Col(shape=(), dflt=0.0, pos=4),\n", + " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=5),\n", + " \"POTEV\": Float32Col(shape=(), dflt=0.0, pos=6),\n", + " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=7),\n", + " \"RO\": Float32Col(shape=(), dflt=0.0, pos=8),\n", + " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=9),\n", + " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=10),\n", + " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=11),\n", + " \"TWID\": Float32Col(shape=(), dflt=0.0, pos=12),\n", + " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=13),\n", + " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=14),\n", + " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=15)}\n", " byteorder := 'little'\n", - " chunkshape := (1365,)\n", + " chunkshape := (963,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRSUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SAREA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAU\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"USTAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOLEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVVEL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HRAD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRSUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SAREA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAU\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TWID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"USTAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOLEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R004/NUTRX (Group) ''\n", "/RESULTS/RCHRES_R004/NUTRX/table (Table(8784,)) ''\n", " description := {\n", @@ -2282,73 +2430,73 @@ " chunkshape := (240,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BALNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BODNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_DENNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_NITNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_PHYNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_TOTNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_ZOONO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BALTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BNRTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BODTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_NITTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_PHYTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_TOTTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_VOLNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_ZOOTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_NITNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_TOTNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BALPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BNRPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BODPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_PHYPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_TOTPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_ZOOPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BALNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BODNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_DENNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_NITNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_PHYNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_TOTNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_ZOONO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BALTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BNRTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BODTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_NITTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_PHYTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_TOTTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_VOLNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_ZOOTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_NITNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_TOTNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BALPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BNRPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BODPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_PHYPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_TOTPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_ZOOPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R004/OXRX (Group) ''\n", "/RESULTS/RCHRES_R004/OXRX/table (Table(8784,)) ''\n", " description := {\n", @@ -2379,29 +2527,29 @@ " chunkshape := (682,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IDOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BENDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_NITR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_REAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BENR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_SNK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IDOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BENDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_NITR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_REAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BENR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_SNK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R004/PHCARB (Group) ''\n", "/RESULTS/RCHRES_R004/PHCARB/table (Table(8784,)) ''\n", " description := {\n", @@ -2427,24 +2575,24 @@ " chunkshape := (862,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ITIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCO21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OTIC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BGRCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BRECO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_DECCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_INVCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_PHYCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_TOTCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_ZOOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ITIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCO21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OTIC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BGRCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BRECO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_DECCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_INVCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_PHYCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_TOTCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_ZOOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R004/PLANK (Group) ''\n", "/RESULTS/RCHRES_R004/PLANK/table (Table(8784,)) ''\n", " description := {\n", @@ -2523,77 +2671,77 @@ " chunkshape := (227,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYCLA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYTO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTBORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTPORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTZORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_SNKORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_TOTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_DTHPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_GROPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_SNKPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_TOTPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_ZOOPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_DTHZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_GROZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_TOTZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_DTHBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_GROBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTBORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTPORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTZORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_SNKORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_TOTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTBORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTPORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTZORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_SNKORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_TOTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POTBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYCLA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYTO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTBORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTPORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTZORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_SNKORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_TOTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_DTHPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_GROPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_SNKPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_TOTPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_ZOOPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_DTHZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_GROZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_TOTZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_DTHBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_GROBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTBORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTPORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTZORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_SNKORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_TOTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTBORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTPORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTZORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_SNKORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_TOTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R004/SEDTRN (Group) ''\n", "/RESULTS/RCHRES_R004/SEDTRN/table (Table(8784,)) ''\n", " description := {\n", @@ -2631,36 +2779,36 @@ " chunkshape := (528,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BEDDEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BEDDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R003/CONS (Group) ''\n", "/RESULTS/RCHRES_R003/CONS/table (Table(8784,)) ''\n", " description := {\n", @@ -2675,13 +2823,13 @@ " chunkshape := (2048,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_CON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ICON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ROCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_CON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ICON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ROCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R003/GQUAL (Group) ''\n", "/RESULTS/RCHRES_R003/GQUAL/table (Table(8784,)) ''\n", " description := {\n", @@ -2752,69 +2900,69 @@ " chunkshape := (256,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_IDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_PDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RODQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RRQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TIQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TROQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_IDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_PDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RODQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RRQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TIQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TROQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R003/HTRCH (Group) ''\n", "/RESULTS/RCHRES_R003/HTRCH/table (Table(8784,)) ''\n", " description := {\n", @@ -2835,48 +2983,58 @@ " chunkshape := (1170,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HTEXCH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QBED\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QEVAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QLONGW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QPREC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QSOLAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QTOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TW\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HTEXCH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QBED\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QEVAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QLONGW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QPREC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QSOLAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QTOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TW\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R003/HYDR (Group) ''\n", "/RESULTS/RCHRES_R003/HYDR/table (Table(8784,)) ''\n", " description := {\n", " \"index\": Int64Col(shape=(), dflt=0, pos=0),\n", - " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", - " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", - " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=3),\n", - " \"RO\": Float32Col(shape=(), dflt=0.0, pos=4),\n", - " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=5),\n", - " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=6),\n", - " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=7),\n", - " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=8),\n", - " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=9),\n", - " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=10)}\n", + " \"AVDEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", + " \"AVVEL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", + " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=3),\n", + " \"HRAD\": Float32Col(shape=(), dflt=0.0, pos=4),\n", + " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=5),\n", + " \"POTEV\": Float32Col(shape=(), dflt=0.0, pos=6),\n", + " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=7),\n", + " \"RO\": Float32Col(shape=(), dflt=0.0, pos=8),\n", + " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=9),\n", + " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=10),\n", + " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=11),\n", + " \"TWID\": Float32Col(shape=(), dflt=0.0, pos=12),\n", + " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=13),\n", + " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=14),\n", + " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=15)}\n", " byteorder := 'little'\n", - " chunkshape := (1365,)\n", + " chunkshape := (963,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRSUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SAREA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAU\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"USTAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOLEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVVEL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HRAD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRSUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SAREA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAU\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TWID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"USTAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOLEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R003/NUTRX (Group) ''\n", "/RESULTS/RCHRES_R003/NUTRX/table (Table(8784,)) ''\n", " description := {\n", @@ -2951,73 +3109,73 @@ " chunkshape := (240,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BALNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BODNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_DENNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_NITNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_PHYNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_TOTNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_ZOONO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BALTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BNRTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BODTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_NITTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_PHYTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_TOTTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_VOLNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_ZOOTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_NITNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_TOTNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BALPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BNRPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BODPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_PHYPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_TOTPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_ZOOPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BALNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BODNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_DENNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_NITNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_PHYNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_TOTNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_ZOONO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BALTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BNRTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BODTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_NITTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_PHYTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_TOTTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_VOLNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_ZOOTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_NITNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_TOTNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BALPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BNRPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BODPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_PHYPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_TOTPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_ZOOPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R003/OXRX (Group) ''\n", "/RESULTS/RCHRES_R003/OXRX/table (Table(8784,)) ''\n", " description := {\n", @@ -3048,29 +3206,29 @@ " chunkshape := (682,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IDOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BENDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_NITR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_REAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BENR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_SNK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IDOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BENDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_NITR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_REAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BENR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_SNK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R003/PHCARB (Group) ''\n", "/RESULTS/RCHRES_R003/PHCARB/table (Table(8784,)) ''\n", " description := {\n", @@ -3096,24 +3254,24 @@ " chunkshape := (862,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ITIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCO21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OTIC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BGRCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BRECO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_DECCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_INVCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_PHYCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_TOTCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_ZOOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ITIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCO21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OTIC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BGRCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BRECO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_DECCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_INVCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_PHYCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_TOTCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_ZOOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R003/PLANK (Group) ''\n", "/RESULTS/RCHRES_R003/PLANK/table (Table(8784,)) ''\n", " description := {\n", @@ -3192,77 +3350,77 @@ " chunkshape := (227,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYCLA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYTO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTBORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTPORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTZORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_SNKORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_TOTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_DTHPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_GROPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_SNKPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_TOTPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_ZOOPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_DTHZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_GROZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_TOTZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_DTHBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_GROBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTBORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTPORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTZORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_SNKORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_TOTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTBORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTPORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTZORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_SNKORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_TOTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POTBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYCLA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYTO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTBORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTPORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTZORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_SNKORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_TOTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_DTHPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_GROPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_SNKPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_TOTPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_ZOOPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_DTHZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_GROZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_TOTZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_DTHBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_GROBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTBORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTPORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTZORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_SNKORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_TOTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTBORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTPORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTZORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_SNKORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_TOTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R003/SEDTRN (Group) ''\n", "/RESULTS/RCHRES_R003/SEDTRN/table (Table(8784,)) ''\n", " description := {\n", @@ -3300,36 +3458,36 @@ " chunkshape := (528,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BEDDEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BEDDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R002/CONS (Group) ''\n", "/RESULTS/RCHRES_R002/CONS/table (Table(8784,)) ''\n", " description := {\n", @@ -3344,13 +3502,13 @@ " chunkshape := (2048,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_CON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ICON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ROCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_CON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ICON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ROCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R002/GQUAL (Group) ''\n", "/RESULTS/RCHRES_R002/GQUAL/table (Table(8784,)) ''\n", " description := {\n", @@ -3421,69 +3579,69 @@ " chunkshape := (256,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_IDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_PDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RODQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RRQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TIQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TROQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_IDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_PDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RODQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RRQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TIQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TROQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R002/HTRCH (Group) ''\n", "/RESULTS/RCHRES_R002/HTRCH/table (Table(8784,)) ''\n", " description := {\n", @@ -3504,48 +3662,58 @@ " chunkshape := (1170,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HTEXCH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QBED\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QEVAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QLONGW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QPREC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QSOLAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QTOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TW\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HTEXCH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QBED\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QEVAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QLONGW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QPREC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QSOLAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QTOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TW\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R002/HYDR (Group) ''\n", "/RESULTS/RCHRES_R002/HYDR/table (Table(8784,)) ''\n", " description := {\n", " \"index\": Int64Col(shape=(), dflt=0, pos=0),\n", - " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", - " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", - " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=3),\n", - " \"RO\": Float32Col(shape=(), dflt=0.0, pos=4),\n", - " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=5),\n", - " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=6),\n", - " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=7),\n", - " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=8),\n", - " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=9),\n", - " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=10)}\n", + " \"AVDEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", + " \"AVVEL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", + " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=3),\n", + " \"HRAD\": Float32Col(shape=(), dflt=0.0, pos=4),\n", + " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=5),\n", + " \"POTEV\": Float32Col(shape=(), dflt=0.0, pos=6),\n", + " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=7),\n", + " \"RO\": Float32Col(shape=(), dflt=0.0, pos=8),\n", + " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=9),\n", + " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=10),\n", + " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=11),\n", + " \"TWID\": Float32Col(shape=(), dflt=0.0, pos=12),\n", + " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=13),\n", + " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=14),\n", + " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=15)}\n", " byteorder := 'little'\n", - " chunkshape := (1365,)\n", + " chunkshape := (963,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRSUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SAREA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAU\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"USTAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOLEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVVEL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HRAD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRSUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SAREA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAU\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TWID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"USTAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOLEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R002/NUTRX (Group) ''\n", "/RESULTS/RCHRES_R002/NUTRX/table (Table(8784,)) ''\n", " description := {\n", @@ -3620,73 +3788,73 @@ " chunkshape := (240,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BALNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BODNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_DENNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_NITNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_PHYNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_TOTNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_ZOONO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BALTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BNRTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BODTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_NITTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_PHYTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_TOTTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_VOLNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_ZOOTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_NITNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_TOTNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BALPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BNRPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BODPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_PHYPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_TOTPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_ZOOPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BALNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BODNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_DENNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_NITNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_PHYNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_TOTNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_ZOONO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BALTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BNRTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BODTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_NITTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_PHYTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_TOTTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_VOLNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_ZOOTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_NITNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_TOTNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BALPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BNRPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BODPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_PHYPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_TOTPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_ZOOPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R002/OXRX (Group) ''\n", "/RESULTS/RCHRES_R002/OXRX/table (Table(8784,)) ''\n", " description := {\n", @@ -3717,29 +3885,29 @@ " chunkshape := (682,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IDOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BENDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_NITR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_REAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BENR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_SNK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IDOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BENDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_NITR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_REAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BENR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_SNK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R002/PHCARB (Group) ''\n", "/RESULTS/RCHRES_R002/PHCARB/table (Table(8784,)) ''\n", " description := {\n", @@ -3765,24 +3933,24 @@ " chunkshape := (862,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ITIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCO21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OTIC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BGRCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BRECO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_DECCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_INVCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_PHYCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_TOTCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_ZOOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ITIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCO21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OTIC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BGRCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BRECO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_DECCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_INVCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_PHYCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_TOTCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_ZOOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R002/PLANK (Group) ''\n", "/RESULTS/RCHRES_R002/PLANK/table (Table(8784,)) ''\n", " description := {\n", @@ -3861,77 +4029,77 @@ " chunkshape := (227,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYCLA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYTO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTBORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTPORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTZORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_SNKORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_TOTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_DTHPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_GROPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_SNKPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_TOTPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_ZOOPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_DTHZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_GROZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_TOTZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_DTHBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_GROBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTBORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTPORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTZORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_SNKORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_TOTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTBORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTPORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTZORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_SNKORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_TOTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POTBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYCLA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYTO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTBORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTPORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTZORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_SNKORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_TOTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_DTHPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_GROPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_SNKPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_TOTPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_ZOOPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_DTHZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_GROZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_TOTZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_DTHBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_GROBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTBORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTPORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTZORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_SNKORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_TOTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTBORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTPORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTZORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_SNKORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_TOTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R002/SEDTRN (Group) ''\n", "/RESULTS/RCHRES_R002/SEDTRN/table (Table(8784,)) ''\n", " description := {\n", @@ -3969,36 +4137,36 @@ " chunkshape := (528,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BEDDEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BEDDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R001/CONS (Group) ''\n", "/RESULTS/RCHRES_R001/CONS/table (Table(8784,)) ''\n", " description := {\n", @@ -4015,15 +4183,15 @@ " chunkshape := (1638,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_COADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_CON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ICON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_OCON1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_OCON2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS1_ROCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_COADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_CON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ICON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_OCON1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_OCON2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS1_ROCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R001/GQUAL (Group) ''\n", "/RESULTS/RCHRES_R001/GQUAL/table (Table(8784,)) ''\n", " description := {\n", @@ -4104,79 +4272,79 @@ " chunkshape := (221,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ADQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DDQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_DSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_GQADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_IDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ISQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ODQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ODQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_OSQAL11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_OSQAL12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_OSQAL21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_OSQAL22\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_OSQAL31\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_OSQAL32\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_PDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RODQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_ROSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RRQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_RSQAL9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_SQDEC7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TIQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TOSQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TOSQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL1_TROQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ADQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DDQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_DSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_GQADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_IDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ISQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ODQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ODQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_OSQAL11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_OSQAL12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_OSQAL21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_OSQAL22\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_OSQAL31\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_OSQAL32\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_PDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RODQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_ROSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RRQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_RSQAL9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_SQDEC7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TIQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TOSQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TOSQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL1_TROQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R001/HTRCH (Group) ''\n", "/RESULTS/RCHRES_R001/HTRCH/table (Table(8784,)) ''\n", " description := {\n", @@ -4199,58 +4367,68 @@ " chunkshape := (1024,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HTEXCH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OHEAT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OHEAT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QBED\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QEVAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QLONGW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QPREC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QSOLAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QTOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TW\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HTEXCH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OHEAT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OHEAT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QBED\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QEVAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QLONGW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QPREC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QSOLAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QTOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TW\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R001/HYDR (Group) ''\n", "/RESULTS/RCHRES_R001/HYDR/table (Table(8784,)) ''\n", " description := {\n", " \"index\": Int64Col(shape=(), dflt=0, pos=0),\n", - " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", - " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", - " \"O1\": Float32Col(shape=(), dflt=0.0, pos=3),\n", - " \"O2\": Float32Col(shape=(), dflt=0.0, pos=4),\n", - " \"OVOL1\": Float32Col(shape=(), dflt=0.0, pos=5),\n", - " \"OVOL2\": Float32Col(shape=(), dflt=0.0, pos=6),\n", - " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=7),\n", - " \"RO\": Float32Col(shape=(), dflt=0.0, pos=8),\n", - " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=9),\n", - " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=10),\n", - " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=11),\n", - " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=12),\n", - " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=13),\n", - " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=14)}\n", + " \"AVDEP\": Float32Col(shape=(), dflt=0.0, pos=1),\n", + " \"AVVEL\": Float32Col(shape=(), dflt=0.0, pos=2),\n", + " \"DEP\": Float32Col(shape=(), dflt=0.0, pos=3),\n", + " \"HRAD\": Float32Col(shape=(), dflt=0.0, pos=4),\n", + " \"IVOL\": Float32Col(shape=(), dflt=0.0, pos=5),\n", + " \"O1\": Float32Col(shape=(), dflt=0.0, pos=6),\n", + " \"O2\": Float32Col(shape=(), dflt=0.0, pos=7),\n", + " \"OVOL1\": Float32Col(shape=(), dflt=0.0, pos=8),\n", + " \"OVOL2\": Float32Col(shape=(), dflt=0.0, pos=9),\n", + " \"POTEV\": Float32Col(shape=(), dflt=0.0, pos=10),\n", + " \"PRSUPY\": Float32Col(shape=(), dflt=0.0, pos=11),\n", + " \"RO\": Float32Col(shape=(), dflt=0.0, pos=12),\n", + " \"ROVOL\": Float32Col(shape=(), dflt=0.0, pos=13),\n", + " \"SAREA\": Float32Col(shape=(), dflt=0.0, pos=14),\n", + " \"TAU\": Float32Col(shape=(), dflt=0.0, pos=15),\n", + " \"TWID\": Float32Col(shape=(), dflt=0.0, pos=16),\n", + " \"USTAR\": Float32Col(shape=(), dflt=0.0, pos=17),\n", + " \"VOL\": Float32Col(shape=(), dflt=0.0, pos=18),\n", + " \"VOLEV\": Float32Col(shape=(), dflt=0.0, pos=19)}\n", " byteorder := 'little'\n", - " chunkshape := (1024,)\n", + " chunkshape := (780,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"O1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"O2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OVOL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OVOL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRSUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SAREA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAU\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"USTAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOLEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVVEL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HRAD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"O1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"O2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OVOL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OVOL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRSUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SAREA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAU\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TWID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"USTAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOLEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R001/NUTRX (Group) ''\n", "/RESULTS/RCHRES_R001/NUTRX/table (Table(8784,)) ''\n", " description := {\n", @@ -4333,81 +4511,81 @@ " chunkshape := (215,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BALNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BODNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_DENNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_NITNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_PHYNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_TOTNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_ZOONO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BALTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BNRTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BODTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_NITTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_PHYTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_TOTTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_VOLNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_ZOOTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_NITNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_TOTNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BALPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BNRPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BODPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_PHYPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_TOTPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_ZOOPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_22\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_23\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_24\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BALNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BODNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_DENNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_NITNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_PHYNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_TOTNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_ZOONO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BALTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BNRTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BODTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_NITTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_PHYTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_TOTTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_VOLNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_ZOOTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_NITNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_TOTNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BALPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BNRPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BODPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_PHYPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_TOTPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_ZOOPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_22\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_23\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_24\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R001/OXRX (Group) ''\n", "/RESULTS/RCHRES_R001/OXRX/table (Table(8784,)) ''\n", " description := {\n", @@ -4442,33 +4620,33 @@ " chunkshape := (585,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IDOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF2_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF2_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF2_21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF2_22\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BENDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_NITR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_REAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BENR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_SNK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IDOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF2_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF2_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF2_21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF2_22\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BENDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_NITR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_REAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BENR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_SNK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R001/PHCARB (Group) ''\n", "/RESULTS/RCHRES_R001/PHCARB/table (Table(8784,)) ''\n", " description := {\n", @@ -4496,26 +4674,26 @@ " chunkshape := (780,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ITIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCO21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCO22\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OTIC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OTIC2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BGRCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BRECO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_DECCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_INVCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_PHYCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_TOTCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_ZOOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ITIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCO21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCO22\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OTIC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OTIC2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BGRCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BRECO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_DECCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_INVCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_PHYCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_TOTCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_ZOOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R001/PLANK (Group) ''\n", "/RESULTS/RCHRES_R001/PLANK/table (Table(8784,)) ''\n", " description := {\n", @@ -4614,97 +4792,97 @@ " chunkshape := (178,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYCLA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYTO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTBORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTPORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTZORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_SNKORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_TOTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_15\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_22\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_23\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_24\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_25\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_DTHPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_GROPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_SNKPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_TOTPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_ZOOPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_DTHZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_GROZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_TOTZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_DTHBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_GROBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTBORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTPORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTZORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_SNKORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_TOTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTBORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTPORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTZORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_SNKORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_TOTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POTBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_15\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_22\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_23\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_24\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_25\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYCLA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYTO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTBORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTPORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTZORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_SNKORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_TOTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_15\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_22\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_23\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_24\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_25\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_DTHPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_GROPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_SNKPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_TOTPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_ZOOPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_DTHZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_GROZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_TOTZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_DTHBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_GROBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTBORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTPORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTZORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_SNKORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_TOTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTBORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTPORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTZORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_SNKORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_TOTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_15\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_22\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_23\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_24\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_25\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/RCHRES_R001/SEDTRN (Group) ''\n", "/RESULTS/RCHRES_R001/SEDTRN/table (Table(8784,)) ''\n", " description := {\n", @@ -4750,44 +4928,44 @@ " chunkshape := (420,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BEDDEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED22\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED31\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED32\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BEDDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED22\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED31\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED32\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/PERLND_P001/PSTEMP (Group) ''\n", "/RESULTS/PERLND_P001/PSTEMP/table (Table(8784,)) ''\n", " description := {\n", @@ -4800,11 +4978,11 @@ " chunkshape := (2730,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LGTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ULTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LGTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ULTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/PERLND_P001/PWATER (Group) ''\n", "/RESULTS/PERLND_P001/PWATER/table (Table(8784,)) ''\n", " description := {\n", @@ -4849,43 +5027,43 @@ " chunkshape := (431,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BASET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEPE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEPS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GWVS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IGWI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INFFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INFIL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PERC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PERO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PERS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PETADJ\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TGWS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZS\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BASET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEPE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEPS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GWVS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IGWI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INFFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INFIL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PERC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PERO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PERS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PETADJ\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TGWS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZS\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/PERLND_P001/PWTGAS (Group) ''\n", "/RESULTS/PERLND_P001/PWTGAS/table (Table(8784,)) ''\n", " description := {\n", @@ -4915,28 +5093,28 @@ " chunkshape := (712,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/PERLND_P001/SNOW (Group) ''\n", "/RESULTS/PERLND_P001/SNOW/table (Table(8784,)) ''\n", " description := {\n", @@ -4967,29 +5145,29 @@ " chunkshape := (682,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALBEDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COVINX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEWTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DULL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MELT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NEGHTS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PAKTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PDEPTH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRAIN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RAINF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RDENPF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SKYCLR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOCOV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"WYIELD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"XLNMLT\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALBEDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COVINX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEWTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DULL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MELT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NEGHTS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PAKTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PDEPTH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRAIN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RAINF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RDENPF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SKYCLR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOCOV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"WYIELD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"XLNMLT\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/IMPLND_I001/IQUAL (Group) ''\n", "/RESULTS/IMPLND_I001/IQUAL/table (Table(8784,)) ''\n", " description := {\n", @@ -5008,17 +5186,17 @@ " chunkshape := (1365,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_IQADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_IQADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_IQADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_SOQC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_SOQO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_SOQOC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_SOQS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_SOQSP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_SOQUAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL1_SQO\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_IQADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_IQADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_IQADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_SOQC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_SOQO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_SOQOC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_SOQS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_SOQSP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_SOQUAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL1_SQO\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/IMPLND_I001/IWATER (Group) ''\n", "/RESULTS/IMPLND_I001/IWATER/table (Table(8784,)) ''\n", " description := {\n", @@ -5035,15 +5213,15 @@ " chunkshape := (1638,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IMPEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PETADJ\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RETS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURS\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IMPEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PETADJ\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RETS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURS\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/IMPLND_I001/IWTGAS (Group) ''\n", "/RESULTS/IMPLND_I001/IWTGAS/table (Table(8784,)) ''\n", " description := {\n", @@ -5058,13 +5236,13 @@ " chunkshape := (2048,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/IMPLND_I001/SNOW (Group) ''\n", "/RESULTS/IMPLND_I001/SNOW/table (Table(8784,)) ''\n", " description := {\n", @@ -5095,29 +5273,29 @@ " chunkshape := (682,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALBEDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COVINX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEWTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DULL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MELT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NEGHTS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PAKTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PDEPTH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRAIN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RAINF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RDENPF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SKYCLR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOCOV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"WYIELD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"XLNMLT\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALBEDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COVINX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEWTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DULL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MELT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NEGHTS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PAKTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PDEPTH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRAIN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RAINF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RDENPF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SKYCLR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOCOV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"WYIELD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"XLNMLT\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RESULTS/IMPLND_I001/SOLIDS (Group) ''\n", "/RESULTS/IMPLND_I001/SOLIDS/table (Table(8784,)) ''\n", " description := {\n", @@ -5128,9 +5306,10 @@ " chunkshape := (4096,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLDS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOSLD\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLDS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOSLD\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", + "/RCHRES/ACIDPH (Group) ''\n", "/RCHRES/CONS (Group) ''\n", "/RCHRES/GENERAL (Group) ''\n", "/RCHRES/GQUAL (Group) ''\n", @@ -5156,13 +5335,13 @@ " chunkshape := (1260,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"D\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"W\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RHO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAUCD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAUCS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"M\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"D\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"W\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RHO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAUCD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAUCS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"M\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/SEDTRN/FLAGS (Group) ''\n", "/RCHRES/SEDTRN/FLAGS/table (Table(5,)) ''\n", " description := {\n", @@ -5173,9 +5352,9 @@ " chunkshape := (4369,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SANDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SANDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/SEDTRN/PARAMETERS (Group) ''\n", "/RCHRES/SEDTRN/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", @@ -5188,27 +5367,27 @@ " \"RHO\": Float64Col(shape=(), dflt=0.0, pos=6),\n", " \"KSAND\": Float64Col(shape=(), dflt=0.0, pos=7),\n", " \"EXPSND\": Float64Col(shape=(), dflt=0.0, pos=8),\n", - " \"OPNID\": StringCol(itemsize=4, shape=(), dflt=b'', pos=9),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=9),\n", " \"LEN\": Float64Col(shape=(), dflt=0.0, pos=10),\n", " \"DELTH\": Float64Col(shape=(), dflt=0.0, pos=11),\n", " \"DB50\": Float64Col(shape=(), dflt=0.0, pos=12)}\n", " byteorder := 'little'\n", - " chunkshape := (682,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BEDWID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BEDWRN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"D\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"W\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RHO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KSAND\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"EXPSND\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DELTH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DB50\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (689,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BEDWID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BEDWRN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"D\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"W\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RHO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KSAND\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"EXPSND\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DELTH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DB50\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/SEDTRN/SAVE (Group) ''\n", "/RCHRES/SEDTRN/SAVE/table (Table(5,)) ''\n", " description := {\n", @@ -5250,40 +5429,40 @@ " chunkshape := (244,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BEDDEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEPSCR4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSED10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BEDDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEPSCR4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSED10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/SEDTRN/SILT (Group) ''\n", "/RCHRES/SEDTRN/SILT/table (Table(5,)) ''\n", " description := {\n", @@ -5298,13 +5477,13 @@ " chunkshape := (1260,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"D\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"W\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RHO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAUCD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAUCS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"M\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"D\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"W\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RHO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAUCD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAUCS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"M\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/SEDTRN/STATES (Group) ''\n", "/RCHRES/SEDTRN/STATES/table (Table(5,)) ''\n", " description := {\n", @@ -5316,20 +5495,20 @@ " \"SANDFR\": Float64Col(shape=(), dflt=0.0, pos=5),\n", " \"SILTFR\": Float64Col(shape=(), dflt=0.0, pos=6),\n", " \"CLAYFR\": Float64Col(shape=(), dflt=0.0, pos=7),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=8)}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=8)}\n", " byteorder := 'little'\n", - " chunkshape := (1074,)\n", + " chunkshape := (1040,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSED3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BEDDEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SANDFR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SILTFR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CLAYFR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSED3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BEDDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SANDFR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SILTFR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CLAYFR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/RQUAL/FLAGS (Group) ''\n", "/RCHRES/RQUAL/FLAGS/table (Table(5,)) ''\n", " description := {\n", @@ -5340,24 +5519,24 @@ " chunkshape := (5041,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENRFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENRFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/RQUAL/PARAMETERS (Group) ''\n", "/RCHRES/RQUAL/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", " \"index\": StringCol(itemsize=4, shape=(), dflt=b'', pos=0),\n", " \"SCRVEL\": Float64Col(shape=(), dflt=0.0, pos=1),\n", " \"SCRMUL\": Float64Col(shape=(), dflt=0.0, pos=2),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=3)}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=3)}\n", " byteorder := 'little'\n", - " chunkshape := (3120,)\n", + " chunkshape := (2849,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SCRVEL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SCRMUL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SCRVEL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SCRMUL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/PLANK/FLAGS (Group) ''\n", "/RCHRES/PLANK/FLAGS/table (Table(5,)) ''\n", " description := {\n", @@ -5371,7 +5550,7 @@ " \"NSFG\": Int64Col(shape=(), dflt=0, pos=7),\n", " \"ZFOOD\": Int64Col(shape=(), dflt=0, pos=8),\n", " \"BNPFG\": Int64Col(shape=(), dflt=0, pos=9),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=10),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=10),\n", " \"PLADFG1\": Int64Col(shape=(), dflt=0, pos=11),\n", " \"PLADFG2\": Int64Col(shape=(), dflt=0, pos=12),\n", " \"PLADFG3\": Int64Col(shape=(), dflt=0, pos=13),\n", @@ -5385,32 +5564,32 @@ " \"BFIXFG3\": Int64Col(shape=(), dflt=0, pos=21),\n", " \"BFIXFG4\": Int64Col(shape=(), dflt=0, pos=22)}\n", " byteorder := 'little'\n", - " chunkshape := (378,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZOOFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SDLTFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AMRFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DECFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NSFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZFOOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BNPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADFG1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADFG2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADFG3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADFG4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADFG5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADFG6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUMBAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BINVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BFIXFG1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BFIXFG2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BFIXFG3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BFIXFG4\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (374,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZOOFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SDLTFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AMRFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DECFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NSFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZFOOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BNPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADFG1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADFG2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADFG3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADFG4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADFG5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADFG6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUMBAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BINVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BFIXFG1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BFIXFG2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BFIXFG3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BFIXFG4\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/PLANK/PARAMETERS (Group) ''\n", "/RCHRES/PLANK/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", @@ -5433,7 +5612,7 @@ " \"ZRES20\": Float64Col(shape=(), dflt=0.0, pos=16),\n", " \"ZD\": Float64Col(shape=(), dflt=0.0, pos=17),\n", " \"OXZD\": Float64Col(shape=(), dflt=0.0, pos=18),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=19),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=19),\n", " \"CFSAEX\": Float64Col(shape=(), dflt=0.0, pos=20),\n", " \"CMMLT\": Float64Col(shape=(), dflt=0.0, pos=21),\n", " \"CMMN\": Float64Col(shape=(), dflt=0.0, pos=22),\n", @@ -5501,89 +5680,89 @@ " chunkshape := (100,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RATCLP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NONREF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LITSED\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALNPR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"EXTB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MALGR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PARADF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEED\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MXSTAY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OREF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CLALDH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYSET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"REFSET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MZOEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZFIL20\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZRES20\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXZD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFSAEX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMLT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMNP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TALGRH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TALGRL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TALGRM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALR20\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALDH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALDL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXALD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NALDH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PALDH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCZFIL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCZRES\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZEXDEL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZOMASS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MBAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFBALR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFBALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MINBAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CAMPR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FRAVL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NMAXFX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MBALGR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCBALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMNB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMPB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMD1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMD2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CSLIT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALR20\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCBALR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CSLOF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CSLOF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GRORES\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CREMVL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMBI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BINV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCGRAZ\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTRBQ1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTRBQ2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CKTRB1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CKTRB2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FRRIF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMMV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFCQ1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFCQ2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFCQ3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFVF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFVF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFVF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFVF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFDF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFDF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFDF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIFDF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NMINGR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PMINGR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CMINGR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LMINGR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NMINC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RATCLP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NONREF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LITSED\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALNPR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"EXTB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MALGR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PARADF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEED\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MXSTAY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OREF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CLALDH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYSET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"REFSET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MZOEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZFIL20\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZRES20\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXZD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFSAEX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMLT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMNP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TALGRH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TALGRL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TALGRM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALR20\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALDH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALDL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXALD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NALDH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PALDH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCZFIL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCZRES\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZEXDEL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZOMASS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MBAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFBALR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFBALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MINBAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CAMPR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FRAVL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NMAXFX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MBALGR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCBALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMNB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMPB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMD1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMD2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CSLIT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALR20\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCBALR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CSLOF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CSLOF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GRORES\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CREMVL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMBI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BINV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCGRAZ\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTRBQ1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTRBQ2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CKTRB1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CKTRB2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FRRIF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMMV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFCQ1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFCQ2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFCQ3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFVF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFVF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFVF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFVF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFDF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFDF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFDF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIFDF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NMINGR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PMINGR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CMINGR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LMINGR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NMINC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/PLANK/SAVE (Group) ''\n", "/RCHRES/PLANK/SAVE/table (Table(5,)) ''\n", " description := {\n", @@ -5679,94 +5858,94 @@ " chunkshape := (93,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYTO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBENAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYCLA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BALCLA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POTBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKIF_ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKIF_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF1_5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF2_15\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TPKCF2_15\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_SNKPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_ZOOPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_DTHPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_GROPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF5_TOTPHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_GROZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_DTHZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF6_TOTZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_GROBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF7_DTHBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_SNKORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTPORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTZORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_DTBORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF8_TOTORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_SNKORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTPORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTZORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_DTBORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF9_TOTORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_SNKORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTPORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTZORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_DTBORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKCF10_TOTORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYTO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBENAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYCLA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BALCLA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKIF_ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKIF_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF1_5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF2_15\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TPKCF2_15\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_SNKPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_ZOOPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_DTHPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_GROPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF5_TOTPHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_GROZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_DTHZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF6_TOTZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_GROBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF7_DTHBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_SNKORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTPORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTZORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_DTBORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF8_TOTORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_SNKORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTPORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTZORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_DTBORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF9_TOTORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_SNKORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTPORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTZORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_DTBORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKCF10_TOTORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/PLANK/STATES (Group) ''\n", "/RCHRES/PLANK/STATES/table (Table(5,)) ''\n", " description := {\n", @@ -5777,48 +5956,48 @@ " \"ORN\": Float64Col(shape=(), dflt=0.0, pos=4),\n", " \"ORP\": Float64Col(shape=(), dflt=0.0, pos=5),\n", " \"ORC\": Float64Col(shape=(), dflt=0.0, pos=6),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=7),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=7),\n", " \"BENAL1\": Float64Col(shape=(), dflt=0.0, pos=8),\n", " \"BENAL2\": Float64Col(shape=(), dflt=0.0, pos=9),\n", " \"BENAL3\": Float64Col(shape=(), dflt=0.0, pos=10),\n", " \"BENAL4\": Float64Col(shape=(), dflt=0.0, pos=11)}\n", " byteorder := 'little'\n", - " chunkshape := (771,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYTO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ORC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (753,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYTO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ORC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/PHCARB/PARAMETERS (Group) ''\n", "/RCHRES/PHCARB/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", " \"index\": StringCol(itemsize=4, shape=(), dflt=b'', pos=0),\n", " \"PHCNT\": Int64Col(shape=(), dflt=0, pos=1),\n", " \"ALKCON\": Int64Col(shape=(), dflt=0, pos=2),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=3),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=3),\n", " \"CFCINV\": Float64Col(shape=(), dflt=0.0, pos=4),\n", " \"BRCO21\": Float64Col(shape=(), dflt=0.0, pos=5),\n", " \"BRCO22\": Float64Col(shape=(), dflt=0.0, pos=6)}\n", " byteorder := 'little'\n", - " chunkshape := (1456,)\n", + " chunkshape := (1394,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCNT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALKCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFCINV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BRCO21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BRCO22\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCNT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALKCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFCINV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BRCO21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BRCO22\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/PHCARB/SAVE (Group) ''\n", "/RCHRES/PHCARB/SAVE/table (Table(5,)) ''\n", " description := {\n", @@ -5844,24 +6023,24 @@ " chunkshape := (468,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ITIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROTIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OTIC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCO21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_DECCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_PHYCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_ZOOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BGRCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_BRECO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_INVCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCF3_TOTCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ITIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROTIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OTIC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCO21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_DECCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_PHYCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_ZOOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BGRCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_BRECO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_INVCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCF3_TOTCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/PHCARB/STATES (Group) ''\n", "/RCHRES/PHCARB/STATES/table (Table(5,)) ''\n", " description := {\n", @@ -5869,16 +6048,16 @@ " \"TIC\": Float64Col(shape=(), dflt=0.0, pos=1),\n", " \"CO2\": Float64Col(shape=(), dflt=0.0, pos=2),\n", " \"PH\": Float64Col(shape=(), dflt=0.0, pos=3),\n", - " \"OPNID\": StringCol(itemsize=2, shape=(), dflt=b'', pos=4)}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=4)}\n", " byteorder := 'little'\n", - " chunkshape := (2184,)\n", + " chunkshape := (2114,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TIC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TIC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/OXRX/FLAGS (Group) ''\n", "/RCHRES/OXRX/FLAGS/table (Table(5,)) ''\n", " description := {\n", @@ -5889,9 +6068,9 @@ " chunkshape := (5041,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"REAMFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"REAMFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/OXRX/PARAMETERS (Group) ''\n", "/RCHRES/OXRX/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", @@ -5911,36 +6090,36 @@ " \"REAK\": Float64Col(shape=(), dflt=0.0, pos=13),\n", " \"EXPRED\": Float64Col(shape=(), dflt=0.0, pos=14),\n", " \"EXPREV\": Float64Col(shape=(), dflt=0.0, pos=15),\n", - " \"OPNID\": StringCol(itemsize=5, shape=(), dflt=b'', pos=16),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=16),\n", " \"ELEV\": Float64Col(shape=(), dflt=0.0, pos=17),\n", " \"REAKT\": Float64Col(shape=(), dflt=0.0, pos=18),\n", " \"LEN\": Float64Col(shape=(), dflt=0.0, pos=19),\n", " \"DELTH\": Float64Col(shape=(), dflt=0.0, pos=20)}\n", " byteorder := 'little'\n", - " chunkshape := (407,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KBOD20\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KODSET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SUPSAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BENOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCBEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"EXPOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BRBOD1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BRBOD2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"EXPREL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFOREA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCGINV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"REAK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"EXPRED\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"EXPREV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ELEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"REAKT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DELTH\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (412,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KBOD20\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KODSET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SUPSAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BENOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCBEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"EXPOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BRBOD1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BRBOD2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"EXPREL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFOREA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCGINV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"REAK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"EXPRED\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"EXPREV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ELEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"REAKT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DELTH\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/OXRX/SAVE (Group) ''\n", "/RCHRES/OXRX/SAVE/table (Table(5,)) ''\n", " description := {\n", @@ -5973,31 +6152,31 @@ " chunkshape := (334,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IDOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IBOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF2_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF2_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_REAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BENDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_NITR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF3_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BENR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_SNK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_PHYT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_ZOO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_BALG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXCF4_TOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IDOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IBOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF2_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF2_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_REAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BENDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_NITR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF3_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BENR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_SNK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_PHYT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_ZOO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_BALG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXCF4_TOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/OXRX/STATES (Group) ''\n", "/RCHRES/OXRX/STATES/table (Table(5,)) ''\n", " description := {\n", @@ -6005,16 +6184,16 @@ " \"DOX\": Float64Col(shape=(), dflt=0.0, pos=1),\n", " \"BOD\": Float64Col(shape=(), dflt=0.0, pos=2),\n", " \"SATDO\": Float64Col(shape=(), dflt=0.0, pos=3),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=4)}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=4)}\n", " byteorder := 'little'\n", - " chunkshape := (2259,)\n", + " chunkshape := (2114,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BOD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SATDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BOD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SATDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/NUTRX/FLAGS (Group) ''\n", "/RCHRES/NUTRX/FLAGS/table (Table(5,)) ''\n", " description := {\n", @@ -6027,7 +6206,7 @@ " \"ADNHFG\": Int64Col(shape=(), dflt=0, pos=6),\n", " \"ADPOFG\": Int64Col(shape=(), dflt=0, pos=7),\n", " \"PHFLAG\": Int64Col(shape=(), dflt=0, pos=8),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=9),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=9),\n", " \"NUADFG1\": Int64Col(shape=(), dflt=0, pos=10),\n", " \"NUADFG2\": Int64Col(shape=(), dflt=0, pos=11),\n", " \"NUADFG3\": Int64Col(shape=(), dflt=0, pos=12),\n", @@ -6035,25 +6214,25 @@ " \"NUADFG5\": Int64Col(shape=(), dflt=0, pos=14),\n", " \"NUADFG6\": Int64Col(shape=(), dflt=0, pos=15)}\n", " byteorder := 'little'\n", - " chunkshape := (560,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH3FG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO2FG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PO4FG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AMVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DENFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADNHFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPOFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHFLAG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADFG1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADFG2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADFG3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADFG4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADFG5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADFG6\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (550,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH3FG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO2FG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PO4FG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AMVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DENFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADNHFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPOFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHFLAG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADFG1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADFG2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADFG3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADFG4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADFG5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADFG6\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/NUTRX/PARAMETERS (Group) ''\n", "/RCHRES/NUTRX/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", @@ -6083,46 +6262,46 @@ " \"ADPOPM1\": Float64Col(shape=(), dflt=0.0, pos=23),\n", " \"ADPOPM2\": Float64Col(shape=(), dflt=0.0, pos=24),\n", " \"ADPOPM3\": Float64Col(shape=(), dflt=0.0, pos=25),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=26),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=26),\n", " \"CVBO\": Float64Col(shape=(), dflt=0.0, pos=27),\n", " \"CVBPC\": Float64Col(shape=(), dflt=0.0, pos=28),\n", " \"CVBPN\": Float64Col(shape=(), dflt=0.0, pos=29),\n", " \"BPCNTC\": Float64Col(shape=(), dflt=0.0, pos=30)}\n", " byteorder := 'little'\n", - " chunkshape := (276,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BRNIT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BRNIT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BRPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BRPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ANAER\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KTAM20\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KNO220\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCNIT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KNO320\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TCDEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DENOXT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"EXPNVG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"EXPNVL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BNH41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BNH42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BNH43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BPO43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADNHPM1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADNHPM2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADNHPM3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPOPM1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPOPM2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPOPM3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CVBO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CVBPC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CVBPN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BPCNTC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (274,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BRNIT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BRNIT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BRPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BRPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ANAER\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KTAM20\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KNO220\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCNIT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KNO320\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TCDEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DENOXT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"EXPNVG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"EXPNVL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BNH41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BNH42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BNH43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BPO43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADNHPM1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADNHPM2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADNHPM3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPOPM1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPOPM2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPOPM3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CVBO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CVBPC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CVBPN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BPCNTC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/NUTRX/SAVE (Group) ''\n", "/RCHRES/NUTRX/SAVE/table (Table(5,)) ''\n", " description := {\n", @@ -6221,97 +6400,97 @@ " chunkshape := (90,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNH41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNH42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNH43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SPO43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISNH43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISPO43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUIF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF2_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF2_21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF2_31\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF2_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF2_22\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF2_32\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TNUCF1_4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF9_14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSNH4_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSNH4_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSNH4_13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSNH4_14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSPO4_11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSPO4_12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSPO4_13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSPO4_14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_NITNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_DENNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BODNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_TOTNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_PHYNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_ZOONO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF4_BALNO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_NITTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_VOLNH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BNRTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BODTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_TOTTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_PHYTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_ZOOTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF5_BALTAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_NITNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF6_TOTNO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BNRPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BODPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_TOTPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_PHYPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_ZOOPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUCF7_BALPO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADDR3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADWT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUADEP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNH41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNH42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNH43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SPO43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISNH43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISPO43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUIF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF2_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF2_21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF2_31\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF2_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF2_22\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF2_32\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TNUCF1_4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF9_14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSNH4_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSNH4_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSNH4_13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSNH4_14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSPO4_11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSPO4_12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSPO4_13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSPO4_14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_NITNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_DENNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BODNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_TOTNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_PHYNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_ZOONO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF4_BALNO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_NITTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_VOLNH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BNRTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BODTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_TOTTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_PHYTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_ZOOTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF5_BALTAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_NITNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF6_TOTNO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BNRPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BODPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_TOTPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_PHYPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_ZOOPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUCF7_BALPO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADDR3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADWT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUADEP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/NUTRX/STATES (Group) ''\n", "/RCHRES/NUTRX/STATES/table (Table(5,)) ''\n", " description := {\n", @@ -6327,24 +6506,24 @@ " \"SPO41\": Float64Col(shape=(), dflt=0.0, pos=9),\n", " \"SPO42\": Float64Col(shape=(), dflt=0.0, pos=10),\n", " \"SPO43\": Float64Col(shape=(), dflt=0.0, pos=11),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=12)}\n", - " byteorder := 'little'\n", - " chunkshape := (704,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PO4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHVAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNH41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNH42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNH43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SPO41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SPO42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SPO43\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=12)}\n", + " byteorder := 'little'\n", + " chunkshape := (689,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PO4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHVAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNH41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNH42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNH43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SPO41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SPO42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SPO43\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/HYDR/PARAMETERS (Group) ''\n", "/RCHRES/HYDR/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", @@ -6379,32 +6558,32 @@ " \"LKFG\": Int64Col(shape=(), dflt=0, pos=28),\n", " \"IREXIT\": Int64Col(shape=(), dflt=0, pos=29),\n", " \"IRMINV\": Float64Col(shape=(), dflt=0.0, pos=30),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=31),\n", - " \"CPREC\": StringCol(itemsize=1, shape=(), dflt=b'', pos=32),\n", - " \"CEVAP\": StringCol(itemsize=1, shape=(), dflt=b'', pos=33),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=31),\n", + " \"CPREC\": StringCol(itemsize=3, shape=(), dflt=b'', pos=32),\n", + " \"CEVAP\": StringCol(itemsize=3, shape=(), dflt=b'', pos=33),\n", " \"CFVOL1\": Float64Col(shape=(), dflt=0.0, pos=34),\n", " \"CFVOL2\": Float64Col(shape=(), dflt=0.0, pos=35),\n", " \"CFVOL3\": Float64Col(shape=(), dflt=0.0, pos=36),\n", - " \"CFVOL4\": StringCol(itemsize=1, shape=(), dflt=b'', pos=37),\n", - " \"CFVOL5\": StringCol(itemsize=1, shape=(), dflt=b'', pos=38),\n", + " \"CFVOL4\": StringCol(itemsize=3, shape=(), dflt=b'', pos=37),\n", + " \"CFVOL5\": StringCol(itemsize=3, shape=(), dflt=b'', pos=38),\n", " \"NOCGT\": Int64Col(shape=(), dflt=0, pos=39),\n", - " \"CTAG1\": StringCol(itemsize=1, shape=(), dflt=b'', pos=40),\n", + " \"CTAG1\": StringCol(itemsize=3, shape=(), dflt=b'', pos=40),\n", " \"CPREC1\": Float64Col(shape=(), dflt=0.0, pos=41),\n", - " \"CTAG2\": StringCol(itemsize=1, shape=(), dflt=b'', pos=42),\n", + " \"CTAG2\": StringCol(itemsize=3, shape=(), dflt=b'', pos=42),\n", " \"CPREC2\": Float64Col(shape=(), dflt=0.0, pos=43),\n", - " \"CTAG3\": StringCol(itemsize=1, shape=(), dflt=b'', pos=44),\n", + " \"CTAG3\": StringCol(itemsize=3, shape=(), dflt=b'', pos=44),\n", " \"CPREC3\": Float64Col(shape=(), dflt=0.0, pos=45),\n", - " \"CTAG4\": StringCol(itemsize=1, shape=(), dflt=b'', pos=46),\n", + " \"CTAG4\": StringCol(itemsize=3, shape=(), dflt=b'', pos=46),\n", " \"CPREC4\": Float64Col(shape=(), dflt=0.0, pos=47),\n", - " \"CTAG5\": StringCol(itemsize=1, shape=(), dflt=b'', pos=48),\n", + " \"CTAG5\": StringCol(itemsize=3, shape=(), dflt=b'', pos=48),\n", " \"CPREC5\": Float64Col(shape=(), dflt=0.0, pos=49),\n", - " \"CTAG6\": StringCol(itemsize=1, shape=(), dflt=b'', pos=50),\n", + " \"CTAG6\": StringCol(itemsize=3, shape=(), dflt=b'', pos=50),\n", " \"CPREC6\": Float64Col(shape=(), dflt=0.0, pos=51),\n", - " \"CTAG7\": StringCol(itemsize=1, shape=(), dflt=b'', pos=52),\n", + " \"CTAG7\": StringCol(itemsize=3, shape=(), dflt=b'', pos=52),\n", " \"CPREC7\": Float64Col(shape=(), dflt=0.0, pos=53),\n", - " \"CPRI1\": StringCol(itemsize=1, shape=(), dflt=b'', pos=54),\n", + " \"CPRI1\": StringCol(itemsize=3, shape=(), dflt=b'', pos=54),\n", " \"CEVAP1\": Float64Col(shape=(), dflt=0.0, pos=55),\n", - " \"CPRI2\": StringCol(itemsize=1, shape=(), dflt=b'', pos=56),\n", + " \"CPRI2\": StringCol(itemsize=3, shape=(), dflt=b'', pos=56),\n", " \"CEVAP2\": Float64Col(shape=(), dflt=0.0, pos=57),\n", " \"CPRI3\": Float64Col(shape=(), dflt=0.0, pos=58),\n", " \"CEVAP3\": Float64Col(shape=(), dflt=0.0, pos=59),\n", @@ -6420,80 +6599,80 @@ " \"CDEM1\": Float64Col(shape=(), dflt=0.0, pos=69),\n", " \"CDEM2\": Float64Col(shape=(), dflt=0.0, pos=70)}\n", " byteorder := 'little'\n", - " chunkshape := (141,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VCONFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AUX1FG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AUX2FG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AUX3FG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODFVF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODFVF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODFVF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODFVF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODFVF5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODGTF1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODGTF2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODGTF3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODGTF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODGTF5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FUNCT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FUNCT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FUNCT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FUNCT4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FUNCT5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FTBW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FTBUCI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LEN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DELTH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"STCOR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DB50\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NEXITS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LKFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IREXIT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRMINV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPREC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEVAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFVOL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFVOL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFVOL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFVOL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFVOL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NOCGT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPREC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPREC2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPREC3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPREC4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPREC5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPREC6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPREC7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPRI1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEVAP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPRI2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEVAP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPRI3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEVAP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPRI4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEVAP4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CPRI5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEVAP5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEXIT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEXIT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEXIT3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEXIT4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CDEM1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CDEM2\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (133,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VCONFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AUX1FG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AUX2FG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AUX3FG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODFVF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODFVF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODFVF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODFVF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODFVF5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODGTF1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODGTF2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODGTF3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODGTF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODGTF5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FUNCT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FUNCT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FUNCT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FUNCT4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FUNCT5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FTBW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FTBUCI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LEN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DELTH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"STCOR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DB50\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NEXITS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LKFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IREXIT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRMINV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPREC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEVAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFVOL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFVOL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFVOL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFVOL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFVOL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NOCGT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPREC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPREC2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPREC3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPREC4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPREC5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPREC6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPREC7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPRI1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEVAP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPRI2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEVAP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPRI3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEVAP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPRI4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEVAP4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CPRI5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEVAP5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEXIT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEXIT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEXIT3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEXIT4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CDEM1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CDEM2\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/HYDR/SAVE (Group) ''\n", "/RCHRES/HYDR/SAVE/table (Table(5,)) ''\n", " description := {\n", @@ -6518,33 +6697,47 @@ " \"TAU\": Int64Col(shape=(), dflt=0, pos=18),\n", " \"USTAR\": Int64Col(shape=(), dflt=0, pos=19),\n", " \"VOL\": Int64Col(shape=(), dflt=0, pos=20),\n", - " \"VOLEV\": Int64Col(shape=(), dflt=0, pos=21)}\n", - " byteorder := 'little'\n", - " chunkshape := (381,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CDFVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CIVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CRO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CROVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"O\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRSUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIRDEM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RIRSHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SAREA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAU\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"USTAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOLEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"VOLEV\": Int64Col(shape=(), dflt=0, pos=21),\n", + " \"STAGE\": Int64Col(shape=(), dflt=0, pos=22),\n", + " \"AVDEP\": Int64Col(shape=(), dflt=0, pos=23),\n", + " \"TWID\": Int64Col(shape=(), dflt=0, pos=24),\n", + " \"HRAD\": Int64Col(shape=(), dflt=0, pos=25),\n", + " \"AVVEL\": Int64Col(shape=(), dflt=0, pos=26),\n", + " \"AVSECT\": Int64Col(shape=(), dflt=0, pos=27),\n", + " \"POTEV\": Int64Col(shape=(), dflt=0, pos=28)}\n", + " byteorder := 'little'\n", + " chunkshape := (287,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CDFVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CIVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CRO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CROVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"O\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRSUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIRDEM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RIRSHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SAREA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAU\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"USTAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOLEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"STAGE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TWID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HRAD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVVEL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AVSECT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/HYDR/STATES (Group) ''\n", "/RCHRES/HYDR/STATES/table (Table(5,)) ''\n", " description := {\n", @@ -6561,53 +6754,53 @@ " \"OUTDG3\": Float64Col(shape=(), dflt=0.0, pos=10),\n", " \"OUTDG4\": Float64Col(shape=(), dflt=0.0, pos=11),\n", " \"OUTDG5\": Float64Col(shape=(), dflt=0.0, pos=12),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=13),\n", - " \"CTAG1\": StringCol(itemsize=1, shape=(), dflt=b'', pos=14),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=13),\n", + " \"CTAG1\": StringCol(itemsize=3, shape=(), dflt=b'', pos=14),\n", " \"CFRAC1\": Float64Col(shape=(), dflt=0.0, pos=15),\n", - " \"CTAG2\": StringCol(itemsize=1, shape=(), dflt=b'', pos=16),\n", + " \"CTAG2\": StringCol(itemsize=3, shape=(), dflt=b'', pos=16),\n", " \"CFRAC2\": Float64Col(shape=(), dflt=0.0, pos=17),\n", - " \"CTAG3\": StringCol(itemsize=1, shape=(), dflt=b'', pos=18),\n", + " \"CTAG3\": StringCol(itemsize=3, shape=(), dflt=b'', pos=18),\n", " \"CFRAC3\": Float64Col(shape=(), dflt=0.0, pos=19),\n", - " \"CTAG4\": StringCol(itemsize=1, shape=(), dflt=b'', pos=20),\n", + " \"CTAG4\": StringCol(itemsize=3, shape=(), dflt=b'', pos=20),\n", " \"CFRAC4\": Float64Col(shape=(), dflt=0.0, pos=21),\n", - " \"CTAG5\": StringCol(itemsize=1, shape=(), dflt=b'', pos=22),\n", + " \"CTAG5\": StringCol(itemsize=3, shape=(), dflt=b'', pos=22),\n", " \"CFRAC5\": Float64Col(shape=(), dflt=0.0, pos=23),\n", - " \"CTAG6\": StringCol(itemsize=1, shape=(), dflt=b'', pos=24),\n", + " \"CTAG6\": StringCol(itemsize=3, shape=(), dflt=b'', pos=24),\n", " \"CFRAC6\": Float64Col(shape=(), dflt=0.0, pos=25),\n", - " \"CTAG7\": StringCol(itemsize=1, shape=(), dflt=b'', pos=26),\n", + " \"CTAG7\": StringCol(itemsize=3, shape=(), dflt=b'', pos=26),\n", " \"CFRAC7\": Float64Col(shape=(), dflt=0.0, pos=27)}\n", " byteorder := 'little'\n", - " chunkshape := (399,)\n", + " chunkshape := (364,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COLIN1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COLIN2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COLIN3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COLIN4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COLIN5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OUTDG1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OUTDG2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OUTDG3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OUTDG4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OUTDG5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFRAC1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFRAC2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFRAC3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFRAC4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFRAC5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFRAC6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CTAG7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFRAC7\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COLIN1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COLIN2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COLIN3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COLIN4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COLIN5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OUTDG1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OUTDG2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OUTDG3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OUTDG4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OUTDG5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFRAC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFRAC2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFRAC3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFRAC4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFRAC5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFRAC6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CTAG7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFRAC7\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/HTRCH/PARAMETERS (Group) ''\n", "/RCHRES/HTRCH/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", @@ -6622,7 +6815,7 @@ " \"TGRND\": Float64Col(shape=(), dflt=0.0, pos=8),\n", " \"KMUD\": Float64Col(shape=(), dflt=0.0, pos=9),\n", " \"KGRND\": Float64Col(shape=(), dflt=0.0, pos=10),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=11),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=11),\n", " \"SHADFG\": Float64Col(shape=(), dflt=0.0, pos=12),\n", " \"TOPFL\": Float64Col(shape=(), dflt=0.0, pos=13),\n", " \"VEGFL\": Float64Col(shape=(), dflt=0.0, pos=14),\n", @@ -6631,28 +6824,28 @@ " \"LONDEG\": Float64Col(shape=(), dflt=0.0, pos=17),\n", " \"LONSTD\": Float64Col(shape=(), dflt=0.0, pos=18)}\n", " byteorder := 'little'\n", - " chunkshape := (464,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ELEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ELDAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFSAEX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KATRAD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCOND\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KEVAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MUDDEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TGRND\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KMUD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KGRND\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SHADFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TOPFL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VEGFL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NSSP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LATDEG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LONDEG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LONSTD\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (458,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ELEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ELDAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFSAEX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KATRAD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCOND\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KEVAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MUDDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TGRND\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KMUD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KGRND\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SHADFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TOPFL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VEGFL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NSSP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LATDEG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LONDEG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LONSTD\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/HTRCH/SAVE (Group) ''\n", "/RCHRES/HTRCH/SAVE/table (Table(5,)) ''\n", " description := {\n", @@ -6676,37 +6869,37 @@ " chunkshape := (528,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HTCF4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HTEXCH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROHEAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SHDFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QTOTAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QSOLAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QLONGW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QEVAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QPREC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QBED\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HTCF4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HTEXCH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROHEAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SHDFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QTOTAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QSOLAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QLONGW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QEVAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QPREC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QBED\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/HTRCH/STATES (Group) ''\n", "/RCHRES/HTRCH/STATES/table (Table(5,)) ''\n", " description := {\n", " \"index\": StringCol(itemsize=4, shape=(), dflt=b'', pos=0),\n", " \"TW\": Float64Col(shape=(), dflt=0.0, pos=1),\n", " \"AIRTMP\": Float64Col(shape=(), dflt=0.0, pos=2),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=3)}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=3)}\n", " byteorder := 'little'\n", - " chunkshape := (3120,)\n", + " chunkshape := (2849,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GQUAL/EXTENDEDS (Group) ''\n", "/RCHRES/GQUAL/GQUAL1 (Group) ''\n", "/RCHRES/GQUAL/GQUAL1/table (Table(5,)) ''\n", @@ -6768,59 +6961,59 @@ " chunkshape := (159,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONCID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QTYID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QALFG1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QALFG2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QALFG3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QALFG4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QALFG5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QALFG6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QALFG7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"THHYD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"THOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CFGAS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BIOCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"THBIO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BIO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FSTDEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"THFST\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADDCP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADDCP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADDCP3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADDCP4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM21\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM31\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM41\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM51\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM61\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM22\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM32\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM42\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM52\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADPM62\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQAL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQAL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQAL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQAL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQAL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQAL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TWAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHVAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CLD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SDCNC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHY\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONCID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QTYID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QALFG1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QALFG2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QALFG3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QALFG4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QALFG5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QALFG6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QALFG7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"THHYD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"THOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CFGAS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BIOCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"THBIO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BIO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FSTDEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"THFST\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADDCP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADDCP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADDCP3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADDCP4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM21\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM31\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM41\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM51\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM61\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM22\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM32\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM42\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM52\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADPM62\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQAL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQAL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQAL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQAL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQAL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQAL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TWAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHVAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CLD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SDCNC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHY\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GQUAL/PARAMETERS (Group) ''\n", "/RCHRES/GQUAL/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", @@ -6833,21 +7026,21 @@ " \"SDFG\": Int64Col(shape=(), dflt=0, pos=6),\n", " \"PHYTFG\": Int64Col(shape=(), dflt=0, pos=7),\n", " \"LAT\": Int64Col(shape=(), dflt=0, pos=8),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=9)}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=9)}\n", " byteorder := 'little'\n", - " chunkshape := (949,)\n", + " chunkshape := (923,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NGQUAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TEMPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHFLAG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROXFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CLDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHYTFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NGQUAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TEMPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHFLAG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROXFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CLDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHYTFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GQUAL/SAVE (Group) ''\n", "/RCHRES/GQUAL/SAVE/table (Table(5,)) ''\n", " description := {\n", @@ -6878,29 +7071,29 @@ " chunkshape := (364,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DSQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ISQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ODQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OSQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RDQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RODQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROSQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RRQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RSQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQDEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TIQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TOSQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TROQAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DSQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ISQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ODQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OSQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RDQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RODQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROSQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RRQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RSQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQDEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TIQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TOSQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TROQAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GQUAL/EXTENDEDS/ALPH (Group) ''\n", "/RCHRES/GQUAL/EXTENDEDS/ALPH/table (Table(5,)) ''\n", " description := {\n", @@ -6927,25 +7120,25 @@ " chunkshape := (442,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH0\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH15\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH16\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALPH17\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH0\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH15\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH16\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALPH17\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GQUAL/EXTENDEDS/DEL (Group) ''\n", "/RCHRES/GQUAL/EXTENDEDS/DEL/table (Table(5,)) ''\n", " description := {\n", @@ -6972,25 +7165,25 @@ " chunkshape := (442,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL0\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL15\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL16\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEL17\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL0\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL15\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL16\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEL17\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GQUAL/EXTENDEDS/GAMM (Group) ''\n", "/RCHRES/GQUAL/EXTENDEDS/GAMM/table (Table(5,)) ''\n", " description := {\n", @@ -7017,25 +7210,25 @@ " chunkshape := (442,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM0\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM15\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM16\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GAMM17\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM0\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM15\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM16\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GAMM17\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GQUAL/EXTENDEDS/KCLD (Group) ''\n", "/RCHRES/GQUAL/EXTENDEDS/KCLD/table (Table(5,)) ''\n", " description := {\n", @@ -7062,25 +7255,25 @@ " chunkshape := (442,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD0\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD15\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD16\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KCLD17\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD0\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD15\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD16\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KCLD17\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GQUAL/EXTENDEDS/PHOTPM (Group) ''\n", "/RCHRES/GQUAL/EXTENDEDS/PHOTPM/table (Table(5,)) ''\n", " description := {\n", @@ -7109,27 +7302,27 @@ " chunkshape := (399,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM0\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM4\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM5\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM6\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM7\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM8\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM9\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM10\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM11\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM12\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM13\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM14\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM15\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM16\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM17\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM18\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOTPM19\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM0\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM7\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM8\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM9\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM10\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM11\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM12\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM13\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM14\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM15\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM16\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM17\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM18\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOTPM19\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GENERAL/ACTIVITY (Group) ''\n", "/RCHRES/GENERAL/ACTIVITY/table (Table(5,)) ''\n", " description := {\n", @@ -7144,41 +7337,43 @@ " \"NUTRX\": Int64Col(shape=(), dflt=0, pos=8),\n", " \"PLANK\": Int64Col(shape=(), dflt=0, pos=9),\n", " \"PHCARB\": Int64Col(shape=(), dflt=0, pos=10),\n", - " \"HYDRFG\": Int64Col(shape=(), dflt=0, pos=11),\n", - " \"ADFG\": Int64Col(shape=(), dflt=0, pos=12),\n", - " \"CONSFG\": Int64Col(shape=(), dflt=0, pos=13),\n", - " \"HTFG\": Int64Col(shape=(), dflt=0, pos=14),\n", - " \"SEDFG\": Int64Col(shape=(), dflt=0, pos=15),\n", - " \"GQALFG\": Int64Col(shape=(), dflt=0, pos=16),\n", - " \"OXFG\": Int64Col(shape=(), dflt=0, pos=17),\n", - " \"NUTFG\": Int64Col(shape=(), dflt=0, pos=18),\n", - " \"PLKFG\": Int64Col(shape=(), dflt=0, pos=19),\n", - " \"PHFG\": Int64Col(shape=(), dflt=0, pos=20)}\n", - " byteorder := 'little'\n", - " chunkshape := (399,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HYDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADCALC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HTRCH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEDTRN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQUAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXRX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUTRX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLANK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHCARB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HYDRFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONSFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HTFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GQALFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OXFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NUTFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PLKFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=11),\n", + " \"HYDRFG\": Int64Col(shape=(), dflt=0, pos=12),\n", + " \"ADFG\": Int64Col(shape=(), dflt=0, pos=13),\n", + " \"CONSFG\": Int64Col(shape=(), dflt=0, pos=14),\n", + " \"HTFG\": Int64Col(shape=(), dflt=0, pos=15),\n", + " \"SEDFG\": Int64Col(shape=(), dflt=0, pos=16),\n", + " \"GQALFG\": Int64Col(shape=(), dflt=0, pos=17),\n", + " \"OXFG\": Int64Col(shape=(), dflt=0, pos=18),\n", + " \"NUTFG\": Int64Col(shape=(), dflt=0, pos=19),\n", + " \"PLKFG\": Int64Col(shape=(), dflt=0, pos=20),\n", + " \"PHFG\": Int64Col(shape=(), dflt=0, pos=21)}\n", + " byteorder := 'little'\n", + " chunkshape := (392,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HYDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADCALC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HTRCH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEDTRN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQUAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXRX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUTRX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLANK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHCARB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HYDRFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONSFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HTFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GQALFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OXFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NUTFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PLKFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/GENERAL/INFO (Group) ''\n", "/RCHRES/GENERAL/INFO/table (Table(5,)) ''\n", " description := {\n", @@ -7190,24 +7385,24 @@ " \"PUNITM\": Int64Col(shape=(), dflt=0, pos=5),\n", " \"BUNITE\": Int64Col(shape=(), dflt=0, pos=6),\n", " \"BUNITM\": Int64Col(shape=(), dflt=0, pos=7),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=8),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=8),\n", " \"NEXITS\": Int64Col(shape=(), dflt=0, pos=9),\n", " \"LKFG\": Int64Col(shape=(), dflt=0, pos=10)}\n", " byteorder := 'little'\n", - " chunkshape := (753,)\n", + " chunkshape := (736,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RCHID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IUNITS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OUNITS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PUNITE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PUNITM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BUNITE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BUNITM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NEXITS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LKFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RCHID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IUNITS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OUNITS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PUNITE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PUNITM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BUNITE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BUNITM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NEXITS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LKFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/CONS/CONS1 (Group) ''\n", "/RCHRES/CONS/CONS1/table (Table(5,)) ''\n", " description := {\n", @@ -7221,12 +7416,12 @@ " chunkshape := (1820,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONCID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CONV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QTYID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONCID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CONV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QTYID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/CONS/PARAMETERS (Group) ''\n", "/RCHRES/CONS/PARAMETERS/table (Table(5,)) ''\n", " description := {\n", @@ -7236,8 +7431,8 @@ " chunkshape := (5461,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NCONS\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NCONS\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/RCHRES/CONS/SAVE (Group) ''\n", "/RCHRES/CONS/SAVE/table (Table(5,)) ''\n", " description := {\n", @@ -7253,14 +7448,39 @@ " chunkshape := (1092,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ROCON\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ROCON\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", + "/RCHRES/ACIDPH/STATES (Group) ''\n", + "/RCHRES/ACIDPH/STATES/table (Table(5,)) ''\n", + " description := {\n", + " \"index\": StringCol(itemsize=4, shape=(), dflt=b'', pos=0),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=1),\n", + " \"ACCONC1\": Float64Col(shape=(), dflt=0.0, pos=2),\n", + " \"ACCONC2\": Float64Col(shape=(), dflt=0.0, pos=3),\n", + " \"ACCONC3\": Float64Col(shape=(), dflt=0.0, pos=4),\n", + " \"ACCONC4\": Float64Col(shape=(), dflt=0.0, pos=5),\n", + " \"ACCONC5\": Float64Col(shape=(), dflt=0.0, pos=6),\n", + " \"ACCONC6\": Float64Col(shape=(), dflt=0.0, pos=7),\n", + " \"ACCONC7\": Float64Col(shape=(), dflt=0.0, pos=8)}\n", + " byteorder := 'little'\n", + " chunkshape := (1040,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACCONC1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACCONC2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACCONC3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACCONC4\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACCONC5\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACCONC6\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACCONC7\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/GENERAL (Group) ''\n", "/PERLND/PSTEMP (Group) ''\n", "/PERLND/PWATER (Group) ''\n", @@ -7272,17 +7492,17 @@ " \"index\": StringCol(itemsize=4, shape=(), dflt=b'', pos=0),\n", " \"ICEFG\": Int64Col(shape=(), dflt=0, pos=1),\n", " \"SNOPFG\": Int64Col(shape=(), dflt=0, pos=2),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=3),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=3),\n", " \"VKMFG\": Int64Col(shape=(), dflt=0, pos=4)}\n", " byteorder := 'little'\n", - " chunkshape := (2259,)\n", + " chunkshape := (2114,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICEFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VKMFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICEFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VKMFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/SNOW/PARAMETERS (Group) ''\n", "/PERLND/SNOW/PARAMETERS/table (Table(1,)) ''\n", " description := {\n", @@ -7300,26 +7520,26 @@ " \"CCFACT\": Float64Col(shape=(), dflt=0.0, pos=11),\n", " \"MWATER\": Float64Col(shape=(), dflt=0.0, pos=12),\n", " \"MGMELT\": Float64Col(shape=(), dflt=0.0, pos=13),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=14)}\n", - " byteorder := 'little'\n", - " chunkshape := (601,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MELEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SHADE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWCF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COVIND\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KMELT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBASE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RDCSN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSNOW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOEVP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CCFACT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MWATER\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MGMELT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=14)}\n", + " byteorder := 'little'\n", + " chunkshape := (590,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MELEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SHADE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWCF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COVIND\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KMELT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBASE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RDCSN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSNOW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOEVP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CCFACT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MWATER\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MGMELT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/SNOW/SAVE (Group) ''\n", "/PERLND/SNOW/SAVE/table (Table(1,)) ''\n", " description := {\n", @@ -7350,29 +7570,29 @@ " chunkshape := (364,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALBEDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COVINX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEWTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DULL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MELT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NEGHTS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PAKTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PDEPTH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRAIN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RAINF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RDENPF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SKYCLR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOCOV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"WYIELD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"XLNMLT\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALBEDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COVINX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEWTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DULL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MELT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NEGHTS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PAKTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PDEPTH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRAIN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RAINF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RDENPF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SKYCLR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOCOV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"WYIELD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"XLNMLT\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/SNOW/STATES (Group) ''\n", "/PERLND/SNOW/STATES/table (Table(1,)) ''\n", " description := {\n", @@ -7386,28 +7606,28 @@ " \"COVINX\": Float64Col(shape=(), dflt=0.0, pos=7),\n", " \"XLNMLT\": Float64Col(shape=(), dflt=0.0, pos=8),\n", " \"SKYCLR\": Float64Col(shape=(), dflt=0.0, pos=9),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=10),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=10),\n", " \"PKSNOW\": Float64Col(shape=(), dflt=0.0, pos=11),\n", " \"PKICE\": Float64Col(shape=(), dflt=0.0, pos=12),\n", " \"PKWATR\": Float64Col(shape=(), dflt=0.0, pos=13)}\n", " byteorder := 'little'\n", - " chunkshape := (648,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RDENPF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DULL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PAKTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COVINX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"XLNMLT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SKYCLR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKSNOW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKICE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKWATR\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (636,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RDENPF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DULL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PAKTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COVINX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"XLNMLT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SKYCLR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKSNOW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKICE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKWATR\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PWTGAS/PARAMETERS (Group) ''\n", "/PERLND/PWTGAS/PARAMETERS/table (Table(1,)) ''\n", " description := {\n", @@ -7430,39 +7650,39 @@ " \"IOCO2\": Float64Col(shape=(), dflt=0.0, pos=16),\n", " \"AODOX\": Float64Col(shape=(), dflt=0.0, pos=17),\n", " \"AOCO2\": Float64Col(shape=(), dflt=0.0, pos=18),\n", - " \"OPNID\": StringCol(itemsize=2, shape=(), dflt=b'', pos=19),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=19),\n", " \"IDVFG\": Int64Col(shape=(), dflt=0, pos=20),\n", " \"ICVFG\": Int64Col(shape=(), dflt=0, pos=21),\n", " \"GDVFG\": Int64Col(shape=(), dflt=0, pos=22),\n", " \"GCVFG\": Int64Col(shape=(), dflt=0, pos=23)}\n", " byteorder := 'little'\n", - " chunkshape := (360,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ELEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IDOXP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICO2P\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ADOXP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ACO2P\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SDLFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLIFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ILIFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALIFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IDVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GDVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GCVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (358,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ELEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IDOXP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICO2P\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ADOXP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACO2P\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SDLFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLIFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ILIFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALIFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IDVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GDVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GCVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PWTGAS/SAVE (Group) ''\n", "/PERLND/PWTGAS/SAVE/table (Table(1,)) ''\n", " description := {\n", @@ -7492,28 +7712,28 @@ " chunkshape := (381,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PWATER/MONTHLY (Group) ''\n", "/PERLND/PWATER/PARAMETERS (Group) ''\n", "/PERLND/PWATER/PARAMETERS/table (Table(1,)) ''\n", @@ -7532,216 +7752,218 @@ " \"HWTFG\": Int64Col(shape=(), dflt=0, pos=11),\n", " \"IRRGFG\": Int64Col(shape=(), dflt=0, pos=12),\n", " \"IFRDFG\": Int64Col(shape=(), dflt=0, pos=13),\n", - " \"FOREST\": Float64Col(shape=(), dflt=0.0, pos=14),\n", - " \"LZSN\": Float64Col(shape=(), dflt=0.0, pos=15),\n", - " \"INFILT\": Float64Col(shape=(), dflt=0.0, pos=16),\n", - " \"LSUR\": Float64Col(shape=(), dflt=0.0, pos=17),\n", - " \"SLSUR\": Float64Col(shape=(), dflt=0.0, pos=18),\n", - " \"KVARY\": Float64Col(shape=(), dflt=0.0, pos=19),\n", - " \"AGWRC\": Float64Col(shape=(), dflt=0.0, pos=20),\n", - " \"PETMAX\": Float64Col(shape=(), dflt=0.0, pos=21),\n", - " \"PETMIN\": Float64Col(shape=(), dflt=0.0, pos=22),\n", - " \"INFEXP\": Float64Col(shape=(), dflt=0.0, pos=23),\n", - " \"INFILD\": Float64Col(shape=(), dflt=0.0, pos=24),\n", - " \"DEEPFR\": Float64Col(shape=(), dflt=0.0, pos=25),\n", - " \"BASETP\": Float64Col(shape=(), dflt=0.0, pos=26),\n", - " \"AGWETP\": Float64Col(shape=(), dflt=0.0, pos=27),\n", - " \"CEPSC\": Float64Col(shape=(), dflt=0.0, pos=28),\n", - " \"UZSN\": Float64Col(shape=(), dflt=0.0, pos=29),\n", - " \"NSUR\": Float64Col(shape=(), dflt=0.0, pos=30),\n", - " \"INTFW\": Float64Col(shape=(), dflt=0.0, pos=31),\n", - " \"IRC\": Float64Col(shape=(), dflt=0.0, pos=32),\n", - " \"LZETP\": Float64Col(shape=(), dflt=0.0, pos=33),\n", - " \"FZG\": Float64Col(shape=(), dflt=0.0, pos=34),\n", - " \"FZGL\": Float64Col(shape=(), dflt=0.0, pos=35),\n", - " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=36),\n", - " \"MELEV\": Float64Col(shape=(), dflt=0.0, pos=37),\n", - " \"BELV\": Float64Col(shape=(), dflt=0.0, pos=38),\n", - " \"GWDATM\": Float64Col(shape=(), dflt=0.0, pos=39),\n", - " \"PCW\": Float64Col(shape=(), dflt=0.0, pos=40),\n", - " \"PGW\": Float64Col(shape=(), dflt=0.0, pos=41),\n", - " \"UPGW\": Float64Col(shape=(), dflt=0.0, pos=42),\n", - " \"STABNO\": Float64Col(shape=(), dflt=0.0, pos=43),\n", - " \"SRRC\": Float64Col(shape=(), dflt=0.0, pos=44),\n", - " \"SREXP\": Float64Col(shape=(), dflt=0.0, pos=45),\n", - " \"IFWSC\": Float64Col(shape=(), dflt=0.0, pos=46),\n", - " \"DELTA\": Float64Col(shape=(), dflt=0.0, pos=47),\n", - " \"UELFAC\": Float64Col(shape=(), dflt=0.0, pos=48),\n", - " \"LELFAC\": Float64Col(shape=(), dflt=0.0, pos=49),\n", - " \"SWILTP\": Float64Col(shape=(), dflt=0.0, pos=50),\n", - " \"UWILTP\": Float64Col(shape=(), dflt=0.0, pos=51),\n", - " \"LWILTP\": Float64Col(shape=(), dflt=0.0, pos=52),\n", - " \"AWILTP\": Float64Col(shape=(), dflt=0.0, pos=53),\n", - " \"SFDCAP\": Float64Col(shape=(), dflt=0.0, pos=54),\n", - " \"UFDCAP\": Float64Col(shape=(), dflt=0.0, pos=55),\n", - " \"LFDCAP\": Float64Col(shape=(), dflt=0.0, pos=56),\n", - " \"AFDCAP\": Float64Col(shape=(), dflt=0.0, pos=57),\n", - " \"NCRP\": Int64Col(shape=(), dflt=0, pos=58),\n", - " \"PMON1\": Int64Col(shape=(), dflt=0, pos=59),\n", - " \"PDAY1\": Int64Col(shape=(), dflt=0, pos=60),\n", - " \"HMON1\": Int64Col(shape=(), dflt=0, pos=61),\n", - " \"HDAY1\": Int64Col(shape=(), dflt=0, pos=62),\n", - " \"PMON2\": Int64Col(shape=(), dflt=0, pos=63),\n", - " \"PDAY2\": Int64Col(shape=(), dflt=0, pos=64),\n", - " \"HMON2\": Int64Col(shape=(), dflt=0, pos=65),\n", - " \"HDAY2\": Int64Col(shape=(), dflt=0, pos=66),\n", - " \"PMON3\": Int64Col(shape=(), dflt=0, pos=67),\n", - " \"PDAY3\": Int64Col(shape=(), dflt=0, pos=68),\n", - " \"HMON3\": Int64Col(shape=(), dflt=0, pos=69),\n", - " \"HDAY3\": Int64Col(shape=(), dflt=0, pos=70),\n", - " \"NSKED\": Int64Col(shape=(), dflt=0, pos=71),\n", - " \"SZONFG\": Int64Col(shape=(), dflt=0, pos=72),\n", - " \"VCRDFG\": Int64Col(shape=(), dflt=0, pos=73),\n", - " \"VAWDFG\": Int64Col(shape=(), dflt=0, pos=74),\n", - " \"IROPFG\": Int64Col(shape=(), dflt=0, pos=75),\n", - " \"IRAREA\": Float64Col(shape=(), dflt=0.0, pos=76),\n", - " \"IREFF\": Float64Col(shape=(), dflt=0.0, pos=77),\n", - " \"ARZI\": Float64Col(shape=(), dflt=0.0, pos=78),\n", - " \"WILTP\": Float64Col(shape=(), dflt=0.0, pos=79),\n", - " \"FLDCAP\": Float64Col(shape=(), dflt=0.0, pos=80),\n", - " \"CRDEP\": Float64Col(shape=(), dflt=0.0, pos=81),\n", - " \"IRAWD\": Float64Col(shape=(), dflt=0.0, pos=82),\n", - " \"CAPRIS\": Float64Col(shape=(), dflt=0.0, pos=83),\n", - " \"XPRIOR\": Float64Col(shape=(), dflt=0.0, pos=84),\n", - " \"XFRAC\": Float64Col(shape=(), dflt=0.0, pos=85),\n", - " \"GPRIOR\": Float64Col(shape=(), dflt=0.0, pos=86),\n", - " \"GFRAC\": Float64Col(shape=(), dflt=0.0, pos=87),\n", - " \"RPRIOR\": Float64Col(shape=(), dflt=0.0, pos=88),\n", - " \"RFRAC\": Float64Col(shape=(), dflt=0.0, pos=89),\n", - " \"IRCHNO\": Float64Col(shape=(), dflt=0.0, pos=90),\n", - " \"IRCPFR\": Float64Col(shape=(), dflt=0.0, pos=91),\n", - " \"IRSUFR\": Float64Col(shape=(), dflt=0.0, pos=92),\n", - " \"IRUPFR\": Float64Col(shape=(), dflt=0.0, pos=93),\n", - " \"IRLOFR\": Float64Col(shape=(), dflt=0.0, pos=94),\n", - " \"IRGWFR\": Float64Col(shape=(), dflt=0.0, pos=95),\n", - " \"IRYR1\": Float64Col(shape=(), dflt=0.0, pos=96),\n", - " \"IRMO1\": Float64Col(shape=(), dflt=0.0, pos=97),\n", - " \"IRDY1\": Float64Col(shape=(), dflt=0.0, pos=98),\n", - " \"IRHR1\": Float64Col(shape=(), dflt=0.0, pos=99),\n", - " \"IRMI1\": Float64Col(shape=(), dflt=0.0, pos=100),\n", - " \"IRDUR1\": Float64Col(shape=(), dflt=0.0, pos=101),\n", - " \"IRRAT1\": Float64Col(shape=(), dflt=0.0, pos=102),\n", - " \"IRYR2\": Float64Col(shape=(), dflt=0.0, pos=103),\n", - " \"IRMO2\": Float64Col(shape=(), dflt=0.0, pos=104),\n", - " \"IRDY2\": Float64Col(shape=(), dflt=0.0, pos=105),\n", - " \"IRHR2\": Float64Col(shape=(), dflt=0.0, pos=106),\n", - " \"IRMI2\": Float64Col(shape=(), dflt=0.0, pos=107),\n", - " \"IRDUR2\": Float64Col(shape=(), dflt=0.0, pos=108),\n", - " \"IRRAT2\": Float64Col(shape=(), dflt=0.0, pos=109)}\n", - " byteorder := 'little'\n", - " chunkshape := (75,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CSNOFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RTOPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VCSFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VUZFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VNNFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VIFWFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VIRCFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VLEFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFFCFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HWTFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRRGFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFRDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FOREST\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZSN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INFILT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LSUR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLSUR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KVARY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWRC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PETMAX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PETMIN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INFEXP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INFILD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEEPFR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BASETP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWETP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEPSC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZSN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NSUR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INTFW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZETP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FZG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FZGL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MELEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BELV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GWDATM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PCW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PGW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UPGW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"STABNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SRRC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SREXP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWSC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DELTA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UELFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LELFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SWILTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UWILTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LWILTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AWILTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SFDCAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UFDCAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LFDCAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AFDCAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NCRP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PMON1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PDAY1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HMON1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HDAY1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PMON2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PDAY2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HMON2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HDAY2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PMON3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PDAY3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HMON3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"HDAY3\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NSKED\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SZONFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VCRDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VAWDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IROPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRAREA\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IREFF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ARZI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"WILTP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FLDCAP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CRDEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRAWD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CAPRIS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"XPRIOR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"XFRAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GPRIOR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GFRAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RPRIOR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RFRAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRCHNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRCPFR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRSUFR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRUPFR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRLOFR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRGWFR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRYR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRMO1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRDY1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRHR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRMI1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRDUR1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRRAT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRYR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRMO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRDY2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRHR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRMI2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRDUR2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRRAT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"NCANPY\": Int64Col(shape=(), dflt=0, pos=14),\n", + " \"FOREST\": Float64Col(shape=(), dflt=0.0, pos=15),\n", + " \"LZSN\": Float64Col(shape=(), dflt=0.0, pos=16),\n", + " \"INFILT\": Float64Col(shape=(), dflt=0.0, pos=17),\n", + " \"LSUR\": Float64Col(shape=(), dflt=0.0, pos=18),\n", + " \"SLSUR\": Float64Col(shape=(), dflt=0.0, pos=19),\n", + " \"KVARY\": Float64Col(shape=(), dflt=0.0, pos=20),\n", + " \"AGWRC\": Float64Col(shape=(), dflt=0.0, pos=21),\n", + " \"PETMAX\": Float64Col(shape=(), dflt=0.0, pos=22),\n", + " \"PETMIN\": Float64Col(shape=(), dflt=0.0, pos=23),\n", + " \"INFEXP\": Float64Col(shape=(), dflt=0.0, pos=24),\n", + " \"INFILD\": Float64Col(shape=(), dflt=0.0, pos=25),\n", + " \"DEEPFR\": Float64Col(shape=(), dflt=0.0, pos=26),\n", + " \"BASETP\": Float64Col(shape=(), dflt=0.0, pos=27),\n", + " \"AGWETP\": Float64Col(shape=(), dflt=0.0, pos=28),\n", + " \"CEPSC\": Float64Col(shape=(), dflt=0.0, pos=29),\n", + " \"UZSN\": Float64Col(shape=(), dflt=0.0, pos=30),\n", + " \"NSUR\": Float64Col(shape=(), dflt=0.0, pos=31),\n", + " \"INTFW\": Float64Col(shape=(), dflt=0.0, pos=32),\n", + " \"IRC\": Float64Col(shape=(), dflt=0.0, pos=33),\n", + " \"LZETP\": Float64Col(shape=(), dflt=0.0, pos=34),\n", + " \"FZG\": Float64Col(shape=(), dflt=0.0, pos=35),\n", + " \"FZGL\": Float64Col(shape=(), dflt=0.0, pos=36),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=37),\n", + " \"MELEV\": Float64Col(shape=(), dflt=0.0, pos=38),\n", + " \"BELV\": Float64Col(shape=(), dflt=0.0, pos=39),\n", + " \"GWDATM\": Float64Col(shape=(), dflt=0.0, pos=40),\n", + " \"PCW\": Float64Col(shape=(), dflt=0.0, pos=41),\n", + " \"PGW\": Float64Col(shape=(), dflt=0.0, pos=42),\n", + " \"UPGW\": Float64Col(shape=(), dflt=0.0, pos=43),\n", + " \"STABNO\": Float64Col(shape=(), dflt=0.0, pos=44),\n", + " \"SRRC\": Float64Col(shape=(), dflt=0.0, pos=45),\n", + " \"SREXP\": Float64Col(shape=(), dflt=0.0, pos=46),\n", + " \"IFWSC\": Float64Col(shape=(), dflt=0.0, pos=47),\n", + " \"DELTA\": Float64Col(shape=(), dflt=0.0, pos=48),\n", + " \"UELFAC\": Float64Col(shape=(), dflt=0.0, pos=49),\n", + " \"LELFAC\": Float64Col(shape=(), dflt=0.0, pos=50),\n", + " \"SWILTP\": Float64Col(shape=(), dflt=0.0, pos=51),\n", + " \"UWILTP\": Float64Col(shape=(), dflt=0.0, pos=52),\n", + " \"LWILTP\": Float64Col(shape=(), dflt=0.0, pos=53),\n", + " \"AWILTP\": Float64Col(shape=(), dflt=0.0, pos=54),\n", + " \"SFDCAP\": Float64Col(shape=(), dflt=0.0, pos=55),\n", + " \"UFDCAP\": Float64Col(shape=(), dflt=0.0, pos=56),\n", + " \"LFDCAP\": Float64Col(shape=(), dflt=0.0, pos=57),\n", + " \"AFDCAP\": Float64Col(shape=(), dflt=0.0, pos=58),\n", + " \"NCRP\": Int64Col(shape=(), dflt=0, pos=59),\n", + " \"PMON1\": Int64Col(shape=(), dflt=0, pos=60),\n", + " \"PDAY1\": Int64Col(shape=(), dflt=0, pos=61),\n", + " \"HMON1\": Int64Col(shape=(), dflt=0, pos=62),\n", + " \"HDAY1\": Int64Col(shape=(), dflt=0, pos=63),\n", + " \"PMON2\": Int64Col(shape=(), dflt=0, pos=64),\n", + " \"PDAY2\": Int64Col(shape=(), dflt=0, pos=65),\n", + " \"HMON2\": Int64Col(shape=(), dflt=0, pos=66),\n", + " \"HDAY2\": Int64Col(shape=(), dflt=0, pos=67),\n", + " \"PMON3\": Int64Col(shape=(), dflt=0, pos=68),\n", + " \"PDAY3\": Int64Col(shape=(), dflt=0, pos=69),\n", + " \"HMON3\": Int64Col(shape=(), dflt=0, pos=70),\n", + " \"HDAY3\": Int64Col(shape=(), dflt=0, pos=71),\n", + " \"NSKED\": Int64Col(shape=(), dflt=0, pos=72),\n", + " \"SZONFG\": Int64Col(shape=(), dflt=0, pos=73),\n", + " \"VCRDFG\": Int64Col(shape=(), dflt=0, pos=74),\n", + " \"VAWDFG\": Int64Col(shape=(), dflt=0, pos=75),\n", + " \"IROPFG\": Int64Col(shape=(), dflt=0, pos=76),\n", + " \"IRAREA\": Float64Col(shape=(), dflt=0.0, pos=77),\n", + " \"IREFF\": Float64Col(shape=(), dflt=0.0, pos=78),\n", + " \"ARZI\": Float64Col(shape=(), dflt=0.0, pos=79),\n", + " \"WILTP\": Float64Col(shape=(), dflt=0.0, pos=80),\n", + " \"FLDCAP\": Float64Col(shape=(), dflt=0.0, pos=81),\n", + " \"CRDEP\": Float64Col(shape=(), dflt=0.0, pos=82),\n", + " \"IRAWD\": Float64Col(shape=(), dflt=0.0, pos=83),\n", + " \"CAPRIS\": Float64Col(shape=(), dflt=0.0, pos=84),\n", + " \"XPRIOR\": Float64Col(shape=(), dflt=0.0, pos=85),\n", + " \"XFRAC\": Float64Col(shape=(), dflt=0.0, pos=86),\n", + " \"GPRIOR\": Float64Col(shape=(), dflt=0.0, pos=87),\n", + " \"GFRAC\": Float64Col(shape=(), dflt=0.0, pos=88),\n", + " \"RPRIOR\": Float64Col(shape=(), dflt=0.0, pos=89),\n", + " \"RFRAC\": Float64Col(shape=(), dflt=0.0, pos=90),\n", + " \"IRCHNO\": Float64Col(shape=(), dflt=0.0, pos=91),\n", + " \"IRCPFR\": Float64Col(shape=(), dflt=0.0, pos=92),\n", + " \"IRSUFR\": Float64Col(shape=(), dflt=0.0, pos=93),\n", + " \"IRUPFR\": Float64Col(shape=(), dflt=0.0, pos=94),\n", + " \"IRLOFR\": Float64Col(shape=(), dflt=0.0, pos=95),\n", + " \"IRGWFR\": Float64Col(shape=(), dflt=0.0, pos=96),\n", + " \"IRYR1\": Float64Col(shape=(), dflt=0.0, pos=97),\n", + " \"IRMO1\": Float64Col(shape=(), dflt=0.0, pos=98),\n", + " \"IRDY1\": Float64Col(shape=(), dflt=0.0, pos=99),\n", + " \"IRHR1\": Float64Col(shape=(), dflt=0.0, pos=100),\n", + " \"IRMI1\": Float64Col(shape=(), dflt=0.0, pos=101),\n", + " \"IRDUR1\": Float64Col(shape=(), dflt=0.0, pos=102),\n", + " \"IRRAT1\": Float64Col(shape=(), dflt=0.0, pos=103),\n", + " \"IRYR2\": Float64Col(shape=(), dflt=0.0, pos=104),\n", + " \"IRMO2\": Float64Col(shape=(), dflt=0.0, pos=105),\n", + " \"IRDY2\": Float64Col(shape=(), dflt=0.0, pos=106),\n", + " \"IRHR2\": Float64Col(shape=(), dflt=0.0, pos=107),\n", + " \"IRMI2\": Float64Col(shape=(), dflt=0.0, pos=108),\n", + " \"IRDUR2\": Float64Col(shape=(), dflt=0.0, pos=109),\n", + " \"IRRAT2\": Float64Col(shape=(), dflt=0.0, pos=110)}\n", + " byteorder := 'little'\n", + " chunkshape := (74,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CSNOFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RTOPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VCSFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VUZFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VNNFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VIFWFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VIRCFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VLEFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFFCFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HWTFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRRGFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFRDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NCANPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FOREST\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZSN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INFILT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LSUR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLSUR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KVARY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWRC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PETMAX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PETMIN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INFEXP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INFILD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEEPFR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BASETP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWETP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEPSC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZSN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NSUR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INTFW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZETP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FZG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FZGL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MELEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BELV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GWDATM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PCW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PGW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UPGW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"STABNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SRRC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SREXP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWSC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DELTA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UELFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LELFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SWILTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UWILTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LWILTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AWILTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SFDCAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UFDCAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LFDCAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AFDCAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NCRP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PMON1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PDAY1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HMON1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HDAY1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PMON2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PDAY2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HMON2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HDAY2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PMON3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PDAY3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HMON3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"HDAY3\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NSKED\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SZONFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VCRDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VAWDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IROPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRAREA\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IREFF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ARZI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"WILTP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FLDCAP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CRDEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRAWD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CAPRIS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"XPRIOR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"XFRAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GPRIOR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GFRAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RPRIOR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RFRAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRCHNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRCPFR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRSUFR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRUPFR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRLOFR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRGWFR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRYR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRMO1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRDY1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRHR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRMI1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRDUR1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRRAT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRYR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRMO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRDY2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRHR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRMI2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRDUR2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRRAT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PWATER/SAVE (Group) ''\n", "/PERLND/PWATER/SAVE/table (Table(1,)) ''\n", " description := {\n", @@ -7793,50 +8015,50 @@ " chunkshape := (188,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BASET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEPE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEPS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GWVS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IGWI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INFIL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRDRAW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRRAPP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRRDEM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IRSHRT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RPARM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PERC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PERO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PERS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PETADJ\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RZWS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TAET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TGWS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZLI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INFFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BASET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEPE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEPS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GWVS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IGWI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INFIL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRDRAW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRRAPP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRRDEM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IRSHRT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RPARM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PERC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PERO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PERS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PETADJ\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RZWS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TAET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TGWS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZLI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INFFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PWATER/STATES (Group) ''\n", "/PERLND/PWATER/STATES/table (Table(1,)) ''\n", " description := {\n", @@ -7853,15 +8075,15 @@ " chunkshape := (1040,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CEPS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"UZS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IFWS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LZS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AGWS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"GWVS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CEPS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"UZS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IFWS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LZS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AGWS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"GWVS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PWATER/MONTHLY/CEPSC (Group) ''\n", "/PERLND/PWATER/MONTHLY/CEPSC/table (Table(1,)) ''\n", " description := {\n", @@ -7882,19 +8104,19 @@ " chunkshape := (655,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JAN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FEB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"APR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MAY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JUN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JUL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AUG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NOV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JAN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FEB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"APR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MAY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JUN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JUL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AUG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NOV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PWATER/MONTHLY/LZETP (Group) ''\n", "/PERLND/PWATER/MONTHLY/LZETP/table (Table(1,)) ''\n", " description := {\n", @@ -7915,19 +8137,19 @@ " chunkshape := (655,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JAN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FEB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"APR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MAY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JUN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JUL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AUG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NOV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JAN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FEB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"APR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MAY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JUN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JUL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AUG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NOV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PWATER/MONTHLY/NSUR (Group) ''\n", "/PERLND/PWATER/MONTHLY/NSUR/table (Table(1,)) ''\n", " description := {\n", @@ -7948,19 +8170,19 @@ " chunkshape := (655,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JAN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FEB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"APR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MAY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JUN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JUL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AUG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NOV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JAN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FEB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"APR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MAY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JUN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JUL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AUG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NOV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PWATER/MONTHLY/UZSN (Group) ''\n", "/PERLND/PWATER/MONTHLY/UZSN/table (Table(1,)) ''\n", " description := {\n", @@ -7981,19 +8203,19 @@ " chunkshape := (655,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JAN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"FEB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MAR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"APR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MAY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JUN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JUL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AUG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OCT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NOV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JAN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"FEB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MAR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"APR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MAY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JUN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JUL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AUG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OCT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NOV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PSTEMP/PARAMETERS (Group) ''\n", "/PERLND/PSTEMP/PARAMETERS/table (Table(1,)) ''\n", " description := {\n", @@ -8004,7 +8226,7 @@ " \"ULTP2\": Float64Col(shape=(), dflt=0.0, pos=4),\n", " \"LGTP1\": Float64Col(shape=(), dflt=0.0, pos=5),\n", " \"LGTP2\": Float64Col(shape=(), dflt=0.0, pos=6),\n", - " \"OPNID\": StringCol(itemsize=4, shape=(), dflt=b'', pos=7),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=7),\n", " \"SLTVFG\": Int64Col(shape=(), dflt=0, pos=8),\n", " \"ULTVFG\": Int64Col(shape=(), dflt=0, pos=9),\n", " \"LGTVFG\": Int64Col(shape=(), dflt=0, pos=10),\n", @@ -8014,25 +8236,25 @@ " \"ULTMP\": Float64Col(shape=(), dflt=0.0, pos=14),\n", " \"LGTMP\": Float64Col(shape=(), dflt=0.0, pos=15)}\n", " byteorder := 'little'\n", - " chunkshape := (546,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ASLT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BSLT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ULTP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ULTP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LGTP1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LGTP2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLTVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ULTVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LGTVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSOPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ULTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LGTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " chunkshape := (550,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ASLT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BSLT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ULTP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ULTP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LGTP1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LGTP2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLTVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ULTVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LGTVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSOPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ULTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LGTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/PSTEMP/SAVE (Group) ''\n", "/PERLND/PSTEMP/SAVE/table (Table(1,)) ''\n", " description := {\n", @@ -8045,11 +8267,11 @@ " chunkshape := (1820,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LGTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ULTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LGTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ULTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/GENERAL/ACTIVITY (Group) ''\n", "/PERLND/GENERAL/ACTIVITY/table (Table(1,)) ''\n", " description := {\n", @@ -8066,47 +8288,49 @@ " \"NITR\": Int64Col(shape=(), dflt=0, pos=10),\n", " \"PHOS\": Int64Col(shape=(), dflt=0, pos=11),\n", " \"TRACER\": Int64Col(shape=(), dflt=0, pos=12),\n", - " \"AIRTFG\": Int64Col(shape=(), dflt=0, pos=13),\n", - " \"SNOWFG\": Int64Col(shape=(), dflt=0, pos=14),\n", - " \"PWATFG\": Int64Col(shape=(), dflt=0, pos=15),\n", - " \"SEDFG\": Int64Col(shape=(), dflt=0, pos=16),\n", - " \"PSTFG\": Int64Col(shape=(), dflt=0, pos=17),\n", - " \"PWGFG\": Int64Col(shape=(), dflt=0, pos=18),\n", - " \"PQALFG\": Int64Col(shape=(), dflt=0, pos=19),\n", - " \"MSTLFG\": Int64Col(shape=(), dflt=0, pos=20),\n", - " \"PESTFG\": Int64Col(shape=(), dflt=0, pos=21),\n", - " \"NITRFG\": Int64Col(shape=(), dflt=0, pos=22),\n", - " \"PHOSFG\": Int64Col(shape=(), dflt=0, pos=23),\n", - " \"TRACFG\": Int64Col(shape=(), dflt=0, pos=24)}\n", - " byteorder := 'little'\n", - " chunkshape := (334,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ATEMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PWATER\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEDMNT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PSTEMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PWTGAS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PQUAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MSTLAY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PEST\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NITR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TRACER\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AIRTFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PWATFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PSTFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PWGFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PQALFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MSTLFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PESTFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NITRFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PHOSFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TRACFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=13),\n", + " \"AIRTFG\": Int64Col(shape=(), dflt=0, pos=14),\n", + " \"SNOWFG\": Int64Col(shape=(), dflt=0, pos=15),\n", + " \"PWATFG\": Int64Col(shape=(), dflt=0, pos=16),\n", + " \"SEDFG\": Int64Col(shape=(), dflt=0, pos=17),\n", + " \"PSTFG\": Int64Col(shape=(), dflt=0, pos=18),\n", + " \"PWGFG\": Int64Col(shape=(), dflt=0, pos=19),\n", + " \"PQALFG\": Int64Col(shape=(), dflt=0, pos=20),\n", + " \"MSTLFG\": Int64Col(shape=(), dflt=0, pos=21),\n", + " \"PESTFG\": Int64Col(shape=(), dflt=0, pos=22),\n", + " \"NITRFG\": Int64Col(shape=(), dflt=0, pos=23),\n", + " \"PHOSFG\": Int64Col(shape=(), dflt=0, pos=24),\n", + " \"TRACFG\": Int64Col(shape=(), dflt=0, pos=25)}\n", + " byteorder := 'little'\n", + " chunkshape := (329,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ATEMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PWATER\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEDMNT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PSTEMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PWTGAS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PQUAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MSTLAY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PEST\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NITR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TRACER\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AIRTFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PWATFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PSTFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PWGFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PQALFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MSTLFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PESTFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NITRFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PHOSFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TRACFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/PERLND/GENERAL/INFO (Group) ''\n", "/PERLND/GENERAL/INFO/table (Table(1,)) ''\n", " description := {\n", @@ -8118,20 +8342,20 @@ " \"PUNIT2\": Int64Col(shape=(), dflt=0, pos=5),\n", " \"BUNIT1\": Int64Col(shape=(), dflt=0, pos=6),\n", " \"BUNIT2\": Int64Col(shape=(), dflt=0, pos=7),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=8)}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=8)}\n", " byteorder := 'little'\n", - " chunkshape := (992,)\n", + " chunkshape := (963,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LSID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IUNITS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OUNITS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PUNIT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PUNIT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BUNIT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BUNIT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LSID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IUNITS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OUNITS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PUNIT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PUNIT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BUNIT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BUNIT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/GENERAL (Group) ''\n", "/IMPLND/IQUAL (Group) ''\n", "/IMPLND/IWATER (Group) ''\n", @@ -8147,24 +8371,24 @@ " \"ACCSDP\": Float64Col(shape=(), dflt=0.0, pos=3),\n", " \"REMSDP\": Float64Col(shape=(), dflt=0.0, pos=4),\n", " \"SLDS\": Float64Col(shape=(), dflt=0.0, pos=5),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=6),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=6),\n", " \"VASDFG\": Int64Col(shape=(), dflt=0, pos=7),\n", " \"VRSDFG\": Int64Col(shape=(), dflt=0, pos=8),\n", " \"SDOPFG\": Int64Col(shape=(), dflt=0, pos=9)}\n", " byteorder := 'little'\n", - " chunkshape := (949,)\n", + " chunkshape := (923,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KEIM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"JEIM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ACCSDP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"REMSDP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLDS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VASDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VRSDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SDOPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KEIM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"JEIM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACCSDP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"REMSDP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLDS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VASDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VRSDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SDOPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/SOLIDS/SAVE (Group) ''\n", "/IMPLND/SOLIDS/SAVE/table (Table(1,)) ''\n", " description := {\n", @@ -8175,9 +8399,9 @@ " chunkshape := (3276,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLDS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOSLD\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLDS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOSLD\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/SNOW/FLAGS (Group) ''\n", "/IMPLND/SNOW/FLAGS/table (Table(1,)) ''\n", " description := {\n", @@ -8190,11 +8414,11 @@ " chunkshape := (2259,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ICEFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VKMFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ICEFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VKMFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/SNOW/PARAMETERS (Group) ''\n", "/IMPLND/SNOW/PARAMETERS/table (Table(1,)) ''\n", " description := {\n", @@ -8212,26 +8436,26 @@ " \"CCFACT\": Float64Col(shape=(), dflt=0.0, pos=11),\n", " \"MWATER\": Float64Col(shape=(), dflt=0.0, pos=12),\n", " \"MGMELT\": Float64Col(shape=(), dflt=0.0, pos=13),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=14)}\n", - " byteorder := 'little'\n", - " chunkshape := (601,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LAT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MELEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SHADE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWCF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COVIND\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"KMELT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TBASE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RDCSN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TSNOW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOEVP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CCFACT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MWATER\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MGMELT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=14)}\n", + " byteorder := 'little'\n", + " chunkshape := (590,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LAT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MELEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SHADE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWCF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COVIND\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"KMELT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TBASE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RDCSN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TSNOW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOEVP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CCFACT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MWATER\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MGMELT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/SNOW/SAVE (Group) ''\n", "/IMPLND/SNOW/SAVE/table (Table(1,)) ''\n", " description := {\n", @@ -8262,29 +8486,29 @@ " chunkshape := (364,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ALBEDO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COVINX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DEWTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DULL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MELT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NEGHTS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACK\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PAKTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PDEPTH\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PRAIN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RAINF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RDENPF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SKYCLR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOCOV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"WYIELD\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"XLNMLT\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ALBEDO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COVINX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DEWTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DULL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MELT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NEGHTS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACK\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PAKTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PDEPTH\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PRAIN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RAINF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RDENPF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SKYCLR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOCOV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"WYIELD\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"XLNMLT\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/SNOW/STATES (Group) ''\n", "/IMPLND/SNOW/STATES/table (Table(1,)) ''\n", " description := {\n", @@ -8306,20 +8530,20 @@ " chunkshape := (648,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PACKW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RDENPF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"DULL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PAKTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COVINX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"XLNMLT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SKYCLR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKSNOW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKICE\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PKWATR\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PACKW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RDENPF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"DULL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PAKTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COVINX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"XLNMLT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SKYCLR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKSNOW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKICE\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PKWATR\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/IWTGAS/PARAMETERS (Group) ''\n", "/IMPLND/IWTGAS/PARAMETERS/table (Table(1,)) ''\n", " description := {\n", @@ -8329,28 +8553,22 @@ " \"BWTF\": Float64Col(shape=(), dflt=0.0, pos=3),\n", " \"SDLFAC\": Float64Col(shape=(), dflt=0.0, pos=4),\n", " \"SLIFAC\": Float64Col(shape=(), dflt=0.0, pos=5),\n", - " \"SOTMP\": Float64Col(shape=(), dflt=0.0, pos=6),\n", - " \"SODOX\": Float64Col(shape=(), dflt=0.0, pos=7),\n", - " \"SOCO2\": Float64Col(shape=(), dflt=0.0, pos=8),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=9),\n", - " \"WTFVFG\": Int64Col(shape=(), dflt=0, pos=10),\n", - " \"CSNOFG\": Int64Col(shape=(), dflt=0, pos=11)}\n", - " byteorder := 'little'\n", - " chunkshape := (771,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ELEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AWTF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BWTF\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SDLFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLIFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"WTFVFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CSNOFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=6),\n", + " \"WTFVFG\": Int64Col(shape=(), dflt=0, pos=7),\n", + " \"CSNOFG\": Int64Col(shape=(), dflt=0, pos=8)}\n", + " byteorder := 'little'\n", + " chunkshape := (1040,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ELEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AWTF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BWTF\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SDLFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLIFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"WTFVFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CSNOFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/IWTGAS/SAVE (Group) ''\n", "/IMPLND/IWTGAS/SAVE/table (Table(1,)) ''\n", " description := {\n", @@ -8365,13 +8583,30 @@ " chunkshape := (1260,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOTMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOHT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SODOXM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOCO2M\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOHT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOXM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2M\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", + "/IMPLND/IWTGAS/STATES (Group) ''\n", + "/IMPLND/IWTGAS/STATES/table (Table(1,)) ''\n", + " description := {\n", + " \"index\": StringCol(itemsize=4, shape=(), dflt=b'', pos=0),\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=1),\n", + " \"SOTMP\": Float64Col(shape=(), dflt=0.0, pos=2),\n", + " \"SODOX\": Float64Col(shape=(), dflt=0.0, pos=3),\n", + " \"SOCO2\": Float64Col(shape=(), dflt=0.0, pos=4)}\n", + " byteorder := 'little'\n", + " chunkshape := (2114,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOTMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SODOX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOCO2\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/IWATER/PARAMETERS (Group) ''\n", "/IMPLND/IWATER/PARAMETERS/table (Table(1,)) ''\n", " description := {\n", @@ -8387,24 +8622,24 @@ " \"RETSC\": Float64Col(shape=(), dflt=0.0, pos=9),\n", " \"PETMAX\": Float64Col(shape=(), dflt=0.0, pos=10),\n", " \"PETMIN\": Float64Col(shape=(), dflt=0.0, pos=11),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=12)}\n", - " byteorder := 'little'\n", - " chunkshape := (704,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"CSNOFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RTOPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VRSFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VNNFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RTLIFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LSUR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLSUR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NSUR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RETSC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PETMAX\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PETMIN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=12)}\n", + " byteorder := 'little'\n", + " chunkshape := (689,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"CSNOFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RTOPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VRSFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VNNFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RTLIFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LSUR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLSUR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NSUR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RETSC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PETMAX\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PETMIN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/IWATER/SAVE (Group) ''\n", "/IMPLND/IWATER/SAVE/table (Table(1,)) ''\n", " description := {\n", @@ -8421,15 +8656,15 @@ " chunkshape := (963,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IMPEV\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PET\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PETADJ\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RETS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SUPY\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURI\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURS\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IMPEV\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PET\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PETADJ\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RETS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SUPY\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURI\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURS\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/IWATER/STATES (Group) ''\n", "/IMPLND/IWATER/STATES/table (Table(1,)) ''\n", " description := {\n", @@ -8441,10 +8676,10 @@ " chunkshape := (2849,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"RETS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SURS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"RETS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SURS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/IQUAL/IQUAL1 (Group) ''\n", "/IMPLND/IQUAL/PARAMETERS (Group) ''\n", "/IMPLND/IQUAL/PARAMETERS/table (Table(1,)) ''\n", @@ -8457,10 +8692,10 @@ " chunkshape := (2340,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"NQUAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SDLFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLIFAC\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"NQUAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SDLFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLIFAC\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/IQUAL/SAVE (Group) ''\n", "/IMPLND/IQUAL/SAVE/table (Table(1,)) ''\n", " description := {\n", @@ -8479,17 +8714,17 @@ " chunkshape := (780,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOQSP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOQS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOQO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOQOC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOQUAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOQC\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQADDR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQADWT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQADEP\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOQSP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOQS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOQO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOQOC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOQUAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOQC\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQADDR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQADWT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQADEP\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/IQUAL/IQUAL1/FLAGS (Group) ''\n", "/IMPLND/IQUAL/IQUAL1/FLAGS/table (Table(1,)) ''\n", " description := {\n", @@ -8504,13 +8739,13 @@ " chunkshape := (1598,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QUALID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QTYID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QSDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VPFWFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"QSOFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"VQOFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QUALID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QTYID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QSDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VPFWFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"QSOFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"VQOFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/IQUAL/IQUAL1/PARAMETERS (Group) ''\n", "/IMPLND/IQUAL/IQUAL1/PARAMETERS/table (Table(1,)) ''\n", " description := {\n", @@ -8524,12 +8759,12 @@ " chunkshape := (1489,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"POTFW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ACQOP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SQOLIM\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"WSQOP\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"POTFW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ACQOP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SQOLIM\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"WSQOP\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/GENERAL/ACTIVITY (Group) ''\n", "/IMPLND/GENERAL/ACTIVITY/table (Table(1,)) ''\n", " description := {\n", @@ -8540,29 +8775,31 @@ " \"SOLIDS\": Int64Col(shape=(), dflt=0, pos=4),\n", " \"IWTGAS\": Int64Col(shape=(), dflt=0, pos=5),\n", " \"IQUAL\": Int64Col(shape=(), dflt=0, pos=6),\n", - " \"ATMPFG\": Int64Col(shape=(), dflt=0, pos=7),\n", - " \"SNOWFG\": Int64Col(shape=(), dflt=0, pos=8),\n", - " \"IWATFG\": Int64Col(shape=(), dflt=0, pos=9),\n", - " \"SLDFG\": Int64Col(shape=(), dflt=0, pos=10),\n", - " \"IWGFG\": Int64Col(shape=(), dflt=0, pos=11),\n", - " \"IQALFG\": Int64Col(shape=(), dflt=0, pos=12)}\n", - " byteorder := 'little'\n", - " chunkshape := (655,)\n", - " autoindex := True\n", - " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ATEMP\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOW\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IWATER\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SOLIDS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IWTGAS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQUAL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"ATMPFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SNOWFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IWATFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SLDFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IWGFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IQALFG\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=7),\n", + " \"ATMPFG\": Int64Col(shape=(), dflt=0, pos=8),\n", + " \"SNOWFG\": Int64Col(shape=(), dflt=0, pos=9),\n", + " \"IWATFG\": Int64Col(shape=(), dflt=0, pos=10),\n", + " \"SLDFG\": Int64Col(shape=(), dflt=0, pos=11),\n", + " \"IWGFG\": Int64Col(shape=(), dflt=0, pos=12),\n", + " \"IQALFG\": Int64Col(shape=(), dflt=0, pos=13)}\n", + " byteorder := 'little'\n", + " chunkshape := (636,)\n", + " autoindex := True\n", + " colindexes := {\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ATEMP\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOW\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IWATER\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SOLIDS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IWTGAS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQUAL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"ATMPFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SNOWFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IWATFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SLDFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IWGFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IQALFG\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/IMPLND/GENERAL/INFO (Group) ''\n", "/IMPLND/GENERAL/INFO/table (Table(1,)) ''\n", " description := {\n", @@ -8574,20 +8811,20 @@ " \"PUNIT2\": Int64Col(shape=(), dflt=0, pos=5),\n", " \"BUNIT1\": Int64Col(shape=(), dflt=0, pos=6),\n", " \"BUNIT2\": Int64Col(shape=(), dflt=0, pos=7),\n", - " \"OPNID\": StringCol(itemsize=1, shape=(), dflt=b'', pos=8)}\n", + " \"OPNID\": StringCol(itemsize=3, shape=(), dflt=b'', pos=8)}\n", " byteorder := 'little'\n", - " chunkshape := (936,)\n", + " chunkshape := (910,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"LSID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"IUNITS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OUNITS\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PUNIT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"PUNIT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BUNIT1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"BUNIT2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"LSID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"IUNITS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OUNITS\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PUNIT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"PUNIT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BUNIT1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"BUNIT2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/GENER/OPCODE (Group) ''\n", "/GENER/OPCODE/table (Table(1,)) ''\n", " description := {\n", @@ -8598,9 +8835,9 @@ " chunkshape := (2978,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPNID\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPCODE\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPNID\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPCODE\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/FTABLES/FT001 (Group) ''\n", "/FTABLES/FT001/table (Table(14,)) ''\n", " description := {\n", @@ -8615,13 +8852,13 @@ " chunkshape := (1170,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Depth\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Area\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Volume\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Disch1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Disch2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Disch3\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Depth\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Area\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Volume\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Disch1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Disch2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Disch3\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/FTABLES/FT002 (Group) ''\n", "/FTABLES/FT002/table (Table(13,)) ''\n", " description := {\n", @@ -8634,11 +8871,11 @@ " chunkshape := (1638,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Depth\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Area\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Volume\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Disch1\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Depth\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Area\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Volume\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Disch1\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/FTABLES/FT003 (Group) ''\n", "/FTABLES/FT003/table (Table(13,)) ''\n", " description := {\n", @@ -8651,11 +8888,11 @@ " chunkshape := (1638,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Depth\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Area\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Volume\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Disch1\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Depth\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Area\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Volume\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Disch1\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/FTABLES/FT004 (Group) ''\n", "/FTABLES/FT004/table (Table(13,)) ''\n", " description := {\n", @@ -8668,11 +8905,11 @@ " chunkshape := (1638,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Depth\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Area\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Volume\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Disch1\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Depth\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Area\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Volume\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Disch1\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/FTABLES/FT005 (Group) ''\n", "/FTABLES/FT005/table (Table(13,)) ''\n", " description := {\n", @@ -8685,11 +8922,11 @@ " chunkshape := (1638,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Depth\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Area\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Volume\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Disch1\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Depth\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Area\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Volume\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Disch1\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/CONTROL/EXT_SOURCES (Group) ''\n", "/CONTROL/EXT_SOURCES/table (Table(50,)) ''\n", " description := {\n", @@ -8712,21 +8949,21 @@ " chunkshape := (1040,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SVOLNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMSB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSYST\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SGAPST\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MFACTOR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TRAN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TGRPN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMSB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TVOLNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COMMENT\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SVOLNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMSB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSYST\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SGAPST\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MFACTOR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TRAN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TGRPN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMSB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TVOLNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COMMENT\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/CONTROL/GLOBAL (Group) ''\n", "/CONTROL/GLOBAL/table (Table(4,)) ''\n", " description := {\n", @@ -8736,8 +8973,8 @@ " chunkshape := (809,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"Info\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"Info\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/CONTROL/LINKS (Group) ''\n", "/CONTROL/LINKS/table (Table(11,)) ''\n", " description := {\n", @@ -8767,28 +9004,28 @@ " chunkshape := (736,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"AFACTR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MFACTOR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MLNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SGRPN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMSB1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMSB2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SVOLNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TGRPN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMSB1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMSB2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TOPFST\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TOPLST\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TRAN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TVOLNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMSB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMSB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COMMENTS\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"AFACTR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MFACTOR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MLNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SGRPN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMSB1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMSB2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SVOLNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TGRPN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMSB1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMSB2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TOPFST\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TOPLST\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TRAN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TVOLNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMSB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMSB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COMMENTS\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/CONTROL/MASS_LINKS (Group) ''\n", "/CONTROL/MASS_LINKS/table (Table(15,)) ''\n", " description := {\n", @@ -8809,19 +9046,19 @@ " chunkshape := (1191,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SGRPN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMSB1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMSB2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MFACTOR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMSB1\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMSB2\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MLNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COMMENTS\": Index(6, medium, shuffle, zlib(1)).is_csi=False}\n", + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SGRPN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMSB1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMSB2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MFACTOR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMSB1\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMSB2\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MLNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COMMENTS\": Index(6, mediumshuffle, zlib(1)).is_csi=False}\n", "/CONTROL/OP_SEQUENCE (Group) ''\n", "/CONTROL/OP_SEQUENCE/table (Table(9,)) ''\n", " description := {\n", @@ -8833,10 +9070,10 @@ " chunkshape := (2520,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"OPERATION\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SEGMENT\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"INDELT_minutes\": Index(6, medium, shuffle, zlib(1)).is_csi=False}" + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"OPERATION\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SEGMENT\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"INDELT_minutes\": Index(6, mediumshuffle, zlib(1)).is_csi=False}" ] }, "execution_count": 12, @@ -8903,6 +9140,7 @@ "/PERLND/PWATER (Group) ''\n", "/PERLND/PWTGAS (Group) ''\n", "/PERLND/SNOW (Group) ''\n", + "/RCHRES/ACIDPH (Group) ''\n", "/RCHRES/CONS (Group) ''\n", "/RCHRES/GENERAL (Group) ''\n", "/RCHRES/GQUAL (Group) ''\n", @@ -9079,6 +9317,7 @@ "/RESULTS/IMPLND_I001/IWTGAS/table (Table(8784,)) ''\n", "/RESULTS/IMPLND_I001/SNOW/table (Table(8784,)) ''\n", "/RESULTS/IMPLND_I001/SOLIDS/table (Table(8784,)) ''\n", + "/RCHRES/ACIDPH/STATES (Group) ''\n", "/RCHRES/CONS/CONS1 (Group) ''\n", "/RCHRES/CONS/PARAMETERS (Group) ''\n", "/RCHRES/CONS/SAVE (Group) ''\n", @@ -9164,6 +9403,7 @@ "/RCHRES/CONS/CONS1/table (Table(5,)) ''\n", "/RCHRES/CONS/PARAMETERS/table (Table(5,)) ''\n", "/RCHRES/CONS/SAVE/table (Table(5,)) ''\n", + "/RCHRES/ACIDPH/STATES/table (Table(5,)) ''\n", "/PERLND/GENERAL/ACTIVITY (Group) ''\n", "/PERLND/GENERAL/INFO (Group) ''\n", "/PERLND/PSTEMP/PARAMETERS (Group) ''\n", @@ -9209,6 +9449,7 @@ "/IMPLND/IWATER/STATES (Group) ''\n", "/IMPLND/IWTGAS/PARAMETERS (Group) ''\n", "/IMPLND/IWTGAS/SAVE (Group) ''\n", + "/IMPLND/IWTGAS/STATES (Group) ''\n", "/IMPLND/SNOW/FLAGS (Group) ''\n", "/IMPLND/SNOW/PARAMETERS (Group) ''\n", "/IMPLND/SNOW/SAVE (Group) ''\n", @@ -9223,6 +9464,7 @@ "/IMPLND/SNOW/STATES/table (Table(1,)) ''\n", "/IMPLND/IWTGAS/PARAMETERS/table (Table(1,)) ''\n", "/IMPLND/IWTGAS/SAVE/table (Table(1,)) ''\n", + "/IMPLND/IWTGAS/STATES/table (Table(1,)) ''\n", "/IMPLND/IWATER/PARAMETERS/table (Table(1,)) ''\n", "/IMPLND/IWATER/SAVE/table (Table(1,)) ''\n", "/IMPLND/IWATER/STATES/table (Table(1,)) ''\n", @@ -9361,6 +9603,7 @@ "/RESULTS/IMPLND_I001/IWTGAS (Group) ''\n", "/RESULTS/IMPLND_I001/SNOW (Group) ''\n", "/RESULTS/IMPLND_I001/SOLIDS (Group) ''\n", + "/RCHRES/ACIDPH (Group) ''\n", "/RCHRES/CONS (Group) ''\n", "/RCHRES/GENERAL (Group) ''\n", "/RCHRES/GQUAL (Group) ''\n", @@ -9415,6 +9658,7 @@ "/RCHRES/CONS/CONS1 (Group) ''\n", "/RCHRES/CONS/PARAMETERS (Group) ''\n", "/RCHRES/CONS/SAVE (Group) ''\n", + "/RCHRES/ACIDPH/STATES (Group) ''\n", "/PERLND/GENERAL (Group) ''\n", "/PERLND/PSTEMP (Group) ''\n", "/PERLND/PWATER (Group) ''\n", @@ -9452,6 +9696,7 @@ "/IMPLND/SNOW/STATES (Group) ''\n", "/IMPLND/IWTGAS/PARAMETERS (Group) ''\n", "/IMPLND/IWTGAS/SAVE (Group) ''\n", + "/IMPLND/IWTGAS/STATES (Group) ''\n", "/IMPLND/IWATER/PARAMETERS (Group) ''\n", "/IMPLND/IWATER/SAVE (Group) ''\n", "/IMPLND/IWATER/STATES (Group) ''\n", @@ -9580,21 +9825,21 @@ " chunkshape := (1040,)\n", " autoindex := True\n", " colindexes := {\n", - " \"index\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SVOLNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SMEMSB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SSYST\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"SGAPST\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"MFACTOR\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TRAN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TVOL\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TGRPN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMN\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TMEMSB\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"TVOLNO\": Index(6, medium, shuffle, zlib(1)).is_csi=False,\n", - " \"COMMENT\": Index(6, medium, shuffle, zlib(1)).is_csi=False}" + " \"index\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SVOLNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SMEMSB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SSYST\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"SGAPST\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"MFACTOR\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TRAN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TVOL\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TGRPN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMN\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TMEMSB\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"TVOLNO\": Index(6, mediumshuffle, zlib(1)).is_csi=False,\n", + " \"COMMENT\": Index(6, mediumshuffle, zlib(1)).is_csi=False}" ] }, "execution_count": 18, @@ -9911,6 +10156,7 @@ "/RESULTS/IMPLND_I001/SNOW/table (Table(8784,)) ''\n", "/RESULTS/IMPLND_I001/SOLIDS (Group) ''\n", "/RESULTS/IMPLND_I001/SOLIDS/table (Table(8784,)) ''\n", + "/RCHRES/ACIDPH (Group) ''\n", "/RCHRES/CONS (Group) ''\n", "/RCHRES/GENERAL (Group) ''\n", "/RCHRES/GQUAL (Group) ''\n", @@ -10007,6 +10253,8 @@ "/RCHRES/CONS/PARAMETERS/table (Table(5,)) ''\n", "/RCHRES/CONS/SAVE (Group) ''\n", "/RCHRES/CONS/SAVE/table (Table(5,)) ''\n", + "/RCHRES/ACIDPH/STATES (Group) ''\n", + "/RCHRES/ACIDPH/STATES/table (Table(5,)) ''\n", "/PERLND/GENERAL (Group) ''\n", "/PERLND/PSTEMP (Group) ''\n", "/PERLND/PWATER (Group) ''\n", @@ -10069,6 +10317,8 @@ "/IMPLND/IWTGAS/PARAMETERS/table (Table(1,)) ''\n", "/IMPLND/IWTGAS/SAVE (Group) ''\n", "/IMPLND/IWTGAS/SAVE/table (Table(1,)) ''\n", + "/IMPLND/IWTGAS/STATES (Group) ''\n", + "/IMPLND/IWTGAS/STATES/table (Table(1,)) ''\n", "/IMPLND/IWATER/PARAMETERS (Group) ''\n", "/IMPLND/IWATER/PARAMETERS/table (Table(1,)) ''\n", "/IMPLND/IWATER/SAVE (Group) ''\n", @@ -10305,6 +10555,7 @@ "PERLND\\ PWATER\n", "PERLND\\ PWTGAS\n", "PERLND\\ SNOW\n", + "RCHRES\\ ACIDPH\n", "RCHRES\\ CONS\n", "RCHRES\\ GENERAL\n", "RCHRES\\ GQUAL\n", @@ -10447,7 +10698,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "hsp2_py310", "language": "python", "name": "python3" }, @@ -10461,14 +10712,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.14" + "version": "3.10.16" }, - "toc-autonumbering": true, - "vscode": { - "interpreter": { - "hash": "776e005896af2bdd35b514f04d0649047a67df21e3539ef9c16d2c229e31ef47" - } - } + "toc-autonumbering": true }, "nbformat": 4, "nbformat_minor": 5 diff --git a/examples/3_DataVisualizationDemo.ipynb b/examples/3_DataVisualizationDemo.ipynb index 84083be3..154682ee 100644 --- a/examples/3_DataVisualizationDemo.ipynb +++ b/examples/3_DataVisualizationDemo.ipynb @@ -49,1895 +49,31 @@ "outputs": [ { "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, js_modules, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - " if (js_modules == null) js_modules = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls.length === 0 && js_modules.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error() {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (var i = 0; i < css_urls.length; i++) {\n", - " var url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var skip = [];\n", - " if (window.requirejs) {\n", - " window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n", - " \n", - " root._bokeh_is_loading = css_urls.length + 0;\n", - " } else {\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length;\n", - " }\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " if (skip.indexOf(url) >= 0) {\n", - "\tif (!window.requirejs) {\n", - "\t on_load();\n", - "\t}\n", - "\tcontinue;\n", - " }\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " for (var i = 0; i < js_modules.length; i++) {\n", - " var url = js_modules[i];\n", - " if (skip.indexOf(url) >= 0) {\n", - "\tif (!window.requirejs) {\n", - "\t on_load();\n", - "\t}\n", - "\tcontinue;\n", - " }\n", - " var element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error;\n", - " element.async = false;\n", - " element.src = url;\n", - " element.type = \"module\";\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " if (!js_urls.length && !js_modules.length) {\n", - " on_load()\n", - " }\n", - " };\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " var js_urls = [];\n", - " var js_modules = [];\n", - " var css_urls = [];\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " inject_raw_css(\".bk.alert {\\n padding: 0.75rem 1.25rem;\\n border: 1px solid transparent;\\n border-radius: 0.25rem;\\n /* Don't set margin because that will not render correctly! */\\n /* margin-bottom: 1rem; */\\n margin-top: 15px;\\n margin-bottom: 15px;\\n}\\n.bk.alert a {\\n color: rgb(11, 46, 19); /* #002752; */\\n font-weight: 700;\\n text-decoration: rgb(11, 46, 19);\\n text-decoration-color: rgb(11, 46, 19);\\n text-decoration-line: none;\\n text-decoration-style: solid;\\n text-decoration-thickness: auto;\\n }\\n.bk.alert a:hover {\\n color: rgb(11, 46, 19);\\n font-weight: 700;\\n text-decoration: underline;\\n}\\n\\n.bk.alert-primary {\\n color: #004085;\\n background-color: #cce5ff;\\n border-color: #b8daff;\\n}\\n.bk.alert-primary hr {\\n border-top-color: #9fcdff;\\n}\\n\\n.bk.alert-secondary {\\n color: #383d41;\\n background-color: #e2e3e5;\\n border-color: #d6d8db;\\n }\\n.bk.alert-secondary hr {\\n border-top-color: #c8cbcf;\\n}\\n\\n.bk.alert-success {\\n color: #155724;\\n background-color: #d4edda;\\n border-color: #c3e6cb;\\n }\\n\\n.bk.alert-success hr {\\n border-top-color: #b1dfbb;\\n}\\n\\n.bk.alert-info {\\n color: #0c5460;\\n background-color: #d1ecf1;\\n border-color: #bee5eb;\\n }\\n.bk.alert-info hr {\\n border-top-color: #abdde5;\\n}\\n\\n.bk.alert-warning {\\n color: #856404;\\n background-color: #fff3cd;\\n border-color: #ffeeba;\\n }\\n\\n.bk.alert-warning hr {\\n border-top-color: #ffe8a1;\\n}\\n\\n.bk.alert-danger {\\n color: #721c24;\\n background-color: #f8d7da;\\n border-color: #f5c6cb;\\n}\\n.bk.alert-danger hr {\\n border-top-color: #f1b0b7;\\n}\\n\\n.bk.alert-light {\\n color: #818182;\\n background-color: #fefefe;\\n border-color: #fdfdfe;\\n }\\n.bk.alert-light hr {\\n border-top-color: #ececf6;\\n}\\n\\n.bk.alert-dark {\\n color: #1b1e21;\\n background-color: #d6d8d9;\\n border-color: #c6c8ca;\\n }\\n.bk.alert-dark hr {\\n border-top-color: #b9bbbe;\\n}\\n\\n\\n/* adjf\\u00e6l */\\n\\n.bk.alert-primary a {\\n color: #002752;\\n}\\n\\n.bk.alert-secondary a {\\n color: #202326;\\n}\\n\\n\\n.bk.alert-success a {\\n color: #0b2e13;\\n}\\n\\n\\n.bk.alert-info a {\\n color: #062c33;\\n}\\n\\n\\n.bk.alert-warning a {\\n color: #533f03;\\n}\\n\\n\\n.bk.alert-danger a {\\n color: #491217;\\n}\\n\\n.bk.alert-light a {\\n color: #686868;\\n}\\n\\n.bk.alert-dark a {\\n color: #040505;\\n}\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".bk.card {\\n border: 1px solid rgba(0,0,0,.125);\\n border-radius: 0.25rem;\\n}\\n.bk.accordion {\\n border: 1px solid rgba(0,0,0,.125);\\n}\\n.bk.card-header {\\n align-items: center;\\n background-color: rgba(0, 0, 0, 0.03);\\n border-radius: 0.25rem;\\n display: inline-flex;\\n justify-content: start;\\n width: 100%;\\n}\\n.bk.accordion-header {\\n align-items: center;\\n background-color: rgba(0, 0, 0, 0.03);\\n border-radius: 0;\\n display: flex;\\n justify-content: start;\\n width: 100%;\\n}\\n.bk.card-button {\\n background-color: transparent;\\n margin-left: 0.5em;\\n}\\n.bk.card-header-row {\\n position: relative !important;\\n}\\n.bk.card-title {\\n align-items: center;\\n font-size: 1.4em;\\n font-weight: bold;\\n overflow-wrap: break-word;\\n}\\n.bk.card-header-row > .bk {\\n overflow-wrap: break-word;\\n text-align: center;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".bk.panel-widget-box {\\n min-height: 20px;\\n background-color: #f5f5f5;\\n border: 1px solid #e3e3e3;\\n border-radius: 4px;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n box-shadow: inset 0 1px 1px rgba(0,0,0,.05);\\n overflow-x: hidden;\\n overflow-y: hidden;\\n}\\n\\n.scrollable {\\n overflow: scroll;\\n}\\n\\nprogress {\\n appearance: none;\\n -moz-appearance: none;\\n -webkit-appearance: none;\\n border: none;\\n height: 20px;\\n background-color: whiteSmoke;\\n border-radius: 3px;\\n box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n color: royalblue;\\n position: relative;\\n margin: 0 0 1.5em;\\n}\\n\\nprogress[value]::-webkit-progress-bar {\\n background-color: whiteSmoke;\\n border-radius: 3px;\\n box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;\\n}\\n\\nprogress[value]::-webkit-progress-value {\\n position: relative;\\n background-size: 35px 20px, 100% 100%, 100% 100%;\\n border-radius:3px;\\n}\\n\\nprogress.active:not([value])::before {\\n background-position: 10%;\\n animation-name: stripes;\\n animation-duration: 3s;\\n animation-timing-function: linear;\\n animation-iteration-count: infinite;\\n}\\n\\nprogress[value]::-moz-progress-bar {\\n background-size: 35px 20px, 100% 100%, 100% 100%;\\n border-radius:3px;\\n}\\n\\nprogress:not([value])::-moz-progress-bar {\\n border-radius:3px;\\n background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\nprogress.active:not([value])::-moz-progress-bar {\\n background-position: 10%;\\n animation-name: stripes;\\n animation-duration: 3s;\\n animation-timing-function: linear;\\n animation-iteration-count: infinite;\\n}\\n\\nprogress.active:not([value])::-webkit-progress-bar {\\n background-position: 10%;\\n animation-name: stripes;\\n animation-duration: 3s;\\n animation-timing-function: linear;\\n animation-iteration-count: infinite;\\n}\\n\\nprogress.primary[value]::-webkit-progress-value { background-color: #007bff; }\\nprogress.primary:not([value])::before { background-color: #007bff; }\\nprogress.primary:not([value])::-webkit-progress-bar { background-color: #007bff; }\\nprogress.primary::-moz-progress-bar { background-color: #007bff; }\\n\\nprogress.secondary[value]::-webkit-progress-value { background-color: #6c757d; }\\nprogress.secondary:not([value])::before { background-color: #6c757d; }\\nprogress.secondary:not([value])::-webkit-progress-bar { background-color: #6c757d; }\\nprogress.secondary::-moz-progress-bar { background-color: #6c757d; }\\n\\nprogress.success[value]::-webkit-progress-value { background-color: #28a745; }\\nprogress.success:not([value])::before { background-color: #28a745; }\\nprogress.success:not([value])::-webkit-progress-bar { background-color: #28a745; }\\nprogress.success::-moz-progress-bar { background-color: #28a745; }\\n\\nprogress.danger[value]::-webkit-progress-value { background-color: #dc3545; }\\nprogress.danger:not([value])::before { background-color: #dc3545; }\\nprogress.danger:not([value])::-webkit-progress-bar { background-color: #dc3545; }\\nprogress.danger::-moz-progress-bar { background-color: #dc3545; }\\n\\nprogress.warning[value]::-webkit-progress-value { background-color: #ffc107; }\\nprogress.warning:not([value])::before { background-color: #ffc107; }\\nprogress.warning:not([value])::-webkit-progress-bar { background-color: #ffc107; }\\nprogress.warning::-moz-progress-bar { background-color: #ffc107; }\\n\\nprogress.info[value]::-webkit-progress-value { background-color: #17a2b8; }\\nprogress.info:not([value])::before { background-color: #17a2b8; }\\nprogress.info:not([value])::-webkit-progress-bar { background-color: #17a2b8; }\\nprogress.info::-moz-progress-bar { background-color: #17a2b8; }\\n\\nprogress.light[value]::-webkit-progress-value { background-color: #f8f9fa; }\\nprogress.light:not([value])::before { background-color: #f8f9fa; }\\nprogress.light:not([value])::-webkit-progress-bar { background-color: #f8f9fa; }\\nprogress.light::-moz-progress-bar { background-color: #f8f9fa; }\\n\\nprogress.dark[value]::-webkit-progress-value { background-color: #343a40; }\\nprogress.dark:not([value])::-webkit-progress-bar { background-color: #343a40; }\\nprogress.dark:not([value])::before { background-color: #343a40; }\\nprogress.dark::-moz-progress-bar { background-color: #343a40; }\\n\\nprogress:not([value])::-webkit-progress-bar {\\n border-radius: 3px;\\n background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\nprogress:not([value])::before {\\n content:\\\" \\\";\\n position:absolute;\\n height: 20px;\\n top:0;\\n left:0;\\n right:0;\\n bottom:0;\\n border-radius: 3px;\\n background: linear-gradient(-45deg, transparent 33%, rgba(0, 0, 0, 0.2) 33%, rgba(0, 0, 0, 0.2) 66%, transparent 66%) left/2.5em 1.5em;\\n}\\n\\n@keyframes stripes {\\n from {background-position: 0%}\\n to {background-position: 100%}\\n}\\n\\n.bk-root .bk.loader {\\n overflow: hidden;\\n}\\n\\n.bk.loader::after {\\n content: \\\"\\\";\\n border-radius: 50%;\\n -webkit-mask-image: radial-gradient(transparent 50%, rgba(0, 0, 0, 1) 54%);\\n width: 100%;\\n height: 100%;\\n left: 0;\\n top: 0;\\n position: absolute;\\n}\\n\\n.bk-root .bk.loader.dark::after {\\n background: #0f0f0f;\\n}\\n\\n.bk-root .bk.loader.light::after {\\n background: #f0f0f0;\\n}\\n\\n.bk-root .bk.loader.spin::after {\\n animation: spin 2s linear infinite;\\n}\\n\\n.bk-root div.bk.loader.spin.primary-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #007bff 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.secondary-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #6c757d 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.success-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #28a745 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.danger-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #dc3545 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.warning-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #ffc107 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.info-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #17a2b8 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.light-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #f8f9fa 50%);\\n}\\n\\n.bk-root div.bk.loader.dark-light::after {\\n background: linear-gradient(135deg, #f0f0f0 50%, transparent 50%), linear-gradient(45deg, #f0f0f0 50%, #343a40 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.primary-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #007bff 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.secondary-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #6c757d 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.success-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #28a745 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.danger-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #dc3545 50%)\\n}\\n\\n.bk-root div.bk.loader.spin.warning-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #ffc107 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.info-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #17a2b8 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.light-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #f8f9fa 50%);\\n}\\n\\n.bk-root div.bk.loader.spin.dark-dark::after {\\n background: linear-gradient(135deg, #0f0f0f 50%, transparent 50%), linear-gradient(45deg, #0f0f0f 50%, #343a40 50%);\\n}\\n\\n/* Safari */\\n@-webkit-keyframes spin {\\n 0% { -webkit-transform: rotate(0deg); }\\n 100% { -webkit-transform: rotate(360deg); }\\n}\\n\\n@keyframes spin {\\n 0% { transform: rotate(0deg); }\\n 100% { transform: rotate(360deg); }\\n}\\n\\n.dot div {\\n height: 100%;\\n width: 100%;\\n border: 1px solid #000 !important;\\n background-color: #fff;\\n border-radius: 50%;\\n display: inline-block;\\n}\\n\\n.dot-filled div {\\n height: 100%;\\n width: 100%;\\n border: 1px solid #000 !important;\\n border-radius: 50%;\\n display: inline-block;\\n}\\n\\n.dot-filled.primary div {\\n background-color: #007bff;\\n}\\n\\n.dot-filled.secondary div {\\n background-color: #6c757d;\\n}\\n\\n.dot-filled.success div {\\n background-color: #28a745;\\n}\\n\\n.dot-filled.danger div {\\n background-color: #dc3545;\\n}\\n\\n.dot-filled.warning div {\\n background-color: #ffc107;\\n}\\n\\n.dot-filled.info div {\\n background-color: #17a2b8;\\n}\\n\\n.dot-filled.dark div {\\n background-color: #343a40;\\n}\\n\\n.dot-filled.light div {\\n background-color: #f8f9fa;\\n}\\n\\n/* Slider editor */\\n.slider-edit .bk-input-group .bk-input {\\n border: 0;\\n border-radius: 0;\\n min-height: 0;\\n padding-left: 0;\\n padding-right: 0;\\n font-weight: bold;\\n}\\n\\n.slider-edit .bk-input-group .bk-spin-wrapper {\\n display: contents;\\n}\\n\\n.slider-edit .bk-input-group .bk-spin-wrapper .bk.bk-spin-btn-up {\\n top: -6px;\\n}\\n\\n.slider-edit .bk-input-group .bk-spin-wrapper .bk.bk-spin-btn-down {\\n bottom: 3px;\\n}\\n\\n/* JSON Pane */\\n.bk-root .json-formatter-row .json-formatter-string, .bk-root .json-formatter-row .json-formatter-stringifiable {\\n white-space: pre-wrap;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".codehilite .hll { background-color: #ffffcc }\\n.codehilite { background: #f8f8f8; }\\n.codehilite .c { color: #408080; font-style: italic } /* Comment */\\n.codehilite .err { border: 1px solid #FF0000 } /* Error */\\n.codehilite .k { color: #008000; font-weight: bold } /* Keyword */\\n.codehilite .o { color: #666666 } /* Operator */\\n.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\\n.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */\\n.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */\\n.codehilite .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\\n.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */\\n.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */\\n.codehilite .gd { color: #A00000 } /* Generic.Deleted */\\n.codehilite .ge { font-style: italic } /* Generic.Emph */\\n.codehilite .gr { color: #FF0000 } /* Generic.Error */\\n.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */\\n.codehilite .gi { color: #00A000 } /* Generic.Inserted */\\n.codehilite .go { color: #888888 } /* Generic.Output */\\n.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\\n.codehilite .gs { font-weight: bold } /* Generic.Strong */\\n.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\\n.codehilite .gt { color: #0044DD } /* Generic.Traceback */\\n.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\\n.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\\n.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\\n.codehilite .kp { color: #008000 } /* Keyword.Pseudo */\\n.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\\n.codehilite .kt { color: #B00040 } /* Keyword.Type */\\n.codehilite .m { color: #666666 } /* Literal.Number */\\n.codehilite .s { color: #BA2121 } /* Literal.String */\\n.codehilite .na { color: #7D9029 } /* Name.Attribute */\\n.codehilite .nb { color: #008000 } /* Name.Builtin */\\n.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */\\n.codehilite .no { color: #880000 } /* Name.Constant */\\n.codehilite .nd { color: #AA22FF } /* Name.Decorator */\\n.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */\\n.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\\n.codehilite .nf { color: #0000FF } /* Name.Function */\\n.codehilite .nl { color: #A0A000 } /* Name.Label */\\n.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\\n.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */\\n.codehilite .nv { color: #19177C } /* Name.Variable */\\n.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\\n.codehilite .w { color: #bbbbbb } /* Text.Whitespace */\\n.codehilite .mb { color: #666666 } /* Literal.Number.Bin */\\n.codehilite .mf { color: #666666 } /* Literal.Number.Float */\\n.codehilite .mh { color: #666666 } /* Literal.Number.Hex */\\n.codehilite .mi { color: #666666 } /* Literal.Number.Integer */\\n.codehilite .mo { color: #666666 } /* Literal.Number.Oct */\\n.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */\\n.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */\\n.codehilite .sc { color: #BA2121 } /* Literal.String.Char */\\n.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */\\n.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\\n.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */\\n.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\\n.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */\\n.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\\n.codehilite .sx { color: #008000 } /* Literal.String.Other */\\n.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */\\n.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */\\n.codehilite .ss { color: #19177C } /* Literal.String.Symbol */\\n.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */\\n.codehilite .fm { color: #0000FF } /* Name.Function.Magic */\\n.codehilite .vc { color: #19177C } /* Name.Variable.Class */\\n.codehilite .vg { color: #19177C } /* Name.Variable.Global */\\n.codehilite .vi { color: #19177C } /* Name.Variable.Instance */\\n.codehilite .vm { color: #19177C } /* Name.Variable.Magic */\\n.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */\\n\\n.markdown h1 { margin-block-start: 0.34em }\\n.markdown h2 { margin-block-start: 0.42em }\\n.markdown h3 { margin-block-start: 0.5em }\\n.markdown h4 { margin-block-start: 0.67em }\\n.markdown h5 { margin-block-start: 0.84em }\\n.markdown h6 { margin-block-start: 1.17em }\\n.markdown ul { padding-inline-start: 2em }\\n.markdown ol { padding-inline-start: 2em }\\n.markdown strong { font-weight: 600 }\\n.markdown a { color: -webkit-link }\\n.markdown a { color: -moz-hyperlinkText }\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-row,\\n.json-formatter-row a,\\n.json-formatter-row a:hover {\\n color: black;\\n text-decoration: none;\\n}\\n.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-row .json-formatter-string,\\n.json-formatter-row .json-formatter-stringifiable {\\n color: green;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-row .json-formatter-number {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-boolean {\\n color: red;\\n}\\n.json-formatter-row .json-formatter-null {\\n color: #855A00;\\n}\\n.json-formatter-row .json-formatter-undefined {\\n color: #ca0b69;\\n}\\n.json-formatter-row .json-formatter-function {\\n color: #FF20ED;\\n}\\n.json-formatter-row .json-formatter-date {\\n background-color: rgba(0, 0, 0, 0.05);\\n}\\n.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: blue;\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-bracket {\\n color: blue;\\n}\\n.json-formatter-row .json-formatter-key {\\n color: #00008B;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n.json-formatter-dark.json-formatter-row {\\n font-family: monospace;\\n}\\n.json-formatter-dark.json-formatter-row,\\n.json-formatter-dark.json-formatter-row a,\\n.json-formatter-dark.json-formatter-row a:hover {\\n color: white;\\n text-decoration: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-row {\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty {\\n opacity: 0.5;\\n margin-left: 1rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty:after {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-object:after {\\n content: \\\"No properties\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-children.json-formatter-empty.json-formatter-array:after {\\n content: \\\"[]\\\";\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-string,\\n.json-formatter-dark.json-formatter-row .json-formatter-stringifiable {\\n color: #31F031;\\n white-space: pre;\\n word-wrap: break-word;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-number {\\n color: #66C2FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-boolean {\\n color: #EC4242;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-null {\\n color: #EEC97D;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-undefined {\\n color: #ef8fbe;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-function {\\n color: #FD48CB;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-date {\\n background-color: rgba(255, 255, 255, 0.05);\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-url {\\n text-decoration: underline;\\n color: #027BFF;\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-bracket {\\n color: #9494FF;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-key {\\n color: #23A0DB;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler-link {\\n cursor: pointer;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler {\\n line-height: 1.2rem;\\n font-size: 0.7rem;\\n vertical-align: middle;\\n opacity: 0.6;\\n cursor: pointer;\\n padding-right: 0.2rem;\\n}\\n.json-formatter-dark.json-formatter-row .json-formatter-toggler:after {\\n display: inline-block;\\n transition: transform 100ms ease-in;\\n content: \\\"\\\\25BA\\\";\\n}\\n.json-formatter-dark.json-formatter-row > a > .json-formatter-preview-text {\\n opacity: 0;\\n transition: opacity 0.15s ease-in;\\n font-style: italic;\\n}\\n.json-formatter-dark.json-formatter-row:hover > a > .json-formatter-preview-text {\\n opacity: 0.6;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-toggler-link .json-formatter-toggler:after {\\n transform: rotate(90deg);\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > .json-formatter-children:after {\\n display: inline-block;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open > a > .json-formatter-preview-text {\\n display: none;\\n}\\n.json-formatter-dark.json-formatter-row.json-formatter-open.json-formatter-empty:after {\\n display: block;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\".bk.pn-loading:before {\\n position: absolute;\\n height: 100%;\\n width: 100%;\\n content: '';\\n z-index: 1000;\\n background-color: rgb(255,255,255,0.50);\\n border-color: lightgray;\\n background-repeat: no-repeat;\\n background-position: center;\\n background-size: auto 50%;\\n border-width: 1px;\\n cursor: progress;\\n}\\n.bk.pn-loading.arcs:hover:before {\\n cursor: progress;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\"table.panel-df {\\n margin-left: auto;\\n margin-right: auto;\\n border: none;\\n border-collapse: collapse;\\n border-spacing: 0;\\n color: black;\\n font-size: 12px;\\n table-layout: fixed;\\n width: 100%;\\n}\\n\\n.panel-df tr, .panel-df th, .panel-df td {\\n text-align: right;\\n vertical-align: middle;\\n padding: 0.5em 0.5em !important;\\n line-height: normal;\\n white-space: normal;\\n max-width: none;\\n border: none;\\n}\\n\\n.panel-df tbody {\\n display: table-row-group;\\n vertical-align: middle;\\n border-color: inherit;\\n}\\n\\n.panel-df tbody tr:nth-child(odd) {\\n background: #f5f5f5;\\n}\\n\\n.panel-df thead {\\n border-bottom: 1px solid black;\\n vertical-align: bottom;\\n}\\n\\n.panel-df tr:hover {\\n background: lightblue !important;\\n cursor: pointer;\\n}\\n\");\n", - " },\n", - " function(Bokeh) {\n", - " inject_raw_css(\"\\n .bk.pn-loading.arcs:before {\\n background-image: url(\\\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0ibWFyZ2luOiBhdXRvOyBiYWNrZ3JvdW5kOiBub25lOyBkaXNwbGF5OiBibG9jazsgc2hhcGUtcmVuZGVyaW5nOiBhdXRvOyIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIj4gIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjMyIiBzdHJva2Utd2lkdGg9IjgiIHN0cm9rZT0iI2MzYzNjMyIgc3Ryb2tlLWRhc2hhcnJheT0iNTAuMjY1NDgyNDU3NDM2NjkgNTAuMjY1NDgyNDU3NDM2NjkiIGZpbGw9Im5vbmUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+ICAgIDxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgdHlwZT0icm90YXRlIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIga2V5VGltZXM9IjA7MSIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCI+PC9hbmltYXRlVHJhbnNmb3JtPiAgPC9jaXJjbGU+PC9zdmc+\\\");\\n max-height: 400px;\\n }\\n \");\n", - " },\n", - " function(Bokeh) {\n", - " /* BEGIN bokeh.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2021, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " const bokeh = factory();\n", - " bokeh.__bokeh__ = true;\n", - " if (typeof root.Bokeh === \"undefined\" || typeof root.Bokeh.__bokeh__ === \"undefined\") {\n", - " root.Bokeh = bokeh;\n", - " }\n", - " const Bokeh = root.Bokeh;\n", - " Bokeh[bokeh.version] = bokeh;\n", - " })(this, function() {\n", - " let define;\n", - " const parent_require = typeof require === \"function\" && require\n", - " return (function(modules, entry, aliases, externals) {\n", - " if (aliases === undefined) aliases = {};\n", - " if (externals === undefined) externals = {};\n", - "\n", - " const cache = {};\n", - "\n", - " const normalize = function(name) {\n", - " if (typeof name === \"number\")\n", - " return name;\n", - "\n", - " if (name === \"bokehjs\")\n", - " return entry;\n", - "\n", - " if (!externals[name]) {\n", - " const prefix = \"@bokehjs/\"\n", - " if (name.slice(0, prefix.length) === prefix)\n", - " name = name.slice(prefix.length)\n", - " }\n", - "\n", - " const alias = aliases[name]\n", - " if (alias != null)\n", - " return alias;\n", - "\n", - " const trailing = name.length > 0 && name[name.lenght-1] === \"/\";\n", - " const index = aliases[name + (trailing ? \"\" : \"/\") + \"index\"];\n", - " if (index != null)\n", - " return index;\n", - "\n", - " return name;\n", - " }\n", - "\n", - " const require = function(name) {\n", - " let mod = cache[name];\n", - " if (!mod) {\n", - " const id = normalize(name);\n", - "\n", - " mod = cache[id];\n", - " if (!mod) {\n", - " if (!modules[id]) {\n", - " if (externals[id] === false || (externals[id] == true && parent_require)) {\n", - " try {\n", - " mod = {exports: externals[id] ? parent_require(id) : {}};\n", - " cache[id] = cache[name] = mod;\n", - " return mod.exports;\n", - " } catch (e) {}\n", - " }\n", - "\n", - " const err = new Error(\"Cannot find module '\" + name + \"'\");\n", - " err.code = 'MODULE_NOT_FOUND';\n", - " throw err;\n", - " }\n", - "\n", - " mod = {exports: {}};\n", - " cache[id] = cache[name] = mod;\n", - "\n", - " function __esModule() {\n", - " Object.defineProperty(mod.exports, \"__esModule\", {value: true});\n", - " }\n", - "\n", - " function __esExport(name, value) {\n", - " Object.defineProperty(mod.exports, name, {\n", - " enumerable: true, get: function () { return value; }\n", - " });\n", - " }\n", - "\n", - " modules[id].call(mod.exports, require, mod, mod.exports, __esModule, __esExport);\n", - " } else {\n", - " cache[name] = mod;\n", - " }\n", - " }\n", - "\n", - " return mod.exports;\n", - " }\n", - " require.resolve = function(name) {\n", - " return \"\"\n", - " }\n", - "\n", - " const main = require(entry);\n", - " main.require = require;\n", - "\n", - " if (typeof Proxy !== \"undefined\") {\n", - " // allow Bokeh.loader[\"@bokehjs/module/name\"] syntax\n", - " main.loader = new Proxy({}, {\n", - " get: function(_obj, module) {\n", - " return require(module);\n", - " }\n", - " });\n", - " }\n", - "\n", - " main.register_plugin = function(plugin_modules, plugin_entry, plugin_aliases, plugin_externals) {\n", - " if (plugin_aliases === undefined) plugin_aliases = {};\n", - " if (plugin_externals === undefined) plugin_externals = {};\n", - "\n", - " for (let name in plugin_modules) {\n", - " modules[name] = plugin_modules[name];\n", - " }\n", - "\n", - " for (let name in plugin_aliases) {\n", - " aliases[name] = plugin_aliases[name];\n", - " }\n", - "\n", - " for (let name in plugin_externals) {\n", - " externals[name] = plugin_externals[name];\n", - " }\n", - "\n", - " const plugin = require(plugin_entry);\n", - "\n", - " for (let name in plugin) {\n", - " main[name] = plugin[name];\n", - " }\n", - "\n", - " return plugin;\n", - " }\n", - "\n", - " return main;\n", - " })\n", - " ([\n", - " function _(t,_,n,o,r){o();(0,t(1).__exportStar)(t(2),n)},\n", - " function _(t,e,r,n,o){n();var a=function(t,e){return a=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])},a(t,e)};r.__extends=function(t,e){if(\"function\"!=typeof e&&null!==e)throw new TypeError(\"Class extends value \"+String(e)+\" is not a constructor or null\");function r(){this.constructor=t}a(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)};function i(t){var e=\"function\"==typeof Symbol&&Symbol.iterator,r=e&&t[e],n=0;if(r)return r.call(t);if(t&&\"number\"==typeof t.length)return{next:function(){return t&&n>=t.length&&(t=void 0),{value:t&&t[n++],done:!t}}};throw new TypeError(e?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function c(t,e){var r=\"function\"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var n,o,a=r.call(t),i=[];try{for(;(void 0===e||e-- >0)&&!(n=a.next()).done;)i.push(n.value)}catch(t){o={error:t}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}function u(t){return this instanceof u?(this.v=t,this):new u(t)}r.__assign=function(){return r.__assign=Object.assign||function(t){for(var e,r=1,n=arguments.length;r=0;c--)(o=t[c])&&(i=(a<3?o(i):a>3?o(e,r,i):o(e,r))||i);return a>3&&i&&Object.defineProperty(e,r,i),i},r.__param=function(t,e){return function(r,n){e(r,n,t)}},r.__metadata=function(t,e){if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.metadata)return Reflect.metadata(t,e)},r.__awaiter=function(t,e,r,n){return new(r||(r=Promise))((function(o,a){function i(t){try{u(n.next(t))}catch(t){a(t)}}function c(t){try{u(n.throw(t))}catch(t){a(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(i,c)}u((n=n.apply(t,e||[])).next())}))},r.__generator=function(t,e){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:c(0),throw:c(1),return:c(2)},\"function\"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function c(a){return function(c){return function(a){if(r)throw new TypeError(\"Generator is already executing.\");for(;i;)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;switch(n=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,n=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(o=i.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]1||c(t,e)}))})}function c(t,e){try{(r=o[t](e)).value instanceof u?Promise.resolve(r.value.v).then(f,l):s(a[0][2],r)}catch(t){s(a[0][3],t)}var r}function f(t){c(\"next\",t)}function l(t){c(\"throw\",t)}function s(t,e){t(e),a.shift(),a.length&&c(a[0][0],a[0][1])}},r.__asyncDelegator=function(t){var e,r;return e={},n(\"next\"),n(\"throw\",(function(t){throw t})),n(\"return\"),e[Symbol.iterator]=function(){return this},e;function n(n,o){e[n]=t[n]?function(e){return(r=!r)?{value:u(t[n](e)),done:\"return\"===n}:o?o(e):e}:o}},r.__asyncValues=function(t){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var e,r=t[Symbol.asyncIterator];return r?r.call(t):(t=i(t),e={},n(\"next\"),n(\"throw\"),n(\"return\"),e[Symbol.asyncIterator]=function(){return this},e);function n(r){e[r]=t[r]&&function(e){return new Promise((function(n,o){(function(t,e,r,n){Promise.resolve(n).then((function(e){t({value:e,done:r})}),e)})(n,o,(e=t[r](e)).done,e.value)}))}}},r.__makeTemplateObject=function(t,e){return Object.defineProperty?Object.defineProperty(t,\"raw\",{value:e}):t.raw=e,t};var f=Object.create?function(t,e){Object.defineProperty(t,\"default\",{enumerable:!0,value:e})}:function(t,e){t.default=e};r.__importStar=function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var n in t)\"default\"!==n&&Object.prototype.hasOwnProperty.call(t,n)&&(0,r.__createBinding)(e,t,n);return f(e,t),e},r.__importDefault=function(t){return t&&t.__esModule?t:{default:t}},r.__classPrivateFieldGet=function(t,e,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"==typeof e?t!==e||!n:!e.has(t))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(t):n?n.value:e.get(t)},r.__classPrivateFieldSet=function(t,e,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"==typeof e?t!==e||!o:!e.has(t))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(t,r):o?o.value=r:e.set(t,r),r}},\n", - " function _(e,t,o,s,l){s();const n=e(1);l(\"version\",e(3).version),l(\"index\",e(4).index),o.embed=(0,n.__importStar)(e(4)),o.protocol=(0,n.__importStar)(e(406)),o._testing=(0,n.__importStar)(e(407));var r=e(19);l(\"logger\",r.logger),l(\"set_log_level\",r.set_log_level),l(\"settings\",e(28).settings),l(\"Models\",e(7).Models),l(\"documents\",e(5).documents),l(\"safely\",e(408).safely)},\n", - " function _(n,i,o,c,e){c(),o.version=\"2.4.2\"},\n", - " function _(e,o,t,n,s){n();const d=e(5),r=e(19),_=e(34),c=e(13),i=e(8),a=e(16),u=e(397),l=e(399),m=e(398);var f=e(397);s(\"add_document_standalone\",f.add_document_standalone),s(\"index\",f.index),s(\"add_document_from_session\",e(399).add_document_from_session);var g=e(404);async function w(e,o,t,n){(0,i.isString)(e)&&(e=JSON.parse((0,_.unescape)(e)));const s={};for(const[o,t]of(0,c.entries)(e))s[o]=d.Document.from_json(t);const a=[];for(const e of o){const o=(0,m._resolve_element)(e),d=(0,m._resolve_root_elements)(e);if(null!=e.docid)a.push(await(0,u.add_document_standalone)(s[e.docid],o,d,e.use_for_title));else{if(null==e.token)throw new Error(\"Error rendering Bokeh items: either 'docid' or 'token' was expected.\");{const s=(0,l._get_ws_url)(t,n);r.logger.debug(`embed: computed ws url: ${s}`);try{a.push(await(0,l.add_document_from_session)(s,e.token,o,d,e.use_for_title)),console.log(\"Bokeh items were rendered successfully\")}catch(e){console.log(\"Error rendering Bokeh items:\",e)}}}}return a}s(\"embed_items_notebook\",g.embed_items_notebook),s(\"kernels\",g.kernels),s(\"BOKEH_ROOT\",e(398).BOKEH_ROOT),t.embed_item=async function(e,o){const t={},n=(0,_.uuid4)();t[n]=e.doc,null==o&&(o=e.target_id);const s=document.getElementById(o);null!=s&&s.classList.add(m.BOKEH_ROOT);const d={roots:{[e.root_id]:o},root_ids:[e.root_id],docid:n};await(0,a.defer)();const[r]=await w(t,[d]);return r},t.embed_items=async function(e,o,t,n){return await(0,a.defer)(),w(e,o,t,n)}},\n", - " function _(t,_,o,r,n){r();const a=t(1);(0,a.__exportStar)(t(6),o),(0,a.__exportStar)(t(35),o)},\n", - " function _(e,t,s,o,n){o();const i=e(1),r=e(7),a=e(3),l=e(19),_=e(251),c=e(14),d=e(30),h=e(15),f=e(17),u=e(31),m=e(29),g=e(9),v=e(13),p=(0,i.__importStar)(e(77)),w=e(26),b=e(8),y=e(309),k=e(75),M=e(53),j=e(396),S=e(35);class z{constructor(e){this.document=e,this.session=null,this.subscribed_models=new Set}send_event(e){const t=new S.MessageSentEvent(this.document,\"bokeh_event\",e.to_json());this.document._trigger_on_change(t)}trigger(e){for(const t of this.subscribed_models)null!=e.origin&&e.origin!=t||t._process_event(e)}}s.EventManager=z,z.__name__=\"EventManager\",s.documents=[],s.DEFAULT_TITLE=\"Bokeh Application\";class E{constructor(e){var t;s.documents.push(this),this._init_timestamp=Date.now(),this._resolver=null!==(t=null==e?void 0:e.resolver)&&void 0!==t?t:new r.ModelResolver,this._title=s.DEFAULT_TITLE,this._roots=[],this._all_models=new Map,this._all_models_freeze_count=0,this._callbacks=new Map,this._message_callbacks=new Map,this.event_manager=new z(this),this.idle=new h.Signal0(this,\"idle\"),this._idle_roots=new WeakMap,this._interactive_timestamp=null,this._interactive_plot=null}get layoutables(){return this._roots.filter((e=>e instanceof y.LayoutDOM))}get is_idle(){for(const e of this.layoutables)if(!this._idle_roots.has(e))return!1;return!0}notify_idle(e){this._idle_roots.set(e,!0),this.is_idle&&(l.logger.info(`document idle at ${Date.now()-this._init_timestamp} ms`),this.event_manager.send_event(new _.DocumentReady),this.idle.emit())}clear(){this._push_all_models_freeze();try{for(;this._roots.length>0;)this.remove_root(this._roots[0])}finally{this._pop_all_models_freeze()}}interactive_start(e,t=null){null==this._interactive_plot&&(this._interactive_plot=e,this._interactive_plot.trigger_event(new _.LODStart)),this._interactive_finalize=t,this._interactive_timestamp=Date.now()}interactive_stop(){null!=this._interactive_plot&&(this._interactive_plot.trigger_event(new _.LODEnd),null!=this._interactive_finalize&&this._interactive_finalize()),this._interactive_plot=null,this._interactive_timestamp=null,this._interactive_finalize=null}interactive_duration(){return null==this._interactive_timestamp?-1:Date.now()-this._interactive_timestamp}destructively_move(e){if(e===this)throw new Error(\"Attempted to overwrite a document with itself\");e.clear();const t=(0,g.copy)(this._roots);this.clear();for(const e of t)if(null!=e.document)throw new Error(`Somehow we didn't detach ${e}`);if(0!=this._all_models.size)throw new Error(`this._all_models still had stuff in it: ${this._all_models}`);for(const s of t)e.add_root(s);e.set_title(this._title)}_push_all_models_freeze(){this._all_models_freeze_count+=1}_pop_all_models_freeze(){this._all_models_freeze_count-=1,0===this._all_models_freeze_count&&this._recompute_all_models()}_invalidate_all_models(){l.logger.debug(\"invalidating document models\"),0===this._all_models_freeze_count&&this._recompute_all_models()}_recompute_all_models(){let e=new Set;for(const t of this._roots)e=p.union(e,t.references());const t=new Set(this._all_models.values()),s=p.difference(t,e),o=p.difference(e,t),n=new Map;for(const t of e)n.set(t.id,t);for(const e of s)e.detach_document();for(const e of o)e.attach_document(this);this._all_models=n}roots(){return this._roots}add_root(e,t){if(l.logger.debug(`Adding root: ${e}`),!(0,g.includes)(this._roots,e)){this._push_all_models_freeze();try{this._roots.push(e)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new S.RootAddedEvent(this,e,t))}}remove_root(e,t){const s=this._roots.indexOf(e);if(!(s<0)){this._push_all_models_freeze();try{this._roots.splice(s,1)}finally{this._pop_all_models_freeze()}this._trigger_on_change(new S.RootRemovedEvent(this,e,t))}}title(){return this._title}set_title(e,t){e!==this._title&&(this._title=e,this._trigger_on_change(new S.TitleChangedEvent(this,e,t)))}get_model_by_id(e){var t;return null!==(t=this._all_models.get(e))&&void 0!==t?t:null}get_model_by_name(e){const t=[];for(const s of this._all_models.values())s instanceof M.Model&&s.name==e&&t.push(s);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(`Multiple models are named '${e}'`)}}on_message(e,t){const s=this._message_callbacks.get(e);null==s?this._message_callbacks.set(e,new Set([t])):s.add(t)}remove_on_message(e,t){var s;null===(s=this._message_callbacks.get(e))||void 0===s||s.delete(t)}_trigger_on_message(e,t){const s=this._message_callbacks.get(e);if(null!=s)for(const e of s)e(t)}on_change(e,t=!1){this._callbacks.has(e)||this._callbacks.set(e,t)}remove_on_change(e){this._callbacks.delete(e)}_trigger_on_change(e){for(const[t,s]of this._callbacks)if(!s&&e instanceof S.DocumentEventBatch)for(const s of e.events)t(s);else t(e)}_notify_change(e,t,s,o,n){this._trigger_on_change(new S.ModelChangedEvent(this,e,t,s,o,null==n?void 0:n.setter_id,null==n?void 0:n.hint))}static _instantiate_object(e,t,s,o){const n=Object.assign(Object.assign({},s),{id:e,__deferred__:!0});return new(o.get(t))(n)}static _instantiate_references_json(e,t,s){var o;const n=new Map;for(const i of e){const e=i.id,r=i.type,a=null!==(o=i.attributes)&&void 0!==o?o:{};let l=t.get(e);null==l&&(l=E._instantiate_object(e,r,a,s),null!=i.subtype&&l.set_subtype(i.subtype)),n.set(l.id,l)}return n}static _resolve_refs(e,t,s,o){function n(e){var i;if((0,f.is_ref)(e)){const o=null!==(i=t.get(e.id))&&void 0!==i?i:s.get(e.id);if(null!=o)return o;throw new Error(`reference ${JSON.stringify(e)} isn't known (not in Document?)`)}if((0,u.is_NDArray_ref)(e)){const{buffer:t,dtype:s,shape:n}=(0,u.decode_NDArray)(e,o);return(0,m.ndarray)(t,{dtype:s,shape:n})}return(0,b.isArray)(e)?function(e){const t=[];for(const s of e)t.push(n(s));return t}(e):(0,b.isPlainObject)(e)?function(e){const t={};for(const[s,o]of(0,v.entries)(e))t[s]=n(o);return t}(e):e}return n(e)}static _initialize_references_json(e,t,s,o){const n=new Map;for(const{id:i,attributes:r}of e){const e=!t.has(i),a=e?s.get(i):t.get(i),l=E._resolve_refs(r,t,s,o);a.setv(l,{silent:!0}),n.set(i,{instance:a,is_new:e})}const i=[],r=new Set;function a(e){if(e instanceof c.HasProps){if(n.has(e.id)&&!r.has(e.id)){r.add(e.id);const{instance:t,is_new:s}=n.get(e.id),{attributes:o}=t;for(const e of(0,v.values)(o))a(e);s&&(t.finalize(),i.push(t))}}else if((0,b.isArray)(e))for(const t of e)a(t);else if((0,b.isPlainObject)(e))for(const t of(0,v.values)(e))a(t)}for(const e of n.values())a(e.instance);for(const e of i)e.connect_signals()}static _event_for_attribute_change(e,t,s,o,n){if(o.get_model_by_id(e.id).property(t).syncable){const i={kind:\"ModelChanged\",model:{id:e.id},attr:t,new:s};return c.HasProps._json_record_references(o,s,n,{recursive:!0}),i}return null}static _events_to_sync_objects(e,t,s,o){const n=Object.keys(e.attributes),i=Object.keys(t.attributes),r=(0,g.difference)(n,i),a=(0,g.difference)(i,n),_=(0,g.intersection)(n,i),c=[];for(const e of r)l.logger.warn(`Server sent key ${e} but we don't seem to have it in our JSON`);for(const n of a){const i=t.attributes[n];c.push(E._event_for_attribute_change(e,n,i,s,o))}for(const n of _){const i=e.attributes[n],r=t.attributes[n];null==i&&null==r||(null==i||null==r?c.push(E._event_for_attribute_change(e,n,r,s,o)):\"data\"==n||(0,w.is_equal)(i,r)||c.push(E._event_for_attribute_change(e,n,r,s,o)))}return c.filter((e=>null!=e))}static _compute_patch_since_json(e,t){const s=t.to_json(!1);function o(e){const t=new Map;for(const s of e.roots.references)t.set(s.id,s);return t}const n=o(e),i=new Map,r=[];for(const t of e.roots.root_ids)i.set(t,n.get(t)),r.push(t);const a=o(s),l=new Map,_=[];for(const e of s.roots.root_ids)l.set(e,a.get(e)),_.push(e);if(r.sort(),_.sort(),(0,g.difference)(r,_).length>0||(0,g.difference)(_,r).length>0)throw new Error(\"Not implemented: computing add/remove of document roots\");const c=new Set;let h=[];for(const e of t._all_models.keys())if(n.has(e)){const s=E._events_to_sync_objects(n.get(e),a.get(e),t,c);h=h.concat(s)}const f=new d.Serializer({include_defaults:!1});return f.to_serializable([...c]),{references:[...f.definitions],events:h}}to_json_string(e=!0){return JSON.stringify(this.to_json(e))}to_json(e=!0){const t=new d.Serializer({include_defaults:e}),s=t.to_serializable(this._roots);return{version:a.version,title:this._title,roots:{root_ids:s.map((e=>e.id)),references:[...t.definitions]}}}static from_json_string(e){const t=JSON.parse(e);return E.from_json(t)}static from_json(e){l.logger.debug(\"Creating Document from JSON\");const t=e.version,s=-1!==t.indexOf(\"+\")||-1!==t.indexOf(\"-\"),o=`Library versions: JS (${a.version}) / Python (${t})`;s||a.version.replace(/-(dev|rc)\\./,\"$1\")==t?l.logger.debug(o):(l.logger.warn(\"JS/Python version mismatch\"),l.logger.warn(o));const n=new r.ModelResolver;null!=e.defs&&(0,j.resolve_defs)(e.defs,n);const i=e.roots,_=i.root_ids,c=i.references,d=E._instantiate_references_json(c,new Map,n);E._initialize_references_json(c,new Map,d,new Map);const h=new E({resolver:n});for(const e of _){const t=d.get(e);null!=t&&h.add_root(t)}return h.set_title(e.title),h}replace_with_json(e){E.from_json(e).destructively_move(this)}create_json_patch_string(e){return JSON.stringify(this.create_json_patch(e))}create_json_patch(e){for(const t of e)if(t.document!=this)throw new Error(\"Cannot create a patch using events from a different document\");const t=new d.Serializer,s=t.to_serializable(e);for(const e of this._all_models.values())t.remove_def(e);return{events:s,references:[...t.definitions]}}apply_json_patch(e,t=new Map,s){const o=e.references,n=e.events,i=E._instantiate_references_json(o,this._all_models,this._resolver);t instanceof Map||(t=new Map(t));for(const e of n)switch(e.kind){case\"RootAdded\":case\"RootRemoved\":case\"ModelChanged\":{const t=e.model.id,s=this._all_models.get(t);if(null!=s)i.set(t,s);else if(!i.has(t))throw l.logger.warn(`Got an event for unknown model ${e.model}\"`),new Error(\"event model wasn't known\");break}}const r=new Map(this._all_models),a=new Map;for(const[e,t]of i)r.has(e)||a.set(e,t);E._initialize_references_json(o,r,a,t);for(const e of n)switch(e.kind){case\"MessageSent\":{const{msg_type:s,msg_data:o}=e;let n;if(void 0===o){if(1!=t.size)throw new Error(\"expected exactly one buffer\");{const[[,e]]=t;n=e}}else n=E._resolve_refs(o,r,a,t);this._trigger_on_message(s,n);break}case\"ModelChanged\":{const o=e.model.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot apply patch to ${o} which is not in the document`);const i=e.attr,l=E._resolve_refs(e.new,r,a,t);n.setv({[i]:l},{setter_id:s});break}case\"ColumnDataChanged\":{const o=e.column_source.id,n=this._all_models.get(o);if(null==n)throw new Error(`Cannot stream to ${o} which is not in the document`);const i=E._resolve_refs(e.new,new Map,new Map,t);if(null!=e.cols)for(const e in n.data)e in i||(i[e]=n.data[e]);n.setv({data:i},{setter_id:s,check_eq:!1});break}case\"ColumnsStreamed\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot stream to ${t} which is not in the document`);if(!(o instanceof k.ColumnDataSource))throw new Error(\"Cannot stream to non-ColumnDataSource\");const n=e.data,i=e.rollover;o.stream(n,i,s);break}case\"ColumnsPatched\":{const t=e.column_source.id,o=this._all_models.get(t);if(null==o)throw new Error(`Cannot patch ${t} which is not in the document`);if(!(o instanceof k.ColumnDataSource))throw new Error(\"Cannot patch non-ColumnDataSource\");const n=e.patches;o.patch(n,s);break}case\"RootAdded\":{const t=e.model.id,o=i.get(t);this.add_root(o,s);break}case\"RootRemoved\":{const t=e.model.id,o=i.get(t);this.remove_root(o,s);break}case\"TitleChanged\":this.set_title(e.title,s);break;default:throw new Error(`Unknown patch event ${JSON.stringify(e)}`)}}}s.Document=E,E.__name__=\"Document\"},\n", - " function _(e,o,s,r,t){r();const l=e(1),i=e(8),d=e(13),n=e(14);s.overrides={};const a=new Map;s.Models=e=>{const o=s.Models.get(e);if(null!=o)return o;throw new Error(`Model '${e}' does not exist. This could be due to a widget or a custom model not being registered before first usage.`)},s.Models.get=e=>{var o;return null!==(o=s.overrides[e])&&void 0!==o?o:a.get(e)},s.Models.register=(e,o)=>{s.overrides[e]=o},s.Models.unregister=e=>{delete s.overrides[e]},s.Models.register_models=(e,o=!1,s)=>{var r;if(null!=e)for(const t of(0,i.isArray)(e)?e:(0,d.values)(e))if(r=t,(0,i.isObject)(r)&&r.prototype instanceof n.HasProps){const e=t.__qualified__;o||!a.has(e)?a.set(e,t):null!=s?s(e):console.warn(`Model '${e}' was already registered`)}},s.register_models=s.Models.register_models,s.Models.registered_names=()=>[...a.keys()];class _{constructor(){this._known_models=new Map}get(e,o){var r;const t=null!==(r=s.Models.get(e))&&void 0!==r?r:this._known_models.get(e);if(null!=t)return t;if(void 0!==o)return o;throw new Error(`Model '${e}' does not exist. This could be due to a widget or a custom model not being registered before first usage.`)}register(e){const o=e.__qualified__;null==this.get(o,null)?this._known_models.set(o,e):console.warn(`Model '${o}' was already registered with this resolver`)}}s.ModelResolver=_,_.__name__=\"ModelResolver\";const g=(0,l.__importStar)(e(38));(0,s.register_models)(g);const u=(0,l.__importStar)(e(392));(0,s.register_models)(u)},\n", - " function _(n,t,r,e,i){e();\n", - " // (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", - " // Underscore may be freely distributed under the MIT license.\n", - " const o=n(9),u=Object.prototype.toString;function c(n){return!0===n||!1===n||\"[object Boolean]\"===u.call(n)}function f(n){return\"[object Number]\"===u.call(n)}function l(n){return\"[object String]\"===u.call(n)}function s(n){return\"symbol\"==typeof n}function a(n){const t=typeof n;return\"function\"===t||\"object\"===t&&!!n}function b(n){return a(n)&&void 0!==n[Symbol.iterator]}r.isBoolean=c,r.isNumber=f,r.isInteger=function(n){return f(n)&&Number.isInteger(n)},r.isString=l,r.isSymbol=s,r.isPrimitive=function(n){return null===n||c(n)||f(n)||l(n)||s(n)},r.isFunction=function(n){return\"[object Function]\"===u.call(n)},r.isArray=function(n){return Array.isArray(n)},r.isArrayOf=function(n,t){return(0,o.every)(n,t)},r.isArrayableOf=function(n,t){for(let r=0,e=n.length;r0,\"'step' must be a positive number\"),null==t&&(t=n,n=0);const{max:r,ceil:o,abs:i}=Math,c=n<=t?e:-e,f=r(o(i(t-n)/e),0),s=new Array(f);for(let t=0;t=0?t:n.length+t]},e.zip=function(...n){if(0==n.length)return[];const t=(0,c.min)(n.map((n=>n.length))),e=n.length,r=new Array(t);for(let o=0;on.length))),r=Array(e);for(let n=0;nn[t]))},e.argmax=function(n){return(0,c.max_by)(m(n.length),(t=>n[t]))},e.sort_by=function(n,t){const e=n.map(((n,e)=>({value:n,index:e,key:t(n)})));return e.sort(((n,t)=>{const e=n.key,r=t.key;if(e!==r){if(e>r||void 0===e)return 1;if(en.value))},e.uniq=function(n){const t=new Set;for(const e of n)t.add(e);return[...t]},e.uniq_by=function(n,t){const e=[],r=[];for(const o of n){const n=t(o);l(r,n)||(r.push(n),e.push(o))}return e},e.union=function(...n){const t=new Set;for(const e of n)for(const n of e)t.add(n);return[...t]},e.intersection=function(n,...t){const e=[];n:for(const r of n)if(!l(e,r)){for(const n of t)if(!l(n,r))continue n;e.push(r)}return e},e.difference=function(n,...t){const e=a(t);return n.filter((n=>!l(e,n)))},e.remove_at=function(n,t){const e=s(n);return e.splice(t,1),e},e.remove_by=function(n,t){for(let e=0;e2*a;)n-=2*a;return n}function c(n,t){return u(n-t)}function f(){return Math.random()}function i(n){switch(n){case\"deg\":return a/180;case\"rad\":return 1;case\"grad\":return a/200;case\"turn\":return 2*a}}r.angle_norm=u,r.angle_dist=c,r.angle_between=function(n,t,r,e=!1){const o=c(t,r);if(0==o)return!1;if(o==2*a)return!0;const f=u(n),i=c(t,f)<=o&&c(f,r)<=o;return e?!i:i},r.random=f,r.randomIn=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},r.atan2=function(n,t){return Math.atan2(t[1]-n[1],t[0]-n[0])},r.radians=function(n){return n*(a/180)},r.degrees=function(n){return n/(a/180)},r.resolve_angle=function(n,t){return-i(t)*n},r.to_radians_coeff=i,r.rnorm=function(n,t){let r,e;for(;r=f(),e=f(),e=(2*e-1)*Math.sqrt(1/Math.E*2),!(-4*r*r*Math.log(r)>=e*e););let o=e/r;return o=n+t*o,o},r.clamp=function(n,t,r){return nr?r:n},r.log=function(n,t=Math.E){return Math.log(n)/Math.log(t)},r.float32_epsilon=1.1920928955078125e-7},\n", - " function _(r,n,e,o,s){o();class t extends Error{}e.AssertionError=t,t.__name__=\"AssertionError\",e.assert=function(r,n){if(!(!0===r||!1!==r&&r()))throw new t(null!=n?n:\"Assertion failed\")},e.unreachable=function(){throw new Error(\"unreachable code\")}},\n", - " function _(n,t,e,r,o){r();const i=n(10);function l(n,t,e,...r){const o=n.length;t<0&&(t+=o),t<0?t=0:t>o&&(t=o),null==e||e>o-t?e=o-t:e<0&&(e=0);const i=o-e+r.length,l=new n.constructor(i);let u=0;for(;u0?0:r-1;for(;o>=0&&ot[t.length-1])return t.length;let e=0,r=t.length-1;for(;r-e!=1;){const o=e+Math.floor((r-e)/2);n>=t[o]?e=o:r=o}return e}e.is_empty=function(n){return 0==n.length},e.copy=function(n){return Array.isArray(n)?n.slice():new n.constructor(n)},e.splice=l,e.head=u,e.insert=function(n,t,e){return l(n,e,0,t)},e.append=function(n,t){return l(n,n.length,0,t)},e.prepend=function(n,t){return l(n,0,0,t)},e.indexOf=function(n,t){for(let e=0,r=n.length;ee&&(e=t);return e},e.minmax=function(n){let t,e=1/0,r=-1/0;for(let o=0,i=n.length;or&&(r=t));return[e,r]},e.minmax2=function(n,t){let e,r,o=1/0,i=-1/0,l=1/0,u=-1/0;const c=Math.min(n.length,t.length);for(let f=0;fi&&(i=e),ru&&(u=r));return[o,i,l,u]},e.min_by=function(n,t){if(0==n.length)throw new Error(\"min_by() called with an empty array\");let e=n[0],r=t(e);for(let o=1,i=n.length;or&&(e=i,r=l)}return e},e.sum=function(n){let t=0;for(let e=0,r=n.length;et[r]=n+e),0),t},e.every=function(n,t){for(let e=0,r=n.length;e(n-t)/r))}},\n", - " function _(t,e,n,c,o){c();const s=t(9),{hasOwnProperty:r}=Object.prototype;function i(t){return Object.keys(t).length}function u(t){return 0==i(t)}n.keys=Object.keys,n.values=Object.values,n.entries=Object.entries,n.extend=Object.assign,n.clone=function(t){return Object.assign({},t)},n.merge=function(t,e){const n=Object.create(Object.prototype),c=(0,s.concat)([Object.keys(t),Object.keys(e)]);for(const o of c){const c=r.call(t,o)?t[o]:[],i=r.call(e,o)?e[o]:[];n[o]=(0,s.union)(c,i)}return n},n.size=i,n.is_empty=u,n.isEmpty=u,n.to_object=function(t){const e={};for(const[n,c]of t)e[n]=c;return e}},\n", - " function _(e,t,s,n,r){n();const i=e(1);var o;const c=e(15),a=e(17),_=(0,i.__importStar)(e(18)),h=(0,i.__importStar)(e(21)),u=e(34),l=e(13),f=e(8),p=e(26),d=e(30),g=e(35),y=e(26),v=e(36),m=e(37),b=(0,i.__importStar)(e(21));class w extends((0,c.Signalable)()){constructor(e={}){var t,s;super(),this._subtype=void 0,this.document=null,this.destroyed=new c.Signal0(this,\"destroyed\"),this.change=new c.Signal0(this,\"change\"),this.transformchange=new c.Signal0(this,\"transformchange\"),this.exprchange=new c.Signal0(this,\"exprchange\"),this.properties={},this._watchers=new WeakMap,this._pending=!1,this._changing=!1;const n=e instanceof Map?e.get.bind(e):t=>e[t];this.id=null!==(t=n(\"id\"))&&void 0!==t?t:(0,u.uniqueId)();for(const[e,{type:t,default_value:s,options:r}]of(0,l.entries)(this._props)){let i;t instanceof _.PropertyAlias?Object.defineProperty(this.properties,e,{get:()=>this.properties[t.attr],configurable:!1,enumerable:!1}):(i=t instanceof h.Kind?new _.PrimitiveProperty(this,e,t,s,n(e),r):new t(this,e,h.Any,s,n(e),r),this.properties[e]=i)}null!==(s=n(\"__deferred__\"))&&void 0!==s&&s||(this.finalize(),this.connect_signals())}get is_syncable(){return!0}set type(e){console.warn(\"prototype.type = 'ModelName' is deprecated, use static __name__ instead\"),this.constructor.__name__=e}get type(){return this.constructor.__qualified__}static get __qualified__(){const{__module__:e,__name__:t}=this;return null!=e?`${e}.${t}`:t}static get[Symbol.toStringTag](){return this.__name__}static _fix_default(e,t){if(void 0===e||(0,f.isFunction)(e))return e;if((0,f.isPrimitive)(e))return()=>e;{const t=new m.Cloner;return()=>t.clone(e)}}static define(e){for(const[t,s]of(0,l.entries)((0,f.isFunction)(e)?e(b):e)){if(null!=this.prototype._props[t])throw new Error(`attempted to redefine property '${this.prototype.type}.${t}'`);if(null!=this.prototype[t])throw new Error(`attempted to redefine attribute '${this.prototype.type}.${t}'`);Object.defineProperty(this.prototype,t,{get(){return this.properties[t].get_value()},set(e){return this.setv({[t]:e}),this},configurable:!1,enumerable:!0});const[e,n,r={}]=s,i={type:e,default_value:this._fix_default(n,t),options:r},o=Object.assign({},this.prototype._props);o[t]=i,this.prototype._props=o}}static internal(e){const t={};for(const[s,n]of(0,l.entries)((0,f.isFunction)(e)?e(b):e)){const[e,r,i={}]=n;t[s]=[e,r,Object.assign(Object.assign({},i),{internal:!0})]}this.define(t)}static mixins(e){function t(e,t){const s={};for(const[n,r]of(0,l.entries)(t))s[e+n]=r;return s}const s={},n=[];for(const r of(0,f.isArray)(e)?e:[e])if((0,f.isArray)(r)){const[e,i]=r;(0,l.extend)(s,t(e,i)),n.push([e,i])}else{const e=r;(0,l.extend)(s,e),n.push([\"\",e])}this.define(s),this.prototype._mixins=[...this.prototype._mixins,...n]}static override(e){for(const[t,s]of(0,l.entries)(e)){const e=this._fix_default(s,t),n=this.prototype._props[t];if(null==n)throw new Error(`attempted to override nonexistent '${this.prototype.type}.${t}'`);const r=Object.assign({},this.prototype._props);r[t]=Object.assign(Object.assign({},n),{default_value:e}),this.prototype._props=r}}toString(){return`${this.type}(${this.id})`}property(e){const t=this.properties[e];if(null!=t)return t;throw new Error(`unknown property ${this.type}.${e}`)}get attributes(){const e={};for(const t of this)e[t.attr]=t.get_value();return e}[m.clone](e){const t=new Map;for(const s of this)s.dirty&&t.set(s.attr,e.clone(s.get_value()));return new this.constructor(t)}[y.equals](e,t){for(const s of this){const n=e.property(s.attr);if(!t.eq(s.get_value(),n.get_value()))return!1}return!0}[v.pretty](e){const t=e.token,s=[];for(const n of this)if(n.dirty){const r=n.get_value();s.push(`${n.attr}${t(\":\")} ${e.to_string(r)}`)}return`${this.constructor.__qualified__}${t(\"(\")}${t(\"{\")}${s.join(`${t(\",\")} `)}${t(\"}\")}${t(\")\")}`}[d.serialize](e){const t=this.ref();e.add_ref(this,t);const s=this.struct();for(const t of this)t.syncable&&(e.include_defaults||t.dirty)&&(s.attributes[t.attr]=e.to_serializable(t.get_value()));return e.add_def(this,s),t}finalize(){for(const e of this){if(!(e instanceof _.VectorSpec||e instanceof _.ScalarSpec))continue;const t=e.get_value();if(null!=t){const{transform:e,expr:s}=t;null!=e&&this.connect(e.change,(()=>this.transformchange.emit())),null!=s&&this.connect(s.change,(()=>this.exprchange.emit()))}}this.initialize()}initialize(){}connect_signals(){}disconnect_signals(){c.Signal.disconnectReceiver(this)}destroy(){this.disconnect_signals(),this.destroyed.emit()}clone(){return(new m.Cloner).clone(this)}changed_for(e){const t=this._watchers.get(e);return this._watchers.set(e,!1),null==t||t}_setv(e,t){const s=t.check_eq,n=[],r=this._changing;this._changing=!0;for(const[t,r]of e)!1!==s&&(0,p.is_equal)(t.get_value(),r)||(t.set_value(r),n.push(t));n.length>0&&(this._watchers=new WeakMap,this._pending=!0);for(const e of n)e.change.emit();if(!r){if(!t.no_change)for(;this._pending;)this._pending=!1,this.change.emit();this._pending=!1,this._changing=!1}}setv(e,t={}){const s=(0,l.entries)(e);if(0==s.length)return;if(!0===t.silent){this._watchers=new WeakMap;for(const[e,t]of s)this.properties[e].set_value(t);return}const n=new Map,r=new Map;for(const[e,t]of s){const s=this.properties[e];n.set(s,t),r.set(s,s.get_value())}this._setv(n,t);const{document:i}=this;if(null!=i){const e=[];for(const[t,s]of r)e.push([t,s,t.get_value()]);for(const[,t,s]of e)if(this._needs_invalidate(t,s)){i._invalidate_all_models();break}this._push_changes(e,t)}}getv(e){return this.property(e).get_value()}ref(){return{id:this.id}}struct(){const e={type:this.type,id:this.id,attributes:{}};return null!=this._subtype&&(e.subtype=this._subtype),e}set_subtype(e){this._subtype=e}*[Symbol.iterator](){yield*(0,l.values)(this.properties)}*syncable_properties(){for(const e of this)e.syncable&&(yield e)}serializable_attributes(){const e={};for(const t of this.syncable_properties())e[t.attr]=t.get_value();return e}static _json_record_references(e,t,s,n){const{recursive:r}=n;if((0,a.is_ref)(t)){const n=e.get_model_by_id(t.id);null==n||s.has(n)||w._value_record_references(n,s,{recursive:r})}else if((0,f.isArray)(t))for(const n of t)w._json_record_references(e,n,s,{recursive:r});else if((0,f.isPlainObject)(t))for(const n of(0,l.values)(t))w._json_record_references(e,n,s,{recursive:r})}static _value_record_references(e,t,s){const{recursive:n}=s;if(e instanceof w){if(!t.has(e)&&(t.add(e),n))for(const s of e.syncable_properties()){const e=s.get_value();w._value_record_references(e,t,{recursive:n})}}else if((0,f.isArray)(e))for(const s of e)w._value_record_references(s,t,{recursive:n});else if((0,f.isPlainObject)(e))for(const s of(0,l.values)(e))w._value_record_references(s,t,{recursive:n})}references(){const e=new Set;return w._value_record_references(this,e,{recursive:!0}),e}_doc_attached(){}_doc_detached(){}attach_document(e){if(null!=this.document&&this.document!=e)throw new Error(\"models must be owned by only a single document\");this.document=e,this._doc_attached()}detach_document(){this._doc_detached(),this.document=null}_needs_invalidate(e,t){const s=new Set;w._value_record_references(t,s,{recursive:!1});const n=new Set;w._value_record_references(e,n,{recursive:!1});for(const e of s)if(!n.has(e))return!0;for(const e of n)if(!s.has(e))return!0;return!1}_push_changes(e,t={}){if(!this.is_syncable)return;const{document:s}=this;if(null==s)return;const{setter_id:n}=t,r=[];for(const[t,i,o]of e)t.syncable&&r.push(new g.ModelChangedEvent(s,this,t.attr,i,o,n));if(0!=r.length){let e;1==r.length?[e]=r:e=new g.DocumentEventBatch(s,r,n),s._trigger_on_change(e)}}on_change(e,t){for(const s of(0,f.isArray)(e)?e:[e])this.connect(s.change,t)}}s.HasProps=w,(o=w).prototype._props={},o.prototype._mixins=[]},\n", - " function _(n,t,e,l,s){l();const i=n(16),o=n(9);class c{constructor(n,t){this.sender=n,this.name=t}connect(n,t=null){u.has(this.sender)||u.set(this.sender,[]);const e=u.get(this.sender);if(null!=g(e,this,n,t))return!1;const l=null!=t?t:n;a.has(l)||a.set(l,[]);const s=a.get(l),i={signal:this,slot:n,context:t};return e.push(i),s.push(i),!0}disconnect(n,t=null){const e=u.get(this.sender);if(null==e||0===e.length)return!1;const l=g(e,this,n,t);if(null==l)return!1;const s=null!=t?t:n,i=a.get(s);return l.signal=null,d(e),d(i),!0}emit(n){var t;const e=null!==(t=u.get(this.sender))&&void 0!==t?t:[];for(const{signal:t,slot:l,context:s}of e)t===this&&l.call(s,n,this.sender)}}e.Signal=c,c.__name__=\"Signal\";class r extends c{emit(){super.emit(void 0)}}e.Signal0=r,r.__name__=\"Signal0\",function(n){function t(n,t){const e=u.get(n);if(null==e||0===e.length)return;const l=a.get(t);if(null!=l&&0!==l.length){for(const t of l){if(null==t.signal)return;t.signal.sender===n&&(t.signal=null)}d(e),d(l)}}function e(n){var t;const e=u.get(n);if(null!=e&&0!==e.length){for(const n of e){if(null==n.signal)return;const e=null!==(t=n.context)&&void 0!==t?t:n.slot;n.signal=null,d(a.get(e))}d(e)}}function l(n,t,e){const l=a.get(n);if(null!=l&&0!==l.length){for(const n of l){if(null==n.signal)return;if(null!=t&&n.slot!=t)continue;const l=n.signal.sender;null!=e&&e.has(l)||(n.signal=null,d(u.get(l)))}d(l)}}function s(n){const t=u.get(n);if(null!=t&&0!==t.length){for(const n of t)n.signal=null;d(t)}const e=a.get(n);if(null!=e&&0!==e.length){for(const n of e)n.signal=null;d(e)}}n.disconnect_between=t,n.disconnect_sender=e,n.disconnect_receiver=l,n.disconnect_all=s,n.disconnectBetween=t,n.disconnectSender=e,n.disconnectReceiver=l,n.disconnectAll=s}(c||(e.Signal=c={})),e.Signalable=function(){return class{connect(n,t){return n.connect(t,this)}disconnect(n,t){return n.disconnect(t,this)}}};const u=new WeakMap,a=new WeakMap;function g(n,t,e,l){return(0,o.find)(n,(n=>n.signal===t&&n.slot===e&&n.context===l))}const f=new Set;function d(n){0===f.size&&(async()=>{await(0,i.defer)(),function(){for(const n of f)(0,o.remove_by)(n,(n=>null==n.signal));f.clear()}()})(),f.add(n)}},\n", - " function _(e,n,t,s,o){s();const r=new MessageChannel,a=new Map;r.port1.onmessage=e=>{const n=e.data,t=a.get(n);if(null!=t)try{t()}finally{a.delete(n)}};let i=1;t.defer=function(){return new Promise((e=>{const n=i++;a.set(n,e),r.port2.postMessage(n)}))},t.wait=function(e){return new Promise((n=>setTimeout(n,e)))}},\n", - " function _(n,t,i,e,c){e();const r=n(8),s=n(13);i.is_ref=function(n){if((0,r.isPlainObject)(n)){const t=(0,s.keys)(n);return 1==t.length&&\"id\"==t[0]}return!1}},\n", - " function _(e,t,n,r,a){r(),n.YCoordinateSeqSeqSeqSpec=n.XCoordinateSeqSeqSeqSpec=n.YCoordinateSeqSpec=n.XCoordinateSeqSpec=n.YCoordinateSpec=n.XCoordinateSpec=n.CoordinateSeqSeqSeqSpec=n.CoordinateSeqSpec=n.CoordinateSpec=n.BaseCoordinateSpec=n.NumberUnitsSpec=n.UnitsSpec=n.DataSpec=n.VectorSpec=n.TextBaselineScalar=n.TextAlignScalar=n.FontStyleScalar=n.FontSizeScalar=n.FontScalar=n.LineDashScalar=n.LineCapScalar=n.LineJoinScalar=n.ArrayScalar=n.NullStringScalar=n.StringScalar=n.NumberScalar=n.ColorScalar=n.AnyScalar=n.ScalarSpec=n.VerticalAlign=n.UpdateMode=n.TooltipAttachment=n.TickLabelOrientation=n.TextureRepetition=n.TextBaseline=n.TextAlign=n.TapBehavior=n.StepMode=n.StartEnd=n.SpatialUnits=n.Sort=n.SizingMode=n.Side=n.RoundingFunction=n.ResetPolicy=n.RenderMode=n.RenderLevel=n.RadiusDimension=n.PointPolicy=n.Place=void 0,n.TextBaselineSpec=n.TextAlignSpec=n.FontStyleSpec=n.FontSizeSpec=n.FontSpec=n.LineDashSpec=n.LineCapSpec=n.LineJoinSpec=n.MarkerSpec=n.ArraySpec=n.NullStringSpec=n.StringSpec=n.AnySpec=n.NDArraySpec=n.ColorSpec=n.ScreenSizeSpec=n.NumberSpec=n.IntSpec=n.BooleanSpec=n.NullDistanceSpec=n.DistanceSpec=n.AngleSpec=void 0;const i=e(1),s=e(15),l=e(19),o=(0,i.__importStar)(e(20)),c=e(24),_=e(9),u=e(12),d=e(10),S=e(22),p=e(27),m=e(8),h=e(28),v=e(29),y=e(33);function x(e){try{return JSON.stringify(e)}catch(t){return e.toString()}}function g(e){return(0,m.isPlainObject)(e)&&(void 0===e.value?0:1)+(void 0===e.field?0:1)+(void 0===e.expr?0:1)==1}a(\"Uniform\",y.Uniform),a(\"UniformScalar\",y.UniformScalar),a(\"UniformVector\",y.UniformVector),n.isSpec=g;class f{constructor(e,t,n,r,a,i={}){var l;let o;if(this.obj=e,this.attr=t,this.kind=n,this.default_value=r,this._dirty=!1,this.change=new s.Signal0(this.obj,\"change\"),this.internal=null!==(l=i.internal)&&void 0!==l&&l,this.convert=i.convert,this.on_update=i.on_update,void 0!==a)o=a,this._dirty=!0;else{const t=this._default_override();if(void 0!==t)o=t;else{if(void 0===r)return void(this.spec={value:null});o=r(e)}}this._update(o)}get is_value(){return void 0!==this.spec.value}get syncable(){return!this.internal}get_value(){return this.spec.value}set_value(e){this._update(e),this._dirty=!0}_default_override(){}get dirty(){return this._dirty}_update(e){var t;if(this.validate(e),null!=this.convert){const t=this.convert(e);void 0!==t&&(e=t)}this.spec={value:e},null===(t=this.on_update)||void 0===t||t.call(this,e,this.obj)}toString(){return`Prop(${this.obj}.${this.attr}, spec: ${x(this.spec)})`}normalize(e){return e}validate(e){if(!this.valid(e))throw new Error(`${this.obj}.${this.attr} given invalid value: ${x(e)}`)}valid(e){return this.kind.valid(e)}_value(e=!0){if(!this.is_value)throw new Error(\"attempted to retrieve property value for property without value specification\");let t=this.normalize([this.spec.value])[0];return null!=this.spec.transform&&e&&(t=this.spec.transform.compute(t)),t}}n.Property=f,f.__name__=\"Property\";class A{constructor(e){this.attr=e}}n.PropertyAlias=A,A.__name__=\"PropertyAlias\",n.Alias=function(e){return new A(e)};class C extends f{}n.PrimitiveProperty=C,C.__name__=\"PrimitiveProperty\";class T extends f{}n.Any=T,T.__name__=\"Any\";class L extends f{valid(e){return(0,m.isArray)(e)||(0,m.isTypedArray)(e)}}n.Array=L,L.__name__=\"Array\";class w extends f{valid(e){return(0,m.isBoolean)(e)}}n.Boolean=w,w.__name__=\"Boolean\";class P extends f{valid(e){return(0,S.is_Color)(e)}}n.Color=P,P.__name__=\"Color\";class b extends f{}n.Instance=b,b.__name__=\"Instance\";class q extends f{valid(e){return(0,m.isNumber)(e)}}n.Number=q,q.__name__=\"Number\";class N extends q{valid(e){return(0,m.isNumber)(e)&&(0|e)==e}}n.Int=N,N.__name__=\"Int\";class z extends q{}n.Angle=z,z.__name__=\"Angle\";class B extends q{valid(e){return(0,m.isNumber)(e)&&0<=e&&e<=1}}n.Percent=B,B.__name__=\"Percent\";class F extends f{valid(e){return(0,m.isString)(e)}}n.String=F,F.__name__=\"String\";class D extends f{valid(e){return null===e||(0,m.isString)(e)}}n.NullString=D,D.__name__=\"NullString\";class U extends F{}n.FontSize=U,U.__name__=\"FontSize\";class M extends F{_default_override(){return h.settings.dev?\"Bokeh\":void 0}}n.Font=M,M.__name__=\"Font\";class R extends f{valid(e){return(0,m.isString)(e)&&(0,_.includes)(this.enum_values,e)}}function k(e){return class extends R{get enum_values(){return[...e]}}}n.EnumProperty=R,R.__name__=\"EnumProperty\",n.Enum=k;class O extends R{get enum_values(){return[...o.Direction]}normalize(e){const t=new Uint8Array(e.length);for(let n=0;n=0}}n.ScreenSizeSpec=fe,fe.__name__=\"ScreenSizeSpec\";class Ae extends ne{materialize(e){return(0,S.encode_rgba)((0,S.color2rgba)(e))}v_materialize(e){if(!(0,v.is_NDArray)(e)){const t=e.length,n=new c.RGBAArray(4*t);let r=0;for(const t of e){const[e,a,i,s]=(0,S.color2rgba)(t);n[r++]=e,n[r++]=a,n[r++]=i,n[r++]=s}return new c.ColorArray(n.buffer)}if(\"uint32\"==e.dtype&&1==e.dimension)return(0,p.to_big_endian)(e);if(\"uint8\"==e.dtype&&1==e.dimension){const[t]=e.shape,n=new c.RGBAArray(4*t);let r=0;for(const t of e)n[r++]=t,n[r++]=t,n[r++]=t,n[r++]=255;return new c.ColorArray(n.buffer)}if(\"uint8\"==e.dtype&&2==e.dimension){const[t,n]=e.shape;if(4==n)return new c.ColorArray(e.buffer);if(3==n){const r=new c.RGBAArray(4*t);for(let a=0,i=0;a0){let o=r[e];return null==o&&(r[e]=o=new v(e,l)),o}throw new TypeError(\"Logger.get() expects a non-empty string name and an optional log-level\")}get level(){return this.get_level()}get_level(){return this._log_level}set_level(e){if(e instanceof i)this._log_level=e;else{if(!(0,s.isString)(e)||null==v.log_levels[e])throw new Error(\"Logger.set_level() expects a log-level object or a string name of a log-level\");this._log_level=v.log_levels[e]}const l=`[${this._name}]`;for(const[e,o]of(0,g.entries)(v.log_levels))o.level\",\"*\"),t.HTTPMethod=(0,a.Enum)(\"POST\",\"GET\"),t.HexTileOrientation=(0,a.Enum)(\"pointytop\",\"flattop\"),t.HoverMode=(0,a.Enum)(\"mouse\",\"hline\",\"vline\"),t.LatLon=(0,a.Enum)(\"lat\",\"lon\"),t.LegendClickPolicy=(0,a.Enum)(\"none\",\"hide\",\"mute\"),t.LegendLocation=t.Anchor,t.LineCap=(0,a.Enum)(\"butt\",\"round\",\"square\"),t.LineJoin=(0,a.Enum)(\"miter\",\"round\",\"bevel\"),t.LineDash=(0,a.Enum)(\"solid\",\"dashed\",\"dotted\",\"dotdash\",\"dashdot\"),t.LinePolicy=(0,a.Enum)(\"prev\",\"next\",\"nearest\",\"interp\",\"none\"),t.Location=(0,a.Enum)(\"above\",\"below\",\"left\",\"right\"),t.Logo=(0,a.Enum)(\"normal\",\"grey\"),t.MarkerType=(0,a.Enum)(\"asterisk\",\"circle\",\"circle_cross\",\"circle_dot\",\"circle_x\",\"circle_y\",\"cross\",\"dash\",\"diamond\",\"diamond_cross\",\"diamond_dot\",\"dot\",\"hex\",\"hex_dot\",\"inverted_triangle\",\"plus\",\"square\",\"square_cross\",\"square_dot\",\"square_pin\",\"square_x\",\"star\",\"star_dot\",\"triangle\",\"triangle_dot\",\"triangle_pin\",\"x\",\"y\"),t.MutedPolicy=(0,a.Enum)(\"show\",\"ignore\"),t.Orientation=(0,a.Enum)(\"vertical\",\"horizontal\"),t.OutputBackend=(0,a.Enum)(\"canvas\",\"svg\",\"webgl\"),t.PaddingUnits=(0,a.Enum)(\"percent\",\"absolute\"),t.Place=(0,a.Enum)(\"above\",\"below\",\"left\",\"right\",\"center\"),t.PointPolicy=(0,a.Enum)(\"snap_to_data\",\"follow_mouse\",\"none\"),t.RadiusDimension=(0,a.Enum)(\"x\",\"y\",\"max\",\"min\"),t.RenderLevel=(0,a.Enum)(\"image\",\"underlay\",\"glyph\",\"guide\",\"annotation\",\"overlay\"),t.RenderMode=(0,a.Enum)(\"canvas\",\"css\"),t.ResetPolicy=(0,a.Enum)(\"standard\",\"event_only\"),t.RoundingFunction=(0,a.Enum)(\"round\",\"nearest\",\"floor\",\"rounddown\",\"ceil\",\"roundup\"),t.SelectionMode=(0,a.Enum)(\"replace\",\"append\",\"intersect\",\"subtract\"),t.Side=(0,a.Enum)(\"above\",\"below\",\"left\",\"right\"),t.SizingMode=(0,a.Enum)(\"stretch_width\",\"stretch_height\",\"stretch_both\",\"scale_width\",\"scale_height\",\"scale_both\",\"fixed\"),t.Sort=(0,a.Enum)(\"ascending\",\"descending\"),t.SpatialUnits=(0,a.Enum)(\"screen\",\"data\"),t.StartEnd=(0,a.Enum)(\"start\",\"end\"),t.StepMode=(0,a.Enum)(\"after\",\"before\",\"center\"),t.TapBehavior=(0,a.Enum)(\"select\",\"inspect\"),t.TextAlign=(0,a.Enum)(\"left\",\"right\",\"center\"),t.TextBaseline=(0,a.Enum)(\"top\",\"middle\",\"bottom\",\"alphabetic\",\"hanging\",\"ideographic\"),t.TextureRepetition=(0,a.Enum)(\"repeat\",\"repeat_x\",\"repeat_y\",\"no_repeat\"),t.TickLabelOrientation=(0,a.Enum)(\"vertical\",\"horizontal\",\"parallel\",\"normal\"),t.TooltipAttachment=(0,a.Enum)(\"horizontal\",\"vertical\",\"left\",\"right\",\"above\",\"below\"),t.UpdateMode=(0,a.Enum)(\"replace\",\"append\"),t.VerticalAlign=(0,a.Enum)(\"top\",\"middle\",\"bottom\")},\n", - " function _(e,n,t,s,r){s();const i=(0,e(1).__importStar)(e(8)),a=e(22),l=e(13),_=window.Map,{hasOwnProperty:u}=Object.prototype;class d{}t.Kind=d,d.__name__=\"Kind\",function(e){class n extends d{valid(e){return!0}}n.__name__=\"Any\",e.Any=n;class t extends d{valid(e){return!0}}t.__name__=\"Unknown\",e.Unknown=t;class s extends d{valid(e){return i.isBoolean(e)}}s.__name__=\"Boolean\",e.Boolean=s;class r extends d{constructor(e){super(),this.obj_type=e}valid(e){return!0}}r.__name__=\"Ref\",e.Ref=r;class c extends d{valid(e){return!0}}c.__name__=\"AnyRef\",e.AnyRef=c;class o extends d{valid(e){return i.isNumber(e)}}o.__name__=\"Number\",e.Number=o;class p extends o{valid(e){return super.valid(e)&&i.isInteger(e)}}p.__name__=\"Int\",e.Int=p;class y extends o{valid(e){return super.valid(e)&&0<=e&&e<=1}}y.__name__=\"Percent\",e.Percent=y;class m extends d{constructor(e){super(),this.types=e,this.types=e}valid(e){return this.types.some((n=>n.valid(e)))}}m.__name__=\"Or\",e.Or=m;class v extends d{constructor(e){super(),this.types=e,this.types=e}valid(e){if(!i.isArray(e))return!1;for(let n=0;nthis.item_type.valid(e)))}}f.__name__=\"Array\",e.Array=f;class K extends d{valid(e){return null===e}}K.__name__=\"Null\",e.Null=K;class b extends d{constructor(e){super(),this.base_type=e}valid(e){return null===e||this.base_type.valid(e)}}b.__name__=\"Nullable\",e.Nullable=b;class A extends d{constructor(e){super(),this.base_type=e}valid(e){return void 0===e||this.base_type.valid(e)}}A.__name__=\"Opt\",e.Opt=A;class x extends d{valid(e){return i.isString(e)}}x.__name__=\"String\",e.String=x;class S extends d{constructor(e){super(),this.values=new Set(e)}valid(e){return this.values.has(e)}*[Symbol.iterator](){yield*this.values}}S.__name__=\"Enum\",e.Enum=S;class N extends d{constructor(e){super(),this.item_type=e}valid(e){if(!i.isPlainObject(e))return!1;for(const n in e)if(u.call(e,n)){const t=e[n];if(!this.item_type.valid(t))return!1}return!0}}N.__name__=\"Dict\",e.Dict=N;class O extends d{constructor(e,n){super(),this.key_type=e,this.item_type=n}valid(e){if(!(e instanceof _))return!1;for(const[n,t]of e.entries())if(!this.key_type.valid(n)||!this.item_type.valid(t))return!1;return!0}}O.__name__=\"Map\",e.Map=O;class g extends d{valid(e){return(0,a.is_Color)(e)}}g.__name__=\"Color\",e.Color=g;class P extends d{valid(e){return i.isFunction(e)}}P.__name__=\"Function\",e.Function=P}(t.Kinds||(t.Kinds={})),t.Any=new t.Kinds.Any,t.Unknown=new t.Kinds.Unknown,t.Boolean=new t.Kinds.Boolean,t.Number=new t.Kinds.Number,t.Int=new t.Kinds.Int,t.String=new t.Kinds.String,t.Null=new t.Kinds.Null;t.Nullable=e=>new t.Kinds.Nullable(e);t.Opt=e=>new t.Kinds.Opt(e);t.Or=(...e)=>new t.Kinds.Or(e);t.Tuple=(...e)=>new t.Kinds.Tuple(e);t.Struct=e=>new t.Kinds.Struct(e),t.Arrayable=new t.Kinds.Arrayable;t.Array=e=>new t.Kinds.Array(e);t.Dict=e=>new t.Kinds.Dict(e);t.Map=(e,n)=>new t.Kinds.Map(e,n);t.Enum=(...e)=>new t.Kinds.Enum(e);t.Ref=e=>new t.Kinds.Ref(e);t.AnyRef=()=>new t.Kinds.AnyRef;t.Function=()=>new t.Kinds.Function,t.Percent=new t.Kinds.Percent,t.Alpha=t.Percent,t.Color=new t.Kinds.Color,t.Auto=(0,t.Enum)(\"auto\"),t.FontSize=t.String,t.Font=t.String,t.Angle=t.Number},\n", - " function _(n,t,r,e,s){e();const u=n(23),c=n(10),l=n(8),{round:i}=Math;function o(n){return(0,c.clamp)(i(n),0,255)}function a(){return[0,0,0,0]}function f(n){return[n>>24&255,n>>16&255,n>>8&255,255&n]}function d(n,t){var r;let e,s,u,c;return null==n?[e,s,u,c]=[0,0,0,0]:(0,l.isInteger)(n)?[e,s,u,c]=f(n):(0,l.isString)(n)?[e,s,u,c]=null!==(r=_(n))&&void 0!==r?r:[0,0,0,0]:([e,s,u,c=1]=n,c=o(255*c)),255==c&&null!=t&&(c=o(255*t)),[e,s,u,c]}r.transparent=a,r.encode_rgba=function([n,t,r,e]){return n<<24|t<<16|r<<8|e},r.decode_rgba=f,r.compose_alpha=function(n,t){return 255==(255&n)?4294967040&n|o(255*t):n},r.color2rgba=d;const h={0:\"0\",1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",10:\"a\",11:\"b\",12:\"c\",13:\"d\",14:\"e\",15:\"f\"};function g(n){return h[n>>4]+h[15&n]}r.color2css=function(n,t){const[r,e,s,u]=d(n,t);return`rgba(${r}, ${e}, ${s}, ${u/255})`},r.color2hex=function(n,t){const[r,e,s,u]=d(n,t),c=`#${g(r)}${g(e)}${g(s)}`;return 255==u?c:`${c}${g(u)}`},r.color2hexrgb=function(n){const[t,r,e]=d(n);return`#${g(t)}${g(r)}${g(e)}`};const b=/^rgba?\\(\\s*([^\\s,]+?)\\s+([^\\s,]+?)\\s+([^\\s,]+?)(?:\\s*\\/\\s*([^\\s,]+?))?\\s*\\)$/,$=/^rgba?\\(\\s*([^\\s,]+?)\\s*,\\s*([^\\s,]+?)\\s*,\\s*([^\\s,]+?)(?:\\s*,\\s*([^\\s,]+?))?\\s*\\)$/,m=(()=>{const n=document.createElement(\"canvas\");n.width=1,n.height=1;const t=n.getContext(\"2d\"),r=t.createLinearGradient(0,0,1,1);return n=>{t.fillStyle=r,t.fillStyle=n;const e=t.fillStyle;return e!=r?e:null}})();function _(n){var t;if(!(n=n.trim().toLowerCase()))return null;if(\"transparent\"==n)return[0,0,0,0];if((0,u.is_named_color)(n))return f(u.named_colors[n]);if(\"#\"==n[0]){const t=Number(`0x${n.substr(1)}`);if(isNaN(t))return null;switch(n.length-1){case 3:{const n=t>>8&15,r=t>>4&15,e=t>>0&15;return[n<<4|n,r<<4|r,e<<4|e,255]}case 4:{const n=t>>12&15,r=t>>8&15,e=t>>4&15,s=t>>0&15;return[n<<4|n,r<<4|r,e<<4|e,s<<4|s]}case 6:return[t>>16&255,t>>8&255,t>>0&255,255];case 8:return[t>>24&255,t>>16&255,t>>8&255,t>>0&255]}}else if(n.startsWith(\"rgb\")){const r=null!==(t=n.match(b))&&void 0!==t?t:n.match($);if(null!=r){let[,n,t,e,s=\"1\"]=r;const u=n.endsWith(\"%\"),c=t.endsWith(\"%\"),l=e.endsWith(\"%\"),i=s.endsWith(\"%\");if(!(u&&c&&l)&&(u||c||l))return null;u&&(n=n.slice(0,-1)),c&&(t=t.slice(0,-1)),l&&(e=e.slice(0,-1)),i&&(s=s.slice(0,-1));let a=Number(n),f=Number(t),d=Number(e),h=Number(s);return isNaN(a+f+d+h)?null:(u&&(a=a/100*255),c&&(f=f/100*255),l&&(d=d/100*255),h=255*(i?h/100:h),a=o(a),f=o(f),d=o(d),h=o(h),[a,f,d,h])}}else{const t=m(n);if(null!=t)return _(t)}return null}r.css4_parse=_,r.is_Color=function(n){return!!(0,l.isInteger)(n)||(!(!(0,l.isString)(n)||null==_(n))||!(!(0,l.isArray)(n)||3!=n.length&&4!=n.length))},r.is_dark=function([n,t,r]){return 1-(.299*n+.587*t+.114*r)/255>=.6}},\n", - " function _(e,r,l,a,i){a();l.named_colors={aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199},l.is_named_color=function(e){return e in l.named_colors}},\n", - " function _(r,t,n,a,o){a(),n.GeneratorFunction=Object.getPrototypeOf((function*(){})).constructor,n.ColorArray=Uint32Array,n.RGBAArray=Uint8ClampedArray,n.infer_type=function(r,t){return r instanceof Float64Array||r instanceof Array||t instanceof Float64Array||t instanceof Array?Float64Array:Float32Array},n.ScreenArray=Float32Array,n.to_screen=function(r){return r instanceof Float32Array?r:Float32Array.from(r)},o(\"Indices\",r(25).BitSet)},\n", - " function _(t,s,r,e,i){var n;e();const o=t(26),a=t(11);class _{constructor(t,s=0){this.size=t,this[n]=\"BitSet\",this._count=null,this._nwords=Math.ceil(t/32),0==s||1==s?(this._array=new Uint32Array(this._nwords),1==s&&this._array.fill(4294967295)):((0,a.assert)(s.length==this._nwords,\"Initializer size mismatch\"),this._array=s)}clone(){return new _(this.size,new Uint32Array(this._array))}[(n=Symbol.toStringTag,o.equals)](t,s){if(!s.eq(this.size,t.size))return!1;const{_nwords:r}=this,e=this.size%r,i=0==e?r:r-1;for(let s=0;s>>5,r=31&t;return!!(this._array[s]>>r&1)}set(t,s=!0){this._check_bounds(t),this._count=null;const r=t>>>5,e=31&t;s?this._array[r]|=1<>>t&1&&(e+=1)}return e}*ones(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1&&(yield e);else e+=32}}*zeros(){const{_array:t,_nwords:s,size:r}=this;for(let e=0,i=0;i>>t&1||(yield e);else e+=32}}_check_size(t){(0,a.assert)(this.size==t.size,\"Size mismatch\")}add(t){this._check_size(t);for(let s=0;s{if(a(t)&&a(e))return t[r.equals](e,this);switch(n){case\"[object Array]\":case\"[object Uint8Array]\":case\"[object Int8Array]\":case\"[object Uint16Array]\":case\"[object Int16Array]\":case\"[object Uint32Array]\":case\"[object Int32Array]\":case\"[object Float32Array]\":case\"[object Float64Array]\":return this.arrays(t,e);case\"[object Map]\":return this.maps(t,e);case\"[object Set]\":return this.sets(t,e);case\"[object Object]\":if(t.constructor==e.constructor&&(null==t.constructor||t.constructor===Object))return this.objects(t,e);case\"[object Function]\":if(t.constructor==e.constructor&&t.constructor===Function)return this.eq(`${t}`,`${e}`)}if(t instanceof Node)return this.nodes(t,e);throw Error(`can't compare objects of type ${n}`)})();return s.pop(),o.pop(),u}numbers(t,e){return Object.is(t,e)}arrays(t,e){const{length:r}=t;if(r!=e.length)return!1;for(let n=0;n{const n=navigator.userAgent;return n.includes(\"MSIE\")||n.includes(\"Trident\")||n.includes(\"Edge\")})(),e.is_mobile=\"undefined\"!=typeof window&&(\"ontouchstart\"in window||navigator.maxTouchPoints>0),e.is_little_endian=(()=>{const n=new ArrayBuffer(4),i=new Uint8Array(n);new Uint32Array(n)[1]=168496141;let e=!0;return 10==i[4]&&11==i[5]&&12==i[6]&&13==i[7]&&(e=!1),e})(),e.BYTE_ORDER=e.is_little_endian?\"little\":\"big\",e.to_big_endian=function(n){if(e.is_little_endian){const i=new Uint32Array(n.length),e=new DataView(i.buffer);let t=0;for(const i of n)e.setUint32(t,i),t+=4;return i}return n}},\n", - " function _(e,t,r,i,s){i();class _{constructor(){this._dev=!1,this._wireframe=!1}set dev(e){this._dev=e}get dev(){return this._dev}set wireframe(e){this._wireframe=e}get wireframe(){return this._wireframe}}r.Settings=_,_.__name__=\"Settings\",r.settings=new _},\n", - " function _(e,s,t,i,r){var a,n,l,h,u,o,p,c;i();const y=e(8),_=e(11),A=e(26),q=e(30),d=e(31),z=Symbol(\"__ndarray__\");class D extends Uint8Array{constructor(e,s){super(e),this[a]=!0,this.dtype=\"uint8\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>D.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>D.prototype[q.serialize].call(this,e))}[(a=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Uint8NDArray=D,D.__name__=\"Uint8NDArray\";class N extends Int8Array{constructor(e,s){super(e),this[n]=!0,this.dtype=\"int8\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>N.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>N.prototype[q.serialize].call(this,e))}[(n=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Int8NDArray=N,N.__name__=\"Int8NDArray\";class f extends Uint16Array{constructor(e,s){super(e),this[l]=!0,this.dtype=\"uint16\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>f.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>f.prototype[q.serialize].call(this,e))}[(l=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Uint16NDArray=f,f.__name__=\"Uint16NDArray\";class m extends Int16Array{constructor(e,s){super(e),this[h]=!0,this.dtype=\"int16\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>m.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>m.prototype[q.serialize].call(this,e))}[(h=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Int16NDArray=m,m.__name__=\"Int16NDArray\";class g extends Uint32Array{constructor(e,s){super(e),this[u]=!0,this.dtype=\"uint32\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>g.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>g.prototype[q.serialize].call(this,e))}[(u=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Uint32NDArray=g,g.__name__=\"Uint32NDArray\";class I extends Int32Array{constructor(e,s){super(e),this[o]=!0,this.dtype=\"int32\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>I.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>I.prototype[q.serialize].call(this,e))}[(o=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Int32NDArray=I,I.__name__=\"Int32NDArray\";class U extends Float32Array{constructor(e,s){super(e),this[p]=!0,this.dtype=\"float32\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>U.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>U.prototype[q.serialize].call(this,e))}[(p=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}t.Float32NDArray=U,U.__name__=\"Float32NDArray\";class w extends Float64Array{constructor(e,s){super(e),this[c]=!0,this.dtype=\"float64\",this.shape=null!=s?s:x(e)?e.shape:[this.length],this.dimension=this.shape.length,null==this[A.equals]&&(this[A.equals]=(e,s)=>w.prototype[A.equals].call(this,e,s)),null==this[q.serialize]&&(this[q.serialize]=e=>w.prototype[q.serialize].call(this,e))}[(c=z,A.equals)](e,s){return s.eq(this.shape,e.shape)&&s.arrays(this,e)}[q.serialize](e){return(0,d.encode_NDArray)(this)}}function x(e){return(0,y.isObject)(e)&&void 0!==e[z]}t.Float64NDArray=w,w.__name__=\"Float64NDArray\",t.is_NDArray=x,t.ndarray=function(e,s={}){let{dtype:t}=s;null==t&&(t=e instanceof ArrayBuffer||(0,y.isArray)(e)?\"float64\":(()=>{switch(!0){case e instanceof Uint8Array:return\"uint8\";case e instanceof Int8Array:return\"int8\";case e instanceof Uint16Array:return\"uint16\";case e instanceof Int16Array:return\"int16\";case e instanceof Uint32Array:return\"uint32\";case e instanceof Int32Array:return\"int32\";case e instanceof Float32Array:return\"float32\";case e instanceof Float64Array:return\"float64\";default:(0,_.unreachable)()}})());const{shape:i}=s;switch(t){case\"uint8\":return new D(e,i);case\"int8\":return new N(e,i);case\"uint16\":return new f(e,i);case\"int16\":return new m(e,i);case\"uint32\":return new g(e,i);case\"int32\":return new I(e,i);case\"float32\":return new U(e,i);case\"float64\":return new w(e,i)}}},\n", - " function _(e,r,t,i,s){i();const n=e(11),a=e(13),l=e(8);t.serialize=Symbol(\"serialize\");class o extends Error{}t.SerializationError=o,o.__name__=\"SerializationError\";class f{constructor(e){var r;this._references=new Map,this._definitions=new Map,this._refmap=new Map,this.include_defaults=null===(r=null==e?void 0:e.include_defaults)||void 0===r||r}get_ref(e){return this._references.get(e)}add_ref(e,r){(0,n.assert)(!this._references.has(e)),this._references.set(e,r)}add_def(e,r){const t=this.get_ref(e);(0,n.assert)(null!=t),this._definitions.set(e,r),this._refmap.set(t,r)}get objects(){return new Set(this._references.keys())}get references(){return new Set(this._references.values())}get definitions(){return new Set(this._definitions.values())}resolve_ref(e){return this._refmap.get(e)}remove_ref(e){return this._references.delete(e)}remove_def(e){return this._definitions.delete(e)}to_serializable(e){const r=this.get_ref(e);if(null!=r)return r;if(function(e){return(0,l.isObject)(e)&&void 0!==e[t.serialize]}(e))return e[t.serialize](this);if((0,l.isArray)(e)||(0,l.isTypedArray)(e)){const r=e.length,t=new Array(r);for(let i=0;i(0,s.buffer_to_base64)(_.buffer)};return Object.assign({__ndarray__:e},r)}}},\n", - " function _(t,n,e,r,o){r(),e.buffer_to_base64=function(t){const n=new Uint8Array(t),e=Array.from(n).map((t=>String.fromCharCode(t)));return btoa(e.join(\"\"))},e.base64_to_buffer=function(t){const n=atob(t),e=n.length,r=new Uint8Array(e);for(let t=0,o=e;t\"'`])/g,(t=>{switch(t){case\"&\":return\"&\";case\"<\":return\"<\";case\">\":return\">\";case'\"':return\""\";case\"'\":return\"'\";case\"`\":return\"`\";default:return t}}))},r.unescape=function(t){return t.replace(/&(amp|lt|gt|quot|#x27|#x60);/g,((t,e)=>{switch(e){case\"amp\":return\"&\";case\"lt\":return\"<\";case\"gt\":return\">\";case\"quot\":return'\"';case\"#x27\":return\"'\";case\"#x60\":return\"`\";default:return e}}))},r.use_strict=function(t){return`'use strict';\\n${t}`},r.to_fixed=function(t,e){return t.toFixed(e).replace(/(\\.[0-9]*?)0+$/,\"$1\").replace(/\\.$/,\"\")}},\n", - " function _(e,t,s,n,o){n();const i=e(30);class r{constructor(e){this.document=e}}s.DocumentEvent=r,r.__name__=\"DocumentEvent\";class a extends r{constructor(e,t,s){super(e),this.events=t,this.setter_id=s}}s.DocumentEventBatch=a,a.__name__=\"DocumentEventBatch\";class d extends r{}s.DocumentChangedEvent=d,d.__name__=\"DocumentChangedEvent\";class l extends d{constructor(e,t,s){super(e),this.msg_type=t,this.msg_data=s}[i.serialize](e){const t=this.msg_data,s=e.to_serializable(t);return{kind:\"MessageSent\",msg_type:this.msg_type,msg_data:s}}}s.MessageSentEvent=l,l.__name__=\"MessageSentEvent\";class _ extends d{constructor(e,t,s,n,o,i,r){super(e),this.model=t,this.attr=s,this.old=n,this.new_=o,this.setter_id=i,this.hint=r}[i.serialize](e){if(null!=this.hint)return e.to_serializable(this.hint);const t=this.new_,s=e.to_serializable(t);return this.model!=t&&e.remove_def(this.model),{kind:\"ModelChanged\",model:this.model.ref(),attr:this.attr,new:s}}}s.ModelChangedEvent=_,_.__name__=\"ModelChangedEvent\";class c extends d{constructor(e,t,s){super(e),this.column_source=t,this.patches=s}[i.serialize](e){return{kind:\"ColumnsPatched\",column_source:this.column_source,patches:this.patches}}}s.ColumnsPatchedEvent=c,c.__name__=\"ColumnsPatchedEvent\";class h extends d{constructor(e,t,s,n){super(e),this.column_source=t,this.data=s,this.rollover=n}[i.serialize](e){return{kind:\"ColumnsStreamed\",column_source:this.column_source,data:this.data,rollover:this.rollover}}}s.ColumnsStreamedEvent=h,h.__name__=\"ColumnsStreamedEvent\";class m extends d{constructor(e,t,s){super(e),this.title=t,this.setter_id=s}[i.serialize](e){return{kind:\"TitleChanged\",title:this.title}}}s.TitleChangedEvent=m,m.__name__=\"TitleChangedEvent\";class u extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}[i.serialize](e){return{kind:\"RootAdded\",model:e.to_serializable(this.model)}}}s.RootAddedEvent=u,u.__name__=\"RootAddedEvent\";class v extends d{constructor(e,t,s){super(e),this.model=t,this.setter_id=s}[i.serialize](e){return{kind:\"RootRemoved\",model:this.model.ref()}}}s.RootRemovedEvent=v,v.__name__=\"RootRemovedEvent\"},\n", - " function _(t,i,r,n,s){n();const e=t(8),o=t(13);r.pretty=Symbol(\"pretty\");class c{constructor(t){this.visited=new Set,this.precision=null==t?void 0:t.precision}to_string(t){if((0,e.isObject)(t)){if(this.visited.has(t))return\"\";this.visited.add(t)}return function(t){return(0,e.isObject)(t)&&void 0!==t[r.pretty]}(t)?t[r.pretty](this):(0,e.isBoolean)(t)?this.boolean(t):(0,e.isNumber)(t)?this.number(t):(0,e.isString)(t)?this.string(t):(0,e.isArray)(t)?this.array(t):(0,e.isIterable)(t)?this.iterable(t):(0,e.isPlainObject)(t)?this.object(t):(0,e.isSymbol)(t)?this.symbol(t):`${t}`}token(t){return t}boolean(t){return`${t}`}number(t){return null!=this.precision?t.toFixed(this.precision):`${t}`}string(t){return`\"${t.replace(/'/g,\"\\\\'\")}\"`}symbol(t){return t.toString()}array(t){const i=this.token,r=[];for(const i of t)r.push(this.to_string(i));return`${i(\"[\")}${r.join(`${i(\",\")} `)}${i(\"]\")}`}iterable(t){var i;const r=this.token,n=null!==(i=Object(t)[Symbol.toStringTag])&&void 0!==i?i:\"Object\",s=this.array(t);return`${n}${r(\"(\")}${s}${r(\")\")}`}object(t){const i=this.token,r=[];for(const[n,s]of(0,o.entries)(t))r.push(`${n}${i(\":\")} ${this.to_string(s)}`);return`${i(\"{\")}${r.join(`${i(\",\")} `)}${i(\"}\")}`}}r.Printer=c,c.__name__=\"Printer\",r.to_string=function(t,i){return new c(i).to_string(t)}},\n", - " function _(n,o,r,e,t){e();const l=n(13),i=n(8);function c(n){return(0,i.isObject)(n)&&void 0!==n[r.clone]}r.clone=Symbol(\"clone\"),r.is_Cloneable=c;class s extends Error{}r.CloningError=s,s.__name__=\"CloningError\";class a{constructor(){}clone(n){if(c(n))return n[r.clone](this);if((0,i.isArray)(n)){const o=n.length,r=new Array(o);for(let e=0;e{null!=this.layout&&(this.layout.visible=this.model.visible,this.plot_view.request_layout())}))}get needs_clip(){return null==this.layout}serializable_state(){const t=super.serializable_state();return null==this.layout?t:Object.assign(Object.assign({},t),{bbox:this.layout.bbox.box})}}i.AnnotationView=r,r.__name__=\"AnnotationView\";class a extends l.Renderer{constructor(t){super(t)}}i.Annotation=a,o=a,a.__name__=\"Annotation\",o.override({level:\"annotation\"})},\n", - " function _(e,i,t,n,s){n();const r=e(1);var o,a;const _=e(42),l=(0,r.__importStar)(e(45)),d=e(20),h=e(53),u=e(54);class c extends h.Model{constructor(e){super(e)}}t.RendererGroup=c,o=c,c.__name__=\"RendererGroup\",o.define((({Boolean:e})=>({visible:[e,!0]})));class p extends _.View{get coordinates(){const{_coordinates:e}=this;return null!=e?e:this._coordinates=this._initialize_coordinates()}initialize(){super.initialize(),this.visuals=new l.Visuals(this),this.needs_webgl_blit=!1}connect_signals(){super.connect_signals();const{x_range_name:e,y_range_name:i}=this.model.properties;this.on_change([e,i],(()=>this._initialize_coordinates()));const{group:t}=this.model;null!=t&&this.on_change(t.properties.visible,(()=>{this.model.visible=t.visible}))}_initialize_coordinates(){const{coordinates:e}=this.model,{frame:i}=this.plot_view;if(null!=e)return e.get_transform(i);{const{x_range_name:e,y_range_name:t}=this.model,n=i.x_scales.get(e),s=i.y_scales.get(t);return new u.CoordinateTransform(n,s)}}get plot_view(){return this.parent}get plot_model(){return this.parent.model}get layer(){const{overlays:e,primary:i}=this.canvas;return\"overlay\"==this.model.level?e:i}get canvas(){return this.plot_view.canvas_view}request_render(){this.request_paint()}request_paint(){this.plot_view.request_paint(this)}request_layout(){this.plot_view.request_layout()}notify_finished(){this.plot_view.notify_finished()}notify_finished_after_paint(){this.plot_view.notify_finished_after_paint()}get needs_clip(){return!1}get has_webgl(){return!1}render(){this.model.visible&&this._render(),this._has_finished=!0}renderer_view(e){}}t.RendererView=p,p.__name__=\"RendererView\";class g extends h.Model{constructor(e){super(e)}}t.Renderer=g,a=g,g.__name__=\"Renderer\",a.define((({Boolean:e,String:i,Ref:t,Nullable:n})=>({group:[n(t(c)),null],level:[d.RenderLevel,\"image\"],visible:[e,!0],x_range_name:[i,\"default\"],y_range_name:[i,\"default\"],coordinates:[n(t(u.CoordinateMapping)),null]})))},\n", - " function _(t,e,s,i,n){i();const o=t(1),h=t(15),r=t(43),l=t(8),_=(0,o.__importDefault)(t(44));class d{constructor(t){this.removed=new h.Signal0(this,\"removed\"),this._ready=Promise.resolve(void 0),this._slots=new WeakMap,this._idle_notified=!1;const{model:e,parent:s}=t;this.model=e,this.parent=s,this.root=null==s?this:s.root,this.removed.emit()}get ready(){return this._ready}connect(t,e){let s=this._slots.get(e);return null==s&&(s=(t,s)=>{const i=Promise.resolve(e.call(this,t,s));this._ready=this._ready.then((()=>i))},this._slots.set(e,s)),t.connect(s,this)}disconnect(t,e){return t.disconnect(e,this)}initialize(){this._has_finished=!1,this.is_root&&(this._stylesheet=r.stylesheet);for(const t of this.styles())this.stylesheet.append(t)}async lazy_initialize(){}remove(){this.disconnect_signals(),this.removed.emit()}toString(){return`${this.model.type}View(${this.model.id})`}serializable_state(){return{type:this.model.type}}get is_root(){return null==this.parent}has_finished(){return this._has_finished}get is_idle(){return this.has_finished()}connect_signals(){}disconnect_signals(){h.Signal.disconnect_receiver(this)}on_change(t,e){for(const s of(0,l.isArray)(t)?t:[t])this.connect(s.change,e)}cursor(t,e){return null}get stylesheet(){return this.is_root?this._stylesheet:this.root.stylesheet}styles(){return[_.default]}notify_finished(){this.is_root?!this._idle_notified&&this.has_finished()&&null!=this.model.document&&(this._idle_notified=!0,this.model.document.notify_idle(this.model)):this.root.notify_finished()}}s.View=d,d.__name__=\"View\"},\n", - " function _(t,e,n,i,o){i();const s=t(8),l=t(13),r=t=>(e={},...n)=>{const i=document.createElement(t);i.classList.add(\"bk\"),(0,s.isPlainObject)(e)||(n=[e,...n],e={});for(let[t,n]of(0,l.entries)(e))if(null!=n&&(!(0,s.isBoolean)(n)||n))if(\"class\"===t&&((0,s.isString)(n)&&(n=n.split(/\\s+/)),(0,s.isArray)(n)))for(const t of n)null!=t&&i.classList.add(t);else if(\"style\"===t&&(0,s.isPlainObject)(n))for(const[t,e]of(0,l.entries)(n))i.style[t]=e;else if(\"data\"===t&&(0,s.isPlainObject)(n))for(const[t,e]of(0,l.entries)(n))i.dataset[t]=e;else i.setAttribute(t,n);function o(t){if((0,s.isString)(t))i.appendChild(document.createTextNode(t));else if(t instanceof Node)i.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)i.appendChild(e);else if(null!=t&&!1!==t)throw new Error(`expected a DOM element, string, false or null, got ${JSON.stringify(t)}`)}for(const t of n)if((0,s.isArray)(t))for(const e of t)o(e);else o(t);return i};function a(t){const e=t.parentNode;null!=e&&e.removeChild(t)}function c(t,...e){const n=t.firstChild;for(const i of e)t.insertBefore(i,n)}function d(t,e){var n,i,o;const s=Element.prototype;return(null!==(o=null!==(i=null!==(n=s.matches)&&void 0!==n?n:s.webkitMatchesSelector)&&void 0!==i?i:s.mozMatchesSelector)&&void 0!==o?o:s.msMatchesSelector).call(t,e)}function h(t){return parseFloat(t)||0}function f(t){const e=getComputedStyle(t);return{border:{top:h(e.borderTopWidth),bottom:h(e.borderBottomWidth),left:h(e.borderLeftWidth),right:h(e.borderRightWidth)},margin:{top:h(e.marginTop),bottom:h(e.marginBottom),left:h(e.marginLeft),right:h(e.marginRight)},padding:{top:h(e.paddingTop),bottom:h(e.paddingBottom),left:h(e.paddingLeft),right:h(e.paddingRight)}}}function u(t){const e=t.getBoundingClientRect();return{width:Math.ceil(e.width),height:Math.ceil(e.height)}}n.createElement=function(t,e,...n){return r(t)(e,...n)},n.div=r(\"div\"),n.span=r(\"span\"),n.canvas=r(\"canvas\"),n.link=r(\"link\"),n.style=r(\"style\"),n.a=r(\"a\"),n.p=r(\"p\"),n.i=r(\"i\"),n.pre=r(\"pre\"),n.button=r(\"button\"),n.label=r(\"label\"),n.input=r(\"input\"),n.select=r(\"select\"),n.option=r(\"option\"),n.optgroup=r(\"optgroup\"),n.textarea=r(\"textarea\"),n.createSVGElement=function(t,e,...n){const i=document.createElementNS(\"http://www.w3.org/2000/svg\",t);for(const[t,n]of(0,l.entries)(null!=e?e:{}))null==n||(0,s.isBoolean)(n)&&!n||i.setAttribute(t,n);function o(t){if((0,s.isString)(t))i.appendChild(document.createTextNode(t));else if(t instanceof Node)i.appendChild(t);else if(t instanceof NodeList||t instanceof HTMLCollection)for(const e of t)i.appendChild(e);else if(null!=t&&!1!==t)throw new Error(`expected a DOM element, string, false or null, got ${JSON.stringify(t)}`)}for(const t of n)if((0,s.isArray)(t))for(const e of t)o(e);else o(t);return i},n.nbsp=function(){return document.createTextNode(\"\\xa0\")},n.append=function(t,...e){for(const n of e)t.appendChild(n)},n.remove=a,n.removeElement=a,n.replaceWith=function(t,e){const n=t.parentNode;null!=n&&n.replaceChild(e,t)},n.prepend=c,n.empty=function(t,e=!1){let n;for(;n=t.firstChild;)t.removeChild(n);if(e&&t instanceof Element)for(const e of t.attributes)t.removeAttributeNode(e)},n.display=function(t){t.style.display=\"\"},n.undisplay=function(t){t.style.display=\"none\"},n.show=function(t){t.style.visibility=\"\"},n.hide=function(t){t.style.visibility=\"hidden\"},n.offset=function(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset-document.documentElement.clientTop,left:e.left+window.pageXOffset-document.documentElement.clientLeft}},n.matches=d,n.parent=function(t,e){let n=t;for(;n=n.parentElement;)if(d(n,e))return n;return null},n.extents=f,n.size=u,n.scroll_size=function(t){return{width:Math.ceil(t.scrollWidth),height:Math.ceil(t.scrollHeight)}},n.outer_size=function(t){const{margin:{left:e,right:n,top:i,bottom:o}}=f(t),{width:s,height:l}=u(t);return{width:Math.ceil(s+e+n),height:Math.ceil(l+i+o)}},n.content_size=function(t){const{left:e,top:n}=t.getBoundingClientRect(),{padding:i}=f(t);let o=0,s=0;for(const l of t.children){const t=l.getBoundingClientRect();o=Math.max(o,Math.ceil(t.left-e-i.left+t.width)),s=Math.max(s,Math.ceil(t.top-n-i.top+t.height))}return{width:o,height:s}},n.position=function(t,e,n){const{style:i}=t;if(i.left=`${e.x}px`,i.top=`${e.y}px`,i.width=`${e.width}px`,i.height=`${e.height}px`,null==n)i.margin=\"\";else{const{top:t,right:e,bottom:o,left:s}=n;i.margin=`${t}px ${e}px ${o}px ${s}px`}},n.children=function(t){return Array.from(t.children)};class p{constructor(t){this.el=t,this.classList=t.classList}get values(){const t=[];for(let e=0;e{document.addEventListener(\"DOMContentLoaded\",(()=>t()),{once:!0})}))}},\n", - " function _(o,i,t,e,r){e(),t.root=\"bk-root\",t.default=\".bk-root{position:relative;width:auto;height:auto;box-sizing:border-box;font-family:Helvetica, Arial, sans-serif;font-size:13px;}.bk-root .bk,.bk-root .bk:before,.bk-root .bk:after{box-sizing:inherit;margin:0;border:0;padding:0;background-image:none;font-family:inherit;font-size:100%;line-height:1.42857143;}.bk-root pre.bk{font-family:Courier, monospace;}\"},\n", - " function _(e,t,r,a,c){a();const n=e(1),l=e(46);c(\"Line\",l.Line),c(\"LineScalar\",l.LineScalar),c(\"LineVector\",l.LineVector);const i=e(49);c(\"Fill\",i.Fill),c(\"FillScalar\",i.FillScalar),c(\"FillVector\",i.FillVector);const s=e(50);c(\"Text\",s.Text),c(\"TextScalar\",s.TextScalar),c(\"TextVector\",s.TextVector);const o=e(51);c(\"Hatch\",o.Hatch),c(\"HatchScalar\",o.HatchScalar),c(\"HatchVector\",o.HatchVector);const u=(0,n.__importStar)(e(48)),V=e(47);c(\"VisualProperties\",V.VisualProperties),c(\"VisualUniforms\",V.VisualUniforms);class h{constructor(e){this._visuals=[];for(const[t,r]of e.model._mixins){const a=(()=>{switch(r){case u.Line:return new l.Line(e,t);case u.LineScalar:return new l.LineScalar(e,t);case u.LineVector:return new l.LineVector(e,t);case u.Fill:return new i.Fill(e,t);case u.FillScalar:return new i.FillScalar(e,t);case u.FillVector:return new i.FillVector(e,t);case u.Text:return new s.Text(e,t);case u.TextScalar:return new s.TextScalar(e,t);case u.TextVector:return new s.TextVector(e,t);case u.Hatch:return new o.Hatch(e,t);case u.HatchScalar:return new o.HatchScalar(e,t);case u.HatchVector:return new o.HatchVector(e,t);default:throw new Error(\"unknown visual\")}})();a instanceof V.VisualProperties&&a.update(),this._visuals.push(a),Object.defineProperty(this,t+a.type,{get:()=>a,configurable:!1,enumerable:!0})}}*[Symbol.iterator](){yield*this._visuals}}r.Visuals=h,h.__name__=\"Visuals\"},\n", - " function _(e,t,i,l,s){l();const a=e(1),n=e(47),h=(0,a.__importStar)(e(48)),o=e(22),_=e(8);function r(e){if((0,_.isArray)(e))return e;switch(e){case\"solid\":return[];case\"dashed\":return[6];case\"dotted\":return[2,4];case\"dotdash\":return[2,4,6,4];case\"dashdot\":return[6,4,2,4];default:return e.split(\" \").map(Number).filter(_.isInteger)}}i.resolve_line_dash=r;class u extends n.VisualProperties{get doit(){const e=this.line_color.get_value(),t=this.line_alpha.get_value(),i=this.line_width.get_value();return!(null==e||0==t||0==i)}apply(e){const{doit:t}=this;return t&&(this.set_value(e),e.stroke()),t}values(){return{color:this.line_color.get_value(),alpha:this.line_alpha.get_value(),width:this.line_width.get_value(),join:this.line_join.get_value(),cap:this.line_cap.get_value(),dash:this.line_dash.get_value(),offset:this.line_dash_offset.get_value()}}set_value(e){const t=this.line_color.get_value(),i=this.line_alpha.get_value();e.strokeStyle=(0,o.color2css)(t,i),e.lineWidth=this.line_width.get_value(),e.lineJoin=this.line_join.get_value(),e.lineCap=this.line_cap.get_value(),e.lineDash=r(this.line_dash.get_value()),e.lineDashOffset=this.line_dash_offset.get_value()}}i.Line=u,u.__name__=\"Line\";class c extends n.VisualUniforms{get doit(){const e=this.line_color.value,t=this.line_alpha.value,i=this.line_width.value;return!(0==e||0==t||0==i)}apply(e){const{doit:t}=this;return t&&(this.set_value(e),e.stroke()),t}values(){return{color:this.line_color.value,alpha:this.line_alpha.value,width:this.line_width.value,join:this.line_join.value,cap:this.line_cap.value,dash:this.line_dash.value,offset:this.line_dash_offset.value}}set_value(e){const t=this.line_color.value,i=this.line_alpha.value;e.strokeStyle=(0,o.color2css)(t,i),e.lineWidth=this.line_width.value,e.lineJoin=this.line_join.value,e.lineCap=this.line_cap.value,e.lineDash=r(this.line_dash.value),e.lineDashOffset=this.line_dash_offset.value}}i.LineScalar=c,c.__name__=\"LineScalar\";class d extends n.VisualUniforms{get doit(){const{line_color:e}=this;if(e.is_Scalar()&&0==e.value)return!1;const{line_alpha:t}=this;if(t.is_Scalar()&&0==t.value)return!1;const{line_width:i}=this;return!i.is_Scalar()||0!=i.value}apply(e,t){const{doit:i}=this;return i&&(this.set_vectorize(e,t),e.stroke()),i}values(e){return{color:this.line_color.get(e),alpha:this.line_alpha.get(e),width:this.line_width.get(e),join:this.line_join.get(e),cap:this.line_cap.get(e),dash:this.line_dash.get(e),offset:this.line_dash_offset.get(e)}}set_vectorize(e,t){const i=this.line_color.get(t),l=this.line_alpha.get(t),s=this.line_width.get(t),a=this.line_join.get(t),n=this.line_cap.get(t),h=this.line_dash.get(t),_=this.line_dash_offset.get(t);e.strokeStyle=(0,o.color2css)(i,l),e.lineWidth=s,e.lineJoin=a,e.lineCap=n,e.lineDash=r(h),e.lineDashOffset=_}}i.LineVector=d,d.__name__=\"LineVector\",u.prototype.type=\"line\",u.prototype.attrs=Object.keys(h.Line),c.prototype.type=\"line\",c.prototype.attrs=Object.keys(h.LineScalar),d.prototype.type=\"line\",d.prototype.attrs=Object.keys(h.LineVector)},\n", - " function _(t,s,o,i,r){i();class e{constructor(t,s=\"\"){this.obj=t,this.prefix=s;const o=this;this._props=[];for(const i of this.attrs){const r=t.model.properties[s+i];r.change.connect((()=>this.update())),o[i]=r,this._props.push(r)}}*[Symbol.iterator](){yield*this._props}update(){}}o.VisualProperties=e,e.__name__=\"VisualProperties\";class p{constructor(t,s=\"\"){this.obj=t,this.prefix=s;for(const o of this.attrs)Object.defineProperty(this,o,{get:()=>t[s+o]})}*[Symbol.iterator](){for(const t of this.attrs)yield this.obj.model.properties[this.prefix+t]}update(){}}o.VisualUniforms=p,p.__name__=\"VisualUniforms\"},\n", - " function _(e,l,t,a,c){a();const r=e(1),o=(0,r.__importStar)(e(18)),n=e(20),i=(0,r.__importStar)(e(21)),_=e(13);t.Line={line_color:[i.Nullable(i.Color),\"black\"],line_alpha:[i.Alpha,1],line_width:[i.Number,1],line_join:[n.LineJoin,\"bevel\"],line_cap:[n.LineCap,\"butt\"],line_dash:[i.Or(n.LineDash,i.Array(i.Number)),[]],line_dash_offset:[i.Number,0]},t.Fill={fill_color:[i.Nullable(i.Color),\"gray\"],fill_alpha:[i.Alpha,1]},t.Hatch={hatch_color:[i.Nullable(i.Color),\"black\"],hatch_alpha:[i.Alpha,1],hatch_scale:[i.Number,12],hatch_pattern:[i.Nullable(i.Or(n.HatchPatternType,i.String)),null],hatch_weight:[i.Number,1],hatch_extra:[i.Dict(i.AnyRef()),{}]},t.Text={text_color:[i.Nullable(i.Color),\"#444444\"],text_alpha:[i.Alpha,1],text_font:[o.Font,\"helvetica\"],text_font_size:[i.FontSize,\"16px\"],text_font_style:[n.FontStyle,\"normal\"],text_align:[n.TextAlign,\"left\"],text_baseline:[n.TextBaseline,\"bottom\"],text_line_height:[i.Number,1.2]},t.LineScalar={line_color:[o.ColorScalar,\"black\"],line_alpha:[o.NumberScalar,1],line_width:[o.NumberScalar,1],line_join:[o.LineJoinScalar,\"bevel\"],line_cap:[o.LineCapScalar,\"butt\"],line_dash:[o.LineDashScalar,[]],line_dash_offset:[o.NumberScalar,0]},t.FillScalar={fill_color:[o.ColorScalar,\"gray\"],fill_alpha:[o.NumberScalar,1]},t.HatchScalar={hatch_color:[o.ColorScalar,\"black\"],hatch_alpha:[o.NumberScalar,1],hatch_scale:[o.NumberScalar,12],hatch_pattern:[o.NullStringScalar,null],hatch_weight:[o.NumberScalar,1],hatch_extra:[o.AnyScalar,{}]},t.TextScalar={text_color:[o.ColorScalar,\"#444444\"],text_alpha:[o.NumberScalar,1],text_font:[o.FontScalar,\"helvetica\"],text_font_size:[o.FontSizeScalar,\"16px\"],text_font_style:[o.FontStyleScalar,\"normal\"],text_align:[o.TextAlignScalar,\"left\"],text_baseline:[o.TextBaselineScalar,\"bottom\"],text_line_height:[o.NumberScalar,1.2]},t.LineVector={line_color:[o.ColorSpec,\"black\"],line_alpha:[o.NumberSpec,1],line_width:[o.NumberSpec,1],line_join:[o.LineJoinSpec,\"bevel\"],line_cap:[o.LineCapSpec,\"butt\"],line_dash:[o.LineDashSpec,[]],line_dash_offset:[o.NumberSpec,0]},t.FillVector={fill_color:[o.ColorSpec,\"gray\"],fill_alpha:[o.NumberSpec,1]},t.HatchVector={hatch_color:[o.ColorSpec,\"black\"],hatch_alpha:[o.NumberSpec,1],hatch_scale:[o.NumberSpec,12],hatch_pattern:[o.NullStringSpec,null],hatch_weight:[o.NumberSpec,1],hatch_extra:[o.AnyScalar,{}]},t.TextVector={text_color:[o.ColorSpec,\"#444444\"],text_alpha:[o.NumberSpec,1],text_font:[o.FontSpec,\"helvetica\"],text_font_size:[o.FontSizeSpec,\"16px\"],text_font_style:[o.FontStyleSpec,\"normal\"],text_align:[o.TextAlignSpec,\"left\"],text_baseline:[o.TextBaselineSpec,\"bottom\"],text_line_height:[o.NumberSpec,1.2]},t.attrs_of=function(e,l,t,a=!1){const c={};for(const r of(0,_.keys)(t)){const t=`${l}${r}`,o=e[t];c[a?t:r]=o}return c}},\n", - " function _(l,t,e,i,s){i();const a=l(1),o=l(47),r=(0,a.__importStar)(l(48)),_=l(22);class c extends o.VisualProperties{get doit(){const l=this.fill_color.get_value(),t=this.fill_alpha.get_value();return!(null==l||0==t)}apply(l,t){const{doit:e}=this;return e&&(this.set_value(l),l.fill(t)),e}values(){return{color:this.fill_color.get_value(),alpha:this.fill_alpha.get_value()}}set_value(l){const t=this.fill_color.get_value(),e=this.fill_alpha.get_value();l.fillStyle=(0,_.color2css)(t,e)}}e.Fill=c,c.__name__=\"Fill\";class h extends o.VisualUniforms{get doit(){const l=this.fill_color.value,t=this.fill_alpha.value;return!(0==l||0==t)}apply(l,t){const{doit:e}=this;return e&&(this.set_value(l),l.fill(t)),e}values(){return{color:this.fill_color.value,alpha:this.fill_alpha.value}}set_value(l){const t=this.fill_color.value,e=this.fill_alpha.value;l.fillStyle=(0,_.color2css)(t,e)}}e.FillScalar=h,h.__name__=\"FillScalar\";class u extends o.VisualUniforms{get doit(){const{fill_color:l}=this;if(l.is_Scalar()&&0==l.value)return!1;const{fill_alpha:t}=this;return!t.is_Scalar()||0!=t.value}apply(l,t,e){const{doit:i}=this;return i&&(this.set_vectorize(l,t),l.fill(e)),i}values(l){return{color:this.fill_color.get(l),alpha:this.fill_alpha.get(l)}}set_vectorize(l,t){const e=this.fill_color.get(t),i=this.fill_alpha.get(t);l.fillStyle=(0,_.color2css)(e,i)}}e.FillVector=u,u.__name__=\"FillVector\",c.prototype.type=\"fill\",c.prototype.attrs=Object.keys(r.Fill),h.prototype.type=\"fill\",h.prototype.attrs=Object.keys(r.FillScalar),u.prototype.type=\"fill\",u.prototype.attrs=Object.keys(r.FillVector)},\n", - " function _(t,e,l,s,_){s();const i=t(1),a=t(47),o=(0,i.__importStar)(t(48)),n=t(22);class h extends a.VisualProperties{get doit(){const t=this.text_color.get_value(),e=this.text_alpha.get_value();return!(null==t||0==e)}values(){return{color:this.text_color.get_value(),alpha:this.text_alpha.get_value(),font:this.text_font.get_value(),font_size:this.text_font_size.get_value(),font_style:this.text_font_style.get_value(),align:this.text_align.get_value(),baseline:this.text_baseline.get_value(),line_height:this.text_line_height.get_value()}}set_value(t){const e=this.text_color.get_value(),l=this.text_alpha.get_value();t.fillStyle=(0,n.color2css)(e,l),t.font=this.font_value(),t.textAlign=this.text_align.get_value(),t.textBaseline=this.text_baseline.get_value()}font_value(){return`${this.text_font_style.get_value()} ${this.text_font_size.get_value()} ${this.text_font.get_value()}`}}l.Text=h,h.__name__=\"Text\";class x extends a.VisualUniforms{get doit(){const t=this.text_color.value,e=this.text_alpha.value;return!(0==t||0==e)}values(){return{color:this.text_color.value,alpha:this.text_alpha.value,font:this.text_font.value,font_size:this.text_font_size.value,font_style:this.text_font_style.value,align:this.text_align.value,baseline:this.text_baseline.value,line_height:this.text_line_height.value}}set_value(t){const e=this.text_color.value,l=this.text_alpha.value,s=this.font_value(),_=this.text_align.value,i=this.text_baseline.value;t.fillStyle=(0,n.color2css)(e,l),t.font=s,t.textAlign=_,t.textBaseline=i}font_value(){return`${this.text_font_style.value} ${this.text_font_size.value} ${this.text_font.value}`}}l.TextScalar=x,x.__name__=\"TextScalar\";class u extends a.VisualUniforms{values(t){return{color:this.text_color.get(t),alpha:this.text_alpha.get(t),font:this.text_font.get(t),font_size:this.text_font_size.get(t),font_style:this.text_font_style.get(t),align:this.text_align.get(t),baseline:this.text_baseline.get(t),line_height:this.text_line_height.get(t)}}get doit(){const{text_color:t}=this;if(t.is_Scalar()&&0==t.value)return!1;const{text_alpha:e}=this;return!e.is_Scalar()||0!=e.value}set_vectorize(t,e){const l=this.text_color.get(e),s=this.text_alpha.get(e),_=this.font_value(e),i=this.text_align.get(e),a=this.text_baseline.get(e);t.fillStyle=(0,n.color2css)(l,s),t.font=_,t.textAlign=i,t.textBaseline=a}font_value(t){return`${this.text_font_style.get(t)} ${this.text_font_size.get(t)} ${this.text_font.get(t)}`}}l.TextVector=u,u.__name__=\"TextVector\",h.prototype.type=\"text\",h.prototype.attrs=Object.keys(o.Text),x.prototype.type=\"text\",x.prototype.attrs=Object.keys(o.TextScalar),u.prototype.type=\"text\",u.prototype.attrs=Object.keys(o.TextVector)},\n", - " function _(t,e,a,r,i){r();const h=t(1),s=t(47),n=t(52),c=(0,h.__importStar)(t(18)),_=(0,h.__importStar)(t(48));class l extends s.VisualProperties{constructor(){super(...arguments),this._update_iteration=0}update(){if(this._update_iteration++,this._hatch_image=null,!this.doit)return;const t=this.hatch_color.get_value(),e=this.hatch_alpha.get_value(),a=this.hatch_scale.get_value(),r=this.hatch_pattern.get_value(),i=this.hatch_weight.get_value(),h=t=>{this._hatch_image=t},s=this.hatch_extra.get_value()[r];if(null!=s){const r=s.get_pattern(t,e,a,i);if(r instanceof Promise){const{_update_iteration:t}=this;r.then((e=>{this._update_iteration==t&&(h(e),this.obj.request_render())}))}else h(r)}else{const s=this.obj.canvas.create_layer(),c=(0,n.get_pattern)(s,r,t,e,a,i);h(c)}}get doit(){const t=this.hatch_color.get_value(),e=this.hatch_alpha.get_value(),a=this.hatch_pattern.get_value();return!(null==t||0==e||\" \"==a||\"blank\"==a||null==a)}apply(t,e){const{doit:a}=this;return a&&(this.set_value(t),t.layer.undo_transform((()=>t.fill(e)))),a}set_value(t){const e=this.pattern(t);t.fillStyle=null!=e?e:\"transparent\"}pattern(t){const e=this._hatch_image;return null==e?null:t.createPattern(e,this.repetition())}repetition(){const t=this.hatch_pattern.get_value(),e=this.hatch_extra.get_value()[t];if(null==e)return\"repeat\";switch(e.repetition){case\"repeat\":return\"repeat\";case\"repeat_x\":return\"repeat-x\";case\"repeat_y\":return\"repeat-y\";case\"no_repeat\":return\"no-repeat\"}}}a.Hatch=l,l.__name__=\"Hatch\";class o extends s.VisualUniforms{constructor(){super(...arguments),this._static_doit=!1,this._update_iteration=0}_compute_static_doit(){const t=this.hatch_color.value,e=this.hatch_alpha.value,a=this.hatch_pattern.value;return!(null==t||0==e||\" \"==a||\"blank\"==a||null==a)}update(){this._update_iteration++;const t=this.hatch_color.length;if(this._hatch_image=new c.UniformScalar(null,t),this._static_doit=this._compute_static_doit(),!this._static_doit)return;const e=this.hatch_color.value,a=this.hatch_alpha.value,r=this.hatch_scale.value,i=this.hatch_pattern.value,h=this.hatch_weight.value,s=e=>{this._hatch_image=new c.UniformScalar(e,t)},_=this.hatch_extra.value[i];if(null!=_){const t=_.get_pattern(e,a,r,h);if(t instanceof Promise){const{_update_iteration:e}=this;t.then((t=>{this._update_iteration==e&&(s(t),this.obj.request_render())}))}else s(t)}else{const t=this.obj.canvas.create_layer(),c=(0,n.get_pattern)(t,i,e,a,r,h);s(c)}}get doit(){return this._static_doit}apply(t,e){const{doit:a}=this;return a&&(this.set_value(t),t.layer.undo_transform((()=>t.fill(e)))),a}set_value(t){var e;t.fillStyle=null!==(e=this.pattern(t))&&void 0!==e?e:\"transparent\"}pattern(t){const e=this._hatch_image.value;return null==e?null:t.createPattern(e,this.repetition())}repetition(){const t=this.hatch_pattern.value,e=this.hatch_extra.value[t];if(null==e)return\"repeat\";switch(e.repetition){case\"repeat\":return\"repeat\";case\"repeat_x\":return\"repeat-x\";case\"repeat_y\":return\"repeat-y\";case\"no_repeat\":return\"no-repeat\"}}}a.HatchScalar=o,o.__name__=\"HatchScalar\";class u extends s.VisualUniforms{constructor(){super(...arguments),this._static_doit=!1,this._update_iteration=0}_compute_static_doit(){const{hatch_color:t}=this;if(t.is_Scalar()&&0==t.value)return!1;const{hatch_alpha:e}=this;if(e.is_Scalar()&&0==e.value)return!1;const{hatch_pattern:a}=this;if(a.is_Scalar()){const t=a.value;if(\" \"==t||\"blank\"==t||null==t)return!1}return!0}update(){this._update_iteration++;const t=this.hatch_color.length;if(this._hatch_image=new c.UniformScalar(null,t),this._static_doit=this._compute_static_doit(),!this._static_doit)return;const e=(t,e,a,r,i,h)=>{const s=this.hatch_extra.value[t];if(null!=s){const t=s.get_pattern(e,a,r,i);if(t instanceof Promise){const{_update_iteration:e}=this;t.then((t=>{this._update_iteration==e&&(h(t),this.obj.request_render())}))}else h(t)}else{const s=this.obj.canvas.create_layer(),c=(0,n.get_pattern)(s,t,e,a,r,i);h(c)}};if(this.hatch_color.is_Scalar()&&this.hatch_alpha.is_Scalar()&&this.hatch_scale.is_Scalar()&&this.hatch_pattern.is_Scalar()&&this.hatch_weight.is_Scalar()){const a=this.hatch_color.value,r=this.hatch_alpha.value,i=this.hatch_scale.value;e(this.hatch_pattern.value,a,r,i,this.hatch_weight.value,(e=>{this._hatch_image=new c.UniformScalar(e,t)}))}else{const a=new Array(t);a.fill(null),this._hatch_image=new c.UniformVector(a);for(let r=0;r{a[r]=t}))}}}get doit(){return this._static_doit}apply(t,e,a){const{doit:r}=this;return r&&(this.set_vectorize(t,e),t.layer.undo_transform((()=>t.fill(a)))),r}set_vectorize(t,e){var a;t.fillStyle=null!==(a=this.pattern(t,e))&&void 0!==a?a:\"transparent\"}pattern(t,e){const a=this._hatch_image.get(e);return null==a?null:t.createPattern(a,this.repetition(e))}repetition(t){const e=this.hatch_pattern.get(t),a=this.hatch_extra.value[e];if(null==a)return\"repeat\";switch(a.repetition){case\"repeat\":return\"repeat\";case\"repeat_x\":return\"repeat-x\";case\"repeat_y\":return\"repeat-y\";case\"no_repeat\":return\"no-repeat\"}}}a.HatchVector=u,u.__name__=\"HatchVector\",l.prototype.type=\"hatch\",l.prototype.attrs=Object.keys(_.Hatch),o.prototype.type=\"hatch\",o.prototype.attrs=Object.keys(_.HatchScalar),u.prototype.type=\"hatch\",u.prototype.attrs=Object.keys(_.HatchVector)},\n", - " function _(e,o,a,s,r){s();const i=e(22);function l(e,o,a){e.moveTo(0,a+.5),e.lineTo(o,a+.5),e.stroke()}function n(e,o,a){e.moveTo(a+.5,0),e.lineTo(a+.5,o),e.stroke()}function t(e,o){e.moveTo(0,o),e.lineTo(o,0),e.stroke(),e.moveTo(0,0),e.lineTo(o,o),e.stroke()}a.hatch_aliases={\" \":\"blank\",\".\":\"dot\",o:\"ring\",\"-\":\"horizontal_line\",\"|\":\"vertical_line\",\"+\":\"cross\",'\"':\"horizontal_dash\",\":\":\"vertical_dash\",\"@\":\"spiral\",\"/\":\"right_diagonal_line\",\"\\\\\":\"left_diagonal_line\",x:\"diagonal_cross\",\",\":\"right_diagonal_dash\",\"`\":\"left_diagonal_dash\",v:\"horizontal_wave\",\">\":\"vertical_wave\",\"*\":\"criss_cross\"},a.get_pattern=function(e,o,s,r,c,k){return e.resize(c,c),e.prepare(),function(e,o,s,r,c,k){var _;const T=c,v=T/2,h=v/2,d=(0,i.color2css)(s,r);switch(e.strokeStyle=d,e.fillStyle=d,e.lineCap=\"square\",e.lineWidth=k,null!==(_=a.hatch_aliases[o])&&void 0!==_?_:o){case\"blank\":break;case\"dot\":e.arc(v,v,v/2,0,2*Math.PI,!0),e.fill();break;case\"ring\":e.arc(v,v,v/2,0,2*Math.PI,!0),e.stroke();break;case\"horizontal_line\":l(e,T,v);break;case\"vertical_line\":n(e,T,v);break;case\"cross\":l(e,T,v),n(e,T,v);break;case\"horizontal_dash\":l(e,v,v);break;case\"vertical_dash\":n(e,v,v);break;case\"spiral\":{const o=T/30;e.moveTo(v,v);for(let a=0;a<360;a++){const s=.1*a,r=v+o*s*Math.cos(s),i=v+o*s*Math.sin(s);e.lineTo(r,i)}e.stroke();break}case\"right_diagonal_line\":e.moveTo(.5-h,T),e.lineTo(h+.5,0),e.stroke(),e.moveTo(h+.5,T),e.lineTo(3*h+.5,0),e.stroke(),e.moveTo(3*h+.5,T),e.lineTo(5*h+.5,0),e.stroke(),e.stroke();break;case\"left_diagonal_line\":e.moveTo(h+.5,T),e.lineTo(.5-h,0),e.stroke(),e.moveTo(3*h+.5,T),e.lineTo(h+.5,0),e.stroke(),e.moveTo(5*h+.5,T),e.lineTo(3*h+.5,0),e.stroke(),e.stroke();break;case\"diagonal_cross\":t(e,T);break;case\"right_diagonal_dash\":e.moveTo(h+.5,3*h+.5),e.lineTo(3*h+.5,h+.5),e.stroke();break;case\"left_diagonal_dash\":e.moveTo(h+.5,h+.5),e.lineTo(3*h+.5,3*h+.5),e.stroke();break;case\"horizontal_wave\":e.moveTo(0,h),e.lineTo(v,3*h),e.lineTo(T,h),e.stroke();break;case\"vertical_wave\":e.moveTo(h,0),e.lineTo(3*h,v),e.lineTo(h,T),e.stroke();break;case\"criss_cross\":t(e,T),l(e,T,v),n(e,T,v)}}(e.ctx,o,s,r,c,k),e.canvas}},\n", - " function _(e,t,s,n,c){var a;n();const i=e(14),r=e(8),l=e(13),o=e(26),_=e(19);class h extends i.HasProps{constructor(e){super(e)}get is_syncable(){return this.syncable}[o.equals](e,t){return t.eq(this.id,e.id)&&super[o.equals](e,t)}initialize(){super.initialize(),this._js_callbacks=new Map}connect_signals(){super.connect_signals(),this._update_property_callbacks(),this.connect(this.properties.js_property_callbacks.change,(()=>this._update_property_callbacks())),this.connect(this.properties.js_event_callbacks.change,(()=>this._update_event_callbacks())),this.connect(this.properties.subscribed_events.change,(()=>this._update_event_callbacks()))}_process_event(e){var t;for(const s of null!==(t=this.js_event_callbacks[e.event_name])&&void 0!==t?t:[])s.execute(e);null!=this.document&&this.subscribed_events.some((t=>t==e.event_name))&&this.document.event_manager.send_event(e)}trigger_event(e){null!=this.document&&(e.origin=this,this.document.event_manager.trigger(e))}_update_event_callbacks(){null!=this.document?this.document.event_manager.subscribed_models.add(this):_.logger.warn(\"WARNING: Document not defined for updating event callbacks\")}_update_property_callbacks(){const e=e=>{const[t,s=null]=e.split(\":\");return null!=s?this.properties[s][t]:this[t]};for(const[t,s]of this._js_callbacks){const n=e(t);for(const e of s)this.disconnect(n,e)}this._js_callbacks.clear();for(const[t,s]of(0,l.entries)(this.js_property_callbacks)){const n=s.map((e=>()=>e.execute(this)));this._js_callbacks.set(t,n);const c=e(t);for(const e of n)this.connect(c,e)}}_doc_attached(){(0,l.isEmpty)(this.js_event_callbacks)&&0==this.subscribed_events.length||this._update_event_callbacks()}_doc_detached(){this.document.event_manager.subscribed_models.delete(this)}select(e){if((0,r.isString)(e))return[...this.references()].filter((t=>t instanceof h&&t.name===e));if(e.prototype instanceof i.HasProps)return[...this.references()].filter((t=>t instanceof e));throw new Error(\"invalid selector\")}select_one(e){const t=this.select(e);switch(t.length){case 0:return null;case 1:return t[0];default:throw new Error(\"found more than one object matching given selector\")}}}s.Model=h,a=h,h.__name__=\"Model\",a.define((({Any:e,Unknown:t,Boolean:s,String:n,Array:c,Dict:a,Nullable:i})=>({tags:[c(t),[]],name:[i(n),null],js_property_callbacks:[a(c(e)),{}],js_event_callbacks:[a(c(e)),{}],subscribed_events:[c(n),[]],syncable:[s,!0]})))},\n", - " function _(e,t,s,a,r){var c,n;a();const _=e(12),o=e(53),i=e(55),l=e(59),u=e(61),g=e(62),h=e(57),p=e(63),m=e(67);class x{constructor(e,t){this.x_scale=e,this.y_scale=t,this.x_source=this.x_scale.source_range,this.y_source=this.y_scale.source_range,this.ranges=[this.x_source,this.y_source],this.scales=[this.x_scale,this.y_scale]}map_to_screen(e,t){return[this.x_scale.v_compute(e),this.y_scale.v_compute(t)]}map_from_screen(e,t){return[this.x_scale.v_invert(e),this.y_scale.v_invert(t)]}}s.CoordinateTransform=x,x.__name__=\"CoordinateTransform\";class y extends o.Model{constructor(e){super(e)}get x_ranges(){return new Map([[\"default\",this.x_source]])}get y_ranges(){return new Map([[\"default\",this.y_source]])}_get_scale(e,t,s){if(e instanceof m.FactorRange!=t instanceof g.CategoricalScale)throw new Error(`Range ${e.type} is incompatible is Scale ${t.type}`);t instanceof u.LogScale&&e instanceof p.DataRange1d&&(e.scale_hint=\"log\");const a=t.clone();return a.setv({source_range:e,target_range:s}),a}get_transform(e){const{x_source:t,x_scale:s,x_target:a}=this,r=this._get_scale(t,s,a),{y_source:c,y_scale:n,y_target:_}=this,o=this._get_scale(c,n,_),i=new v({source_scale:r,source_range:r.source_range,target_scale:e.x_scale,target_range:e.x_target}),l=new v({source_scale:o,source_range:o.source_range,target_scale:e.y_scale,target_range:e.y_target});return new x(i,l)}}s.CoordinateMapping=y,c=y,y.__name__=\"CoordinateMapping\",c.define((({Ref:e})=>({x_source:[e(h.Range),()=>new p.DataRange1d],y_source:[e(h.Range),()=>new p.DataRange1d],x_scale:[e(i.Scale),()=>new l.LinearScale],y_scale:[e(i.Scale),()=>new l.LinearScale],x_target:[e(h.Range)],y_target:[e(h.Range)]})));class v extends i.Scale{constructor(e){super(e)}get s_compute(){const e=this.source_scale.s_compute,t=this.target_scale.s_compute;return s=>t(e(s))}get s_invert(){const e=this.source_scale.s_invert,t=this.target_scale.s_invert;return s=>e(t(s))}compute(e){return this.s_compute(e)}v_compute(e){const{s_compute:t}=this;return(0,_.map)(e,t)}invert(e){return this.s_invert(e)}v_invert(e){const{s_invert:t}=this;return(0,_.map)(e,t)}}s.CompositeScale=v,n=v,v.__name__=\"CompositeScale\",n.internal((({Ref:e})=>({source_scale:[e(i.Scale)],target_scale:[e(i.Scale)]})))},\n", - " function _(e,t,r,n,s){var _;n();const a=e(56),c=e(57),o=e(58),i=e(24);class u extends a.Transform{constructor(e){super(e)}compute(e){return this.s_compute(e)}v_compute(e){const t=new i.ScreenArray(e.length),{s_compute:r}=this;for(let n=0;n({source_range:[e(c.Range)],target_range:[e(o.Range1d)]})))},\n", - " function _(n,s,o,r,c){r();const e=n(53);class t extends e.Model{constructor(n){super(n)}}o.Transform=t,t.__name__=\"Transform\"},\n", - " function _(e,t,n,i,s){var r;i();const a=e(53);class l extends a.Model{constructor(e){super(e),this.have_updated_interactively=!1}get is_reversed(){return this.start>this.end}get is_valid(){return isFinite(this.min)&&isFinite(this.max)}get span(){return Math.abs(this.end-this.start)}}n.Range=l,r=l,l.__name__=\"Range\",r.define((({Number:e,Tuple:t,Or:n,Auto:i,Nullable:s})=>({bounds:[s(n(t(s(e),s(e)),i)),null],min_interval:[s(e),null],max_interval:[s(e),null]}))),r.internal((({Array:e,AnyRef:t})=>({plots:[e(t()),[]]})))},\n", - " function _(t,e,s,n,r){var a;n();const i=t(57);class _ extends i.Range{constructor(t){super(t)}_set_auto_bounds(){if(\"auto\"==this.bounds){const t=Math.min(this._reset_start,this._reset_end),e=Math.max(this._reset_start,this._reset_end);this.setv({bounds:[t,e]},{silent:!0})}}initialize(){super.initialize(),this._set_auto_bounds()}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}reset(){this._set_auto_bounds();const{_reset_start:t,_reset_end:e}=this;this.start!=t||this.end!=e?this.setv({start:t,end:e}):this.change.emit()}map(t){return new _({start:t(this.start),end:t(this.end)})}widen(t){let{start:e,end:s}=this;return this.is_reversed?(e+=t,s-=t):(e-=t,s+=t),new _({start:e,end:s})}}s.Range1d=_,a=_,_.__name__=\"Range1d\",a.define((({Number:t,Nullable:e})=>({start:[t,0],end:[t,1],reset_start:[e(t),null,{on_update(t,e){e._reset_start=null!=t?t:e.start}}],reset_end:[e(t),null,{on_update(t,e){e._reset_end=null!=t?t:e.end}}]})))},\n", - " function _(t,e,n,r,s){r();const a=t(60);class _ extends a.ContinuousScale{constructor(t){super(t)}get s_compute(){const[t,e]=this._linear_compute_state();return n=>t*n+e}get s_invert(){const[t,e]=this._linear_compute_state();return n=>(n-e)/t}_linear_compute_state(){const t=this.source_range.start,e=this.source_range.end,n=this.target_range.start,r=(this.target_range.end-n)/(e-t);return[r,-r*t+n]}}n.LinearScale=_,_.__name__=\"LinearScale\"},\n", - " function _(n,c,o,s,e){s();const t=n(55);class u extends t.Scale{constructor(n){super(n)}}o.ContinuousScale=u,u.__name__=\"ContinuousScale\"},\n", - " function _(t,e,a,o,s){o();const r=t(60);class n extends r.ContinuousScale{constructor(t){super(t)}get s_compute(){const[t,e,a,o]=this._compute_state();return s=>{if(0==a)return 0;{const r=(Math.log(s)-o)/a;return isFinite(r)?r*t+e:NaN}}}get s_invert(){const[t,e,a,o]=this._compute_state();return s=>{const r=(s-e)/t;return Math.exp(a*r+o)}}_get_safe_factor(t,e){let a=t<0?0:t,o=e<0?0:e;if(a==o)if(0==a)[a,o]=[1,10];else{const t=Math.log(a)/Math.log(10);a=10**Math.floor(t),o=Math.ceil(t)!=Math.floor(t)?10**Math.ceil(t):10**(Math.ceil(t)+1)}return[a,o]}_compute_state(){const t=this.source_range.start,e=this.source_range.end,a=this.target_range.start,o=this.target_range.end-a,[s,r]=this._get_safe_factor(t,e);let n,c;0==s?(n=Math.log(r),c=0):(n=Math.log(r)-Math.log(s),c=Math.log(s));return[o,a,n,c]}}a.LogScale=n,n.__name__=\"LogScale\"},\n", - " function _(t,e,c,a,s){a();const n=t(55),r=t(59),{_linear_compute_state:o}=r.LinearScale.prototype;class l extends n.Scale{constructor(t){super(t)}get s_compute(){const[t,e]=o.call(this),c=this.source_range;return a=>t*c.synthetic(a)+e}get s_invert(){const[t,e]=o.call(this);return c=>(c-e)/t}}c.CategoricalScale=l,l.__name__=\"CategoricalScale\"},\n", - " function _(t,i,n,e,a){e();const s=t(1);var l;const _=t(64),o=t(20),r=t(9),h=t(19),d=(0,s.__importStar)(t(65)),u=t(66);class g extends _.DataRange{constructor(t){super(t),this.have_updated_interactively=!1}initialize(){super.initialize(),this._initial_start=this.start,this._initial_end=this.end,this._initial_range_padding=this.range_padding,this._initial_range_padding_units=this.range_padding_units,this._initial_follow=this.follow,this._initial_follow_interval=this.follow_interval,this._initial_default_span=this.default_span,this._plot_bounds=new Map}get min(){return Math.min(this.start,this.end)}get max(){return Math.max(this.start,this.end)}computed_renderers(){const{renderers:t,names:i}=this,n=(0,r.concat)(this.plots.map((t=>t.data_renderers)));return(0,u.compute_renderers)(0==t.length?\"auto\":t,n,i)}_compute_plot_bounds(t,i){let n=d.empty();for(const e of t){const t=i.get(e);null==t||!e.visible&&this.only_visible||(n=d.union(n,t))}return n}adjust_bounds_for_aspect(t,i){const n=d.empty();let e=t.x1-t.x0;e<=0&&(e=1);let a=t.y1-t.y0;a<=0&&(a=1);const s=.5*(t.x1+t.x0),l=.5*(t.y1+t.y0);return el&&(\"start\"==this.follow?a=e+s*l:\"end\"==this.follow&&(e=a-s*l)),[e,a]}update(t,i,n,e){if(this.have_updated_interactively)return;const a=this.computed_renderers();let s=this._compute_plot_bounds(a,t);null!=e&&(s=this.adjust_bounds_for_aspect(s,e)),this._plot_bounds.set(n,s);const[l,_]=this._compute_min_max(this._plot_bounds.entries(),i);let[o,r]=this._compute_range(l,_);null!=this._initial_start&&(\"log\"==this.scale_hint?this._initial_start>0&&(o=this._initial_start):o=this._initial_start),null!=this._initial_end&&(\"log\"==this.scale_hint?this._initial_end>0&&(r=this._initial_end):r=this._initial_end);let h=!1;\"auto\"==this.bounds&&(this.setv({bounds:[o,r]},{silent:!0}),h=!0);const[d,u]=[this.start,this.end];if(o!=d||r!=u){const t={};o!=d&&(t.start=o),r!=u&&(t.end=r),this.setv(t),h=!1}h&&this.change.emit()}reset(){this.have_updated_interactively=!1,this.setv({range_padding:this._initial_range_padding,range_padding_units:this._initial_range_padding_units,follow:this._initial_follow,follow_interval:this._initial_follow_interval,default_span:this._initial_default_span},{silent:!0}),this.change.emit()}}n.DataRange1d=g,l=g,g.__name__=\"DataRange1d\",l.define((({Boolean:t,Number:i,Nullable:n})=>({start:[i],end:[i],range_padding:[i,.1],range_padding_units:[o.PaddingUnits,\"percent\"],flipped:[t,!1],follow:[n(o.StartEnd),null],follow_interval:[n(i),null],default_span:[i,2],only_visible:[t,!1]}))),l.internal((({Enum:t})=>({scale_hint:[t(\"log\",\"auto\"),\"auto\"]})))},\n", - " function _(e,n,a,r,s){var t;r();const c=e(57);class _ extends c.Range{constructor(e){super(e)}}a.DataRange=_,t=_,_.__name__=\"DataRange\",t.define((({String:e,Array:n,AnyRef:a})=>({names:[n(e),[]],renderers:[n(a()),[]]})))},\n", - " function _(t,i,e,h,r){h();const s=t(24),n=t(26),{min:x,max:y}=Math;e.empty=function(){return{x0:1/0,y0:1/0,x1:-1/0,y1:-1/0}},e.positive_x=function(){return{x0:Number.MIN_VALUE,y0:-1/0,x1:1/0,y1:1/0}},e.positive_y=function(){return{x0:-1/0,y0:Number.MIN_VALUE,x1:1/0,y1:1/0}},e.union=function(t,i){return{x0:x(t.x0,i.x0),x1:y(t.x1,i.x1),y0:x(t.y0,i.y0),y1:y(t.y1,i.y1)}};class o{constructor(t){if(null==t)this.x0=0,this.y0=0,this.x1=0,this.y1=0;else if(\"x0\"in t){const{x0:i,y0:e,x1:h,y1:r}=t;if(!(i<=h&&e<=r))throw new Error(`invalid bbox {x0: ${i}, y0: ${e}, x1: ${h}, y1: ${r}}`);this.x0=i,this.y0=e,this.x1=h,this.y1=r}else if(\"x\"in t){const{x:i,y:e,width:h,height:r}=t;if(!(h>=0&&r>=0))throw new Error(`invalid bbox {x: ${i}, y: ${e}, width: ${h}, height: ${r}}`);this.x0=i,this.y0=e,this.x1=i+h,this.y1=e+r}else{let i,e,h,r;if(\"width\"in t)if(\"left\"in t)i=t.left,e=i+t.width;else if(\"right\"in t)e=t.right,i=e-t.width;else{const h=t.width/2;i=t.hcenter-h,e=t.hcenter+h}else i=t.left,e=t.right;if(\"height\"in t)if(\"top\"in t)h=t.top,r=h+t.height;else if(\"bottom\"in t)r=t.bottom,h=r-t.height;else{const i=t.height/2;h=t.vcenter-i,r=t.vcenter+i}else h=t.top,r=t.bottom;if(!(i<=e&&h<=r))throw new Error(`invalid bbox {left: ${i}, top: ${h}, right: ${e}, bottom: ${r}}`);this.x0=i,this.y0=h,this.x1=e,this.y1=r}}static from_rect({left:t,right:i,top:e,bottom:h}){return new o({x0:Math.min(t,i),y0:Math.min(e,h),x1:Math.max(t,i),y1:Math.max(e,h)})}equals(t){return this.x0==t.x0&&this.y0==t.y0&&this.x1==t.x1&&this.y1==t.y1}[n.equals](t,i){return i.eq(this.x0,t.x0)&&i.eq(this.y0,t.y0)&&i.eq(this.x1,t.x1)&&i.eq(this.y1,t.y1)}toString(){return`BBox({left: ${this.left}, top: ${this.top}, width: ${this.width}, height: ${this.height}})`}get left(){return this.x0}get top(){return this.y0}get right(){return this.x1}get bottom(){return this.y1}get p0(){return[this.x0,this.y0]}get p1(){return[this.x1,this.y1]}get x(){return this.x0}get y(){return this.y0}get width(){return this.x1-this.x0}get height(){return this.y1-this.y0}get size(){return{width:this.width,height:this.height}}get rect(){const{x0:t,y0:i,x1:e,y1:h}=this;return{p0:{x:t,y:i},p1:{x:e,y:i},p2:{x:e,y:h},p3:{x:t,y:h}}}get box(){const{x:t,y:i,width:e,height:h}=this;return{x:t,y:i,width:e,height:h}}get h_range(){return{start:this.x0,end:this.x1}}get v_range(){return{start:this.y0,end:this.y1}}get ranges(){return[this.h_range,this.v_range]}get aspect(){return this.width/this.height}get hcenter(){return(this.left+this.right)/2}get vcenter(){return(this.top+this.bottom)/2}get area(){return this.width*this.height}relative(){const{width:t,height:i}=this;return new o({x:0,y:0,width:t,height:i})}translate(t,i){const{x:e,y:h,width:r,height:s}=this;return new o({x:t+e,y:i+h,width:r,height:s})}relativize(t,i){return[t-this.x,i-this.y]}contains(t,i){return this.x0<=t&&t<=this.x1&&this.y0<=i&&i<=this.y1}clip(t,i){return tthis.x1&&(t=this.x1),ithis.y1&&(i=this.y1),[t,i]}grow_by(t){return new o({left:this.left-t,right:this.right+t,top:this.top-t,bottom:this.bottom+t})}shrink_by(t){return new o({left:this.left+t,right:this.right-t,top:this.top+t,bottom:this.bottom-t})}union(t){return new o({x0:x(this.x0,t.x0),y0:x(this.y0,t.y0),x1:y(this.x1,t.x1),y1:y(this.y1,t.y1)})}intersection(t){return this.intersects(t)?new o({x0:y(this.x0,t.x0),y0:y(this.y0,t.y0),x1:x(this.x1,t.x1),y1:x(this.y1,t.y1)}):null}intersects(t){return!(t.x1this.x1||t.y1this.y1)}get xview(){return{compute:t=>this.left+t,v_compute:t=>{const i=new s.ScreenArray(t.length),e=this.left;for(let h=0;hthis.bottom-t,v_compute:t=>{const i=new s.ScreenArray(t.length),e=this.bottom;for(let h=0;h0&&(r=r.filter((n=>(0,l.includes)(t,n.name)))),r}},\n", - " function _(t,n,e,i,s){var r;i();const a=t(57),o=t(20),g=t(21),p=t(24),c=t(9),l=t(8),u=t(11);function h(t,n,e=0){const i=new Map;for(let s=0;sa.get(t).value)));r.set(t,{value:l/s,mapping:a}),o+=s+n+p}return[r,(a.size-1)*n+g]}function _(t,n,e,i,s=0){var r;const a=new Map,o=new Map;for(const[n,e,i]of t){const t=null!==(r=o.get(n))&&void 0!==r?r:[];o.set(n,[...t,[e,i]])}let g=s,p=0;for(const[t,s]of o){const r=s.length,[o,l]=d(s,e,i,g);p+=l;const u=(0,c.sum)(s.map((([t])=>o.get(t).value)));a.set(t,{value:u/r,mapping:o}),g+=r+n+l}return[a,(o.size-1)*n+p]}e.Factor=(0,g.Or)(g.String,(0,g.Tuple)(g.String,g.String),(0,g.Tuple)(g.String,g.String,g.String)),e.FactorSeq=(0,g.Or)((0,g.Array)(g.String),(0,g.Array)((0,g.Tuple)(g.String,g.String)),(0,g.Array)((0,g.Tuple)(g.String,g.String,g.String))),e.map_one_level=h,e.map_two_levels=d,e.map_three_levels=_;class f extends a.Range{constructor(t){super(t)}get min(){return this.start}get max(){return this.end}initialize(){super.initialize(),this._init(!0)}connect_signals(){super.connect_signals(),this.connect(this.properties.factors.change,(()=>this.reset())),this.connect(this.properties.factor_padding.change,(()=>this.reset())),this.connect(this.properties.group_padding.change,(()=>this.reset())),this.connect(this.properties.subgroup_padding.change,(()=>this.reset())),this.connect(this.properties.range_padding.change,(()=>this.reset())),this.connect(this.properties.range_padding_units.change,(()=>this.reset()))}reset(){this._init(!1),this.change.emit()}_lookup(t){switch(t.length){case 1:{const[n]=t,e=this._mapping.get(n);return null!=e?e.value:NaN}case 2:{const[n,e]=t,i=this._mapping.get(n);if(null!=i){const t=i.mapping.get(e);if(null!=t)return t.value}return NaN}case 3:{const[n,e,i]=t,s=this._mapping.get(n);if(null!=s){const t=s.mapping.get(e);if(null!=t){const n=t.mapping.get(i);if(null!=n)return n.value}}return NaN}default:(0,u.unreachable)()}}synthetic(t){if((0,l.isNumber)(t))return t;if((0,l.isString)(t))return this._lookup([t]);let n=0;const e=t[t.length-1];return(0,l.isNumber)(e)&&(n=e,t=t.slice(0,-1)),this._lookup(t)+n}v_synthetic(t){const n=t.length,e=new p.ScreenArray(n);for(let i=0;i{if((0,c.every)(this.factors,l.isString)){const t=this.factors,[n,e]=h(t,this.factor_padding);return{levels:1,mapping:n,tops:null,mids:null,inside_padding:e}}if((0,c.every)(this.factors,(t=>(0,l.isArray)(t)&&2==t.length&&(0,l.isString)(t[0])&&(0,l.isString)(t[1])))){const t=this.factors,[n,e]=d(t,this.group_padding,this.factor_padding),i=[...n.keys()];return{levels:2,mapping:n,tops:i,mids:null,inside_padding:e}}if((0,c.every)(this.factors,(t=>(0,l.isArray)(t)&&3==t.length&&(0,l.isString)(t[0])&&(0,l.isString)(t[1])&&(0,l.isString)(t[2])))){const t=this.factors,[n,e]=_(t,this.group_padding,this.subgroup_padding,this.factor_padding),i=[...n.keys()],s=[];for(const[t,e]of n)for(const n of e.mapping.keys())s.push([t,n]);return{levels:3,mapping:n,tops:i,mids:s,inside_padding:e}}(0,u.unreachable)()})();this._mapping=e,this.tops=i,this.mids=s;let a=0,o=this.factors.length+r;if(\"percent\"==this.range_padding_units){const t=(o-a)*this.range_padding/2;a-=t,o+=t}else a-=this.range_padding,o+=this.range_padding;this.setv({start:a,end:o,levels:n},{silent:t}),\"auto\"==this.bounds&&this.setv({bounds:[a,o]},{silent:!0})}}e.FactorRange=f,r=f,f.__name__=\"FactorRange\",r.define((({Number:t})=>({factors:[e.FactorSeq,[]],factor_padding:[t,0],subgroup_padding:[t,.8],group_padding:[t,1.4],range_padding:[t,0],range_padding_units:[o.PaddingUnits,\"percent\"],start:[t],end:[t]}))),r.internal((({Number:t,String:n,Array:e,Tuple:i,Nullable:s})=>({levels:[t],mids:[s(e(i(n,n))),null],tops:[s(e(n)),null]})))},\n", - " function _(t,e,s,a,i){a();const n=t(1);var _;const r=t(69),o=t(112),l=t(48),d=t(20),h=t(24),c=t(113),u=(0,n.__importStar)(t(18)),v=t(10);class p extends r.DataAnnotationView{async lazy_initialize(){await super.lazy_initialize();const{start:t,end:e}=this.model;null!=t&&(this.start=await(0,c.build_view)(t,{parent:this})),null!=e&&(this.end=await(0,c.build_view)(e,{parent:this}))}set_data(t){var e,s;super.set_data(t),null===(e=this.start)||void 0===e||e.set_data(t),null===(s=this.end)||void 0===s||s.set_data(t)}remove(){var t,e;null===(t=this.start)||void 0===t||t.remove(),null===(e=this.end)||void 0===e||e.remove(),super.remove()}map_data(){const{frame:t}=this.plot_view;\"data\"==this.model.start_units?(this._sx_start=this.coordinates.x_scale.v_compute(this._x_start),this._sy_start=this.coordinates.y_scale.v_compute(this._y_start)):(this._sx_start=t.bbox.xview.v_compute(this._x_start),this._sy_start=t.bbox.yview.v_compute(this._y_start)),\"data\"==this.model.end_units?(this._sx_end=this.coordinates.x_scale.v_compute(this._x_end),this._sy_end=this.coordinates.y_scale.v_compute(this._y_end)):(this._sx_end=t.bbox.xview.v_compute(this._x_end),this._sy_end=t.bbox.yview.v_compute(this._y_end));const{_sx_start:e,_sy_start:s,_sx_end:a,_sy_end:i}=this,n=e.length,_=this._angles=new h.ScreenArray(n);for(let t=0;t({x_start:[u.XCoordinateSpec,{field:\"x_start\"}],y_start:[u.YCoordinateSpec,{field:\"y_start\"}],start_units:[d.SpatialUnits,\"data\"],start:[e(t(o.ArrowHead)),null],x_end:[u.XCoordinateSpec,{field:\"x_end\"}],y_end:[u.YCoordinateSpec,{field:\"y_end\"}],end_units:[d.SpatialUnits,\"data\"],end:[e(t(o.ArrowHead)),()=>new o.OpenHead]})))},\n", - " function _(t,e,n,s,a){s();const o=t(1);var i;const c=t(40),r=t(70),_=t(75),l=t(78),h=(0,o.__importStar)(t(18));class d extends c.AnnotationView{constructor(){super(...arguments),this._initial_set_data=!1}connect_signals(){super.connect_signals();const t=()=>{this.set_data(this.model.source),this._rerender()};this.connect(this.model.change,t),this.connect(this.model.source.streaming,t),this.connect(this.model.source.patching,t),this.connect(this.model.source.change,t)}_rerender(){this.request_render()}set_data(t){const e=this;for(const n of this.model)if(n instanceof h.VectorSpec||n instanceof h.ScalarSpec)if(n instanceof h.BaseCoordinateSpec){const s=n.array(t);e[`_${n.attr}`]=s}else{const s=n.uniform(t);e[`${n.attr}`]=s}this.plot_model.use_map&&(null!=e._x&&l.inplace.project_xy(e._x,e._y),null!=e._xs&&l.inplace.project_xsys(e._xs,e._ys));for(const t of this.visuals)t.update()}_render(){this._initial_set_data||(this.set_data(this.model.source),this._initial_set_data=!0),this.map_data(),this.paint(this.layer.ctx)}}n.DataAnnotationView=d,d.__name__=\"DataAnnotationView\";class u extends c.Annotation{constructor(t){super(t)}}n.DataAnnotation=u,i=u,u.__name__=\"DataAnnotation\",i.define((({Ref:t})=>({source:[t(r.ColumnarDataSource),()=>new _.ColumnDataSource]})))},\n", - " function _(t,e,n,s,a){var i;s();const r=t(71),l=t(15),c=t(19),o=t(73),h=t(8),u=t(9),g=t(13),d=t(72),_=t(74),m=t(29);class w extends r.DataSource{constructor(t){super(t),this.selection_manager=new o.SelectionManager(this)}get_array(t){let e=this.data[t];return null==e?this.data[t]=e=[]:(0,h.isArray)(e)||(this.data[t]=e=Array.from(e)),e}initialize(){super.initialize(),this._select=new l.Signal0(this,\"select\"),this.inspect=new l.Signal(this,\"inspect\"),this.streaming=new l.Signal0(this,\"streaming\"),this.patching=new l.Signal(this,\"patching\")}get_column(t){const e=this.data[t];return null!=e?e:null}columns(){return(0,g.keys)(this.data)}get_length(t=!0){const e=(0,u.uniq)((0,g.values)(this.data).map((t=>(0,m.is_NDArray)(t)?t.shape[0]:t.length)));switch(e.length){case 0:return null;case 1:return e[0];default:{const n=\"data source has columns of inconsistent lengths\";if(t)return c.logger.warn(n),e.sort()[0];throw new Error(n)}}}get length(){var t;return null!==(t=this.get_length())&&void 0!==t?t:0}clear(){const t={};for(const e of this.columns())t[e]=new this.data[e].constructor(0);this.data=t}}n.ColumnarDataSource=w,i=w,w.__name__=\"ColumnarDataSource\",i.define((({Ref:t})=>({selection_policy:[t(_.SelectionPolicy),()=>new _.UnionRenderers]}))),i.internal((({AnyRef:t})=>({inspected:[t(),()=>new d.Selection]})))},\n", - " function _(e,c,n,t,o){var a;t();const s=e(53),r=e(72);class l extends s.Model{constructor(e){super(e)}}n.DataSource=l,a=l,l.__name__=\"DataSource\",a.define((({Ref:e})=>({selected:[e(r.Selection),()=>new r.Selection]})))},\n", - " function _(i,e,s,t,n){var l;t();const c=i(53),d=i(9),h=i(13);class _ extends c.Model{constructor(i){super(i)}get_view(){return this.view}get selected_glyph(){return this.selected_glyphs.length>0?this.selected_glyphs[0]:null}add_to_selected_glyphs(i){this.selected_glyphs.push(i)}update(i,e=!0,s=\"replace\"){switch(s){case\"replace\":this.indices=i.indices,this.line_indices=i.line_indices,this.multiline_indices=i.multiline_indices,this.image_indices=i.image_indices,this.view=i.view,this.selected_glyphs=i.selected_glyphs;break;case\"append\":this.update_through_union(i);break;case\"intersect\":this.update_through_intersection(i);break;case\"subtract\":this.update_through_subtraction(i)}}clear(){this.indices=[],this.line_indices=[],this.multiline_indices={},this.image_indices=[],this.view=null,this.selected_glyphs=[]}map(i){return new _(Object.assign(Object.assign({},this.attributes),{indices:this.indices.map(i),multiline_indices:(0,h.to_object)((0,h.entries)(this.multiline_indices).map((([e,s])=>[i(Number(e)),s]))),image_indices:this.image_indices.map((e=>Object.assign(Object.assign({},e),{index:i(e.index)})))}))}is_empty(){return 0==this.indices.length&&0==this.line_indices.length&&0==this.image_indices.length}update_through_union(i){this.indices=(0,d.union)(this.indices,i.indices),this.selected_glyphs=(0,d.union)(i.selected_glyphs,this.selected_glyphs),this.line_indices=(0,d.union)(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=(0,h.merge)(i.multiline_indices,this.multiline_indices)}update_through_intersection(i){this.indices=(0,d.intersection)(this.indices,i.indices),this.selected_glyphs=(0,d.union)(i.selected_glyphs,this.selected_glyphs),this.line_indices=(0,d.union)(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=(0,h.merge)(i.multiline_indices,this.multiline_indices)}update_through_subtraction(i){this.indices=(0,d.difference)(this.indices,i.indices),this.selected_glyphs=(0,d.union)(i.selected_glyphs,this.selected_glyphs),this.line_indices=(0,d.union)(i.line_indices,this.line_indices),this.view=i.view,this.multiline_indices=(0,h.merge)(i.multiline_indices,this.multiline_indices)}}s.Selection=_,l=_,_.__name__=\"Selection\",l.define((({Int:i,Array:e,Dict:s})=>({indices:[e(i),[]],line_indices:[e(i),[]],multiline_indices:[s(e(i)),{}]}))),l.internal((({Int:i,Array:e,AnyRef:s,Struct:t,Nullable:n})=>({selected_glyphs:[e(s()),[]],view:[n(s()),null],image_indices:[e(t({index:i,dim1:i,dim2:i,flat_index:i})),[]]})))},\n", - " function _(e,t,o,s,c){s();const n=e(72);function i(e){return\"GlyphRenderer\"==e.model.type}function l(e){return\"GraphRenderer\"==e.model.type}class r{constructor(e){this.source=e,this.inspectors=new Map}select(e,t,o,s=\"replace\"){const c=[],n=[];for(const t of e)i(t)?c.push(t):l(t)&&n.push(t);let r=!1;for(const e of n){const c=e.model.selection_policy.hit_test(t,e);r=r||e.model.selection_policy.do_selection(c,e.model,o,s)}if(c.length>0){const e=this.source.selection_policy.hit_test(t,c);r=r||this.source.selection_policy.do_selection(e,this.source,o,s)}return r}inspect(e,t){let o=!1;if(i(e)){const s=e.hit_test(t);if(null!=s){o=!s.is_empty();const c=this.get_or_create_inspector(e.model);c.update(s,!0,\"replace\"),this.source.setv({inspected:c},{silent:!0}),this.source.inspect.emit([e.model,{geometry:t}])}}else if(l(e)){const s=e.model.inspection_policy.hit_test(t,e);o=o||e.model.inspection_policy.do_inspection(s,t,e,!1,\"replace\")}return o}clear(e){this.source.selected.clear(),null!=e&&this.get_or_create_inspector(e.model).clear()}get_or_create_inspector(e){let t=this.inspectors.get(e);return null==t&&(t=new n.Selection,this.inspectors.set(e,t)),t}}o.SelectionManager=r,r.__name__=\"SelectionManager\"},\n", - " function _(e,t,n,s,o){s();const r=e(53);class c extends r.Model{do_selection(e,t,n,s){return null!=e&&(t.selected.update(e,n,s),t._select.emit(),!t.selected.is_empty())}}n.SelectionPolicy=c,c.__name__=\"SelectionPolicy\";class l extends c{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!=t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_intersection(t);return e}return null}}n.IntersectRenderers=l,l.__name__=\"IntersectRenderers\";class _ extends c{hit_test(e,t){const n=[];for(const s of t){const t=s.hit_test(e);null!=t&&n.push(t)}if(n.length>0){const e=n[0];for(const t of n)e.update_through_union(t);return e}return null}}n.UnionRenderers=_,_.__name__=\"UnionRenderers\"},\n", - " function _(t,n,e,s,o){s();const r=t(1);var l;const c=t(70),i=t(8),a=t(13),u=(0,r.__importStar)(t(76)),h=t(77),d=t(35);function f(t,n,e){if((0,i.isArray)(t)){const s=t.concat(n);return null!=e&&s.length>e?s.slice(-e):s}if((0,i.isTypedArray)(t)){const s=t.length+n.length;if(null!=e&&s>e){const o=s-e,r=t.length;let l;t.length({data:[t(n),{}]})))},\n", - " function _(t,n,o,e,c){e(),o.concat=function(t,...n){let o=t.length;for(const t of n)o+=t.length;const e=new t.constructor(o);e.set(t,0);let c=t.length;for(const t of n)e.set(t,c),c+=t.length;return e}},\n", - " function _(n,o,t,e,f){function c(...n){const o=new Set;for(const t of n)for(const n of t)o.add(n);return o}e(),t.union=c,t.intersection=function(n,...o){const t=new Set;n:for(const e of n){for(const n of o)if(!n.has(e))continue n;t.add(e)}return t},t.difference=function(n,...o){const t=new Set(n);for(const n of c(...o))t.delete(n);return t}},\n", - " function _(n,t,e,o,r){o();const c=n(1),l=(0,c.__importDefault)(n(79)),i=(0,c.__importDefault)(n(80)),u=n(24),a=new i.default(\"GOOGLE\"),s=new i.default(\"WGS84\"),f=(0,l.default)(s,a);e.wgs84_mercator={compute:(n,t)=>isFinite(n)&&isFinite(t)?f.forward([n,t]):[NaN,NaN],invert:(n,t)=>isFinite(n)&&isFinite(t)?f.inverse([n,t]):[NaN,NaN]};const _={lon:[-20026376.39,20026376.39],lat:[-20048966.1,20048966.1]},p={lon:[-180,180],lat:[-85.06,85.06]},{min:g,max:h}=Math;function m(n,t){const o=g(n.length,t.length),r=(0,u.infer_type)(n,t),c=new r(o),l=new r(o);return e.inplace.project_xy(n,t,c,l),[c,l]}e.clip_mercator=function(n,t,e){const[o,r]=_[e];return[h(n,o),g(t,r)]},e.in_bounds=function(n,t){const[e,o]=p[t];return e2?void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name?\"number\"==typeof o.z?[o.x,o.y,o.z].concat(t.splice(3)):[o.x,o.y,t[2]].concat(t.splice(3)):[o.x,o.y].concat(t.splice(2)):[o.x,o.y]):(a=(0,c.default)(e,n,t,r),2===(i=Object.keys(t)).length||i.forEach((function(r){if(void 0!==e.name&&\"geocent\"===e.name||void 0!==n.name&&\"geocent\"===n.name){if(\"x\"===r||\"y\"===r||\"z\"===r)return}else if(\"x\"===r||\"y\"===r)return;a[r]=t[r]})),a)}function l(e){return e instanceof i.default?e:e.oProj?e.oProj:(0,i.default)(e)}t.default=function(e,n,t){e=l(e);var r,o=!1;return void 0===n?(n=e,e=u,o=!0):(void 0!==n.x||Array.isArray(n))&&(t=n,n=e,e=u,o=!0),n=l(n),t?f(e,n,t):(r={forward:function(t,r){return f(e,n,t,r)},inverse:function(t,r){return f(n,e,t,r)}},o&&(r.oProj=n),r)}},\n", - " function _(t,e,a,s,i){s();const l=t(1),u=(0,l.__importDefault)(t(81)),r=(0,l.__importDefault)(t(92)),d=(0,l.__importDefault)(t(93)),o=t(101),f=(0,l.__importDefault)(t(103)),p=(0,l.__importDefault)(t(104)),m=(0,l.__importDefault)(t(88)),n=t(105);function h(t,e){if(!(this instanceof h))return new h(t);e=e||function(t){if(t)throw t};var a=(0,u.default)(t);if(\"object\"==typeof a){var s=h.projections.get(a.projName);if(s){if(a.datumCode&&\"none\"!==a.datumCode){var i=(0,m.default)(f.default,a.datumCode);i&&(a.datum_params=a.datum_params||(i.towgs84?i.towgs84.split(\",\"):null),a.ellps=i.ellipse,a.datumName=i.datumName?i.datumName:a.datumCode)}a.k0=a.k0||1,a.axis=a.axis||\"enu\",a.ellps=a.ellps||\"wgs84\",a.lat1=a.lat1||a.lat0;var l=(0,o.sphere)(a.a,a.b,a.rf,a.ellps,a.sphere),d=(0,o.eccentricity)(l.a,l.b,l.rf,a.R_A),_=(0,n.getNadgrids)(a.nadgrids),c=a.datum||(0,p.default)(a.datumCode,a.datum_params,l.a,l.b,d.es,d.ep2,_);(0,r.default)(this,a),(0,r.default)(this,s),this.a=l.a,this.b=l.b,this.rf=l.rf,this.sphere=l.sphere,this.es=d.es,this.e=d.e,this.ep2=d.ep2,this.datum=c,this.init(),e(null,this)}else e(t)}else e(t)}h.projections=d.default,h.projections.start(),a.default=h},\n", - " function _(t,r,n,u,e){u();const f=t(1),i=(0,f.__importDefault)(t(82)),a=(0,f.__importDefault)(t(89)),o=(0,f.__importDefault)(t(84)),l=(0,f.__importDefault)(t(88));var C=[\"PROJECTEDCRS\",\"PROJCRS\",\"GEOGCS\",\"GEOCCS\",\"PROJCS\",\"LOCAL_CS\",\"GEODCRS\",\"GEODETICCRS\",\"GEODETICDATUM\",\"ENGCRS\",\"ENGINEERINGCRS\"];var d=[\"3857\",\"900913\",\"3785\",\"102113\"];n.default=function(t){if(!function(t){return\"string\"==typeof t}(t))return t;if(function(t){return t in i.default}(t))return i.default[t];if(function(t){return C.some((function(r){return t.indexOf(r)>-1}))}(t)){var r=(0,a.default)(t);if(function(t){var r=(0,l.default)(t,\"authority\");if(r){var n=(0,l.default)(r,\"epsg\");return n&&d.indexOf(n)>-1}}(r))return i.default[\"EPSG:3857\"];var n=function(t){var r=(0,l.default)(t,\"extension\");if(r)return(0,l.default)(r,\"proj4\")}(r);return n?(0,o.default)(n):r}return function(t){return\"+\"===t[0]}(t)?(0,o.default)(t):void 0}},\n", - " function _(t,r,i,e,n){e();const f=t(1),a=(0,f.__importDefault)(t(83)),l=(0,f.__importDefault)(t(84)),u=(0,f.__importDefault)(t(89));function o(t){var r=this;if(2===arguments.length){var i=arguments[1];\"string\"==typeof i?\"+\"===i.charAt(0)?o[t]=(0,l.default)(arguments[1]):o[t]=(0,u.default)(arguments[1]):o[t]=i}else if(1===arguments.length){if(Array.isArray(t))return t.map((function(t){Array.isArray(t)?o.apply(r,t):o(t)}));if(\"string\"==typeof t){if(t in o)return o[t]}else\"EPSG\"in t?o[\"EPSG:\"+t.EPSG]=t:\"ESRI\"in t?o[\"ESRI:\"+t.ESRI]=t:\"IAU2000\"in t?o[\"IAU2000:\"+t.IAU2000]=t:console.log(t);return}}(0,a.default)(o),i.default=o},\n", - " function _(t,l,G,S,e){S(),G.default=function(t){t(\"EPSG:4326\",\"+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees\"),t(\"EPSG:4269\",\"+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees\"),t(\"EPSG:3857\",\"+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs\"),t.WGS84=t[\"EPSG:4326\"],t[\"EPSG:3785\"]=t[\"EPSG:3857\"],t.GOOGLE=t[\"EPSG:3857\"],t[\"EPSG:900913\"]=t[\"EPSG:3857\"],t[\"EPSG:102113\"]=t[\"EPSG:3857\"]}},\n", - " function _(t,n,o,a,u){a();const e=t(1),r=t(85),i=(0,e.__importDefault)(t(86)),f=(0,e.__importDefault)(t(87)),l=(0,e.__importDefault)(t(88));o.default=function(t){var n,o,a,u={},e=t.split(\"+\").map((function(t){return t.trim()})).filter((function(t){return t})).reduce((function(t,n){var o=n.split(\"=\");return o.push(!0),t[o[0].toLowerCase()]=o[1],t}),{}),c={proj:\"projName\",datum:\"datumCode\",rf:function(t){u.rf=parseFloat(t)},lat_0:function(t){u.lat0=t*r.D2R},lat_1:function(t){u.lat1=t*r.D2R},lat_2:function(t){u.lat2=t*r.D2R},lat_ts:function(t){u.lat_ts=t*r.D2R},lon_0:function(t){u.long0=t*r.D2R},lon_1:function(t){u.long1=t*r.D2R},lon_2:function(t){u.long2=t*r.D2R},alpha:function(t){u.alpha=parseFloat(t)*r.D2R},gamma:function(t){u.rectified_grid_angle=parseFloat(t)},lonc:function(t){u.longc=t*r.D2R},x_0:function(t){u.x0=parseFloat(t)},y_0:function(t){u.y0=parseFloat(t)},k_0:function(t){u.k0=parseFloat(t)},k:function(t){u.k0=parseFloat(t)},a:function(t){u.a=parseFloat(t)},b:function(t){u.b=parseFloat(t)},r_a:function(){u.R_A=!0},zone:function(t){u.zone=parseInt(t,10)},south:function(){u.utmSouth=!0},towgs84:function(t){u.datum_params=t.split(\",\").map((function(t){return parseFloat(t)}))},to_meter:function(t){u.to_meter=parseFloat(t)},units:function(t){u.units=t;var n=(0,l.default)(f.default,t);n&&(u.to_meter=n.to_meter)},from_greenwich:function(t){u.from_greenwich=t*r.D2R},pm:function(t){var n=(0,l.default)(i.default,t);u.from_greenwich=(n||parseFloat(t))*r.D2R},nadgrids:function(t){\"@null\"===t?u.datumCode=\"none\":u.nadgrids=t},axis:function(t){var n=\"ewnsud\";3===t.length&&-1!==n.indexOf(t.substr(0,1))&&-1!==n.indexOf(t.substr(1,1))&&-1!==n.indexOf(t.substr(2,1))&&(u.axis=t)},approx:function(){u.approx=!0}};for(n in e)o=e[n],n in c?\"function\"==typeof(a=c[n])?a(o):u[a]=o:u[n]=o;return\"string\"==typeof u.datumCode&&\"WGS84\"!==u.datumCode&&(u.datumCode=u.datumCode.toLowerCase()),u}},\n", - " function _(S,_,P,R,I){R(),P.PJD_3PARAM=1,P.PJD_7PARAM=2,P.PJD_GRIDSHIFT=3,P.PJD_WGS84=4,P.PJD_NODATUM=5,P.SRS_WGS84_SEMIMAJOR=6378137,P.SRS_WGS84_SEMIMINOR=6356752.314,P.SRS_WGS84_ESQUARED=.0066943799901413165,P.SEC_TO_RAD=484813681109536e-20,P.HALF_PI=Math.PI/2,P.SIXTH=.16666666666666666,P.RA4=.04722222222222222,P.RA6=.022156084656084655,P.EPSLN=1e-10,P.D2R=.017453292519943295,P.R2D=57.29577951308232,P.FORTPI=Math.PI/4,P.TWO_PI=2*Math.PI,P.SPI=3.14159265359},\n", - " function _(o,r,a,e,s){e();var n={};a.default=n,n.greenwich=0,n.lisbon=-9.131906111111,n.paris=2.337229166667,n.bogota=-74.080916666667,n.madrid=-3.687938888889,n.rome=12.452333333333,n.bern=7.439583333333,n.jakarta=106.807719444444,n.ferro=-17.666666666667,n.brussels=4.367975,n.stockholm=18.058277777778,n.athens=23.7163375,n.oslo=10.722916666667},\n", - " function _(t,e,f,o,u){o(),f.default={ft:{to_meter:.3048},\"us-ft\":{to_meter:1200/3937}}},\n", - " function _(e,r,t,a,n){a();var o=/[\\s_\\-\\/\\(\\)]/g;t.default=function(e,r){if(e[r])return e[r];for(var t,a=Object.keys(e),n=r.toLowerCase().replace(o,\"\"),f=-1;++f0?90:-90),e.lat_ts=e.lat1)}(n),n}},\n", - " function _(t,e,r,i,s){i(),r.default=function(t){return new d(t).output()};var h=/\\s/,o=/[A-Za-z]/,n=/[A-Za-z84]/,a=/[,\\]]/,u=/[\\d\\.E\\-\\+]/;function d(t){if(\"string\"!=typeof t)throw new Error(\"not a string\");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=1}d.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;h.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case 1:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},d.prototype.afterquote=function(t){if('\"'===t)return this.word+='\"',void(this.state=4);if(a.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in afterquote yet, index '+this.place)},d.prototype.afterItem=function(t){return\",\"===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=1)):\"]\"===t?(this.level--,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=1,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},d.prototype.number=function(t){if(!u.test(t)){if(a.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error(\"havn't handled \\\"\"+t+'\" in number yet, index '+this.place)}this.word+=t},d.prototype.quoted=function(t){'\"'!==t?this.word+=t:this.state=5},d.prototype.keyword=function(t){if(n.test(t))this.word+=t;else{if(\"[\"===t){var e=[];return e.push(this.word),this.level++,null===this.root?this.root=e:this.currentObject.push(e),this.stack.push(this.currentObject),this.currentObject=e,void(this.state=1)}if(!a.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in keyword yet, index '+this.place);this.afterItem(t)}},d.prototype.neutral=function(t){if(o.test(t))return this.word=t,void(this.state=2);if('\"'===t)return this.word=\"\",void(this.state=4);if(u.test(t))return this.word=t,void(this.state=3);if(!a.test(t))throw new Error(\"havn't handled \\\"\"+t+'\" in neutral yet, index '+this.place);this.afterItem(t)},d.prototype.output=function(){for(;this.place90&&a*o.R2D<-90&&h*o.R2D>180&&h*o.R2D<-180)return null;if(Math.abs(Math.abs(a)-o.HALF_PI)<=o.EPSLN)return null;if(this.sphere)i=this.x0+this.a*this.k0*(0,n.default)(h-this.long0),s=this.y0+this.a*this.k0*Math.log(Math.tan(o.FORTPI+.5*a));else{var e=Math.sin(a),r=(0,l.default)(this.e,a,e);i=this.x0+this.a*this.k0*(0,n.default)(h-this.long0),s=this.y0-this.a*this.k0*Math.log(r)}return t.x=i,t.y=s,t}function M(t){var i,s,h=t.x-this.x0,a=t.y-this.y0;if(this.sphere)s=o.HALF_PI-2*Math.atan(Math.exp(-a/(this.a*this.k0)));else{var e=Math.exp(-a/(this.a*this.k0));if(-9999===(s=(0,u.default)(this.e,e)))return null}return i=(0,n.default)(this.long0+h/(this.a*this.k0)),t.x=i,t.y=s,t}s.init=f,s.forward=_,s.inverse=M,s.names=[\"Mercator\",\"Popular Visualisation Pseudo Mercator\",\"Mercator_1SP\",\"Mercator_Auxiliary_Sphere\",\"merc\"],s.default={init:f,forward:_,inverse:M,names:s.names}},\n", - " function _(t,n,r,u,a){u(),r.default=function(t,n,r){var u=t*n;return r/Math.sqrt(1-u*u)}},\n", - " function _(t,n,u,a,f){a();const e=t(1),o=t(85),_=(0,e.__importDefault)(t(97));u.default=function(t){return Math.abs(t)<=o.SPI?t:t-(0,_.default)(t)*o.TWO_PI}},\n", - " function _(n,t,u,f,c){f(),u.default=function(n){return n<0?-1:1}},\n", - " function _(t,n,a,o,u){o();const c=t(85);a.default=function(t,n,a){var o=t*a,u=.5*t;return o=Math.pow((1-o)/(1+o),u),Math.tan(.5*(c.HALF_PI-n))/o}},\n", - " function _(t,a,n,r,f){r();const h=t(85);n.default=function(t,a){for(var n,r,f=.5*t,o=h.HALF_PI-2*Math.atan(a),u=0;u<=15;u++)if(n=t*Math.sin(o),o+=r=h.HALF_PI-2*Math.atan(a*Math.pow((1-n)/(1+n),f))-o,Math.abs(r)<=1e-10)return o;return-9999}},\n", - " function _(n,i,e,t,r){function a(){}function f(n){return n}t(),e.init=a,e.forward=f,e.inverse=f,e.names=[\"longlat\",\"identity\"],e.default={init:a,forward:f,inverse:f,names:e.names}},\n", - " function _(t,r,e,a,n){a();const f=t(1),i=t(85),u=(0,f.__importStar)(t(102)),c=(0,f.__importDefault)(t(88));e.eccentricity=function(t,r,e,a){var n=t*t,f=r*r,u=(n-f)/n,c=0;return a?(n=(t*=1-u*(i.SIXTH+u*(i.RA4+u*i.RA6)))*t,u=0):c=Math.sqrt(u),{es:u,e:c,ep2:(n-f)/f}},e.sphere=function(t,r,e,a,n){if(!t){var f=(0,c.default)(u.default,a);f||(f=u.WGS84),t=f.a,r=f.b,e=f.rf}return e&&!r&&(r=(1-1/e)*t),(0===e||Math.abs(t-r)3&&(0===s.datum_params[3]&&0===s.datum_params[4]&&0===s.datum_params[5]&&0===s.datum_params[6]||(s.datum_type=d.PJD_7PARAM,s.datum_params[3]*=d.SEC_TO_RAD,s.datum_params[4]*=d.SEC_TO_RAD,s.datum_params[5]*=d.SEC_TO_RAD,s.datum_params[6]=s.datum_params[6]/1e6+1))),r&&(s.datum_type=d.PJD_GRIDSHIFT,s.grids=r),s.a=_,s.b=t,s.es=u,s.ep2=p,s}},\n", - " function _(t,e,n,r,i){r();var u={};function l(t){if(0===t.length)return null;var e=\"@\"===t[0];return e&&(t=t.slice(1)),\"null\"===t?{name:\"null\",mandatory:!e,grid:null,isNull:!0}:{name:t,mandatory:!e,grid:u[t]||null,isNull:!1}}function o(t){return t/3600*Math.PI/180}function a(t,e,n){return String.fromCharCode.apply(null,new Uint8Array(t.buffer.slice(e,n)))}function d(t){return t.map((function(t){return[o(t.longitudeShift),o(t.latitudeShift)]}))}function g(t,e,n){return{name:a(t,e+8,e+16).trim(),parent:a(t,e+24,e+24+8).trim(),lowerLatitude:t.getFloat64(e+72,n),upperLatitude:t.getFloat64(e+88,n),lowerLongitude:t.getFloat64(e+104,n),upperLongitude:t.getFloat64(e+120,n),latitudeInterval:t.getFloat64(e+136,n),longitudeInterval:t.getFloat64(e+152,n),gridNodeCount:t.getInt32(e+168,n)}}function s(t,e,n,r){for(var i=e+176,u=[],l=0;l1&&console.log(\"Only single NTv2 subgrids are currently supported, subsequent sub grids are ignored\");var l=function(t,e,n){for(var r=176,i=[],u=0;ua.y||f>a.x||N1e-12&&Math.abs(n.y)>1e-12);if(d<0)return console.log(\"Inverse grid shift iterator failed to converge.\"),a;a.x=(0,u.default)(l.x+t.ll[0]),a.y=l.y+t.ll[1]}else isNaN(l.x)||(a.x=r.x+l.x,a.y=r.y+l.y);return a}function f(r,e){var t,a={x:r.x/e.del[0],y:r.y/e.del[1]},i=Math.floor(a.x),l=Math.floor(a.y),n=a.x-1*i,o=a.y-1*l,u={x:Number.NaN,y:Number.NaN};if(i<0||i>=e.lim[0])return u;if(l<0||l>=e.lim[1])return u;t=l*e.lim[0]+i;var d=e.cvs[t][0],s=e.cvs[t][1];t++;var y=e.cvs[t][0],f=e.cvs[t][1];t+=e.lim[0];var x=e.cvs[t][0],m=e.cvs[t][1];t--;var N=e.cvs[t][0],c=e.cvs[t][1],_=n*o,g=n*(1-o),v=(1-n)*(1-o),S=(1-n)*o;return u.x=v*d+g*y+S*N+_*x,u.y=v*s+g*f+S*c+_*m,u}t.default=function(r,e,t){if((0,o.compareDatums)(r,e))return t;if(r.datum_type===n.PJD_NODATUM||e.datum_type===n.PJD_NODATUM)return t;var a=r.a,i=r.es;if(r.datum_type===n.PJD_GRIDSHIFT){if(0!==s(r,!1,t))return;a=n.SRS_WGS84_SEMIMAJOR,i=n.SRS_WGS84_ESQUARED}var l=e.a,u=e.b,y=e.es;if(e.datum_type===n.PJD_GRIDSHIFT&&(l=n.SRS_WGS84_SEMIMAJOR,u=n.SRS_WGS84_SEMIMINOR,y=n.SRS_WGS84_ESQUARED),i===y&&a===l&&!d(r.datum_type)&&!d(e.datum_type))return t;if(t=(0,o.geodeticToGeocentric)(t,i,a),d(r.datum_type)&&(t=(0,o.geocentricToWgs84)(t,r.datum_type,r.datum_params)),d(e.datum_type)&&(t=(0,o.geocentricFromWgs84)(t,e.datum_type,e.datum_params)),t=(0,o.geocentricToGeodetic)(t,y,l,u),e.datum_type===n.PJD_GRIDSHIFT&&0!==s(e,!0,t))return;return t},t.applyGridShift=s},\n", - " function _(a,t,r,m,s){m();const u=a(85);r.compareDatums=function(a,t){return a.datum_type===t.datum_type&&(!(a.a!==t.a||Math.abs(a.es-t.es)>5e-11)&&(a.datum_type===u.PJD_3PARAM?a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]:a.datum_type!==u.PJD_7PARAM||a.datum_params[0]===t.datum_params[0]&&a.datum_params[1]===t.datum_params[1]&&a.datum_params[2]===t.datum_params[2]&&a.datum_params[3]===t.datum_params[3]&&a.datum_params[4]===t.datum_params[4]&&a.datum_params[5]===t.datum_params[5]&&a.datum_params[6]===t.datum_params[6]))},r.geodeticToGeocentric=function(a,t,r){var m,s,_,e,n=a.x,d=a.y,i=a.z?a.z:0;if(d<-u.HALF_PI&&d>-1.001*u.HALF_PI)d=-u.HALF_PI;else if(d>u.HALF_PI&&d<1.001*u.HALF_PI)d=u.HALF_PI;else{if(d<-u.HALF_PI)return{x:-1/0,y:-1/0,z:a.z};if(d>u.HALF_PI)return{x:1/0,y:1/0,z:a.z}}return n>Math.PI&&(n-=2*Math.PI),s=Math.sin(d),e=Math.cos(d),_=s*s,{x:((m=r/Math.sqrt(1-t*_))+i)*e*Math.cos(n),y:(m+i)*e*Math.sin(n),z:(m*(1-t)+i)*s}},r.geocentricToGeodetic=function(a,t,r,m){var s,_,e,n,d,i,p,P,y,z,M,o,A,c,x,h=1e-12,f=a.x,I=a.y,F=a.z?a.z:0;if(s=Math.sqrt(f*f+I*I),_=Math.sqrt(f*f+I*I+F*F),s/r1e-24&&A<30);return{x:c,y:Math.atan(M/Math.abs(z)),z:x}},r.geocentricToWgs84=function(a,t,r){if(t===u.PJD_3PARAM)return{x:a.x+r[0],y:a.y+r[1],z:a.z+r[2]};if(t===u.PJD_7PARAM){var m=r[0],s=r[1],_=r[2],e=r[3],n=r[4],d=r[5],i=r[6];return{x:i*(a.x-d*a.y+n*a.z)+m,y:i*(d*a.x+a.y-e*a.z)+s,z:i*(-n*a.x+e*a.y+a.z)+_}}},r.geocentricFromWgs84=function(a,t,r){if(t===u.PJD_3PARAM)return{x:a.x-r[0],y:a.y-r[1],z:a.z-r[2]};if(t===u.PJD_7PARAM){var m=r[0],s=r[1],_=r[2],e=r[3],n=r[4],d=r[5],i=r[6],p=(a.x-m)/i,P=(a.y-s)/i,y=(a.z-_)/i;return{x:p+d*P-n*y,y:-d*p+P+e*y,z:n*p-e*P+y}}}},\n", - " function _(e,a,i,r,s){r(),i.default=function(e,a,i){var r,s,n,c=i.x,d=i.y,f=i.z||0,u={};for(n=0;n<3;n++)if(!a||2!==n||void 0!==i.z)switch(0===n?(r=c,s=-1!==\"ew\".indexOf(e.axis[n])?\"x\":\"y\"):1===n?(r=d,s=-1!==\"ns\".indexOf(e.axis[n])?\"y\":\"x\"):(r=f,s=\"z\"),e.axis[n]){case\"e\":u[s]=r;break;case\"w\":u[s]=-r;break;case\"n\":u[s]=r;break;case\"s\":u[s]=-r;break;case\"u\":void 0!==i[s]&&(u.z=r);break;case\"d\":void 0!==i[s]&&(u.z=-r);break;default:return null}return u}},\n", - " function _(n,t,e,u,f){u(),e.default=function(n){var t={x:n[0],y:n[1]};return n.length>2&&(t.z=n[2]),n.length>3&&(t.m=n[3]),t}},\n", - " function _(e,i,n,t,r){function o(e){if(\"function\"==typeof Number.isFinite){if(Number.isFinite(e))return;throw new TypeError(\"coordinates must be finite numbers\")}if(\"number\"!=typeof e||e!=e||!isFinite(e))throw new TypeError(\"coordinates must be finite numbers\")}t(),n.default=function(e){o(e.x),o(e.y)}},\n", - " function _(e,i,s,t,o){t();const n=e(1);var l,a,r,_,c;const d=e(53),v=e(42),u=(0,n.__importStar)(e(45)),h=e(48),m=(0,n.__importStar)(e(18));class T extends v.View{initialize(){super.initialize(),this.visuals=new u.Visuals(this)}request_render(){this.parent.request_render()}get canvas(){return this.parent.canvas}set_data(e){const i=this;for(const s of this.model){if(!(s instanceof m.VectorSpec||s instanceof m.ScalarSpec))continue;const t=s.uniform(e);i[`${s.attr}`]=t}}}s.ArrowHeadView=T,T.__name__=\"ArrowHeadView\";class p extends d.Model{constructor(e){super(e)}}s.ArrowHead=p,l=p,p.__name__=\"ArrowHead\",l.define((()=>({size:[m.NumberSpec,25]})));class V extends T{clip(e,i){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.moveTo(.5*s,s),e.lineTo(.5*s,-2),e.lineTo(-.5*s,-2),e.lineTo(-.5*s,s),e.lineTo(0,0),e.lineTo(.5*s,s)}render(e,i){if(this.visuals.line.doit){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,s),e.lineTo(0,0),e.lineTo(-.5*s,s),e.stroke()}}}s.OpenHeadView=V,V.__name__=\"OpenHeadView\";class f extends p{constructor(e){super(e)}}s.OpenHead=f,a=f,f.__name__=\"OpenHead\",a.prototype.default_view=V,a.mixins(h.LineVector);class w extends T{clip(e,i){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.moveTo(.5*s,s),e.lineTo(.5*s,-2),e.lineTo(-.5*s,-2),e.lineTo(-.5*s,s),e.lineTo(.5*s,s)}render(e,i){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,i),this._normal(e,i),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,i),this._normal(e,i),e.stroke())}_normal(e,i){const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,s),e.lineTo(0,0),e.lineTo(-.5*s,s),e.closePath()}}s.NormalHeadView=w,w.__name__=\"NormalHeadView\";class H extends p{constructor(e){super(e)}}s.NormalHead=H,r=H,H.__name__=\"NormalHead\",r.prototype.default_view=w,r.mixins([h.LineVector,h.FillVector]),r.override({fill_color:\"black\"});class z extends T{clip(e,i){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.moveTo(.5*s,s),e.lineTo(.5*s,-2),e.lineTo(-.5*s,-2),e.lineTo(-.5*s,s),e.lineTo(0,.5*s),e.lineTo(.5*s,s)}render(e,i){this.visuals.fill.doit&&(this.visuals.fill.set_vectorize(e,i),this._vee(e,i),e.fill()),this.visuals.line.doit&&(this.visuals.line.set_vectorize(e,i),this._vee(e,i),e.stroke())}_vee(e,i){const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,s),e.lineTo(0,0),e.lineTo(-.5*s,s),e.lineTo(0,.5*s),e.closePath()}}s.VeeHeadView=z,z.__name__=\"VeeHeadView\";class x extends p{constructor(e){super(e)}}s.VeeHead=x,_=x,x.__name__=\"VeeHead\",_.prototype.default_view=z,_.mixins([h.LineVector,h.FillVector]),_.override({fill_color:\"black\"});class g extends T{render(e,i){if(this.visuals.line.doit){this.visuals.line.set_vectorize(e,i);const s=this.size.get(i);e.beginPath(),e.moveTo(.5*s,0),e.lineTo(-.5*s,0),e.stroke()}}clip(e,i){}}s.TeeHeadView=g,g.__name__=\"TeeHeadView\";class b extends p{constructor(e){super(e)}}s.TeeHead=b,c=b,b.__name__=\"TeeHead\",c.prototype.default_view=g,c.mixins(h.LineVector)},\n", - " function _(n,e,t,i,o){i();const s=n(9);async function c(n,e,t){const i=new n(Object.assign(Object.assign({},t),{model:e}));return i.initialize(),await i.lazy_initialize(),i}t.build_view=async function(n,e={parent:null},t=(n=>n.default_view)){const i=await c(t(n),n,e);return i.connect_signals(),i},t.build_views=async function(n,e,t={parent:null},i=(n=>n.default_view)){const o=(0,s.difference)([...n.keys()],e);for(const e of o)n.get(e).remove(),n.delete(e);const a=[],f=e.filter((e=>!n.has(e)));for(const e of f){const o=await c(i(e),e,t);n.set(e,o),a.push(o)}for(const n of a)n.connect_signals();return a},t.remove_views=function(n){for(const[e,t]of n)t.remove(),n.delete(e)}},\n", - " function _(e,s,_,i,l){i();const t=e(1);var o;const r=e(115),p=(0,t.__importStar)(e(48));class h extends r.UpperLowerView{paint(e){e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,_=this._lower_sx.length;s<_;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);for(let s=this._upper_sx.length-1;s>=0;s--)e.lineTo(this._upper_sx[s],this._upper_sy[s]);e.closePath(),this.visuals.fill.apply(e),e.beginPath(),e.moveTo(this._lower_sx[0],this._lower_sy[0]);for(let s=0,_=this._lower_sx.length;s<_;s++)e.lineTo(this._lower_sx[s],this._lower_sy[s]);this.visuals.line.apply(e),e.beginPath(),e.moveTo(this._upper_sx[0],this._upper_sy[0]);for(let s=0,_=this._upper_sx.length;s<_;s++)e.lineTo(this._upper_sx[s],this._upper_sy[s]);this.visuals.line.apply(e)}}_.BandView=h,h.__name__=\"BandView\";class n extends r.UpperLower{constructor(e){super(e)}}_.Band=n,o=n,n.__name__=\"Band\",o.prototype.default_view=h,o.mixins([p.Line,p.Fill]),o.override({fill_color:\"#fff9ba\",fill_alpha:.4,line_color:\"#cccccc\",line_alpha:.3})},\n", - " function _(e,t,i,s,o){s();const r=e(1);var n;const p=e(69),a=e(20),_=(0,r.__importStar)(e(18));class h extends p.DataAnnotationView{map_data(){const{frame:e}=this.plot_view,t=this.model.dimension,i=this.coordinates.x_scale,s=this.coordinates.y_scale,o=\"height\"==t?s:i,r=\"height\"==t?i:s,n=\"height\"==t?e.bbox.yview:e.bbox.xview,p=\"height\"==t?e.bbox.xview:e.bbox.yview;let a,_,h;a=\"data\"==this.model.properties.lower.units?o.v_compute(this._lower):n.v_compute(this._lower),_=\"data\"==this.model.properties.upper.units?o.v_compute(this._upper):n.v_compute(this._upper),h=\"data\"==this.model.properties.base.units?r.v_compute(this._base):p.v_compute(this._base);const[d,c]=\"height\"==t?[1,0]:[0,1],u=[a,h],l=[_,h];this._lower_sx=u[d],this._lower_sy=u[c],this._upper_sx=l[d],this._upper_sy=l[c]}}i.UpperLowerView=h,h.__name__=\"UpperLowerView\";class d extends _.CoordinateSpec{get dimension(){return\"width\"==this.obj.dimension?\"x\":\"y\"}get units(){var e;return null!==(e=this.spec.units)&&void 0!==e?e:\"data\"}}i.XOrYCoordinateSpec=d,d.__name__=\"XOrYCoordinateSpec\";class c extends p.DataAnnotation{constructor(e){super(e)}}i.UpperLower=c,n=c,c.__name__=\"UpperLower\",n.define((()=>({dimension:[a.Dimension,\"height\"],lower:[d,{field:\"lower\"}],upper:[d,{field:\"upper\"}],base:[d,{field:\"base\"}]})))},\n", - " function _(t,o,i,n,e){n();const s=t(1);var l;const r=t(40),a=(0,s.__importStar)(t(48)),c=t(20),h=t(65);i.EDGE_TOLERANCE=2.5;class b extends r.AnnotationView{constructor(){super(...arguments),this.bbox=new h.BBox}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_render(){const{left:t,right:o,top:i,bottom:n}=this.model;if(null==t&&null==o&&null==i&&null==n)return;const{frame:e}=this.plot_view,s=this.coordinates.x_scale,l=this.coordinates.y_scale,r=(t,o,i,n,e)=>{let s;return s=null!=t?this.model.screen?t:\"data\"==o?i.compute(t):n.compute(t):e,s};this.bbox=h.BBox.from_rect({left:r(t,this.model.left_units,s,e.bbox.xview,e.bbox.left),right:r(o,this.model.right_units,s,e.bbox.xview,e.bbox.right),top:r(i,this.model.top_units,l,e.bbox.yview,e.bbox.top),bottom:r(n,this.model.bottom_units,l,e.bbox.yview,e.bbox.bottom)}),this._paint_box()}_paint_box(){const{ctx:t}=this.layer;t.save();const{left:o,top:i,width:n,height:e}=this.bbox;t.beginPath(),t.rect(o,i,n,e),this.visuals.fill.apply(t),this.visuals.hatch.apply(t),this.visuals.line.apply(t),t.restore()}interactive_bbox(){const t=this.model.line_width+i.EDGE_TOLERANCE;return this.bbox.grow_by(t)}interactive_hit(t,o){if(null==this.model.in_cursor)return!1;return this.interactive_bbox().contains(t,o)}cursor(t,o){const{left:i,right:n,bottom:e,top:s}=this.bbox;return Math.abs(t-i)<3||Math.abs(t-n)<3?this.model.ew_cursor:Math.abs(o-e)<3||Math.abs(o-s)<3?this.model.ns_cursor:this.bbox.contains(t,o)?this.model.in_cursor:null}}i.BoxAnnotationView=b,b.__name__=\"BoxAnnotationView\";class u extends r.Annotation{constructor(t){super(t)}update({left:t,right:o,top:i,bottom:n}){this.setv({left:t,right:o,top:i,bottom:n,screen:!0})}}i.BoxAnnotation=u,l=u,u.__name__=\"BoxAnnotation\",l.prototype.default_view=b,l.mixins([a.Line,a.Fill,a.Hatch]),l.define((({Number:t,Nullable:o})=>({top:[o(t),null],top_units:[c.SpatialUnits,\"data\"],bottom:[o(t),null],bottom_units:[c.SpatialUnits,\"data\"],left:[o(t),null],left_units:[c.SpatialUnits,\"data\"],right:[o(t),null],right_units:[c.SpatialUnits,\"data\"],render_mode:[c.RenderMode,\"canvas\"]}))),l.internal((({Boolean:t,String:o,Nullable:i})=>({screen:[t,!1],ew_cursor:[i(o),null],ns_cursor:[i(o),null],in_cursor:[i(o),null]}))),l.override({fill_color:\"#fff9ba\",fill_alpha:.4,line_color:\"#cccccc\",line_alpha:.3})},\n", - " function _(t,e,i,o,n){o();const a=t(1);var r;const s=t(40),l=t(118),_=t(126),c=t(127),h=t(130),u=t(168),p=t(131),m=t(192),g=t(132),d=t(173),f=t(172),w=t(196),b=t(204),v=t(206),x=t(133),y=t(20),k=(0,a.__importStar)(t(48)),z=t(9),j=t(207),C=t(208),L=t(211),B=t(123),S=t(11),M=t(113),T=t(65),A=t(8);class O extends s.AnnotationView{get orientation(){return this._orientation}initialize(){super.initialize();const{ticker:t,formatter:e,color_mapper:i}=this.model;this._ticker=\"auto\"!=t?t:(()=>{switch(!0){case i instanceof w.LogColorMapper:return new u.LogTicker;case i instanceof w.ScanningColorMapper:return new u.BinnedTicker({mapper:i});case i instanceof w.CategoricalColorMapper:return new u.CategoricalTicker;default:return new u.BasicTicker}})(),this._formatter=\"auto\"!=e?e:(()=>{switch(!0){case this._ticker instanceof u.LogTicker:return new m.LogTickFormatter;case i instanceof w.CategoricalColorMapper:return new m.CategoricalTickFormatter;default:return new m.BasicTickFormatter}})(),this._major_range=(()=>{if(i instanceof w.CategoricalColorMapper){const{factors:t}=i;return new v.FactorRange({factors:t})}if(i instanceof f.ContinuousColorMapper){const{min:t,max:e}=i.metrics;return new v.Range1d({start:t,end:e})}(0,S.unreachable)()})(),this._major_scale=(()=>{if(i instanceof w.LinearColorMapper)return new b.LinearScale;if(i instanceof w.LogColorMapper)return new b.LogScale;if(i instanceof w.ScanningColorMapper){const{binning:t}=i.metrics;return new b.LinearInterpolationScale({binning:t})}if(i instanceof w.CategoricalColorMapper)return new b.CategoricalScale;(0,S.unreachable)()})(),this._minor_range=new v.Range1d({start:0,end:1}),this._minor_scale=new b.LinearScale;const o=k.attrs_of(this.model,\"major_label_\",k.Text,!0),n=k.attrs_of(this.model,\"major_tick_\",k.Line,!0),a=k.attrs_of(this.model,\"minor_tick_\",k.Line,!0),r=k.attrs_of(this.model,\"title_\",k.Text),s=i instanceof w.CategoricalColorMapper?c.CategoricalAxis:i instanceof w.LogColorMapper?c.LogAxis:c.LinearAxis;this._axis=new s(Object.assign(Object.assign(Object.assign({ticker:this._ticker,formatter:this._formatter,major_tick_in:this.model.major_tick_in,major_tick_out:this.model.major_tick_out,minor_tick_in:this.model.minor_tick_in,minor_tick_out:this.model.minor_tick_out,major_label_standoff:this.model.label_standoff,major_label_overrides:this.model.major_label_overrides,major_label_policy:this.model.major_label_policy,axis_line_color:null},o),n),a));const{title:_}=this.model;_&&(this._title=new l.Title(Object.assign({text:_,standoff:this.model.title_standoff},r)))}async lazy_initialize(){await super.lazy_initialize();const t=this,e={get parent(){return t.parent},get root(){return t.root},get frame(){return t._frame},get canvas_view(){return t.parent.canvas_view},request_layout(){t.parent.request_layout()}};this._axis_view=await(0,M.build_view)(this._axis,{parent:e}),null!=this._title&&(this._title_view=await(0,M.build_view)(this._title,{parent:e}))}remove(){var t;null===(t=this._title_view)||void 0===t||t.remove(),this._axis_view.remove(),super.remove()}connect_signals(){super.connect_signals(),this.connect(this._ticker.change,(()=>this.request_render())),this.connect(this._formatter.change,(()=>this.request_render())),this.connect(this.model.color_mapper.metrics_change,(()=>{const t=this._major_range,e=this._major_scale,{color_mapper:i}=this.model;if(i instanceof f.ContinuousColorMapper&&t instanceof v.Range1d){const{min:e,max:o}=i.metrics;t.setv({start:e,end:o})}if(i instanceof w.ScanningColorMapper&&e instanceof b.LinearInterpolationScale){const{binning:t}=i.metrics;e.binning=t}this._set_canvas_image(),this.plot_view.request_layout()}))}_set_canvas_image(){const{orientation:t}=this,e=(()=>{const{palette:e}=this.model.color_mapper;return\"vertical\"==t?(0,z.reversed)(e):e})(),[i,o]=\"vertical\"==t?[1,e.length]:[e.length,1],n=this._image=document.createElement(\"canvas\");n.width=i,n.height=o;const a=n.getContext(\"2d\"),r=a.getImageData(0,0,i,o),s=new w.LinearColorMapper({palette:e}).rgba_mapper.v_compute((0,z.range)(0,e.length));r.data.set(s),a.putImageData(r,0,0)}update_layout(){const{location:t,width:e,height:i,padding:o,margin:n}=this.model,[a,r]=(()=>{if(!(0,A.isString)(t))return[\"end\",\"start\"];switch(t){case\"top_left\":return[\"start\",\"start\"];case\"top\":case\"top_center\":return[\"start\",\"center\"];case\"top_right\":return[\"start\",\"end\"];case\"bottom_left\":return[\"end\",\"start\"];case\"bottom\":case\"bottom_center\":return[\"end\",\"center\"];case\"bottom_right\":return[\"end\",\"end\"];case\"left\":case\"center_left\":return[\"center\",\"start\"];case\"center\":case\"center_center\":return[\"center\",\"center\"];case\"right\":case\"center_right\":return[\"center\",\"end\"]}})(),s=this._orientation=(()=>{const{orientation:t}=this.model;return\"auto\"==t?null!=this.panel?this.panel.is_horizontal?\"horizontal\":\"vertical\":\"start\"==r||\"end\"==r||\"center\"==r&&\"center\"==a?\"vertical\":\"horizontal\":t})(),l=new C.NodeLayout,c=new C.VStack,h=new C.VStack,u=new C.HStack,p=new C.HStack;l.absolute=!0,c.absolute=!0,h.absolute=!0,u.absolute=!0,p.absolute=!0;const[m,g,d,f]=(()=>\"horizontal\"==s?[this._major_scale,this._minor_scale,this._major_range,this._minor_range]:[this._minor_scale,this._major_scale,this._minor_range,this._major_range])();this._frame=new _.CartesianFrame(m,g,d,f),l.on_resize((t=>this._frame.set_geometry(t)));const w=new L.BorderLayout;this._inner_layout=w,w.absolute=!0,w.center_panel=l,w.top_panel=c,w.bottom_panel=h,w.left_panel=u,w.right_panel=p;const b={left:o,right:o,top:o,bottom:o},v=(()=>{if(null==this.panel){if((0,A.isString)(t))return{left:n,right:n,top:n,bottom:n};{const[e,i]=t;return{left:e,right:n,top:n,bottom:i}}}if(!(0,A.isString)(t)){const[e,i]=t;return w.fixup_geometry=(t,o)=>{const n=t,a=this.layout.bbox,{width:r,height:s}=t;if(t=new T.BBox({left:a.left+e,bottom:a.bottom-i,width:r,height:s}),null!=o){const e=t.left-n.left,i=t.top-n.top,{left:a,top:r,width:s,height:l}=o;o=new T.BBox({left:a+e,top:r+i,width:s,height:l})}return[t,o]},{left:e,right:0,top:0,bottom:i}}w.fixup_geometry=(t,e)=>{const i=t;if(\"horizontal\"==s){const{top:e,width:i,height:o}=t;if(\"end\"==r){const{right:n}=this.layout.bbox;t=new T.BBox({right:n,top:e,width:i,height:o})}else if(\"center\"==r){const{hcenter:n}=this.layout.bbox;t=new T.BBox({hcenter:Math.round(n),top:e,width:i,height:o})}}else{const{left:e,width:i,height:o}=t;if(\"end\"==a){const{bottom:n}=this.layout.bbox;t=new T.BBox({left:e,bottom:n,width:i,height:o})}else if(\"center\"==a){const{vcenter:n}=this.layout.bbox;t=new T.BBox({left:e,vcenter:Math.round(n),width:i,height:o})}}if(null!=e){const o=t.left-i.left,n=t.top-i.top,{left:a,top:r,width:s,height:l}=e;e=new T.BBox({left:a+o,top:r+n,width:s,height:l})}return[t,e]}})();let x,y,k,z;if(w.padding=b,null!=this.panel?(x=\"max\",y=void 0,k=void 0,z=void 0):\"auto\"==(\"horizontal\"==s?e:i)?(x=\"fixed\",y=25*this.model.color_mapper.palette.length,k={percent:.3},z={percent:.8}):(x=\"fit\",y=void 0),\"horizontal\"==s){const t=\"auto\"==e?void 0:e,o=\"auto\"==i?25:i;w.set_sizing({width_policy:x,height_policy:\"min\",width:y,min_width:k,max_width:z,halign:r,valign:a,margin:v}),w.center_panel.set_sizing({width_policy:\"auto\"==e?\"fit\":\"fixed\",height_policy:\"fixed\",width:t,height:o})}else{const t=\"auto\"==e?25:e,o=\"auto\"==i?void 0:i;w.set_sizing({width_policy:\"min\",height_policy:x,height:y,min_height:k,max_height:z,halign:r,valign:a,margin:v}),w.center_panel.set_sizing({width_policy:\"fixed\",height_policy:\"auto\"==i?\"fit\":\"fixed\",width:t,height:o})}c.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),h.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),u.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),p.set_sizing({width_policy:\"min\",height_policy:\"fit\"});const{_title_view:S}=this;null!=S&&(\"horizontal\"==s?(S.panel=new B.Panel(\"above\"),S.update_layout(),c.children.push(S.layout)):(S.panel=new B.Panel(\"left\"),S.update_layout(),u.children.push(S.layout)));const{panel:M}=this,O=null!=M&&s==M.orientation?M.side:\"horizontal\"==s?\"below\":\"right\",R=(()=>{switch(O){case\"above\":return c;case\"below\":return h;case\"left\":return u;case\"right\":return p}})(),{_axis_view:F}=this;if(F.panel=new B.Panel(O),F.update_layout(),R.children.push(F.layout),null!=this.panel){const t=new j.Grid([{layout:w,row:0,col:0}]);t.absolute=!0,\"horizontal\"==s?t.set_sizing({width_policy:\"max\",height_policy:\"min\"}):t.set_sizing({width_policy:\"min\",height_policy:\"max\"}),this.layout=t}else this.layout=this._inner_layout;const{visible:I}=this.model;this.layout.sizing.visible=I,this._set_canvas_image()}_render(){var t;const{ctx:e}=this.layer;e.save(),this._paint_bbox(e,this._inner_layout.bbox),this._paint_image(e,this._inner_layout.center_panel.bbox),null===(t=this._title_view)||void 0===t||t.render(),this._axis_view.render(),e.restore()}_paint_bbox(t,e){const{x:i,y:o}=e;let{width:n,height:a}=e;i+n>=this.parent.canvas_view.bbox.width&&(n-=1),o+a>=this.parent.canvas_view.bbox.height&&(a-=1),t.save(),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(t),t.fillRect(i,o,n,a)),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(t),t.strokeRect(i,o,n,a)),t.restore()}_paint_image(t,e){const{x:i,y:o,width:n,height:a}=e;t.save(),t.setImageSmoothingEnabled(!1),t.globalAlpha=this.model.scale_alpha,t.drawImage(this._image,i,o,n,a),this.visuals.bar_line.doit&&(this.visuals.bar_line.set_value(t),t.strokeRect(i,o,n,a)),t.restore()}serializable_state(){const t=super.serializable_state(),{children:e=[]}=t,i=(0,a.__rest)(t,[\"children\"]);return null!=this._title_view&&e.push(this._title_view.serializable_state()),e.push(this._axis_view.serializable_state()),Object.assign(Object.assign({},i),{children:e})}}i.ColorBarView=O,O.__name__=\"ColorBarView\";class R extends s.Annotation{constructor(t){super(t)}}i.ColorBar=R,r=R,R.__name__=\"ColorBar\",r.prototype.default_view=O,r.mixins([[\"major_label_\",k.Text],[\"title_\",k.Text],[\"major_tick_\",k.Line],[\"minor_tick_\",k.Line],[\"border_\",k.Line],[\"bar_\",k.Line],[\"background_\",k.Fill]]),r.define((({Alpha:t,Number:e,String:i,Tuple:o,Dict:n,Or:a,Ref:r,Auto:s,Nullable:l})=>({location:[a(y.Anchor,o(e,e)),\"top_right\"],orientation:[a(y.Orientation,s),\"auto\"],title:[l(i),null],title_standoff:[e,2],width:[a(e,s),\"auto\"],height:[a(e,s),\"auto\"],scale_alpha:[t,1],ticker:[a(r(h.Ticker),s),\"auto\"],formatter:[a(r(p.TickFormatter),s),\"auto\"],major_label_overrides:[n(a(i,r(x.BaseText))),{}],major_label_policy:[r(g.LabelingPolicy),()=>new g.NoOverlap],color_mapper:[r(d.ColorMapper)],label_standoff:[e,5],margin:[e,30],padding:[e,10],major_tick_in:[e,5],major_tick_out:[e,0],minor_tick_in:[e,0],minor_tick_out:[e,0]}))),r.override({background_fill_color:\"#ffffff\",background_fill_alpha:.95,bar_line_color:null,border_line_color:null,major_label_text_font_size:\"11px\",major_tick_line_color:\"#ffffff\",minor_tick_line_color:null,title_text_font_size:\"13px\",title_text_font_style:\"italic\"})},\n", - " function _(t,e,i,s,l){s();const o=t(1);var a;const n=t(119),r=t(20),c=t(120),h=(0,o.__importStar)(t(48));class _ extends n.TextAnnotationView{_get_location(){const t=this.model.offset,e=this.model.standoff/2;let i,s;const{bbox:l}=this.layout;switch(this.panel.side){case\"above\":case\"below\":switch(this.model.vertical_align){case\"top\":s=l.top+e;break;case\"middle\":s=l.vcenter;break;case\"bottom\":s=l.bottom-e}switch(this.model.align){case\"left\":i=l.left+t;break;case\"center\":i=l.hcenter;break;case\"right\":i=l.right-t}break;case\"left\":switch(this.model.vertical_align){case\"top\":i=l.left+e;break;case\"middle\":i=l.hcenter;break;case\"bottom\":i=l.right-e}switch(this.model.align){case\"left\":s=l.bottom-t;break;case\"center\":s=l.vcenter;break;case\"right\":s=l.top+t}break;case\"right\":switch(this.model.vertical_align){case\"top\":i=l.right-e;break;case\"middle\":i=l.hcenter;break;case\"bottom\":i=l.left+e}switch(this.model.align){case\"left\":s=l.top+t;break;case\"center\":s=l.vcenter;break;case\"right\":s=l.bottom-t}}return[i,s]}_render(){const{text:t}=this.model;if(null==t||0==t.length)return;this.model.text_baseline=this.model.vertical_align,this.model.text_align=this.model.align;const[e,i]=this._get_location(),s=this.panel.get_label_angle_heuristic(\"parallel\");(\"canvas\"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,t,e,i,s)}_get_size(){const{text:t}=this.model,e=new c.TextBox({text:t});e.visuals=this.visuals.text.values();const{width:i,height:s}=e.size();return{width:i,height:0==s?0:2+s+this.model.standoff}}}i.TitleView=_,_.__name__=\"TitleView\";class d extends n.TextAnnotation{constructor(t){super(t)}}i.Title=d,a=d,d.__name__=\"Title\",a.prototype.default_view=_,a.mixins([h.Text,[\"border_\",h.Line],[\"background_\",h.Fill]]),a.define((({Number:t,String:e})=>({text:[e,\"\"],vertical_align:[r.VerticalAlign,\"bottom\"],align:[r.TextAlign,\"left\"],offset:[t,0],standoff:[t,10]}))),a.prototype._props.text_align.options.internal=!0,a.prototype._props.text_baseline.options.internal=!0,a.override({text_font_size:\"13px\",text_font_style:\"bold\",text_line_height:1,background_fill_color:null,border_line_color:null})},\n", - " function _(e,t,s,i,l){var n;i();const o=e(40),a=e(43),r=e(20),d=e(120),u=e(123),c=e(11);class h extends o.AnnotationView{update_layout(){const{panel:e}=this;this.layout=null!=e?new u.SideLayout(e,(()=>this.get_size()),!0):void 0}initialize(){super.initialize(),\"css\"==this.model.render_mode&&(this.el=(0,a.div)(),this.plot_view.canvas_view.add_overlay(this.el))}remove(){null!=this.el&&(0,a.remove)(this.el),super.remove()}connect_signals(){super.connect_signals(),\"css\"==this.model.render_mode?this.connect(this.model.change,(()=>this.render())):this.connect(this.model.change,(()=>this.request_render()))}render(){this.model.visible||\"css\"!=this.model.render_mode||(0,a.undisplay)(this.el),super.render()}_canvas_text(e,t,s,i,l){const n=new d.TextBox({text:t});n.angle=l,n.position={sx:s,sy:i},n.visuals=this.visuals.text.values();const{background_fill:o,border_line:a}=this.visuals;if(o.doit||a.doit){const{p0:t,p1:s,p2:i,p3:l}=n.rect();e.beginPath(),e.moveTo(t.x,t.y),e.lineTo(s.x,s.y),e.lineTo(i.x,i.y),e.lineTo(l.x,l.y),e.closePath(),this.visuals.background_fill.apply(e),this.visuals.border_line.apply(e)}this.visuals.text.doit&&n.paint(e)}_css_text(e,t,s,i,l){const{el:n}=this;(0,c.assert)(null!=n),(0,a.undisplay)(n),n.textContent=t,this.visuals.text.set_value(e),n.style.position=\"absolute\",n.style.left=`${s}px`,n.style.top=`${i}px`,n.style.color=e.fillStyle,n.style.font=e.font,n.style.lineHeight=\"normal\",n.style.whiteSpace=\"pre\";const[o,r]=(()=>{switch(this.visuals.text.text_align.get_value()){case\"left\":return[\"left\",\"0%\"];case\"center\":return[\"center\",\"-50%\"];case\"right\":return[\"right\",\"-100%\"]}})(),[d,u]=(()=>{switch(this.visuals.text.text_baseline.get_value()){case\"top\":return[\"top\",\"0%\"];case\"middle\":return[\"center\",\"-50%\"];case\"bottom\":return[\"bottom\",\"-100%\"];default:return[\"center\",\"-50%\"]}})();let h=`translate(${r}, ${u})`;l&&(h+=`rotate(${l}rad)`),n.style.transformOrigin=`${o} ${d}`,n.style.transform=h,this.layout,this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),n.style.backgroundColor=e.fillStyle),this.visuals.border_line.doit&&(this.visuals.border_line.set_value(e),n.style.borderStyle=e.lineDash.length<2?\"solid\":\"dashed\",n.style.borderWidth=`${e.lineWidth}px`,n.style.borderColor=e.strokeStyle),(0,a.display)(n)}}s.TextAnnotationView=h,h.__name__=\"TextAnnotationView\";class _ extends o.Annotation{constructor(e){super(e)}}s.TextAnnotation=_,n=_,_.__name__=\"TextAnnotation\",n.define((()=>({render_mode:[r.RenderMode,\"canvas\"]})))},\n", - " function _(t,e,s,i,n){i();const h=t(65),o=t(121),r=t(9),a=t(8),c=t(122),_=t(22);s.text_width=(()=>{const t=document.createElement(\"canvas\").getContext(\"2d\");let e=\"\";return(s,i)=>(i!=e&&(e=i,t.font=i),t.measureText(s).width)})();class l{constructor(){this._position={sx:0,sy:0},this.font_size_scale=1,this.align=\"left\",this._base_font_size=13,this._x_anchor=\"left\",this._y_anchor=\"center\"}set base_font_size(t){null!=t&&(this._base_font_size=t)}get base_font_size(){return this._base_font_size}set position(t){this._position=t}get position(){return this._position}infer_text_height(){return\"ascent_descent\"}bbox(){const{p0:t,p1:e,p2:s,p3:i}=this.rect(),n=Math.min(t.x,e.x,s.x,i.x),o=Math.min(t.y,e.y,s.y,i.y),r=Math.max(t.x,e.x,s.x,i.x),a=Math.max(t.y,e.y,s.y,i.y);return new h.BBox({left:n,right:r,top:o,bottom:a})}size(){const{width:t,height:e}=this._size(),{angle:s}=this;if(s){const i=Math.cos(Math.abs(s)),n=Math.sin(Math.abs(s));return{width:Math.abs(t*i+e*n),height:Math.abs(t*n+e*i)}}return{width:t,height:e}}rect(){const t=this._rect(),{angle:e}=this;if(e){const{sx:s,sy:i}=this.position,n=new c.AffineTransform;return n.translate(s,i),n.rotate(e),n.translate(-s,-i),n.apply_rect(t)}return t}paint_rect(t){const{p0:e,p1:s,p2:i,p3:n}=this.rect();t.save(),t.strokeStyle=\"red\",t.lineWidth=1,t.beginPath();const{round:h}=Math;t.moveTo(h(e.x),h(e.y)),t.lineTo(h(s.x),h(s.y)),t.lineTo(h(i.x),h(i.y)),t.lineTo(h(n.x),h(n.y)),t.closePath(),t.stroke(),t.restore()}paint_bbox(t){const{x:e,y:s,width:i,height:n}=this.bbox();t.save(),t.strokeStyle=\"blue\",t.lineWidth=1,t.beginPath();const{round:h}=Math;t.moveTo(h(e),h(s)),t.lineTo(h(e),h(s+n)),t.lineTo(h(e+i),h(s+n)),t.lineTo(h(e+i),h(s)),t.closePath(),t.stroke(),t.restore()}}s.GraphicsBox=l,l.__name__=\"GraphicsBox\";class x extends l{constructor({text:t}){super(),this.text=t}set visuals(t){const e=t.color,s=t.alpha,i=t.font_style;let n=t.font_size;const h=t.font,{font_size_scale:r,base_font_size:a}=this,c=(0,o.parse_css_font_size)(n);if(null!=c){let{value:t,unit:e}=c;t*=r,\"em\"==e&&a&&(t*=a,e=\"px\"),n=`${t}${e}`}const l=`${i} ${n} ${h}`;this.font=l,this.color=(0,_.color2css)(e,s),this.line_height=t.line_height;const x=t.align;this._x_anchor=x;const u=t.baseline;this._y_anchor=(()=>{switch(u){case\"top\":return\"top\";case\"middle\":return\"center\";case\"bottom\":return\"bottom\";default:return\"baseline\"}})()}infer_text_height(){if(this.text.includes(\"\\n\"))return\"ascent_descent\";{function t(t){for(const e of new Set(t))if(!(\"0\"<=e&&e<=\"9\"))switch(e){case\",\":case\".\":case\"+\":case\"-\":case\"\\u2212\":case\"e\":continue;default:return!1}return!0}return t(this.text)?\"cap\":\"ascent_descent\"}}_text_line(t){var e;const s=null!==(e=this.text_height_metric)&&void 0!==e?e:this.infer_text_height(),i=(()=>{switch(s){case\"x\":case\"x_descent\":return t.x_height;case\"cap\":case\"cap_descent\":return t.cap_height;case\"ascent\":case\"ascent_descent\":return t.ascent}})(),n=(()=>{switch(s){case\"x\":case\"cap\":case\"ascent\":return 0;case\"x_descent\":case\"cap_descent\":case\"ascent_descent\":return t.descent}})();return{height:i+n,ascent:i,descent:n}}get nlines(){return this.text.split(\"\\n\").length}_size(){var t,e;const{font:i}=this,n=(0,o.font_metrics)(i),h=(this.line_height-1)*n.height,a=\"\"==this.text,c=this.text.split(\"\\n\"),_=c.length,l=c.map((t=>(0,s.text_width)(t,i))),x=this._text_line(n).height*_,u=\"%\"==(null===(t=this.width)||void 0===t?void 0:t.unit)?this.width.value:1,p=\"%\"==(null===(e=this.height)||void 0===e?void 0:e.unit)?this.height.value:1;return{width:(0,r.max)(l)*u,height:a?0:(x+h*(_-1))*p,metrics:n}}_computed_position(t,e,s){const{width:i,height:n}=t,{sx:h,sy:o,x_anchor:r=this._x_anchor,y_anchor:c=this._y_anchor}=this.position;return{x:h-(()=>{if((0,a.isNumber)(r))return r*i;switch(r){case\"left\":return 0;case\"center\":return.5*i;case\"right\":return i}})(),y:o-(()=>{var t;if((0,a.isNumber)(c))return c*n;switch(c){case\"top\":return 0;case\"center\":return.5*n;case\"bottom\":return n;case\"baseline\":if(1!=s)return.5*n;switch(null!==(t=this.text_height_metric)&&void 0!==t?t:this.infer_text_height()){case\"x\":case\"x_descent\":return e.x_height;case\"cap\":case\"cap_descent\":return e.cap_height;case\"ascent\":case\"ascent_descent\":return e.ascent}}})()}}_rect(){const{width:t,height:e,metrics:s}=this._size(),i=this.text.split(\"\\n\").length,{x:n,y:o}=this._computed_position({width:t,height:e},s,i);return new h.BBox({x:n,y:o,width:t,height:e}).rect}paint(t){var e,i;const{font:n}=this,h=(0,o.font_metrics)(n),a=(this.line_height-1)*h.height,c=this.text.split(\"\\n\"),_=c.length,l=c.map((t=>(0,s.text_width)(t,n))),x=this._text_line(h),u=x.height*_,p=\"%\"==(null===(e=this.width)||void 0===e?void 0:e.unit)?this.width.value:1,f=\"%\"==(null===(i=this.height)||void 0===i?void 0:i.unit)?this.height.value:1,g=(0,r.max)(l)*p,d=(u+a*(_-1))*f;t.save(),t.fillStyle=this.color,t.font=this.font,t.textAlign=\"left\",t.textBaseline=\"alphabetic\";const{sx:b,sy:m}=this.position,{align:y}=this,{angle:w}=this;w&&(t.translate(b,m),t.rotate(w),t.translate(-b,-m));let{x:v,y:z}=this._computed_position({width:g,height:d},h,_);if(\"justify\"==y)for(let e=0;e<_;e++){let i=v;const h=c[e].split(\" \"),o=h.length,_=h.map((t=>(0,s.text_width)(t,n))),l=(g-(0,r.sum)(_))/(o-1);for(let e=0;e{switch(y){case\"left\":return 0;case\"center\":return.5*(g-l[e]);case\"right\":return g-l[e]}})();t.fillStyle=this.color,t.fillText(c[e],s,z+x.ascent),z+=x.height+a}t.restore()}}s.TextBox=x,x.__name__=\"TextBox\";class u extends l{constructor(t,e){super(),this.base=t,this.expo=e}get children(){return[this.base,this.expo]}set base_font_size(t){super.base_font_size=t,this.base.base_font_size=t,this.expo.base_font_size=t}set position(t){this._position=t;const e=this.base.size(),s=this.expo.size(),i=this._shift_scale()*e.height,n=Math.max(e.height,i+s.height);this.base.position={sx:0,x_anchor:\"left\",sy:n,y_anchor:\"bottom\"},this.expo.position={sx:e.width,x_anchor:\"left\",sy:i,y_anchor:\"bottom\"}}get position(){return this._position}set visuals(t){this.expo.font_size_scale=.7,this.base.visuals=t,this.expo.visuals=t}_shift_scale(){if(this.base instanceof x&&1==this.base.nlines){const{x_height:t,cap_height:e}=(0,o.font_metrics)(this.base.font);return t/e}return 2/3}infer_text_height(){return this.base.infer_text_height()}_rect(){const t=this.base.bbox(),e=this.expo.bbox(),s=t.union(e),{x:i,y:n}=this._computed_position();return s.translate(i,n).rect}_size(){const t=this.base.size(),e=this.expo.size();return{width:t.width+e.width,height:Math.max(t.height,this._shift_scale()*t.height+e.height)}}paint(t){t.save();const{angle:e}=this;if(e){const{sx:s,sy:i}=this.position;t.translate(s,i),t.rotate(e),t.translate(-s,-i)}const{x:s,y:i}=this._computed_position();t.translate(s,i),this.base.paint(t),this.expo.paint(t),t.restore()}paint_bbox(t){super.paint_bbox(t);const{x:e,y:s}=this._computed_position();t.save(),t.translate(e,s);for(const e of this.children)e.paint_bbox(t);t.restore()}_computed_position(){const{width:t,height:e}=this._size(),{sx:s,sy:i,x_anchor:n=this._x_anchor,y_anchor:h=this._y_anchor}=this.position;return{x:s-(()=>{if((0,a.isNumber)(n))return n*t;switch(n){case\"left\":return 0;case\"center\":return.5*t;case\"right\":return t}})(),y:i-(()=>{if((0,a.isNumber)(h))return h*e;switch(h){case\"top\":return 0;case\"center\":return.5*e;case\"bottom\":return e;case\"baseline\":return.5*e}})()}}}s.BaseExpo=u,u.__name__=\"BaseExpo\";class p{constructor(t){this.items=t}set base_font_size(t){for(const e of this.items)e.base_font_size=t}get length(){return this.items.length}set visuals(t){for(const e of this.items)e.visuals=t;const e={x:0,cap:1,ascent:2,x_descent:3,cap_descent:4,ascent_descent:5},s=(0,r.max_by)(this.items.map((t=>t.infer_text_height())),(t=>e[t]));for(const t of this.items)t.text_height_metric=s}set angle(t){for(const e of this.items)e.angle=t}max_size(){let t=0,e=0;for(const s of this.items){const i=s.size();t=Math.max(t,i.width),e=Math.max(e,i.height)}return{width:t,height:e}}}s.GraphicsBoxes=p,p.__name__=\"GraphicsBoxes\"},\n", - " function _(t,e,n,r,l){r();const a=t(11),c=(()=>{try{return\"undefined\"!=typeof OffscreenCanvas&&null!=new OffscreenCanvas(0,0).getContext(\"2d\")}catch(t){return!1}})()?(t,e)=>new OffscreenCanvas(t,e):(t,e)=>{const n=document.createElement(\"canvas\");return n.width=t,n.height=e,n},o=(()=>{const t=c(0,0).getContext(\"2d\");return e=>{t.font=e;const n=t.measureText(\"M\"),r=t.measureText(\"x\"),l=t.measureText(\"\\xc5\\u015ag|\"),c=l.fontBoundingBoxAscent,o=l.fontBoundingBoxDescent;if(null!=c&&null!=o)return{height:c+o,ascent:c,descent:o,cap_height:n.actualBoundingBoxAscent,x_height:r.actualBoundingBoxAscent};const s=l.actualBoundingBoxAscent,u=l.actualBoundingBoxDescent;if(null!=s&&null!=u)return{height:s+u,ascent:s,descent:u,cap_height:n.actualBoundingBoxAscent,x_height:r.actualBoundingBoxAscent};(0,a.unreachable)()}})(),s=(()=>{const t=c(0,0).getContext(\"2d\");return(e,n)=>{t.font=n;const r=t.measureText(e),l=r.actualBoundingBoxAscent,c=r.actualBoundingBoxDescent;if(null!=l&&null!=c)return{width:r.width,height:l+c,ascent:l,descent:c};(0,a.unreachable)()}})(),u=(()=>{const t=document.createElement(\"canvas\"),e=t.getContext(\"2d\");let n=-1,r=-1;return(l,a=1)=>{e.font=l;const{width:c}=e.measureText(\"M\"),o=c*a,s=Math.ceil(o),u=Math.ceil(2*o),i=Math.ceil(1.5*o);n{let e=0;for(let n=0;n<=i;n++)for(let r=0;r{let e=t.length-4;for(let n=u;n>=i;n--)for(let r=0;r{const t=document.createElement(\"canvas\"),e=t.getContext(\"2d\");let n=-1,r=-1;return(l,a,c=1)=>{e.font=a;const{width:o}=e.measureText(\"M\"),s=o*c,u=Math.ceil(s),i=Math.ceil(2*s),f=Math.ceil(1.5*s);(n{let e=0;for(let n=0;n<=f;n++)for(let r=0;r{let e=t.length-4;for(let n=i;n>=f;n--)for(let r=0;r{try{return o(\"normal 10px sans-serif\"),o}catch(t){return u}})(),h=(()=>{try{return s(\"A\",\"normal 10px sans-serif\"),s}catch(t){return i}})(),g=new Map;function d(t){let e=g.get(t);return null==e&&(e={font:f(t),glyphs:new Map},g.set(t,e)),e.font}n.font_metrics=d,n.glyph_metrics=function(t,e){let n=g.get(e);null==n&&(d(e),n=g.get(e));let r=n.glyphs.get(t);return null==r&&(r=h(t,e),n.glyphs.set(t,r)),r},n.parse_css_font_size=function(t){const e=t.match(/^\\s*(\\d+(\\.\\d+)?)(\\w+)\\s*$/);if(null!=e){const[,t,,n]=e,r=Number(t);if(isFinite(r))return{value:r,unit:n}}return null}},\n", - " function _(t,s,r,n,i){n();const{sin:e,cos:a}=Math;class h{constructor(t=1,s=0,r=0,n=1,i=0,e=0){this.a=t,this.b=s,this.c=r,this.d=n,this.e=i,this.f=e}toString(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return`matrix(${t}, ${s}, ${r}, ${n}, ${i}, ${e})`}static from_DOMMatrix(t){const{a:s,b:r,c:n,d:i,e,f:a}=t;return new h(s,r,n,i,e,a)}to_DOMMatrix(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return new DOMMatrix([t,s,r,n,i,e])}clone(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return new h(t,s,r,n,i,e)}get is_identity(){const{a:t,b:s,c:r,d:n,e:i,f:e}=this;return 1==t&&0==s&&0==r&&1==n&&0==i&&0==e}apply_point(t){const[s,r]=this.apply(t.x,t.y);return{x:s,y:r}}apply_rect(t){return{p0:this.apply_point(t.p0),p1:this.apply_point(t.p1),p2:this.apply_point(t.p2),p3:this.apply_point(t.p3)}}apply(t,s){const{a:r,b:n,c:i,d:e,e:a,f:h}=this;return[r*t+i*s+a,n*t+e*s+h]}iv_apply(t,s){const{a:r,b:n,c:i,d:e,e:a,f:h}=this,c=t.length;for(let o=0;o{const h={max:4,fit:3,min:2,fixed:1};return h[i]>h[t]};if(\"fixed\"!=n&&\"fixed\"!=s)if(n==s){const n=t,s=_(t/e),r=_(h*e),g=h;Math.abs(i.width-n)+Math.abs(i.height-s)<=Math.abs(i.width-r)+Math.abs(i.height-g)?(t=n,h=s):(t=r,h=g)}else r(n,s)?h=_(t/e):t=_(h*e);else\"fixed\"==n?h=_(t/e):\"fixed\"==s&&(t=_(h*e))}return{width:t,height:h}}measure(i){if(!this.sizing.visible)return{width:0,height:0};const t=i=>\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:i,h=i=>\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:i,e=new s.Sizeable(i).shrink_by(this.sizing.margin).map(t,h),n=this._measure(e),r=this.clip_size(n,e),g=t(r.width),l=h(r.height),a=this.apply_aspect(e,{width:g,height:l});return Object.assign(Object.assign({},n),a)}compute(i={}){const t=this.measure({width:null!=i.width&&this.is_width_expanding()?i.width:1/0,height:null!=i.height&&this.is_height_expanding()?i.height:1/0}),{width:h,height:e}=t,n=new r.BBox({left:0,top:0,width:h,height:e});let s;if(null!=t.inner){const{left:i,top:n,right:g,bottom:l}=t.inner;s=new r.BBox({left:i,top:n,right:h-g,bottom:e-l})}this.set_geometry(n,s)}get xview(){return this.bbox.xview}get yview(){return this.bbox.yview}clip_size(i,t){function h(i,t,h,e){return null==h?h=0:(0,g.isNumber)(h)||(h=Math.round(h.percent*t)),null==e?e=1/0:(0,g.isNumber)(e)||(e=Math.round(e.percent*t)),a(h,l(i,e))}return{width:h(i.width,t.width,this.sizing.min_width,this.sizing.max_width),height:h(i.height,t.height,this.sizing.min_height,this.sizing.max_height)}}has_size_changed(){const{_dirty:i}=this;return this._dirty=!1,i}}h.Layoutable=o,o.__name__=\"Layoutable\";class d extends o{_measure(i){const{width_policy:t,height_policy:h}=this.sizing;return{width:(()=>{const{width:h}=this.sizing;if(i.width==1/0)return null!=h?h:0;switch(t){case\"fixed\":return null!=h?h:0;case\"min\":return null!=h?l(i.width,h):0;case\"fit\":return null!=h?l(i.width,h):i.width;case\"max\":return null!=h?a(i.width,h):i.width}})(),height:(()=>{const{height:t}=this.sizing;if(i.height==1/0)return null!=t?t:0;switch(h){case\"fixed\":return null!=t?t:0;case\"min\":return null!=t?l(i.height,t):0;case\"fit\":return null!=t?l(i.height,t):i.height;case\"max\":return null!=t?a(i.height,t):i.height}})()}}}h.LayoutItem=d,d.__name__=\"LayoutItem\";class u extends o{_measure(i){const t=this._content_size(),h=i.bounded_to(this.sizing.size).bounded_to(t);return{width:(()=>{switch(this.sizing.width_policy){case\"fixed\":return null!=this.sizing.width?this.sizing.width:t.width;case\"min\":return t.width;case\"fit\":return h.width;case\"max\":return Math.max(t.width,h.width)}})(),height:(()=>{switch(this.sizing.height_policy){case\"fixed\":return null!=this.sizing.height?this.sizing.height:t.height;case\"min\":return t.height;case\"fit\":return h.height;case\"max\":return Math.max(t.height,h.height)}})()}}}h.ContentLayoutable=u,u.__name__=\"ContentLayoutable\"},\n", - " function _(e,t,s,a,_){a();const r=e(62),n=e(61),g=e(58),i=e(63),c=e(67),h=e(65),l=e(13),o=e(11);class x{constructor(e,t,s,a,_={},r={},n={},g={}){this.in_x_scale=e,this.in_y_scale=t,this.x_range=s,this.y_range=a,this.extra_x_ranges=_,this.extra_y_ranges=r,this.extra_x_scales=n,this.extra_y_scales=g,this._bbox=new h.BBox,(0,o.assert)(null==e.source_range&&null==e.target_range),(0,o.assert)(null==t.source_range&&null==t.target_range),this._configure_scales()}get bbox(){return this._bbox}_get_ranges(e,t){return new Map((0,l.entries)(Object.assign(Object.assign({},t),{default:e})))}_get_scales(e,t,s,a){var _;const g=new Map((0,l.entries)(Object.assign(Object.assign({},t),{default:e}))),h=new Map;for(const[t,l]of s){if(l instanceof c.FactorRange!=e instanceof r.CategoricalScale)throw new Error(`Range ${l.type} is incompatible is Scale ${e.type}`);e instanceof n.LogScale&&l instanceof i.DataRange1d&&(l.scale_hint=\"log\");const s=(null!==(_=g.get(t))&&void 0!==_?_:e).clone();s.setv({source_range:l,target_range:a}),h.set(t,s)}return h}_configure_frame_ranges(){const{bbox:e}=this;this._x_target=new g.Range1d({start:e.left,end:e.right}),this._y_target=new g.Range1d({start:e.bottom,end:e.top})}_configure_scales(){this._configure_frame_ranges(),this._x_ranges=this._get_ranges(this.x_range,this.extra_x_ranges),this._y_ranges=this._get_ranges(this.y_range,this.extra_y_ranges),this._x_scales=this._get_scales(this.in_x_scale,this.extra_x_scales,this._x_ranges,this._x_target),this._y_scales=this._get_scales(this.in_y_scale,this.extra_y_scales,this._y_ranges,this._y_target)}_update_scales(){this._configure_frame_ranges();for(const[,e]of this._x_scales)e.target_range=this._x_target;for(const[,e]of this._y_scales)e.target_range=this._y_target}set_geometry(e){this._bbox=e,this._update_scales()}get x_target(){return this._x_target}get y_target(){return this._y_target}get x_ranges(){return this._x_ranges}get y_ranges(){return this._y_ranges}get x_scales(){return this._x_scales}get y_scales(){return this._y_scales}get x_scale(){return this._x_scales.get(\"default\")}get y_scale(){return this._y_scales.get(\"default\")}get xscales(){return(0,l.to_object)(this.x_scales)}get yscales(){return(0,l.to_object)(this.y_scales)}}s.CartesianFrame=x,x.__name__=\"CartesianFrame\"},\n", - " function _(i,s,x,A,o){A(),o(\"Axis\",i(128).Axis),o(\"CategoricalAxis\",i(140).CategoricalAxis),o(\"ContinuousAxis\",i(143).ContinuousAxis),o(\"DatetimeAxis\",i(144).DatetimeAxis),o(\"LinearAxis\",i(145).LinearAxis),o(\"LogAxis\",i(162).LogAxis),o(\"MercatorAxis\",i(165).MercatorAxis)},\n", - " function _(t,e,i,s,a){s();const o=t(1);var l;const n=t(129),_=t(130),r=t(131),h=t(132),c=(0,o.__importStar)(t(48)),b=t(20),u=t(24),m=t(123),d=t(9),x=t(13),f=t(8),g=t(120),p=t(67),v=t(133),w=t(113),j=t(11),k=t(8),y=t(134),{abs:z}=Math;class M extends n.GuideRendererView{constructor(){super(...arguments),this._axis_label_view=null,this._major_label_views=new Map}async lazy_initialize(){await super.lazy_initialize(),await this._init_axis_label(),await this._init_major_labels()}async _init_axis_label(){const{axis_label:t}=this.model;if(null!=t){const e=(0,k.isString)(t)?(0,y.parse_delimited_string)(t):t;this._axis_label_view=await(0,w.build_view)(e,{parent:this})}else this._axis_label_view=null}async _init_major_labels(){const{major_label_overrides:t}=this.model;for(const[e,i]of(0,x.entries)(t)){const t=(0,k.isString)(i)?(0,y.parse_delimited_string)(i):i;this._major_label_views.set(e,await(0,w.build_view)(t,{parent:this}))}}update_layout(){this.layout=new m.SideLayout(this.panel,(()=>this.get_size()),!0),this.layout.on_resize((()=>this._coordinates=void 0))}get_size(){const{visible:t,fixed_location:e}=this.model;if(t&&null==e&&this.is_renderable){const{extents:t}=this;return{width:0,height:Math.round(t.tick+t.tick_label+t.axis_label)}}return{width:0,height:0}}get is_renderable(){const[t,e]=this.ranges;return t.is_valid&&e.is_valid}_render(){var t;if(!this.is_renderable)return;const{tick_coords:e,extents:i}=this,s=this.layer.ctx;s.save(),this._draw_rule(s,i),this._draw_major_ticks(s,i,e),this._draw_minor_ticks(s,i,e),this._draw_major_labels(s,i,e),this._draw_axis_label(s,i,e),null===(t=this._paint)||void 0===t||t.call(this,s,i,e),s.restore()}connect_signals(){super.connect_signals();const{axis_label:t,major_label_overrides:e}=this.model.properties;this.on_change(t,(async()=>{var t;null===(t=this._axis_label_view)||void 0===t||t.remove(),await this._init_axis_label()})),this.on_change(e,(async()=>{for(const t of this._major_label_views.values())t.remove();await this._init_major_labels()})),this.connect(this.model.change,(()=>this.plot_view.request_layout()))}get needs_clip(){return null!=this.model.fixed_location}_draw_rule(t,e){if(!this.visuals.axis_line.doit)return;const[i,s]=this.rule_coords,[a,o]=this.coordinates.map_to_screen(i,s),[l,n]=this.normals,[_,r]=this.offsets;this.visuals.axis_line.set_value(t),t.beginPath();for(let e=0;e0?s+i+3:0}_draw_axis_label(t,e,i){if(null==this._axis_label_view||null!=this.model.fixed_location)return;const[s,a]=(()=>{const{bbox:t}=this.layout;switch(this.panel.side){case\"above\":return[t.hcenter,t.bottom];case\"below\":return[t.hcenter,t.top];case\"left\":return[t.right,t.vcenter];case\"right\":return[t.left,t.vcenter]}})(),[o,l]=this.normals,n=e.tick+e.tick_label+this.model.axis_label_standoff,{vertical_align:_,align:r}=this.panel.get_label_text_heuristics(\"parallel\"),h={sx:s+o*n,sy:a+l*n,x_anchor:r,y_anchor:_},c=this._axis_label_view.graphics();c.visuals=this.visuals.axis_label_text.values(),c.angle=this.panel.get_label_angle_heuristic(\"parallel\"),this.plot_view.base_font_size&&(c.base_font_size=this.plot_view.base_font_size),c.position=h,c.align=r,c.paint(t)}_draw_ticks(t,e,i,s,a){if(!a.doit)return;const[o,l]=e,[n,_]=this.coordinates.map_to_screen(o,l),[r,h]=this.normals,[c,b]=this.offsets,[u,m]=[r*(c-i),h*(b-i)],[d,x]=[r*(c+s),h*(b+s)];a.set_value(t),t.beginPath();for(let e=0;et.bbox())),M=(()=>{const[t]=this.ranges;return t.is_reversed?0==this.dimension?(t,e)=>z[t].left-z[e].right:(t,e)=>z[e].top-z[t].bottom:0==this.dimension?(t,e)=>z[e].left-z[t].right:(t,e)=>z[t].top-z[e].bottom})(),{major_label_policy:O}=this.model,T=O.filter(k,z,M),A=[...T.ones()];if(0!=A.length){const t=this.parent.canvas_view.bbox,e=e=>{const i=z[e];if(i.left<0){const t=-i.left,{position:s}=y[e];y[e].position=Object.assign(Object.assign({},s),{sx:s.sx+t})}else if(i.right>t.width){const s=i.right-t.width,{position:a}=y[e];y[e].position=Object.assign(Object.assign({},a),{sx:a.sx-s})}},i=e=>{const i=z[e];if(i.top<0){const t=-i.top,{position:s}=y[e];y[e].position=Object.assign(Object.assign({},s),{sy:s.sy+t})}else if(i.bottom>t.height){const s=i.bottom-t.height,{position:a}=y[e];y[e].position=Object.assign(Object.assign({},a),{sy:a.sy-s})}},s=A[0],a=A[A.length-1];0==this.dimension?(e(s),e(a)):(i(s),i(a))}for(const e of T){y[e].paint(t)}}_tick_extent(){return this.model.major_tick_out}_tick_label_extents(){const t=this.tick_coords.major,e=this.compute_labels(t[this.dimension]),i=this.model.major_label_orientation,s=this.model.major_label_standoff,a=this.visuals.major_label_text;return[this._oriented_labels_extent(e,i,s,a)]}get extents(){const t=this._tick_label_extents();return{tick:this._tick_extent(),tick_labels:t,tick_label:(0,d.sum)(t),axis_label:this._axis_label_extent()}}_oriented_labels_extent(t,e,i,s){if(0==t.length||!s.doit)return 0;const a=this.panel.get_label_angle_heuristic(e);t.visuals=s.values(),t.angle=a,t.base_font_size=this.plot_view.base_font_size;const o=t.max_size(),l=0==this.dimension?o.height:o.width;return l>0?i+l+3:0}get normals(){return this.panel.normals}get dimension(){return this.panel.dimension}compute_labels(t){const e=this.model.formatter.format_graphics(t,this),{_major_label_views:i}=this,s=new Set;for(let a=0;az(l-n)?(t=r(_(a,o),l),s=_(r(a,o),n)):(t=_(a,o),s=r(a,o)),[t,s]}}get rule_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,o=[new Array(2),new Array(2)];return o[t][0]=Math.max(s,i.min),o[t][1]=Math.min(a,i.max),o[t][0]>o[t][1]&&(o[t][0]=o[t][1]=NaN),o[e][0]=this.loc,o[e][1]=this.loc,o}get tick_coords(){const t=this.dimension,e=(t+1)%2,[i]=this.ranges,[s,a]=this.computed_bounds,o=this.model.ticker.get_ticks(s,a,i,this.loc),l=o.major,n=o.minor,_=[[],[]],r=[[],[]],[h,c]=[i.min,i.max];for(let i=0;ic||(_[t].push(l[i]),_[e].push(this.loc));for(let i=0;ic||(r[t].push(n[i]),r[e].push(this.loc));return{major:_,minor:r}}get loc(){const{fixed_location:t}=this.model;if(null!=t){if((0,f.isNumber)(t))return t;const[,e]=this.ranges;if(e instanceof p.FactorRange)return e.synthetic(t);(0,j.unreachable)()}const[,e]=this.ranges;switch(this.panel.side){case\"left\":case\"below\":return e.start;case\"right\":case\"above\":return e.end}}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box})}remove(){var t;null===(t=this._axis_label_view)||void 0===t||t.remove();for(const t of this._major_label_views.values())t.remove();super.remove()}has_finished(){if(!super.has_finished())return!1;if(null!=this._axis_label_view&&!this._axis_label_view.has_finished())return!1;for(const t of this._major_label_views.values())if(!t.has_finished())return!1;return!0}}i.AxisView=M,M.__name__=\"AxisView\";class O extends n.GuideRenderer{constructor(t){super(t)}}i.Axis=O,l=O,O.__name__=\"Axis\",l.prototype.default_view=M,l.mixins([[\"axis_\",c.Line],[\"major_tick_\",c.Line],[\"minor_tick_\",c.Line],[\"major_label_\",c.Text],[\"axis_label_\",c.Text]]),l.define((({Any:t,Int:e,Number:i,String:s,Ref:a,Dict:o,Tuple:l,Or:n,Nullable:c,Auto:u})=>({bounds:[n(l(i,i),u),\"auto\"],ticker:[a(_.Ticker)],formatter:[a(r.TickFormatter)],axis_label:[c(n(s,a(v.BaseText))),null],axis_label_standoff:[e,5],major_label_standoff:[e,5],major_label_orientation:[n(b.TickLabelOrientation,i),\"horizontal\"],major_label_overrides:[o(n(s,a(v.BaseText))),{}],major_label_policy:[a(h.LabelingPolicy),()=>new h.AllLabels],major_tick_in:[i,2],major_tick_out:[i,6],minor_tick_in:[i,0],minor_tick_out:[i,4],fixed_location:[c(n(i,t)),null]}))),l.override({axis_line_color:\"black\",major_tick_line_color:\"black\",minor_tick_line_color:\"black\",major_label_text_font_size:\"11px\",major_label_text_align:\"center\",major_label_text_baseline:\"alphabetic\",axis_label_text_font_size:\"13px\",axis_label_text_font_style:\"italic\"})},\n", - " function _(e,r,d,n,i){var s;n();const _=e(41);class u extends _.RendererView{}d.GuideRendererView=u,u.__name__=\"GuideRendererView\";class c extends _.Renderer{constructor(e){super(e)}}d.GuideRenderer=c,s=c,c.__name__=\"GuideRenderer\",s.override({level:\"guide\"})},\n", - " function _(c,e,n,s,o){s();const r=c(53);class t extends r.Model{constructor(c){super(c)}}n.Ticker=t,t.__name__=\"Ticker\"},\n", - " function _(t,o,r,e,c){e();const n=t(53),a=t(120);class m extends n.Model{constructor(t){super(t)}format_graphics(t,o){return this.doFormat(t,o).map((t=>new a.TextBox({text:t})))}compute(t,o){return this.doFormat([t],null!=o?o:{loc:0})[0]}v_compute(t,o){return this.doFormat(t,null!=o?o:{loc:0})}}r.TickFormatter=m,m.__name__=\"TickFormatter\"},\n", - " function _(e,n,s,t,i){var c,r;t();const l=e(53),o=e(13),a=e(34),u=e(8),d=e(24);class _ extends l.Model{constructor(e){super(e)}}s.LabelingPolicy=_,_.__name__=\"LabelingPolicy\";class f extends _{constructor(e){super(e)}filter(e,n,s){return e}}s.AllLabels=f,f.__name__=\"AllLabels\";class m extends _{constructor(e){super(e)}filter(e,n,s){const{min_distance:t}=this;let i=null;for(const n of e)null!=i&&s(i,n)({min_distance:[e,5]})));class b extends _{constructor(e){super(e)}get names(){return(0,o.keys)(this.args)}get values(){return(0,o.values)(this.args)}get func(){const e=(0,a.use_strict)(this.code);return new d.GeneratorFunction(\"indices\",\"bboxes\",\"distance\",...this.names,e)}filter(e,n,s){const t=Object.create(null),i=this.func.call(t,e,n,s,...this.values);let c=i.next();if(c.done&&void 0!==c.value){const{value:n}=c;return n instanceof d.Indices?n:void 0===n?e:(0,u.isIterable)(n)?d.Indices.from_indices(e.size,n):d.Indices.all_unset(e.size)}{const n=[];do{n.push(c.value),c=i.next()}while(!c.done);return d.Indices.from_indices(e.size,n)}}}s.CustomLabelingPolicy=b,r=b,b.__name__=\"CustomLabelingPolicy\",r.define((({Unknown:e,String:n,Dict:s})=>({args:[s(e),{}],code:[n,\"\"]})))},\n", - " function _(e,s,t,n,a){var _;n();const x=e(53),c=e(42);class i extends c.View{}t.BaseTextView=i,i.__name__=\"BaseTextView\";class o extends x.Model{constructor(e){super(e)}}t.BaseText=o,_=o,o.__name__=\"BaseText\",_.define((({String:e})=>({text:[e]})))},\n", - " function _(n,e,t,i,r){i();const s=n(135),l=n(139),d=[{start:\"$$\",end:\"$$\",inline:!1},{start:\"\\\\[\",end:\"\\\\]\",inline:!1},{start:\"\\\\(\",end:\"\\\\)\",inline:!0}];t.parse_delimited_string=function(n){for(const e of d){const t=n.indexOf(e.start),i=t+e.start.length;if(0==t){const t=n.indexOf(e.end,i),r=t;if(t==n.length-e.end.length)return new s.TeX({text:n.slice(i,r),inline:e.inline});break}}return new l.PlainText({text:n})}},\n", - " function _(t,e,s,i,n){var o,r,a;i();const h=t(8),_=t(136),l=t(22),c=t(120),d=t(121),u=t(122),g=t(65),p=t(133),x=t(137);class m extends p.BaseTextView{constructor(){super(...arguments),this._position={sx:0,sy:0},this.align=\"left\",this._x_anchor=\"left\",this._y_anchor=\"center\",this._base_font_size=13,this.font_size_scale=1,this.svg_image=null}graphics(){return this}infer_text_height(){return\"ascent_descent\"}set base_font_size(t){null!=t&&(this._base_font_size=t)}get base_font_size(){return this._base_font_size}get has_image_loaded(){return null!=this.svg_image}_rect(){const{width:t,height:e}=this._size(),{x:s,y:i}=this._computed_position();return new g.BBox({x:s,y:i,width:t,height:e}).rect}set position(t){this._position=t}get position(){return this._position}get text(){return this.model.text}get provider(){return x.default_provider}async lazy_initialize(){await super.lazy_initialize(),\"not_started\"==this.provider.status&&await this.provider.fetch(),\"not_started\"!=this.provider.status&&\"loading\"!=this.provider.status||this.provider.ready.connect((()=>this.load_image())),\"loaded\"==this.provider.status&&await this.load_image()}connect_signals(){super.connect_signals(),this.on_change(this.model.properties.text,(()=>this.load_image()))}set visuals(t){const e=t.color,s=t.alpha,i=t.font_style;let n=t.font_size;const o=t.font,{font_size_scale:r,_base_font_size:a}=this,h=(0,d.parse_css_font_size)(n);if(null!=h){let{value:t,unit:e}=h;t*=r,\"em\"==e&&a&&(t*=a,e=\"px\"),n=`${t}${e}`}const _=`${i} ${n} ${o}`;this.font=_,this.color=(0,l.color2css)(e,s)}_computed_position(){const{width:t,height:e}=this._size(),{sx:s,sy:i,x_anchor:n=this._x_anchor,y_anchor:o=this._y_anchor}=this.position;return{x:s-(()=>{if((0,h.isNumber)(n))return n*t;switch(n){case\"left\":return 0;case\"center\":return.5*t;case\"right\":return t}})(),y:i-(()=>{if((0,h.isNumber)(o))return o*e;switch(o){case\"top\":return 0;case\"center\":return.5*e;case\"bottom\":return e;case\"baseline\":return.5*e}})()}}size(){const{width:t,height:e}=this._size(),{angle:s}=this;if(s){const i=Math.cos(Math.abs(s)),n=Math.sin(Math.abs(s));return{width:Math.abs(t*i+e*n),height:Math.abs(t*n+e*i)}}return{width:t,height:e}}get_text_dimensions(){return{width:(0,c.text_width)(this.model.text,this.font),height:(0,d.font_metrics)(this.font).height}}get_image_dimensions(){var t,e,s,i;const n=parseFloat(null!==(e=null===(t=this.svg_element.getAttribute(\"height\"))||void 0===t?void 0:t.replace(/([A-z])/g,\"\"))&&void 0!==e?e:\"0\"),o=parseFloat(null!==(i=null===(s=this.svg_element.getAttribute(\"width\"))||void 0===s?void 0:s.replace(/([A-z])/g,\"\"))&&void 0!==i?i:\"0\");return{width:(0,d.font_metrics)(this.font).x_height*o,height:(0,d.font_metrics)(this.font).x_height*n}}_size(){return this.has_image_loaded?this.get_image_dimensions():this.get_text_dimensions()}bbox(){const{p0:t,p1:e,p2:s,p3:i}=this.rect(),n=Math.min(t.x,e.x,s.x,i.x),o=Math.min(t.y,e.y,s.y,i.y),r=Math.max(t.x,e.x,s.x,i.x),a=Math.max(t.y,e.y,s.y,i.y);return new g.BBox({left:n,right:r,top:o,bottom:a})}rect(){const t=this._rect(),{angle:e}=this;if(e){const{sx:s,sy:i}=this.position,n=new u.AffineTransform;return n.translate(s,i),n.rotate(e),n.translate(-s,-i),n.apply_rect(t)}return t}paint_rect(t){const{p0:e,p1:s,p2:i,p3:n}=this.rect();t.save(),t.strokeStyle=\"red\",t.lineWidth=1,t.beginPath();const{round:o}=Math;t.moveTo(o(e.x),o(e.y)),t.lineTo(o(s.x),o(s.y)),t.lineTo(o(i.x),o(i.y)),t.lineTo(o(n.x),o(n.y)),t.closePath(),t.stroke(),t.restore()}paint_bbox(t){const{x:e,y:s,width:i,height:n}=this.bbox();t.save(),t.strokeStyle=\"blue\",t.lineWidth=1,t.beginPath();const{round:o}=Math;t.moveTo(o(e),o(s)),t.lineTo(o(e),o(s+n)),t.lineTo(o(e+i),o(s+n)),t.lineTo(o(e+i),o(s)),t.closePath(),t.stroke(),t.restore()}async load_image(){if(null==this.provider.MathJax)return null;const t=this._process_text(this.model.text);if(null==t)return this._has_finished=!0,null;const e=t.children[0];this.svg_element=e,e.setAttribute(\"font\",this.font),e.setAttribute(\"stroke\",this.color);const s=e.outerHTML,i=new Blob([s],{type:\"image/svg+xml\"}),n=URL.createObjectURL(i);try{this.svg_image=await(0,_.load_image)(n)}finally{URL.revokeObjectURL(n)}return this.parent.request_layout(),this.svg_image}paint(t){t.save();const{sx:e,sy:s}=this.position;this.angle&&(t.translate(e,s),t.rotate(this.angle),t.translate(-e,-s));const{x:i,y:n}=this._computed_position();if(null!=this.svg_image){const{width:e,height:s}=this.get_image_dimensions();t.drawImage(this.svg_image,i,n,e,s)}else t.fillStyle=this.color,t.font=this.font,t.textAlign=\"left\",t.textBaseline=\"alphabetic\",t.fillText(this.model.text,i,n+(0,d.font_metrics)(this.font).ascent);t.restore(),this._has_finished||\"failed\"!=this.provider.status&&!this.has_image_loaded||(this._has_finished=!0,this.parent.notify_finished_after_paint())}}s.MathTextView=m,m.__name__=\"MathTextView\";class f extends p.BaseText{constructor(t){super(t)}}s.MathText=f,f.__name__=\"MathText\";class v extends m{_process_text(t){}}s.AsciiView=v,v.__name__=\"AsciiView\";class y extends f{constructor(t){super(t)}}s.Ascii=y,o=y,y.__name__=\"Ascii\",o.prototype.default_view=v;class w extends m{_process_text(t){var e;return null===(e=this.provider.MathJax)||void 0===e?void 0:e.mathml2svg(t.trim())}}s.MathMLView=w,w.__name__=\"MathMLView\";class b extends f{constructor(t){super(t)}}s.MathML=b,r=b,b.__name__=\"MathML\",r.prototype.default_view=w;class M extends m{_process_text(t){var e;return null===(e=this.provider.MathJax)||void 0===e?void 0:e.tex2svg(t,void 0,this.model.macros)}}s.TeXView=M,M.__name__=\"TeXView\";class T extends f{constructor(t){super(t)}}s.TeX=T,a=T,T.__name__=\"TeX\",a.prototype.default_view=M,a.define((({Boolean:t,Number:e,String:s,Dict:i,Tuple:n,Or:o})=>({macros:[i(o(s,n(s,e))),{}],inline:[t,!1]})))},\n", - " function _(i,e,t,s,o){s();const a=i(19);t.load_image=async function(i,e){return new n(i,e).promise};class n{constructor(i,e={}){this._image=new Image,this._finished=!1;const{attempts:t=1,timeout:s=1}=e;this.promise=new Promise(((o,n)=>{this._image.crossOrigin=\"anonymous\";let r=0;this._image.onerror=()=>{if(++r==t){const s=`unable to load ${i} image after ${t} attempts`;if(a.logger.warn(s),null==this._image.crossOrigin)return void(null!=e.failed&&e.failed());a.logger.warn(`attempting to load ${i} without a cross origin policy`),this._image.crossOrigin=null,r=0}setTimeout((()=>this._image.src=i),s)},this._image.onload=()=>{this._finished=!0,null!=e.loaded&&e.loaded(this._image),o(this._image)},this._image.src=i}))}get finished(){return this._finished}get image(){if(this._finished)return this._image;throw new Error(\"not loaded yet\")}}t.ImageLoader=n,n.__name__=\"ImageLoader\"},\n", - " function _(t,e,a,s,n){var r=this&&this.__createBinding||(Object.create?function(t,e,a,s){void 0===s&&(s=a),Object.defineProperty(t,s,{enumerable:!0,get:function(){return e[a]}})}:function(t,e,a,s){void 0===s&&(s=a),t[s]=e[a]}),i=this&&this.__setModuleDefault||(Object.create?function(t,e){Object.defineProperty(t,\"default\",{enumerable:!0,value:e})}:function(t,e){t.default=e}),d=this&&this.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var a in t)\"default\"!==a&&Object.prototype.hasOwnProperty.call(t,a)&&r(e,t,a);return i(e,t),e};s();const o=t(15),u=t(138);class c{constructor(){this.ready=new o.Signal0(this,\"ready\"),this.status=\"not_started\"}}a.MathJaxProvider=c,c.__name__=\"MathJaxProvider\";class h extends c{get MathJax(){return null}async fetch(){this.status=\"failed\"}}a.NoProvider=h,h.__name__=\"NoProvider\";class l extends c{get MathJax(){return\"undefined\"!=typeof MathJax?MathJax:null}async fetch(){const t=document.createElement(\"script\");t.src=\"https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js\",t.onload=()=>{this.status=\"loaded\",this.ready.emit()},t.onerror=()=>{this.status=\"failed\"},this.status=\"loading\",document.head.appendChild(t)}}a.CDNProvider=l,l.__name__=\"CDNProvider\";class _ extends c{get MathJax(){return this._mathjax}async fetch(){this.status=\"loading\";try{const e=await(0,u.load_module)(Promise.resolve().then((()=>d(t(515)))));this._mathjax=e,this.status=\"loaded\",this.ready.emit()}catch(t){this.status=\"failed\"}}}a.BundleProvider=_,_.__name__=\"BundleProvider\",a.default_provider=new _},\n", - " function _(n,r,o,t,c){t(),o.load_module=async function(n){try{return await n}catch(n){if((r=n)instanceof Error&&\"code\"in r&&\"MODULE_NOT_FOUND\"===n.code)return null;throw n}var r}},\n", - " function _(e,t,i,n,s){var a;n();const x=e(133),_=e(120);class l extends x.BaseTextView{initialize(){super.initialize(),this._has_finished=!0}graphics(){return new _.TextBox({text:this.model.text})}}i.PlainTextView=l,l.__name__=\"PlainTextView\";class r extends x.BaseText{constructor(e){super(e)}}i.PlainText=r,a=r,r.__name__=\"PlainText\",a.prototype.default_view=l},\n", - " function _(t,s,o,e,i){e();const r=t(1);var a;const l=t(128),_=t(141),n=t(142),p=(0,r.__importStar)(t(48)),c=t(20),h=t(120),m=t(8);class u extends l.AxisView{_paint(t,s,o){this._draw_group_separators(t,s,o)}_draw_group_separators(t,s,o){const[e]=this.ranges,[i,r]=this.computed_bounds;if(!e.tops||e.tops.length<2||!this.visuals.separator_line.doit)return;const a=this.dimension,l=(a+1)%2,_=[[],[]];let n=0;for(let t=0;ti&&pnew h.GraphicsBoxes(t.map((t=>(0,m.isString)(t)?new h.TextBox({text:t}):t))),_=t=>l(this.model.formatter.doFormat(t,this));if(1==t.levels){const t=_(i.major);a.push([t,r.major,this.model.major_label_orientation,this.visuals.major_label_text])}else if(2==t.levels){const t=_(i.major.map((t=>t[1])));a.push([t,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([l(i.tops),r.tops,this.model.group_label_orientation,this.visuals.group_text])}else if(3==t.levels){const t=_(i.major.map((t=>t[2]))),s=i.mids.map((t=>t[1]));a.push([t,r.major,this.model.major_label_orientation,this.visuals.major_label_text]),a.push([l(s),r.mids,this.model.subgroup_label_orientation,this.visuals.subgroup_text]),a.push([l(i.tops),r.tops,this.model.group_label_orientation,this.visuals.group_text])}return a}get tick_coords(){const t=this.dimension,s=(t+1)%2,[o]=this.ranges,[e,i]=this.computed_bounds,r=this.model.ticker.get_ticks(e,i,o,this.loc),a={major:[[],[]],mids:[[],[]],tops:[[],[]],minor:[[],[]]};return a.major[t]=r.major,a.major[s]=r.major.map((()=>this.loc)),3==o.levels&&(a.mids[t]=r.mids,a.mids[s]=r.mids.map((()=>this.loc))),o.levels>1&&(a.tops[t]=r.tops,a.tops[s]=r.tops.map((()=>this.loc))),a}}o.CategoricalAxisView=u,u.__name__=\"CategoricalAxisView\";class d extends l.Axis{constructor(t){super(t)}}o.CategoricalAxis=d,a=d,d.__name__=\"CategoricalAxis\",a.prototype.default_view=u,a.mixins([[\"separator_\",p.Line],[\"group_\",p.Text],[\"subgroup_\",p.Text]]),a.define((({Number:t,Or:s})=>({group_label_orientation:[s(c.TickLabelOrientation,t),\"parallel\"],subgroup_label_orientation:[s(c.TickLabelOrientation,t),\"parallel\"]}))),a.override({ticker:()=>new _.CategoricalTicker,formatter:()=>new n.CategoricalTickFormatter,separator_line_color:\"lightgrey\",separator_line_width:2,group_text_font_style:\"bold\",group_text_font_size:\"11px\",group_text_color:\"grey\",subgroup_text_font_style:\"bold\",subgroup_text_font_size:\"11px\"})},\n", - " function _(t,c,o,s,e){s();const r=t(130);class i extends r.Ticker{constructor(t){super(t)}get_ticks(t,c,o,s){var e,r;return{major:this._collect(o.factors,o,t,c),minor:[],tops:this._collect(null!==(e=o.tops)&&void 0!==e?e:[],o,t,c),mids:this._collect(null!==(r=o.mids)&&void 0!==r?r:[],o,t,c)}}_collect(t,c,o,s){const e=[];for(const r of t){const t=c.synthetic(r);t>o&&tnew _.DatetimeTicker,formatter:()=>new m.DatetimeTickFormatter})},\n", - " function _(e,i,s,n,r){var t;n();const a=e(143),o=e(146),c=e(147);class _ extends a.ContinuousAxisView{}s.LinearAxisView=_,_.__name__=\"LinearAxisView\";class u extends a.ContinuousAxis{constructor(e){super(e)}}s.LinearAxis=u,t=u,u.__name__=\"LinearAxis\",t.prototype.default_view=_,t.override({ticker:()=>new c.BasicTicker,formatter:()=>new o.BasicTickFormatter})},\n", - " function _(i,t,e,n,o){var r;n();const s=i(131),c=i(34);function _(i){let t=\"\";for(const e of i)t+=\"-\"==e?\"\\u2212\":e;return t}e.unicode_replace=_;class a extends s.TickFormatter{constructor(i){super(i),this.last_precision=3}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}_need_sci(i){if(!this.use_scientific)return!1;const{scientific_limit_high:t}=this,{scientific_limit_low:e}=this,n=i.length<2?0:Math.abs(i[1]-i[0])/1e4;for(const o of i){const i=Math.abs(o);if(!(i<=n)&&(i>=t||i<=e))return!0}return!1}_format_with_precision(i,t,e){return t?i.map((i=>_(i.toExponential(e)))):i.map((i=>_((0,c.to_fixed)(i,e))))}_auto_precision(i,t){const e=new Array(i.length),n=this.last_precision<=15;i:for(let o=this.last_precision;n?o<=15:o>=1;n?o++:o--){if(t){e[0]=i[0].toExponential(o);for(let t=1;t({precision:[n(t,e),\"auto\"],use_scientific:[i,!0],power_limit_high:[t,5],power_limit_low:[t,-3]})))},\n", - " function _(c,e,s,i,n){i();const r=c(148);class t extends r.AdaptiveTicker{constructor(c){super(c)}}s.BasicTicker=t,t.__name__=\"BasicTicker\"},\n", - " function _(t,i,a,s,e){var n;s();const r=t(149),_=t(9),l=t(10);class h extends r.ContinuousTicker{constructor(t){super(t)}get_min_interval(){return this.min_interval}get_max_interval(){var t;return null!==(t=this.max_interval)&&void 0!==t?t:1/0}initialize(){super.initialize();const t=(0,_.nth)(this.mantissas,-1)/this.base,i=(0,_.nth)(this.mantissas,0)*this.base;this.extended_mantissas=[t,...this.mantissas,i],this.base_factor=0===this.get_min_interval()?1:this.get_min_interval()}get_interval(t,i,a){const s=i-t,e=this.get_ideal_interval(t,i,a),n=Math.floor((0,l.log)(e/this.base_factor,this.base)),r=this.base**n*this.base_factor,h=this.extended_mantissas,m=h.map((t=>Math.abs(a-s/(t*r)))),v=h[(0,_.argmin)(m)]*r;return(0,l.clamp)(v,this.get_min_interval(),this.get_max_interval())}}a.AdaptiveTicker=h,n=h,h.__name__=\"AdaptiveTicker\",n.define((({Number:t,Array:i,Nullable:a})=>({base:[t,10],mantissas:[i(t),[1,2,5]],min_interval:[t,0],max_interval:[a(t),null]})))},\n", - " function _(t,n,i,s,e){var o;s();const r=t(130),c=t(9);class _ extends r.Ticker{constructor(t){super(t)}get_ticks(t,n,i,s){return this.get_ticks_no_defaults(t,n,s,this.desired_num_ticks)}get_ticks_no_defaults(t,n,i,s){const e=this.get_interval(t,n,s),o=Math.floor(t/e),r=Math.ceil(n/e);let _;_=isFinite(o)&&isFinite(r)?(0,c.range)(o,r+1):[];const u=_.map((t=>t*e)).filter((i=>t<=i&&i<=n)),a=this.num_minor_ticks,f=[];if(a>0&&u.length>0){const i=e/a,s=(0,c.range)(0,a).map((t=>t*i));for(const i of s.slice(1)){const s=u[0]-i;t<=s&&s<=n&&f.push(s)}for(const i of u)for(const e of s){const s=i+e;t<=s&&s<=n&&f.push(s)}}return{major:u,minor:f}}get_ideal_interval(t,n,i){return(n-t)/i}}i.ContinuousTicker=_,o=_,_.__name__=\"ContinuousTicker\",o.define((({Int:t})=>({num_minor_ticks:[t,5],desired_num_ticks:[t,6]})))},\n", - " function _(s,t,e,n,i){n();var r;const o=(0,s(1).__importDefault)(s(151)),a=s(131),c=s(19),u=s(152),m=s(9),h=s(8);function d(s){return(0,o.default)(s,\"%Y %m %d %H %M %S\").split(/\\s+/).map((s=>parseInt(s,10)))}function l(s,t){if((0,h.isFunction)(t))return t(s);{const e=(0,u.sprintf)(\"$1%06d\",function(s){return Math.round(s/1e3%1*1e6)}(s));return-1==(t=t.replace(/((^|[^%])(%%)*)%f/,e)).indexOf(\"%\")?t:(0,o.default)(s,t)}}const f=[\"microseconds\",\"milliseconds\",\"seconds\",\"minsec\",\"minutes\",\"hourmin\",\"hours\",\"days\",\"months\",\"years\"];class _ extends a.TickFormatter{constructor(s){super(s),this.strip_leading_zeros=!0}initialize(){super.initialize(),this._update_width_formats()}_update_width_formats(){const s=+(0,o.default)(new Date),t=function(t){const e=t.map((t=>l(s,t).length)),n=(0,m.sort_by)((0,m.zip)(e,t),(([s])=>s));return(0,m.unzip)(n)};this._width_formats={microseconds:t(this.microseconds),milliseconds:t(this.milliseconds),seconds:t(this.seconds),minsec:t(this.minsec),minutes:t(this.minutes),hourmin:t(this.hourmin),hours:t(this.hours),days:t(this.days),months:t(this.months),years:t(this.years)}}_get_resolution_str(s,t){const e=1.1*s;switch(!1){case!(e<.001):return\"microseconds\";case!(e<1):return\"milliseconds\";case!(e<60):return t>=60?\"minsec\":\"seconds\";case!(e<3600):return t>=3600?\"hourmin\":\"minutes\";case!(e<86400):return\"hours\";case!(e<2678400):return\"days\";case!(e<31536e3):return\"months\";default:return\"years\"}}doFormat(s,t){if(0==s.length)return[];const e=Math.abs(s[s.length-1]-s[0])/1e3,n=e/(s.length-1),i=this._get_resolution_str(n,e),[,[r]]=this._width_formats[i],o=[],a=f.indexOf(i),u={};for(const s of f)u[s]=0;u.seconds=5,u.minsec=4,u.minutes=4,u.hourmin=3,u.hours=3;for(const t of s){let s,e;try{e=d(t),s=l(t,r)}catch(s){c.logger.warn(`unable to format tick for timestamp value ${t}`),c.logger.warn(` - ${s}`),o.push(\"ERR\");continue}let n=!1,m=a;for(;0==e[u[f[m]]];){let r;if(m+=1,m==f.length)break;if((\"minsec\"==i||\"hourmin\"==i)&&!n){if(\"minsec\"==i&&0==e[4]&&0!=e[5]||\"hourmin\"==i&&0==e[3]&&0!=e[4]){r=this._width_formats[f[a-1]][1][0],s=l(t,r);break}n=!0}r=this._width_formats[f[m]][1][0],s=l(t,r)}if(this.strip_leading_zeros){let t=s.replace(/^0+/g,\"\");t!=s&&isNaN(parseInt(t))&&(t=`0${t}`),o.push(t)}else o.push(s)}return o}}e.DatetimeTickFormatter=_,r=_,_.__name__=\"DatetimeTickFormatter\",r.define((({String:s,Array:t})=>({microseconds:[t(s),[\"%fus\"]],milliseconds:[t(s),[\"%3Nms\",\"%S.%3Ns\"]],seconds:[t(s),[\"%Ss\"]],minsec:[t(s),[\":%M:%S\"]],minutes:[t(s),[\":%M\",\"%Mm\"]],hourmin:[t(s),[\"%H:%M\"]],hours:[t(s),[\"%Hh\",\"%H:%M\"]],days:[t(s),[\"%m/%d\",\"%a%d\"]],months:[t(s),[\"%m/%Y\",\"%b %Y\"]],years:[t(s),[\"%Y\"]]})))},\n", - " function _(e,t,n,r,o){!function(e){\"object\"==typeof t&&t.exports?t.exports=e():\"function\"==typeof define?define(e):this.tz=e()}((function(){function e(e,t,n){var r,o=t.day[1];do{r=new Date(Date.UTC(n,t.month,Math.abs(o++)))}while(t.day[0]<7&&r.getUTCDay()!=t.day[0]);return(r={clock:t.clock,sort:r.getTime(),rule:t,save:6e4*t.save,offset:e.offset})[r.clock]=r.sort+6e4*t.time,r.posix?r.wallclock=r[r.clock]+(e.offset+t.saved):r.posix=r[r.clock]-(e.offset+t.saved),r}function t(t,n,r){var o,a,u,i,l,s,c,f=t[t.zone],h=[],T=new Date(r).getUTCFullYear(),g=1;for(o=1,a=f.length;o=T-g;--c)for(o=0,a=s.length;o=h[o][n]&&h[o][h[o].clock]>u[h[o].clock]&&(i=h[o])}return i&&((l=/^(.*)\\/(.*)$/.exec(u.format))?i.abbrev=l[i.save?2:1]:i.abbrev=u.format.replace(/%s/,i.rule.letter)),i||u}function n(e,n){return\"UTC\"==e.zone?n:(e.entry=t(e,\"posix\",n),n+e.entry.offset+e.entry.save)}function r(e,n){return\"UTC\"==e.zone?n:(e.entry=r=t(e,\"wallclock\",n),0<(o=n-r.wallclock)&&o9)t+=s*l[c-10];else{if(a=new Date(n(e,t)),c<7)for(;s;)a.setUTCDate(a.getUTCDate()+i),a.getUTCDay()==c&&(s-=i);else 7==c?a.setUTCFullYear(a.getUTCFullYear()+s):8==c?a.setUTCMonth(a.getUTCMonth()+s):a.setUTCDate(a.getUTCDate()+s);null==(t=r(e,a.getTime()))&&(t=r(e,a.getTime()+864e5*i)-864e5*i)}return t}var a={clock:function(){return+new Date},zone:\"UTC\",entry:{abbrev:\"UTC\",offset:0,save:0},UTC:1,z:function(e,t,n,r){var o,a,u=this.entry.offset+this.entry.save,i=Math.abs(u/1e3),l=[],s=3600;for(o=0;o<3;o++)l.push((\"0\"+Math.floor(i/s)).slice(-2)),i%=s,s/=60;return\"^\"!=n||u?(\"^\"==n&&(r=3),3==r?(a=(a=l.join(\":\")).replace(/:00$/,\"\"),\"^\"!=n&&(a=a.replace(/:00$/,\"\"))):r?(a=l.slice(0,r+1).join(\":\"),\"^\"==n&&(a=a.replace(/:00$/,\"\"))):a=l.slice(0,2).join(\"\"),a=(a=(u<0?\"-\":\"+\")+a).replace(/([-+])(0)/,{_:\" $1\",\"-\":\"$1\"}[n]||\"$1$2\")):\"Z\"},\"%\":function(e){return\"%\"},n:function(e){return\"\\n\"},t:function(e){return\"\\t\"},U:function(e){return s(e,0)},W:function(e){return s(e,1)},V:function(e){return c(e)[0]},G:function(e){return c(e)[1]},g:function(e){return c(e)[1]%100},j:function(e){return Math.floor((e.getTime()-Date.UTC(e.getUTCFullYear(),0))/864e5)+1},s:function(e){return Math.floor(e.getTime()/1e3)},C:function(e){return Math.floor(e.getUTCFullYear()/100)},N:function(e){return e.getTime()%1e3*1e6},m:function(e){return e.getUTCMonth()+1},Y:function(e){return e.getUTCFullYear()},y:function(e){return e.getUTCFullYear()%100},H:function(e){return e.getUTCHours()},M:function(e){return e.getUTCMinutes()},S:function(e){return e.getUTCSeconds()},e:function(e){return e.getUTCDate()},d:function(e){return e.getUTCDate()},u:function(e){return e.getUTCDay()||7},w:function(e){return e.getUTCDay()},l:function(e){return e.getUTCHours()%12||12},I:function(e){return e.getUTCHours()%12||12},k:function(e){return e.getUTCHours()},Z:function(e){return this.entry.abbrev},a:function(e){return this[this.locale].day.abbrev[e.getUTCDay()]},A:function(e){return this[this.locale].day.full[e.getUTCDay()]},h:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},b:function(e){return this[this.locale].month.abbrev[e.getUTCMonth()]},B:function(e){return this[this.locale].month.full[e.getUTCMonth()]},P:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)].toLowerCase()},p:function(e){return this[this.locale].meridiem[Math.floor(e.getUTCHours()/12)]},R:function(e,t){return this.convert([t,\"%H:%M\"])},T:function(e,t){return this.convert([t,\"%H:%M:%S\"])},D:function(e,t){return this.convert([t,\"%m/%d/%y\"])},F:function(e,t){return this.convert([t,\"%Y-%m-%d\"])},x:function(e,t){return this.convert([t,this[this.locale].date])},r:function(e,t){return this.convert([t,this[this.locale].time12||\"%I:%M:%S\"])},X:function(e,t){return this.convert([t,this[this.locale].time24])},c:function(e,t){return this.convert([t,this[this.locale].dateTime])},convert:function(e){if(!e.length)return\"1.0.23\";var t,a,u,l,s,c=Object.create(this),f=[];for(t=0;t=o?Math.floor((n-o)/7)+1:0}function c(e){var t,n,r;return n=e.getUTCFullYear(),t=new Date(Date.UTC(n,0)).getUTCDay(),(r=s(e,1)+(t>1&&t<=4?1:0))?53!=r||4==t||3==t&&29==new Date(n,1,29).getDate()?[r,e.getUTCFullYear()]:[1,e.getUTCFullYear()+1]:(n=e.getUTCFullYear()-1,[r=4==(t=new Date(Date.UTC(n,0)).getUTCDay())||3==t&&29==new Date(n,1,29).getDate()?53:52,e.getUTCFullYear()-1])}return u=u.toLowerCase().split(\"|\"),\"delmHMSUWVgCIky\".replace(/./g,(function(e){a[e].pad=2})),a.N.pad=9,a.j.pad=3,a.k.style=\"_\",a.l.style=\"_\",a.e.style=\"_\",function(){return a.convert(arguments)}}))},\n", - " function _(r,t,n,e,i){e();const u=r(1),a=(0,u.__importStar)(r(153)),f=r(154),o=(0,u.__importDefault)(r(151)),l=r(21),s=r(8);function c(r,...t){return(0,f.sprintf)(r,...t)}function m(r,t,n){if((0,s.isNumber)(r)){return c((()=>{switch(!1){case Math.floor(r)!=r:return\"%d\";case!(Math.abs(r)>.1&&Math.abs(r)<1e3):return\"%0.3f\";default:return\"%0.3e\"}})(),r)}return`${r}`}function _(r,t,e){if(null==t)return m;if(null!=e&&r in e){const t=e[r];if((0,s.isString)(t)){if(t in n.DEFAULT_FORMATTERS)return n.DEFAULT_FORMATTERS[t];throw new Error(`Unknown tooltip field formatter type '${t}'`)}return function(r,n,e){return t.format(r,n,e)}}return n.DEFAULT_FORMATTERS.numeral}function p(r,t,n){const e=t.get_column(r);if(null==e)return null;if((0,s.isNumber)(n))return e[n];const i=e[n.index];if((0,s.isTypedArray)(i)||(0,s.isArray)(i)){if((0,s.isArray)(i[0])){return i[n.dim2][n.dim1]}return i[n.flat_index]}return i}function d(r,t,n,e){if(\"$\"==r[0]){return function(r,t){if(r in t)return t[r];throw new Error(`Unknown special variable '$${r}'`)}(r.substring(1),e)}return p(r.substring(1).replace(/[{}]/g,\"\"),t,n)}n.FormatterType=(0,l.Enum)(\"numeral\",\"printf\",\"datetime\"),n.DEFAULT_FORMATTERS={numeral:(r,t,n)=>a.format(r,t),datetime:(r,t,n)=>(0,o.default)(r,t),printf:(r,t,n)=>c(t,r)},n.sprintf=c,n.basic_formatter=m,n.get_formatter=_,n._get_column_value=p,n.get_value=d,n.replace_placeholders=function(r,t,n,e,i={},u){let a,f;if((0,s.isString)(r)?(a=r,f=!1):(a=r.html,f=!0),a=a.replace(/@\\$name/g,(r=>`@{${i.name}}`)),a=a.replace(/((?:\\$\\w+)|(?:@\\w+)|(?:@{(?:[^{}]+)}))(?:{([^{}]+)})?/g,((r,a,o)=>{const l=d(a,t,n,i);if(null==l)return u?u(\"???\"):\"???\";if(\"safe\"==o)return f=!0,`${l}`;const s=`${_(a,o,e)(l,o,i)}`;return u?u(s):s})),f){return[...(new DOMParser).parseFromString(a,\"text/html\").body.childNodes]}return a}},\n", - " function _(e,n,t,r,i){\n", - " /*!\n", - " * numbro.js\n", - " * version : 1.6.2\n", - " * author : Företagsplatsen AB\n", - " * license : MIT\n", - " * http://www.foretagsplatsen.se\n", - " */\n", - " var a,o={},l=o,u=\"en-US\",c=null,s=\"0,0\";void 0!==n&&n.exports;function f(e){this._value=e}function d(e){var n,t=\"\";for(n=0;n-1?function(e,n){var t,r,i,a;return t=(a=e.toString()).split(\"e\")[0],i=a.split(\"e\")[1],a=t.split(\".\")[0]+(r=t.split(\".\")[1]||\"\")+d(i-r.length),n>0&&(a+=\".\"+d(n)),a}(e,n):(t(e*o)/o).toFixed(n),r&&(i=new RegExp(\"0{1,\"+r+\"}$\"),a=a.replace(i,\"\")),a}function p(e,n,t){var r;return r=n.indexOf(\"$\")>-1?function(e,n,t){var r,i,a=n,l=a.indexOf(\"$\"),c=a.indexOf(\"(\"),s=a.indexOf(\"+\"),f=a.indexOf(\"-\"),d=\"\",h=\"\";-1===a.indexOf(\"$\")?\"infix\"===o[u].currency.position?(h=o[u].currency.symbol,o[u].currency.spaceSeparated&&(h=\" \"+h+\" \")):o[u].currency.spaceSeparated&&(d=\" \"):a.indexOf(\" $\")>-1?(d=\" \",a=a.replace(\" $\",\"\")):a.indexOf(\"$ \")>-1?(d=\" \",a=a.replace(\"$ \",\"\")):a=a.replace(\"$\",\"\");if(i=m(e,a,t,h),-1===n.indexOf(\"$\"))switch(o[u].currency.position){case\"postfix\":i.indexOf(\")\")>-1?((i=i.split(\"\")).splice(-1,0,d+o[u].currency.symbol),i=i.join(\"\")):i=i+d+o[u].currency.symbol;break;case\"infix\":break;case\"prefix\":i.indexOf(\"(\")>-1||i.indexOf(\"-\")>-1?(i=i.split(\"\"),r=Math.max(c,f)+1,i.splice(r,0,o[u].currency.symbol+d),i=i.join(\"\")):i=o[u].currency.symbol+d+i;break;default:throw Error('Currency position should be among [\"prefix\", \"infix\", \"postfix\"]')}else l<=1?i.indexOf(\"(\")>-1||i.indexOf(\"+\")>-1||i.indexOf(\"-\")>-1?(r=1,(l-1?((i=i.split(\"\")).splice(-1,0,d+o[u].currency.symbol),i=i.join(\"\")):i=i+d+o[u].currency.symbol;return i}(e,n,t):n.indexOf(\"%\")>-1?function(e,n,t){var r,i=\"\";e*=100,n.indexOf(\" %\")>-1?(i=\" \",n=n.replace(\" %\",\"\")):n=n.replace(\"%\",\"\");(r=m(e,n,t)).indexOf(\")\")>-1?((r=r.split(\"\")).splice(-1,0,i+\"%\"),r=r.join(\"\")):r=r+i+\"%\";return r}(e,n,t):n.indexOf(\":\")>-1?function(e){var n=Math.floor(e/60/60),t=Math.floor((e-60*n*60)/60),r=Math.round(e-60*n*60-60*t);return n+\":\"+(t<10?\"0\"+t:t)+\":\"+(r<10?\"0\"+r:r)}(e):m(e,n,t),r}function m(e,n,t,r){var i,a,l,s,f,d,p,m,x,g,O,b,w,y,M,v,$,B=!1,E=!1,F=!1,k=\"\",U=!1,N=!1,S=!1,j=!1,D=!1,C=\"\",L=\"\",T=Math.abs(e),K=[\"B\",\"KiB\",\"MiB\",\"GiB\",\"TiB\",\"PiB\",\"EiB\",\"ZiB\",\"YiB\"],G=[\"B\",\"KB\",\"MB\",\"GB\",\"TB\",\"PB\",\"EB\",\"ZB\",\"YB\"],I=\"\",P=!1,R=!1;if(0===e&&null!==c)return c;if(!isFinite(e))return\"\"+e;if(0===n.indexOf(\"{\")){var W=n.indexOf(\"}\");if(-1===W)throw Error('Format should also contain a \"}\"');b=n.slice(1,W),n=n.slice(W+1)}else b=\"\";if(n.indexOf(\"}\")===n.length-1){var Y=n.indexOf(\"{\");if(-1===Y)throw Error('Format should also contain a \"{\"');w=n.slice(Y+1,-1),n=n.slice(0,Y+1)}else w=\"\";if(v=null===($=-1===n.indexOf(\".\")?n.match(/([0-9]+).*/):n.match(/([0-9]+)\\..*/))?-1:$[1].length,-1!==n.indexOf(\"-\")&&(P=!0),n.indexOf(\"(\")>-1?(B=!0,n=n.slice(1,-1)):n.indexOf(\"+\")>-1&&(E=!0,n=n.replace(/\\+/g,\"\")),n.indexOf(\"a\")>-1){if(g=n.split(\".\")[0].match(/[0-9]+/g)||[\"0\"],g=parseInt(g[0],10),U=n.indexOf(\"aK\")>=0,N=n.indexOf(\"aM\")>=0,S=n.indexOf(\"aB\")>=0,j=n.indexOf(\"aT\")>=0,D=U||N||S||j,n.indexOf(\" a\")>-1?(k=\" \",n=n.replace(\" a\",\"\")):n=n.replace(\"a\",\"\"),p=0===(p=(f=Math.floor(Math.log(T)/Math.LN10)+1)%3)?3:p,g&&0!==T&&(d=Math.floor(Math.log(T)/Math.LN10)+1-g,m=3*~~((Math.min(g,f)-p)/3),T/=Math.pow(10,m),-1===n.indexOf(\".\")&&g>3))for(n+=\"[.]\",M=(M=0===d?0:3*~~(d/3)-d)<0?M+3:M,i=0;i=Math.pow(10,12)&&!D||j?(k+=o[u].abbreviations.trillion,e/=Math.pow(10,12)):T=Math.pow(10,9)&&!D||S?(k+=o[u].abbreviations.billion,e/=Math.pow(10,9)):T=Math.pow(10,6)&&!D||N?(k+=o[u].abbreviations.million,e/=Math.pow(10,6)):(T=Math.pow(10,3)&&!D||U)&&(k+=o[u].abbreviations.thousand,e/=Math.pow(10,3)))}if(n.indexOf(\"b\")>-1)for(n.indexOf(\" b\")>-1?(C=\" \",n=n.replace(\" b\",\"\")):n=n.replace(\"b\",\"\"),s=0;s<=K.length;s++)if(a=Math.pow(1024,s),l=Math.pow(1024,s+1),e>=a&&e0&&(e/=a);break}if(n.indexOf(\"d\")>-1)for(n.indexOf(\" d\")>-1?(C=\" \",n=n.replace(\" d\",\"\")):n=n.replace(\"d\",\"\"),s=0;s<=G.length;s++)if(a=Math.pow(1e3,s),l=Math.pow(1e3,s+1),e>=a&&e0&&(e/=a);break}if(n.indexOf(\"o\")>-1&&(n.indexOf(\" o\")>-1?(L=\" \",n=n.replace(\" o\",\"\")):n=n.replace(\"o\",\"\"),o[u].ordinal&&(L+=o[u].ordinal(e))),n.indexOf(\"[.]\")>-1&&(F=!0,n=n.replace(\"[.]\",\".\")),x=e.toString().split(\".\")[0],O=n.split(\".\")[1],y=n.indexOf(\",\"),O){if(x=(I=-1!==O.indexOf(\"*\")?h(e,e.toString().split(\".\")[1].length,t):O.indexOf(\"[\")>-1?h(e,(O=(O=O.replace(\"]\",\"\")).split(\"[\"))[0].length+O[1].length,t,O[1].length):h(e,O.length,t)).split(\".\")[0],I.split(\".\")[1].length)I=(r?k+r:o[u].delimiters.decimal)+I.split(\".\")[1];else I=\"\";F&&0===Number(I.slice(1))&&(I=\"\")}else x=h(e,null,t);return x.indexOf(\"-\")>-1&&(x=x.slice(1),R=!0),x.length-1&&(x=x.toString().replace(/(\\d)(?=(\\d{3})+(?!\\d))/g,\"$1\"+o[u].delimiters.thousands)),0===n.indexOf(\".\")&&(x=\"\"),b+(n.indexOf(\"(\")2)&&(o.length<2?!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u):1===o[0].length?!!o[0].match(/^\\d+$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/):!!o[0].match(/^\\d+.*\\d$/)&&!o[0].match(u)&&!!o[1].match(/^\\d+$/)))))},n.exports={format:function(e,n,t,r){return null!=t&&t!==a.culture()&&a.setCulture(t),p(Number(e),null!=n?n:s,null==r?Math.round:r)}}},\n", - " function _(e,n,t,r,i){!function(){\"use strict\";var e={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function n(e){return i(a(e),arguments)}function r(e,t){return n.apply(null,[e].concat(t||[]))}function i(t,r){var i,s,a,o,p,c,l,u,f,d=1,g=t.length,y=\"\";for(s=0;s=0),o.type){case\"b\":i=parseInt(i,10).toString(2);break;case\"c\":i=String.fromCharCode(parseInt(i,10));break;case\"d\":case\"i\":i=parseInt(i,10);break;case\"j\":i=JSON.stringify(i,null,o.width?parseInt(o.width):0);break;case\"e\":i=o.precision?parseFloat(i).toExponential(o.precision):parseFloat(i).toExponential();break;case\"f\":i=o.precision?parseFloat(i).toFixed(o.precision):parseFloat(i);break;case\"g\":i=o.precision?String(Number(i.toPrecision(o.precision))):parseFloat(i);break;case\"o\":i=(parseInt(i,10)>>>0).toString(8);break;case\"s\":i=String(i),i=o.precision?i.substring(0,o.precision):i;break;case\"t\":i=String(!!i),i=o.precision?i.substring(0,o.precision):i;break;case\"T\":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=o.precision?i.substring(0,o.precision):i;break;case\"u\":i=parseInt(i,10)>>>0;break;case\"v\":i=i.valueOf(),i=o.precision?i.substring(0,o.precision):i;break;case\"x\":i=(parseInt(i,10)>>>0).toString(16);break;case\"X\":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}e.json.test(o.type)?y+=i:(!e.number.test(o.type)||u&&!o.sign?f=\"\":(f=u?\"+\":\"-\",i=i.toString().replace(e.sign,\"\")),c=o.pad_char?\"0\"===o.pad_char?\"0\":o.pad_char.charAt(1):\" \",l=o.width-(f+i).length,p=o.width&&l>0?c.repeat(l):\"\",y+=o.align?f+i+p:\"0\"===c?f+p+i:p+f+i)}return y}var s=Object.create(null);function a(n){if(s[n])return s[n];for(var t,r=n,i=[],a=0;r;){if(null!==(t=e.text.exec(r)))i.push(t[0]);else if(null!==(t=e.modulo.exec(r)))i.push(\"%\");else{if(null===(t=e.placeholder.exec(r)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){a|=1;var o=[],p=t[2],c=[];if(null===(c=e.key.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(o.push(c[1]);\"\"!==(p=p.substring(c[0].length));)if(null!==(c=e.key_access.exec(p)))o.push(c[1]);else{if(null===(c=e.index_access.exec(p)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");o.push(c[1])}t[2]=o}else a|=2;if(3===a)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[n]=i}void 0!==t&&(t.sprintf=n,t.vsprintf=r),\"undefined\"!=typeof window&&(window.sprintf=n,window.vsprintf=r,\"function\"==typeof define&&define.amd&&define((function(){return{sprintf:n,vsprintf:r}})))}()},\n", - " function _(e,n,i,a,s){var r;a();const t=e(9),c=e(148),m=e(156),_=e(157),k=e(160),o=e(161),T=e(159);class w extends m.CompositeTicker{constructor(e){super(e)}}i.DatetimeTicker=w,r=w,w.__name__=\"DatetimeTicker\",r.override({num_minor_ticks:0,tickers:()=>[new c.AdaptiveTicker({mantissas:[1,2,5],base:10,min_interval:0,max_interval:500*T.ONE_MILLI,num_minor_ticks:0}),new c.AdaptiveTicker({mantissas:[1,2,5,10,15,20,30],base:60,min_interval:T.ONE_SECOND,max_interval:30*T.ONE_MINUTE,num_minor_ticks:0}),new c.AdaptiveTicker({mantissas:[1,2,4,6,8,12],base:24,min_interval:T.ONE_HOUR,max_interval:12*T.ONE_HOUR,num_minor_ticks:0}),new _.DaysTicker({days:(0,t.range)(1,32)}),new _.DaysTicker({days:(0,t.range)(1,31,3)}),new _.DaysTicker({days:[1,8,15,22]}),new _.DaysTicker({days:[1,15]}),new k.MonthsTicker({months:(0,t.range)(0,12,1)}),new k.MonthsTicker({months:(0,t.range)(0,12,2)}),new k.MonthsTicker({months:(0,t.range)(0,12,4)}),new k.MonthsTicker({months:(0,t.range)(0,12,6)}),new o.YearsTicker({})]})},\n", - " function _(t,e,i,r,s){var n;r();const _=t(149),a=t(9);class l extends _.ContinuousTicker{constructor(t){super(t)}get min_intervals(){return this.tickers.map((t=>t.get_min_interval()))}get max_intervals(){return this.tickers.map((t=>t.get_max_interval()))}get_min_interval(){return this.min_intervals[0]}get_max_interval(){return this.max_intervals[0]}get_best_ticker(t,e,i){const r=e-t,s=this.get_ideal_interval(t,e,i),n=[(0,a.sorted_index)(this.min_intervals,s)-1,(0,a.sorted_index)(this.max_intervals,s)],_=[this.min_intervals[n[0]],this.max_intervals[n[1]]].map((t=>Math.abs(i-r/t)));let l;if((0,a.is_empty)(_.filter((t=>!isNaN(t)))))l=this.tickers[0];else{const t=n[(0,a.argmin)(_)];l=this.tickers[t]}return l}get_interval(t,e,i){return this.get_best_ticker(t,e,i).get_interval(t,e,i)}get_ticks_no_defaults(t,e,i,r){return this.get_best_ticker(t,e,r).get_ticks_no_defaults(t,e,i,r)}}i.CompositeTicker=l,n=l,l.__name__=\"CompositeTicker\",n.define((({Array:t,Ref:e})=>({tickers:[t(e(_.ContinuousTicker)),[]]})))},\n", - " function _(t,e,n,s,o){var a;s();const i=t(158),r=t(159),c=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}initialize(){super.initialize();const t=this.days;t.length>1?this.interval=(t[1]-t[0])*r.ONE_DAY:this.interval=31*r.ONE_DAY}get_ticks_no_defaults(t,e,n,s){const o=function(t,e){const n=(0,r.last_month_no_later_than)(new Date(t)),s=(0,r.last_month_no_later_than)(new Date(e));s.setUTCMonth(s.getUTCMonth()+1);const o=[],a=n;for(;o.push((0,r.copy_date)(a)),a.setUTCMonth(a.getUTCMonth()+1),!(a>s););return o}(t,e),a=this.days,i=this.interval,_=(0,c.concat)(o.map((t=>((t,e)=>{const n=t.getUTCMonth(),s=[];for(const o of a){const a=(0,r.copy_date)(t);a.setUTCDate(o),new Date(a.getTime()+e/2).getUTCMonth()==n&&s.push(a)}return s})(t,i))));return{major:_.map((t=>t.getTime())).filter((n=>t<=n&&n<=e)),minor:[]}}}n.DaysTicker=_,a=_,_.__name__=\"DaysTicker\",a.define((({Int:t,Array:e})=>({days:[e(t),[]]}))),a.override({num_minor_ticks:0})},\n", - " function _(e,n,t,r,i){var a;r();const l=e(149);class s extends l.ContinuousTicker{constructor(e){super(e)}get_interval(e,n,t){return this.interval}get_min_interval(){return this.interval}get_max_interval(){return this.interval}}t.SingleIntervalTicker=s,a=s,s.__name__=\"SingleIntervalTicker\",a.define((({Number:e})=>({interval:[e]})))},\n", - " function _(t,n,e,_,E){function N(t){return new Date(t.getTime())}function O(t){const n=N(t);return n.setUTCDate(1),n.setUTCHours(0),n.setUTCMinutes(0),n.setUTCSeconds(0),n.setUTCMilliseconds(0),n}_(),e.ONE_MILLI=1,e.ONE_SECOND=1e3,e.ONE_MINUTE=60*e.ONE_SECOND,e.ONE_HOUR=60*e.ONE_MINUTE,e.ONE_DAY=24*e.ONE_HOUR,e.ONE_MONTH=30*e.ONE_DAY,e.ONE_YEAR=365*e.ONE_DAY,e.copy_date=N,e.last_month_no_later_than=O,e.last_year_no_later_than=function(t){const n=O(t);return n.setUTCMonth(0),n}},\n", - " function _(t,e,n,a,r){var s;a();const i=t(158),o=t(159),l=t(9);class _ extends i.SingleIntervalTicker{constructor(t){super(t)}initialize(){super.initialize();const t=this.months;t.length>1?this.interval=(t[1]-t[0])*o.ONE_MONTH:this.interval=12*o.ONE_MONTH}get_ticks_no_defaults(t,e,n,a){const r=function(t,e){const n=(0,o.last_year_no_later_than)(new Date(t)),a=(0,o.last_year_no_later_than)(new Date(e));a.setUTCFullYear(a.getUTCFullYear()+1);const r=[],s=n;for(;r.push((0,o.copy_date)(s)),s.setUTCFullYear(s.getUTCFullYear()+1),!(s>a););return r}(t,e),s=this.months;return{major:(0,l.concat)(r.map((t=>s.map((e=>{const n=(0,o.copy_date)(t);return n.setUTCMonth(e),n}))))).map((t=>t.getTime())).filter((n=>t<=n&&n<=e)),minor:[]}}}n.MonthsTicker=_,s=_,_.__name__=\"MonthsTicker\",s.define((({Int:t,Array:e})=>({months:[e(t),[]]})))},\n", - " function _(e,t,a,i,r){i();const n=e(147),_=e(158),s=e(159);class c extends _.SingleIntervalTicker{constructor(e){super(e)}initialize(){super.initialize(),this.interval=s.ONE_YEAR,this.basic_ticker=new n.BasicTicker({num_minor_ticks:0})}get_ticks_no_defaults(e,t,a,i){const r=(0,s.last_year_no_later_than)(new Date(e)).getUTCFullYear(),n=(0,s.last_year_no_later_than)(new Date(t)).getUTCFullYear();return{major:this.basic_ticker.get_ticks_no_defaults(r,n,a,i).major.map((e=>Date.UTC(e,0,1))).filter((a=>e<=a&&a<=t)),minor:[]}}}a.YearsTicker=c,c.__name__=\"YearsTicker\"},\n", - " function _(e,o,i,s,t){var n;s();const r=e(143),_=e(163),c=e(164);class a extends r.ContinuousAxisView{}i.LogAxisView=a,a.__name__=\"LogAxisView\";class u extends r.ContinuousAxis{constructor(e){super(e)}}i.LogAxis=u,n=u,u.__name__=\"LogAxis\",n.prototype.default_view=a,n.override({ticker:()=>new c.LogTicker,formatter:()=>new _.LogTickFormatter})},\n", - " function _(e,t,n,o,r){var i;o();const a=e(131),s=e(146),c=e(164),l=e(120),{abs:u,log:x,round:_}=Math;class p extends a.TickFormatter{constructor(e){super(e)}initialize(){super.initialize(),this.basic_formatter=new s.BasicTickFormatter}format_graphics(e,t){var n,o;if(0==e.length)return[];const r=null!==(o=null===(n=this.ticker)||void 0===n?void 0:n.base)&&void 0!==o?o:10,i=this._exponents(e,r);return null==i?this.basic_formatter.format_graphics(e,t):i.map((e=>{if(u(e)u(e)({ticker:[n(t(c.LogTicker)),null],min_exponent:[e,0]})))},\n", - " function _(t,o,e,s,n){var r;s();const i=t(148),a=t(9);class c extends i.AdaptiveTicker{constructor(t){super(t)}get_ticks_no_defaults(t,o,e,s){const n=this.num_minor_ticks,r=[],i=this.base,c=Math.log(t)/Math.log(i),f=Math.log(o)/Math.log(i),l=f-c;let h;if(isFinite(l))if(l<2){const e=this.get_interval(t,o,s),i=Math.floor(t/e),c=Math.ceil(o/e);if(h=(0,a.range)(i,c+1).filter((t=>0!=t)).map((t=>t*e)).filter((e=>t<=e&&e<=o)),n>0&&h.length>0){const t=e/n,o=(0,a.range)(0,n).map((o=>o*t));for(const t of o.slice(1))r.push(h[0]-t);for(const t of h)for(const e of o)r.push(t+e)}}else{const t=Math.ceil(.999999*c),o=Math.floor(1.000001*f),e=Math.ceil((o-t)/9);if(h=(0,a.range)(t-1,o+1,e).map((t=>i**t)),n>0&&h.length>0){const t=i**e/n,o=(0,a.range)(1,n+1).map((o=>o*t));for(const t of o)r.push(h[0]/t);r.push(h[0]);for(const t of h)for(const e of o)r.push(t*e)}}else h=[];return{major:h.filter((e=>t<=e&&e<=o)),minor:r.filter((e=>t<=e&&e<=o))}}}e.LogTicker=c,r=c,c.__name__=\"LogTicker\",r.override({mantissas:[1,5]})},\n", - " function _(e,r,t,i,a){var o;i();const s=e(128),c=e(145),n=e(166),_=e(167);class x extends s.AxisView{}t.MercatorAxisView=x,x.__name__=\"MercatorAxisView\";class d extends c.LinearAxis{constructor(e){super(e)}}t.MercatorAxis=d,o=d,d.__name__=\"MercatorAxis\",o.prototype.default_view=x,o.override({ticker:()=>new _.MercatorTicker({dimension:\"lat\"}),formatter:()=>new n.MercatorTickFormatter({dimension:\"lat\"})})},\n", - " function _(r,t,e,o,n){var i;o();const c=r(146),s=r(20),a=r(78);class l extends c.BasicTickFormatter{constructor(r){super(r)}doFormat(r,t){if(null==this.dimension)throw new Error(\"MercatorTickFormatter.dimension not configured\");if(0==r.length)return[];const e=r.length,o=new Array(e);if(\"lon\"==this.dimension)for(let n=0;n({dimension:[r(s.LatLon),null]})))},\n", - " function _(t,o,n,s,r){var e;s();const i=t(147),c=t(20),_=t(78);class a extends i.BasicTicker{constructor(t){super(t)}get_ticks_no_defaults(t,o,n,s){if(null==this.dimension)throw new Error(`${this}.dimension wasn't configured`);return[t,o]=(0,_.clip_mercator)(t,o,this.dimension),\"lon\"==this.dimension?this._get_ticks_lon(t,o,n,s):this._get_ticks_lat(t,o,n,s)}_get_ticks_lon(t,o,n,s){const[r]=_.wgs84_mercator.invert(t,n),[e,i]=_.wgs84_mercator.invert(o,n),c=super.get_ticks_no_defaults(r,e,n,s),a=[];for(const t of c.major)if((0,_.in_bounds)(t,\"lon\")){const[o]=_.wgs84_mercator.compute(t,i);a.push(o)}const m=[];for(const t of c.minor)if((0,_.in_bounds)(t,\"lon\")){const[o]=_.wgs84_mercator.compute(t,i);m.push(o)}return{major:a,minor:m}}_get_ticks_lat(t,o,n,s){const[,r]=_.wgs84_mercator.invert(n,t),[e,i]=_.wgs84_mercator.invert(n,o),c=super.get_ticks_no_defaults(r,i,n,s),a=[];for(const t of c.major)if((0,_.in_bounds)(t,\"lat\")){const[,o]=_.wgs84_mercator.compute(e,t);a.push(o)}const m=[];for(const t of c.minor)if((0,_.in_bounds)(t,\"lat\")){const[,o]=_.wgs84_mercator.compute(e,t);m.push(o)}return{major:a,minor:m}}}n.MercatorTicker=a,e=a,a.__name__=\"MercatorTicker\",e.define((({Nullable:t})=>({dimension:[t(c.LatLon),null]})))},\n", - " function _(e,i,r,c,k){c(),k(\"AdaptiveTicker\",e(148).AdaptiveTicker),k(\"BasicTicker\",e(147).BasicTicker),k(\"CategoricalTicker\",e(141).CategoricalTicker),k(\"CompositeTicker\",e(156).CompositeTicker),k(\"ContinuousTicker\",e(149).ContinuousTicker),k(\"DatetimeTicker\",e(155).DatetimeTicker),k(\"DaysTicker\",e(157).DaysTicker),k(\"FixedTicker\",e(169).FixedTicker),k(\"LogTicker\",e(164).LogTicker),k(\"MercatorTicker\",e(167).MercatorTicker),k(\"MonthsTicker\",e(160).MonthsTicker),k(\"SingleIntervalTicker\",e(158).SingleIntervalTicker),k(\"Ticker\",e(130).Ticker),k(\"YearsTicker\",e(161).YearsTicker),k(\"BinnedTicker\",e(170).BinnedTicker)},\n", - " function _(r,t,e,i,n){var s;i();const _=r(149);class c extends _.ContinuousTicker{constructor(r){super(r)}get_ticks_no_defaults(r,t,e,i){return{major:this.ticks,minor:this.minor_ticks}}get_interval(r,t,e){return 0}get_min_interval(){return 0}get_max_interval(){return 0}}e.FixedTicker=c,s=c,c.__name__=\"FixedTicker\",s.define((({Number:r,Array:t})=>({ticks:[t(r),[]],minor_ticks:[t(r),[]]})))},\n", - " function _(e,n,t,r,i){var o;r();const a=e(130),s=e(171),c=e(12);class m extends a.Ticker{constructor(e){super(e)}get_ticks(e,n,t,r){const{binning:i}=this.mapper.metrics,o=Math.max(0,(0,c.left_edge_index)(e,i)),a=Math.min((0,c.left_edge_index)(n,i)+1,i.length-1),s=[];for(let e=o;e<=a;e++)s.push(i[e]);const{num_major_ticks:m}=this,_=[],h=\"auto\"==m?s.length:m,l=Math.max(1,Math.floor(s.length/h));for(let e=0;e({mapper:[n(s.ScanningColorMapper)],num_major_ticks:[t(e,r),8]})))},\n", - " function _(n,e,i,r,o){r();const t=n(172),a=n(12);class c extends t.ContinuousColorMapper{constructor(n){super(n)}cmap(n,e,i,r,o){if(no.binning[o.binning.length-1])return r;return e[(0,a.left_edge_index)(n,o.binning)]}}i.ScanningColorMapper=c,c.__name__=\"ScanningColorMapper\"},\n", - " function _(t,e,o,n,s){var l;n();const c=t(173),i=t(175),a=t(9),h=t(8);class r extends c.ColorMapper{constructor(t){super(t),this._scan_data=null}connect_signals(){super.connect_signals();const t=()=>{for(const[t]of this.domain)this.connect(t.view.change,(()=>this.update_data())),this.connect(t.data_source.selected.change,(()=>this.update_data()))};this.connect(this.properties.domain.change,(()=>t())),t()}update_data(){const{domain:t,palette:e}=this,o=[...this._collect(t)];this._scan_data=this.scan(o,e.length),this.metrics_change.emit(),this.change.emit()}get metrics(){return null==this._scan_data&&this.update_data(),this._scan_data}*_collect(t){for(const[e,o]of t)for(const t of(0,h.isArray)(o)?o:[o]){let o=e.data_source.get_column(t);o=e.view.indices.select(o);const n=e.view.masked,s=e.data_source.selected.indices;let l;if(null!=n&&s.length>0?l=(0,a.intersection)([...n],s):null!=n?l=[...n]:s.length>0&&(l=s),null!=l&&(o=(0,a.map)(l,(t=>o[t]))),o.length>0&&!(0,h.isNumber)(o[0]))for(const t of o)yield*t;else yield*o}}_v_compute(t,e,o,n){const{nan_color:s}=n;let{low_color:l,high_color:c}=n;null==l&&(l=o[0]),null==c&&(c=o[o.length-1]);const{domain:i}=this,h=(0,a.is_empty)(i)?t:[...this._collect(i)];this._scan_data=this.scan(h,o.length),this.metrics_change.emit();for(let n=0,i=t.length;n({high:[a(t),null],low:[a(t),null],high_color:[a(n),null],low_color:[a(n),null],domain:[c(l(o(i.GlyphRenderer),s(e,c(e)))),[]]})))},\n", - " function _(e,r,t,n,o){var a;n();const c=e(174),i=e(15),_=e(24),l=e(22),s=e(27);function p(e){return(0,l.encode_rgba)((0,l.color2rgba)(e))}function u(e){const r=new Uint32Array(e.length);for(let t=0,n=e.length;te))),r}get rgba_mapper(){const e=this,r=u(this.palette),t=this._colors(p);return{v_compute(n){const o=new _.ColorArray(n.length);return e._v_compute(n,o,r,t),new Uint8ClampedArray((0,s.to_big_endian)(o).buffer)}}}_colors(e){return{nan_color:e(this.nan_color)}}}t.ColorMapper=h,a=h,h.__name__=\"ColorMapper\",a.define((({Color:e,Array:r})=>({palette:[r(e)],nan_color:[e,\"gray\"]})))},\n", - " function _(r,e,n,s,o){s();const p=r(56);class t extends p.Transform{constructor(r){super(r)}compute(r){throw new Error(\"mapping single values is not supported\")}}n.Mapper=t,t.__name__=\"Mapper\"},\n", - " function _(e,t,i,s,l){var h;s();const n=e(176),o=e(177),a=e(186),c=e(187),_=e(189),r=e(179),d=e(70),p=e(190),g=e(24),u=e(12),y=e(13),m=e(113),v=e(67),f={fill:{},line:{}},w={fill:{fill_alpha:.3,fill_color:\"grey\"},line:{line_alpha:.3,line_color:\"grey\"}},b={fill:{fill_alpha:.2},line:{}},V={fill:{fill_alpha:.2},line:{}};class x extends n.DataRendererView{get glyph_view(){return this.glyph}async lazy_initialize(){var e;await super.lazy_initialize();const t=this.model.glyph;this.glyph=await this.build_glyph_view(t);const i=\"fill\"in this.glyph.visuals,s=\"line\"in this.glyph.visuals,l=Object.assign({},t.attributes);function h(e){const h=(0,y.clone)(l);return i&&(0,y.extend)(h,e.fill),s&&(0,y.extend)(h,e.line),new t.constructor(h)}function n(e,t){return t instanceof r.Glyph?t:h(\"auto\"==t?e:{fill:{},line:{}})}delete l.id;let{selection_glyph:o,nonselection_glyph:a,hover_glyph:c,muted_glyph:_}=this.model;o=n(f,o),this.selection_glyph=await this.build_glyph_view(o),a=n(b,a),this.nonselection_glyph=await this.build_glyph_view(a),null!=c&&(this.hover_glyph=await this.build_glyph_view(c)),_=n(V,_),this.muted_glyph=await this.build_glyph_view(_);const d=n(w,\"auto\");this.decimated_glyph=await this.build_glyph_view(d),this.selection_glyph.set_base(this.glyph),this.nonselection_glyph.set_base(this.glyph),null===(e=this.hover_glyph)||void 0===e||e.set_base(this.glyph),this.muted_glyph.set_base(this.glyph),this.decimated_glyph.set_base(this.glyph),this.set_data()}async build_glyph_view(e){return(0,m.build_view)(e,{parent:this})}remove(){var e;this.glyph.remove(),this.selection_glyph.remove(),this.nonselection_glyph.remove(),null===(e=this.hover_glyph)||void 0===e||e.remove(),this.muted_glyph.remove(),this.decimated_glyph.remove(),super.remove()}connect_signals(){super.connect_signals();const e=()=>this.request_render(),t=()=>this.update_data();this.connect(this.model.change,e),this.connect(this.glyph.model.change,t),this.connect(this.selection_glyph.model.change,t),this.connect(this.nonselection_glyph.model.change,t),null!=this.hover_glyph&&this.connect(this.hover_glyph.model.change,t),this.connect(this.muted_glyph.model.change,t),this.connect(this.decimated_glyph.model.change,t),this.connect(this.model.data_source.change,t),this.connect(this.model.data_source.streaming,t),this.connect(this.model.data_source.patching,(e=>this.update_data(e))),this.connect(this.model.data_source.selected.change,e),this.connect(this.model.data_source._select,e),null!=this.hover_glyph&&this.connect(this.model.data_source.inspect,e),this.connect(this.model.properties.view.change,t),this.connect(this.model.view.properties.indices.change,t),this.connect(this.model.view.properties.masked.change,(()=>this.set_visuals())),this.connect(this.model.properties.visible.change,(()=>this.plot_view.invalidate_dataranges=!0));const{x_ranges:i,y_ranges:s}=this.plot_view.frame;for(const[,e]of i)e instanceof v.FactorRange&&this.connect(e.change,t);for(const[,e]of s)e instanceof v.FactorRange&&this.connect(e.change,t);const{transformchange:l,exprchange:h}=this.model.glyph;this.connect(l,t),this.connect(h,t)}_update_masked_indices(){const e=this.glyph.mask_data();return this.model.view.masked=e,e}update_data(e){this.set_data(e),this.request_render()}set_data(e){const t=this.model.data_source;this.all_indices=this.model.view.indices;const{all_indices:i}=this;this.glyph.set_data(t,i,e),this.set_visuals(),this._update_masked_indices();const{lod_factor:s}=this.plot_model,l=this.all_indices.count;this.decimated=new g.Indices(l);for(let e=0;e!n||n.is_empty()?[]:n.selected_glyph?this.model.view.convert_indices_from_subset(i):n.indices.length>0?n.indices:Object.keys(n.multiline_indices).map((e=>parseInt(e))))()),d=(0,u.filter)(i,(e=>r.has(t[e]))),{lod_threshold:p}=this.plot_model;let g,y,m;if(null!=this.model.document&&this.model.document.interactive_duration()>0&&!e&&null!=p&&t.length>p?(i=[...this.decimated],g=this.decimated_glyph,y=this.decimated_glyph,m=this.selection_glyph):(g=this.model.muted?this.muted_glyph:this.glyph,y=this.nonselection_glyph,m=this.selection_glyph),null!=this.hover_glyph&&d.length){const e=new Set(i);for(const t of d)e.delete(t);i=[...e]}if(h.length){const e={};for(const t of h)e[t]=!0;const l=new Array,n=new Array;if(this.glyph instanceof o.LineView)for(const i of t)null!=e[i]?l.push(i):n.push(i);else for(const s of i)null!=e[t[s]]?l.push(s):n.push(s);y.render(s,n),m.render(s,l),null!=this.hover_glyph&&(this.glyph instanceof o.LineView?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(d)):this.hover_glyph.render(s,d))}else if(this.glyph instanceof o.LineView)this.hover_glyph&&d.length?this.hover_glyph.render(s,this.model.view.convert_indices_from_subset(d)):g.render(s,t);else if(this.glyph instanceof a.PatchView||this.glyph instanceof c.HAreaView||this.glyph instanceof _.VAreaView)if(0==n.selected_glyphs.length||null==this.hover_glyph)g.render(s,t);else for(const e of n.selected_glyphs)e==this.glyph.model&&this.hover_glyph.render(s,t);else g.render(s,i),this.hover_glyph&&d.length&&this.hover_glyph.render(s,d);s.restore()}draw_legend(e,t,i,s,l,h,n,o){0!=this.glyph.data_size&&(null==o&&(o=this.model.get_reference_point(h,n)),this.glyph.draw_legend_for_index(e,{x0:t,x1:i,y0:s,y1:l},o))}hit_test(e){if(!this.model.visible)return null;const t=this.glyph.hit_test(e);return null==t?null:this.model.view.convert_selection_from_subset(t)}}i.GlyphRendererView=x,x.__name__=\"GlyphRendererView\";class G extends n.DataRenderer{constructor(e){super(e)}initialize(){super.initialize(),this.view.source!=this.data_source&&(this.view.source=this.data_source,this.view.compute_indices())}get_reference_point(e,t){if(null!=e){const i=this.data_source.get_column(e);if(null!=i)for(const[e,s]of Object.entries(this.view.indices_map))if(i[parseInt(e)]==t)return s}return 0}get_selection_manager(){return this.data_source.selection_manager}}i.GlyphRenderer=G,h=G,G.__name__=\"GlyphRenderer\",h.prototype.default_view=x,h.define((({Boolean:e,Auto:t,Or:i,Ref:s,Null:l,Nullable:h})=>({data_source:[s(d.ColumnarDataSource)],view:[s(p.CDSView),e=>new p.CDSView({source:e.data_source})],glyph:[s(r.Glyph)],hover_glyph:[h(s(r.Glyph)),null],nonselection_glyph:[i(s(r.Glyph),t,l),\"auto\"],selection_glyph:[i(s(r.Glyph),t,l),\"auto\"],muted_glyph:[i(s(r.Glyph),t,l),\"auto\"],muted:[e,!1]})))},\n", - " function _(e,r,t,a,n){var s;a();const c=e(41);class _ extends c.RendererView{get xscale(){return this.coordinates.x_scale}get yscale(){return this.coordinates.y_scale}}t.DataRendererView=_,_.__name__=\"DataRendererView\";class i extends c.Renderer{constructor(e){super(e)}get selection_manager(){return this.get_selection_manager()}}t.DataRenderer=i,s=i,i.__name__=\"DataRenderer\",s.override({level:\"glyph\"})},\n", - " function _(e,t,i,s,n){s();const l=e(1);var _;const r=e(178),o=e(184),a=(0,l.__importStar)(e(48)),h=(0,l.__importStar)(e(185)),c=e(72);class d extends r.XYGlyphView{async lazy_initialize(){await super.lazy_initialize();const{webgl:t}=this.renderer.plot_view.canvas_view;if(null==t?void 0:t.regl_wrapper.has_webgl){const{LineGL:i}=await Promise.resolve().then((()=>(0,l.__importStar)(e(421))));this.glglyph=new i(t.regl_wrapper,this)}}_render(e,t,i){const{sx:s,sy:n}=null!=i?i:this;let l=null;const _=e=>null!=l&&e-l!=1;let r=!0;e.beginPath();for(const i of t){const t=s[i],o=n[i];isFinite(t+o)?r||_(i)?(e.moveTo(t,o),r=!1):e.lineTo(t,o):r=!0,l=i}this.visuals.line.set_value(e),e.stroke()}_hit_point(e){const t=new c.Selection,i={x:e.sx,y:e.sy};let s=9999;const n=Math.max(2,this.line_width.value/2);for(let e=0,l=this.sx.length-1;e({x:[c.XCoordinateSpec,{field:\"x\"}],y:[c.YCoordinateSpec,{field:\"y\"}]})))},\n", - " function _(e,t,s,i,n){i();const r=e(1),a=(0,r.__importStar)(e(18)),o=(0,r.__importStar)(e(65)),_=(0,r.__importStar)(e(45)),l=e(42),c=e(53),h=e(19),d=e(24),u=e(8),f=e(180),p=e(12),g=e(26),y=e(181),x=e(67),v=e(72),{abs:b,ceil:m}=Math;class w extends l.View{constructor(){super(...arguments),this._index=null,this._data_size=null,this._nohit_warned=new Set}get renderer(){return this.parent}get has_webgl(){return null!=this.glglyph}get index(){const{_index:e}=this;if(null!=e)return e;throw new Error(`${this}.index_data() wasn't called`)}get data_size(){const{_data_size:e}=this;if(null!=e)return e;throw new Error(`${this}.set_data() wasn't called`)}initialize(){super.initialize(),this.visuals=new _.Visuals(this)}request_render(){this.parent.request_render()}get canvas(){return this.renderer.parent.canvas_view}render(e,t,s){var i;null!=this.glglyph&&(this.renderer.needs_webgl_blit=this.glglyph.render(e,t,null!==(i=this.base)&&void 0!==i?i:this),this.renderer.needs_webgl_blit)||this._render(e,t,null!=s?s:this.base)}has_finished(){return!0}notify_finished(){this.renderer.notify_finished()}_bounds(e){return e}bounds(){return this._bounds(this.index.bbox)}log_bounds(){const{x0:e,x1:t}=this.index.bounds(o.positive_x()),{y0:s,y1:i}=this.index.bounds(o.positive_y());return this._bounds({x0:e,y0:s,x1:t,y1:i})}get_anchor_point(e,t,[s,i]){switch(e){case\"center\":case\"center_center\":{const[e,n]=this.scenterxy(t,s,i);return{x:e,y:n}}default:return null}}scenterx(e,t,s){return this.scenterxy(e,t,s)[0]}scentery(e,t,s){return this.scenterxy(e,t,s)[1]}sdist(e,t,s,i=\"edge\",n=!1){const r=t.length,a=new d.ScreenArray(r),o=e.s_compute;if(\"center\"==i)for(let e=0;em(e))),a}draw_legend_for_index(e,t,s){}hit_test(e){switch(e.type){case\"point\":if(null!=this._hit_point)return this._hit_point(e);break;case\"span\":if(null!=this._hit_span)return this._hit_span(e);break;case\"rect\":if(null!=this._hit_rect)return this._hit_rect(e);break;case\"poly\":if(null!=this._hit_poly)return this._hit_poly(e)}return this._nohit_warned.has(e.type)||(h.logger.debug(`'${e.type}' selection not available for ${this.model.type}`),this._nohit_warned.add(e.type)),null}_hit_rect_against_index(e){const{sx0:t,sx1:s,sy0:i,sy1:n}=e,[r,a]=this.renderer.coordinates.x_scale.r_invert(t,s),[o,_]=this.renderer.coordinates.y_scale.r_invert(i,n),l=[...this.index.indices({x0:r,x1:a,y0:o,y1:_})];return new v.Selection({indices:l})}_project_data(){}*_iter_visuals(){for(const e of this.visuals)for(const t of e)(t instanceof a.VectorSpec||t instanceof a.ScalarSpec)&&(yield t)}set_base(e){e!=this&&e instanceof this.constructor&&(this.base=e)}_configure(e,t){Object.defineProperty(this,(0,u.isString)(e)?e:e.attr,Object.assign({configurable:!0,enumerable:!0},t))}set_visuals(e,t){var s;for(const s of this._iter_visuals()){const{base:i}=this;if(null!=i){const e=i.model.properties[s.attr];if(null!=e&&(0,g.is_equal)(s.get_value(),e.get_value())){this._configure(s,{get:()=>i[`${s.attr}`]});continue}}const n=s.uniform(e).select(t);this._configure(s,{value:n})}for(const e of this.visuals)e.update();this._set_visuals(),null===(s=this.glglyph)||void 0===s||s.set_visuals_changed()}_set_visuals(){}set_data(e,t,s){var i;const{x_source:n,y_source:r}=this.renderer.coordinates,o=new Set(this._iter_visuals());this._data_size=t.count;for(const s of this.model)if((s instanceof a.VectorSpec||s instanceof a.ScalarSpec)&&!o.has(s))if(s instanceof a.BaseCoordinateSpec){const i=s.array(e);let o=t.select(i);const _=\"x\"==s.dimension?n:r;if(_ instanceof x.FactorRange)if(s instanceof a.CoordinateSpec)o=_.v_synthetic(o);else if(s instanceof a.CoordinateSeqSpec)for(let e=0;e{const s=new Uint32Array(r);for(let a=0;a>1;t[s]>i?e=s:n=s+1}return t[n]}class r extends d.default{get boxes(){return this._boxes}search_indices(i,t,n,e){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let s=this._boxes.length-4;const d=[],x=new o.Indices(this.numItems);for(;void 0!==s;){const o=Math.min(s+4*this.nodeSize,h(s,this._levelBounds));for(let h=s;h>2],r=this._boxes[h+0],l=this._boxes[h+1],a=this._boxes[h+2],_=this._boxes[h+3];na||t>_||(s<4*this.numItems?x.set(o):d.push(o)))}s=d.pop()}return x}}r.__name__=\"_FlatBush\";class l{constructor(i){this.index=null,i>0&&(this.index=new r(i))}add_rect(i,t,n,e){var s;isFinite(i+t+n+e)?null===(s=this.index)||void 0===s||s.add(i,t,n,e):this.add_empty()}add_point(i,t){var n;isFinite(i+t)?null===(n=this.index)||void 0===n||n.add(i,t,i,t):this.add_empty()}add_empty(){var i;null===(i=this.index)||void 0===i||i.add(1/0,1/0,-1/0,-1/0)}finish(){var i;null===(i=this.index)||void 0===i||i.finish()}_normalize(i){let{x0:t,y0:n,x1:e,y1:s}=i;return t>e&&([t,e]=[e,t]),n>s&&([n,s]=[s,n]),{x0:t,y0:n,x1:e,y1:s}}get bbox(){if(null==this.index)return(0,x.empty)();{const{minX:i,minY:t,maxX:n,maxY:e}=this.index;return{x0:i,y0:t,x1:n,y1:e}}}indices(i){if(null==this.index)return new o.Indices(0);{const{x0:t,y0:n,x1:e,y1:s}=this._normalize(i);return this.index.search_indices(t,n,e,s)}}bounds(i){const t=(0,x.empty)();if(null==this.index)return t;const{boxes:n}=this.index;for(const e of this.indices(i)){const s=n[4*e+0],d=n[4*e+1],o=n[4*e+2],x=n[4*e+3];s>=i.x0&&st.x1&&(t.x1=o),d>=i.y0&&dt.y1&&(t.y1=x)}return t}}n.SpatialIndex=l,l.__name__=\"SpatialIndex\"},\n", - " function _(t,s,i,e,h){e();const n=(0,t(1).__importDefault)(t(183)),o=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class r{static from(t){if(!(t instanceof ArrayBuffer))throw new Error(\"Data must be an instance of ArrayBuffer.\");const[s,i]=new Uint8Array(t,0,2);if(251!==s)throw new Error(\"Data does not appear to be in a Flatbush format.\");if(i>>4!=3)throw new Error(`Got v${i>>4} data when expected v3.`);const[e]=new Uint16Array(t,2,1),[h]=new Uint32Array(t,4,1);return new r(h,e,o[15&i],t)}constructor(t,s=16,i=Float64Array,e){if(void 0===t)throw new Error(\"Missing required argument: numItems.\");if(isNaN(t)||t<=0)throw new Error(`Unpexpected numItems value: ${t}.`);this.numItems=+t,this.nodeSize=Math.min(Math.max(+s,2),65535);let h=t,r=h;this._levelBounds=[4*h];do{h=Math.ceil(h/this.nodeSize),r+=h,this._levelBounds.push(4*r)}while(1!==h);this.ArrayType=i||Float64Array,this.IndexArrayType=r<16384?Uint16Array:Uint32Array;const a=o.indexOf(this.ArrayType),_=4*r*this.ArrayType.BYTES_PER_ELEMENT;if(a<0)throw new Error(`Unexpected typed array class: ${i}.`);e&&e instanceof ArrayBuffer?(this.data=e,this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=4*r,this.minX=this._boxes[this._pos-4],this.minY=this._boxes[this._pos-3],this.maxX=this._boxes[this._pos-2],this.maxY=this._boxes[this._pos-1]):(this.data=new ArrayBuffer(8+_+r*this.IndexArrayType.BYTES_PER_ELEMENT),this._boxes=new this.ArrayType(this.data,8,4*r),this._indices=new this.IndexArrayType(this.data,8+_,r),this._pos=0,this.minX=1/0,this.minY=1/0,this.maxX=-1/0,this.maxY=-1/0,new Uint8Array(this.data,0,2).set([251,48+a]),new Uint16Array(this.data,2,1)[0]=s,new Uint32Array(this.data,4,1)[0]=t),this._queue=new n.default}add(t,s,i,e){const h=this._pos>>2;return this._indices[h]=h,this._boxes[this._pos++]=t,this._boxes[this._pos++]=s,this._boxes[this._pos++]=i,this._boxes[this._pos++]=e,tthis.maxX&&(this.maxX=i),e>this.maxY&&(this.maxY=e),h}finish(){if(this._pos>>2!==this.numItems)throw new Error(`Added ${this._pos>>2} items when expected ${this.numItems}.`);if(this.numItems<=this.nodeSize)return this._boxes[this._pos++]=this.minX,this._boxes[this._pos++]=this.minY,this._boxes[this._pos++]=this.maxX,void(this._boxes[this._pos++]=this.maxY);const t=this.maxX-this.minX,s=this.maxY-this.minY,i=new Uint32Array(this.numItems);for(let e=0;e>2]=t,this._boxes[this._pos++]=e,this._boxes[this._pos++]=h,this._boxes[this._pos++]=n,this._boxes[this._pos++]=o}}}search(t,s,i,e,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const o=[],r=[];for(;void 0!==n;){const a=Math.min(n+4*this.nodeSize,_(n,this._levelBounds));for(let _=n;_>2];ithis._boxes[_+2]||s>this._boxes[_+3]||(n<4*this.numItems?(void 0===h||h(a))&&r.push(a):o.push(a)))}n=o.pop()}return r}neighbors(t,s,i=1/0,e=1/0,h){if(this._pos!==this._boxes.length)throw new Error(\"Data not yet indexed - call index.finish().\");let n=this._boxes.length-4;const o=this._queue,r=[],x=e*e;for(;void 0!==n;){const e=Math.min(n+4*this.nodeSize,_(n,this._levelBounds));for(let i=n;i>2],r=a(t,this._boxes[i],this._boxes[i+2]),_=a(s,this._boxes[i+1],this._boxes[i+3]),x=r*r+_*_;n<4*this.numItems?(void 0===h||h(e))&&o.push(-e-1,x):o.push(e,x)}for(;o.length&&o.peek()<0;){if(o.peekValue()>x)return o.clear(),r;if(r.push(-o.pop()-1),r.length===i)return o.clear(),r}n=o.pop()}return o.clear(),r}}function a(t,s,i){return t>1;s[h]>t?e=h:i=h+1}return s[i]}function x(t,s,i,e,h,n){if(Math.floor(e/n)>=Math.floor(h/n))return;const o=t[e+h>>1];let r=e-1,a=h+1;for(;;){do{r++}while(t[r]o);if(r>=a)break;d(t,s,i,r,a)}x(t,s,i,e,a,n),x(t,s,i,a+1,h,n)}function d(t,s,i,e,h){const n=t[e];t[e]=t[h],t[h]=n;const o=4*e,r=4*h,a=s[o],_=s[o+1],x=s[o+2],d=s[o+3];s[o]=s[r],s[o+1]=s[r+1],s[o+2]=s[r+2],s[o+3]=s[r+3],s[r]=a,s[r+1]=_,s[r+2]=x,s[r+3]=d;const m=i[e];i[e]=i[h],i[h]=m}function m(t,s){let i=t^s,e=65535^i,h=65535^(t|s),n=t&(65535^s),o=i|e>>1,r=i>>1^i,a=h>>1^e&n>>1^h,_=i&h>>1^n>>1^n;i=o,e=r,h=a,n=_,o=i&i>>2^e&e>>2,r=i&e>>2^e&(i^e)>>2,a^=i&h>>2^e&n>>2,_^=e&h>>2^(i^e)&n>>2,i=o,e=r,h=a,n=_,o=i&i>>4^e&e>>4,r=i&e>>4^e&(i^e)>>4,a^=i&h>>4^e&n>>4,_^=e&h>>4^(i^e)&n>>4,i=o,e=r,h=a,n=_,a^=i&h>>8^e&n>>8,_^=e&h>>8^(i^e)&n>>8,i=a^a>>1,e=_^_>>1;let x=t^s,d=e|65535^(x|i);return x=16711935&(x|x<<8),x=252645135&(x|x<<4),x=858993459&(x|x<<2),x=1431655765&(x|x<<1),d=16711935&(d|d<<8),d=252645135&(d|d<<4),d=858993459&(d|d<<2),d=1431655765&(d|d<<1),(d<<1|x)>>>0}i.default=r},\n", - " function _(s,t,i,h,e){h();i.default=class{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(s,t){let i=this.length++;for(this.ids[i]=s,this.values[i]=t;i>0;){const s=i-1>>1,h=this.values[s];if(t>=h)break;this.ids[i]=this.ids[s],this.values[i]=h,i=s}this.ids[i]=s,this.values[i]=t}pop(){if(0===this.length)return;const s=this.ids[0];if(this.length--,this.length>0){const s=this.ids[0]=this.ids[this.length],t=this.values[0]=this.values[this.length],i=this.length>>1;let h=0;for(;h=t)break;this.ids[h]=e,this.values[h]=l,h=s}this.ids[h]=s,this.values[h]=t}return s}peek(){if(0!==this.length)return this.ids[0]}peekValue(){if(0!==this.length)return this.values[0]}}},\n", - " function _(e,n,a,t,i){t();const l=(0,e(1).__importStar)(e(185));function r(e,n,{x0:a,x1:t,y0:i,y1:l},r){n.save(),n.beginPath(),n.moveTo(a,(i+l)/2),n.lineTo(t,(i+l)/2),e.line.apply(n,r),n.restore()}function c(e,n,{x0:a,x1:t,y0:i,y1:l},r){var c,o;const _=.1*Math.abs(t-a),s=.1*Math.abs(l-i),y=a+_,p=t-_,g=i+s,h=l-s;n.beginPath(),n.rect(y,g,p-y,h-g),e.fill.apply(n,r),null===(c=e.hatch)||void 0===c||c.apply(n,r),null===(o=e.line)||void 0===o||o.apply(n,r)}a.generic_line_scalar_legend=function(e,n,{x0:a,x1:t,y0:i,y1:l}){n.save(),n.beginPath(),n.moveTo(a,(i+l)/2),n.lineTo(t,(i+l)/2),e.line.apply(n),n.restore()},a.generic_line_vector_legend=r,a.generic_line_legend=r,a.generic_area_scalar_legend=function(e,n,{x0:a,x1:t,y0:i,y1:l}){var r,c;const o=.1*Math.abs(t-a),_=.1*Math.abs(l-i),s=a+o,y=t-o,p=i+_,g=l-_;n.beginPath(),n.rect(s,p,y-s,g-p),e.fill.apply(n),null===(r=e.hatch)||void 0===r||r.apply(n),null===(c=e.line)||void 0===c||c.apply(n)},a.generic_area_vector_legend=c,a.generic_area_legend=c,a.line_interpolation=function(e,n,a,t,i,r){const{sx:c,sy:o}=n;let _,s,y,p;\"point\"==n.type?([y,p]=e.yscale.r_invert(o-1,o+1),[_,s]=e.xscale.r_invert(c-1,c+1)):\"v\"==n.direction?([y,p]=e.yscale.r_invert(o,o),[_,s]=[Math.min(a-1,i-1),Math.max(a+1,i+1)]):([_,s]=e.xscale.r_invert(c,c),[y,p]=[Math.min(t-1,r-1),Math.max(t+1,r+1)]);const{x:g,y:h}=l.check_2_segments_intersect(_,y,s,p,a,t,i,r);return[g,h]}},\n", - " function _(t,n,e,i,r){function s(t,n){return(t.x-n.x)**2+(t.y-n.y)**2}function o(t,n,e){const i=s(n,e);if(0==i)return s(t,n);const r=((t.x-n.x)*(e.x-n.x)+(t.y-n.y)*(e.y-n.y))/i;if(r<0)return s(t,n);if(r>1)return s(t,e);return s(t,{x:n.x+r*(e.x-n.x),y:n.y+r*(e.y-n.y)})}i(),e.point_in_poly=function(t,n,e,i){let r=!1,s=e[e.length-1],o=i[i.length-1];for(let u=0;u0&&_<1&&h>0&&h<1,x:t+_*(e-t),y:n+_*(i-n)}}}},\n", - " function _(t,s,e,i,a){i();const l=t(1);var n;const _=t(178),o=t(184),c=(0,l.__importStar)(t(185)),h=(0,l.__importStar)(t(48)),r=t(72);class p extends _.XYGlyphView{_render(t,s,e){const{sx:i,sy:a}=null!=e?e:this;let l=!0;t.beginPath();for(const e of s){const s=i[e],n=a[e];isFinite(s+n)?l?(t.moveTo(s,n),l=!1):t.lineTo(s,n):(t.closePath(),l=!0)}t.closePath(),this.visuals.fill.apply(t),this.visuals.hatch.apply(t),this.visuals.line.apply(t)}draw_legend_for_index(t,s,e){(0,o.generic_area_scalar_legend)(this.visuals,t,s)}_hit_point(t){const s=new r.Selection;return c.point_in_poly(t.sx,t.sy,this.sx,this.sy)&&(s.add_to_selected_glyphs(this.model),s.view=this),s}}e.PatchView=p,p.__name__=\"PatchView\";class d extends _.XYGlyph{constructor(t){super(t)}}e.Patch=d,n=d,d.__name__=\"Patch\",n.prototype.default_view=p,n.mixins([h.LineScalar,h.FillScalar,h.HatchScalar])},\n", - " function _(e,t,s,i,r){i();const n=e(1);var a;const _=e(24),h=e(188),o=(0,n.__importStar)(e(185)),l=(0,n.__importStar)(e(18)),c=e(72);class d extends h.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r=0;t--)e.lineTo(r[t],n[t]);e.closePath(),this.visuals.fill.apply(e),this.visuals.hatch.apply(e)}_hit_point(e){const t=this.sy.length,s=new _.ScreenArray(2*t),i=new _.ScreenArray(2*t);for(let e=0,r=t;e({x1:[l.XCoordinateSpec,{field:\"x1\"}],x2:[l.XCoordinateSpec,{field:\"x2\"}],y:[l.YCoordinateSpec,{field:\"y\"}]})))},\n", - " function _(e,a,r,_,s){_();const n=e(1);var c;const i=e(179),l=e(184),t=(0,n.__importStar)(e(48));class o extends i.GlyphView{draw_legend_for_index(e,a,r){(0,l.generic_area_scalar_legend)(this.visuals,e,a)}}r.AreaView=o,o.__name__=\"AreaView\";class d extends i.Glyph{constructor(e){super(e)}}r.Area=d,c=d,d.__name__=\"Area\",c.mixins([t.FillScalar,t.HatchScalar])},\n", - " function _(e,t,s,i,r){i();const n=e(1);var a;const _=e(24),h=e(188),o=(0,n.__importStar)(e(185)),l=(0,n.__importStar)(e(18)),c=e(72);class y extends h.AreaView{_index_data(e){const{min:t,max:s}=Math,{data_size:i}=this;for(let r=0;r=0;t--)e.lineTo(i[t],n[t]);e.closePath(),this.visuals.fill.apply(e),this.visuals.hatch.apply(e)}scenterxy(e){return[this.sx[e],(this.sy1[e]+this.sy2[e])/2]}_hit_point(e){const t=this.sx.length,s=new _.ScreenArray(2*t),i=new _.ScreenArray(2*t);for(let e=0,r=t;e({x:[l.XCoordinateSpec,{field:\"x\"}],y1:[l.YCoordinateSpec,{field:\"y1\"}],y2:[l.YCoordinateSpec,{field:\"y2\"}]})))},\n", - " function _(e,i,s,t,n){var c;t();const o=e(53),r=e(24),u=e(191),_=e(70);class a extends o.Model{constructor(e){super(e)}initialize(){super.initialize(),this.compute_indices()}connect_signals(){super.connect_signals(),this.connect(this.properties.filters.change,(()=>this.compute_indices()));const e=()=>{const e=()=>this.compute_indices();null!=this.source&&(this.connect(this.source.change,e),this.source instanceof _.ColumnarDataSource&&(this.connect(this.source.streaming,e),this.connect(this.source.patching,e)))};let i=null!=this.source;i?e():this.connect(this.properties.source.change,(()=>{i||(e(),i=!0)}))}compute_indices(){var e;const{source:i}=this;if(null==i)return;const s=null!==(e=i.get_length())&&void 0!==e?e:1,t=r.Indices.all_set(s);for(const e of this.filters)t.intersect(e.compute_indices(i));this.indices=t,this._indices=[...t],this.indices_map_to_subset()}indices_map_to_subset(){this.indices_map={};for(let e=0;ethis._indices[e]))}convert_selection_to_subset(e){return e.map((e=>this.indices_map[e]))}convert_indices_from_subset(e){return e.map((e=>this._indices[e]))}}s.CDSView=a,c=a,a.__name__=\"CDSView\",c.define((({Array:e,Ref:i})=>({filters:[e(i(u.Filter)),[]],source:[i(_.ColumnarDataSource)]}))),c.internal((({Int:e,Dict:i,Ref:s,Nullable:t})=>({indices:[s(r.Indices)],indices_map:[i(e),{}],masked:[t(s(r.Indices)),null]})))},\n", - " function _(e,t,n,s,c){s();const o=e(53);class r extends o.Model{constructor(e){super(e)}}n.Filter=r,r.__name__=\"Filter\"},\n", - " function _(t,r,a,e,c){e(),c(\"BasicTickFormatter\",t(146).BasicTickFormatter),c(\"CategoricalTickFormatter\",t(142).CategoricalTickFormatter),c(\"DatetimeTickFormatter\",t(150).DatetimeTickFormatter),c(\"FuncTickFormatter\",t(193).FuncTickFormatter),c(\"LogTickFormatter\",t(163).LogTickFormatter),c(\"MercatorTickFormatter\",t(166).MercatorTickFormatter),c(\"NumeralTickFormatter\",t(194).NumeralTickFormatter),c(\"PrintfTickFormatter\",t(195).PrintfTickFormatter),c(\"TickFormatter\",t(131).TickFormatter)},\n", - " function _(t,e,n,s,r){var c;s();const i=t(131),a=t(13),u=t(34);class o extends i.TickFormatter{constructor(t){super(t)}get names(){return(0,a.keys)(this.args)}get values(){return(0,a.values)(this.args)}_make_func(){const t=(0,u.use_strict)(this.code);return new Function(\"tick\",\"index\",\"ticks\",...this.names,t)}doFormat(t,e){const n=this._make_func().bind({});return t.map(((t,e,s)=>`${n(t,e,s,...this.values)}`))}}n.FuncTickFormatter=o,c=o,o.__name__=\"FuncTickFormatter\",c.define((({Unknown:t,String:e,Dict:n})=>({args:[n(t),{}],code:[e,\"\"]})))},\n", - " function _(r,n,t,o,e){o();var a;const u=(0,r(1).__importStar)(r(153)),c=r(131),i=r(20);class s extends c.TickFormatter{constructor(r){super(r)}get _rounding_fn(){switch(this.rounding){case\"round\":case\"nearest\":return Math.round;case\"floor\":case\"rounddown\":return Math.floor;case\"ceil\":case\"roundup\":return Math.ceil}}doFormat(r,n){const{format:t,language:o,_rounding_fn:e}=this;return r.map((r=>u.format(r,t,o,e)))}}t.NumeralTickFormatter=s,a=s,s.__name__=\"NumeralTickFormatter\",a.define((({String:r})=>({format:[r,\"0,0\"],language:[r,\"en\"],rounding:[i.RoundingFunction,\"round\"]})))},\n", - " function _(t,r,n,o,a){var e;o();const i=t(131),s=t(152);class c extends i.TickFormatter{constructor(t){super(t)}doFormat(t,r){return t.map((t=>(0,s.sprintf)(this.format,t)))}}n.PrintfTickFormatter=c,e=c,c.__name__=\"PrintfTickFormatter\",e.define((({String:t})=>({format:[t,\"%s\"]})))},\n", - " function _(r,o,a,p,e){p(),e(\"CategoricalColorMapper\",r(197).CategoricalColorMapper),e(\"CategoricalMarkerMapper\",r(199).CategoricalMarkerMapper),e(\"CategoricalPatternMapper\",r(200).CategoricalPatternMapper),e(\"ContinuousColorMapper\",r(172).ContinuousColorMapper),e(\"ColorMapper\",r(173).ColorMapper),e(\"LinearColorMapper\",r(201).LinearColorMapper),e(\"LogColorMapper\",r(202).LogColorMapper),e(\"ScanningColorMapper\",r(171).ScanningColorMapper),e(\"EqHistColorMapper\",r(203).EqHistColorMapper)},\n", - " function _(t,o,r,a,e){var c;a();const s=t(198),l=t(173),n=t(67);class _ extends l.ColorMapper{constructor(t){super(t)}_v_compute(t,o,r,{nan_color:a}){(0,s.cat_v_compute)(t,this.factors,r,o,this.start,this.end,a)}}r.CategoricalColorMapper=_,c=_,_.__name__=\"CategoricalColorMapper\",c.define((({Number:t,Nullable:o})=>({factors:[n.FactorSeq],start:[t,0],end:[o(t),null]})))},\n", - " function _(n,t,e,l,i){l();const c=n(12),u=n(8);function f(n,t){if(n.length!=t.length)return!1;for(let e=0,l=n.length;ef(n,h)))),s=_<0||_>=e.length?r:e[_],l[g]=s}}},\n", - " function _(e,r,a,t,s){var c;t();const l=e(198),n=e(67),u=e(174),o=e(20);class p extends u.Mapper{constructor(e){super(e)}v_compute(e){const r=new Array(e.length);return(0,l.cat_v_compute)(e,this.factors,this.markers,r,this.start,this.end,this.default_value),r}}a.CategoricalMarkerMapper=p,c=p,p.__name__=\"CategoricalMarkerMapper\",c.define((({Number:e,Array:r,Nullable:a})=>({factors:[n.FactorSeq],markers:[r(o.MarkerType)],start:[e,0],end:[a(e),null],default_value:[o.MarkerType,\"circle\"]})))},\n", - " function _(t,e,a,r,n){var s;r();const c=t(198),l=t(67),p=t(174),u=t(20);class o extends p.Mapper{constructor(t){super(t)}v_compute(t){const e=new Array(t.length);return(0,c.cat_v_compute)(t,this.factors,this.patterns,e,this.start,this.end,this.default_value),e}}a.CategoricalPatternMapper=o,s=o,o.__name__=\"CategoricalPatternMapper\",s.define((({Number:t,Array:e,Nullable:a})=>({factors:[l.FactorSeq],patterns:[e(u.HatchPatternType)],start:[t,0],end:[a(t),null],default_value:[u.HatchPatternType,\" \"]})))},\n", - " function _(n,r,o,t,a){t();const e=n(172),i=n(12);class s extends e.ContinuousColorMapper{constructor(n){super(n)}scan(n,r){const o=null!=this.low?this.low:(0,i.min)(n),t=null!=this.high?this.high:(0,i.max)(n);return{max:t,min:o,norm_factor:1/(t-o),normed_interval:1/r}}cmap(n,r,o,t,a){const e=r.length-1;if(n==a.max)return r[e];const i=(n-a.min)*a.norm_factor,s=Math.floor(i/a.normed_interval);return s<0?o:s>e?t:r[s]}}o.LinearColorMapper=s,s.__name__=\"LinearColorMapper\"},\n", - " function _(o,t,n,r,l){r();const a=o(172),s=o(12);class e extends a.ContinuousColorMapper{constructor(o){super(o)}scan(o,t){const n=null!=this.low?this.low:(0,s.min)(o),r=null!=this.high?this.high:(0,s.max)(o);return{max:r,min:n,scale:t/(Math.log(r)-Math.log(n))}}cmap(o,t,n,r,l){const a=t.length-1;if(o>l.max)return r;if(o==l.max)return t[a];if(oa&&(e=a),t[e]}}n.LogColorMapper=e,e.__name__=\"LogColorMapper\"},\n", - " function _(n,t,e,i,o){var s;i();const r=n(171),a=n(12),l=n(9),c=n(19);class h extends r.ScanningColorMapper{constructor(n){super(n)}scan(n,t){const e=null!=this.low?this.low:(0,a.min)(n),i=null!=this.high?this.high:(0,a.max)(n),o=this.bins,s=(0,l.linspace)(e,i,o+1),r=(0,a.bin_counts)(n,s),h=new Array(o);for(let n=0,t=s.length;nn/p));let m=t-1,f=[],M=0,_=2*t;for(;m!=t&&M<4&&0!=m;){const n=_/m;if(n>1e3)break;_=Math.round(Math.max(t*n,t));const e=(0,l.range)(0,_),i=(0,a.map)(u,(n=>n*(_-1)));f=(0,a.interpolate)(e,i,h);m=(0,l.uniq)(f).length-1,M++}if(0==m){f=[e,i];for(let n=0;n({bins:[n,65536]})))},\n", - " function _(a,e,l,c,n){c(),n(\"CategoricalScale\",a(62).CategoricalScale),n(\"ContinuousScale\",a(60).ContinuousScale),n(\"LinearScale\",a(59).LinearScale),n(\"LinearInterpolationScale\",a(205).LinearInterpolationScale),n(\"LogScale\",a(61).LogScale),n(\"Scale\",a(55).Scale)},\n", - " function _(e,r,n,t,a){var i;t();const s=e(55),o=e(59),c=e(12);class _ extends s.Scale{constructor(e){super(e)}connect_signals(){super.connect_signals();const{source_range:e,target_range:r}=this.properties;this.on_change([e,r],(()=>{this.linear_scale=new o.LinearScale({source_range:this.source_range,target_range:this.target_range})}))}get s_compute(){throw new Error(\"not implemented\")}get s_invert(){throw new Error(\"not implemented\")}compute(e){return e}v_compute(e){const{binning:r}=this,{start:n,end:t}=this.source_range,a=n,i=t,s=r.length,o=(t-n)/(s-1),_=new Float64Array(s);for(let e=0;e{if(ei)return i;const n=(0,c.left_edge_index)(e,r);if(-1==n)return a;if(n>=s-1)return i;const t=r[n],o=(e-t)/(r[n+1]-t),l=_[n];return l+o*(_[n+1]-l)}));return this.linear_scale.v_compute(l)}invert(e){return e}v_invert(e){return new Float64Array(e)}}n.LinearInterpolationScale=_,i=_,_.__name__=\"LinearInterpolationScale\",i.internal((({Arrayable:e,Ref:r})=>({binning:[e],linear_scale:[r(o.LinearScale),e=>new o.LinearScale({source_range:e.source_range,target_range:e.target_range})]})))},\n", - " function _(a,n,e,g,R){g(),R(\"DataRange\",a(64).DataRange),R(\"DataRange1d\",a(63).DataRange1d),R(\"FactorRange\",a(67).FactorRange),R(\"Range\",a(57).Range),R(\"Range1d\",a(58).Range1d)},\n", - " function _(a,o,i,t,e){t();var n=a(124);e(\"Sizeable\",n.Sizeable),e(\"SizingPolicy\",n.SizingPolicy);var c=a(125);e(\"Layoutable\",c.Layoutable),e(\"LayoutItem\",c.LayoutItem);var r=a(208);e(\"HStack\",r.HStack),e(\"VStack\",r.VStack);var l=a(209);e(\"Grid\",l.Grid),e(\"Row\",l.Row),e(\"Column\",l.Column);var S=a(210);e(\"ContentBox\",S.ContentBox),e(\"VariadicBox\",S.VariadicBox)},\n", - " function _(t,e,h,i,r){i();const n=t(125),o=t(65);class s extends n.Layoutable{constructor(){super(...arguments),this.children=[]}*[Symbol.iterator](){yield*this.children}}h.Stack=s,s.__name__=\"Stack\";class c extends s{_measure(t){let e=0,h=0;for(const t of this.children){const i=t.measure({width:0,height:0});e+=i.width,h=Math.max(h,i.height)}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const h=this.absolute?t.top:0;let i=this.absolute?t.left:0;const{height:r}=t;for(const t of this.children){const{width:e}=t.measure({width:0,height:0});t.set_geometry(new o.BBox({left:i,width:e,top:h,height:r})),i+=e}}}h.HStack=c,c.__name__=\"HStack\";class a extends s{_measure(t){let e=0,h=0;for(const t of this.children){const i=t.measure({width:0,height:0});e=Math.max(e,i.width),h+=i.height}return{width:e,height:h}}_set_geometry(t,e){super._set_geometry(t,e);const h=this.absolute?t.left:0;let i=this.absolute?t.top:0;const{width:r}=t;for(const t of this.children){const{height:e}=t.measure({width:0,height:0});t.set_geometry(new o.BBox({top:i,height:e,left:h,width:r})),i+=e}}}h.VStack=a,a.__name__=\"VStack\";class l extends n.Layoutable{constructor(){super(...arguments),this.children=[]}*[Symbol.iterator](){yield*this.children}_measure(t){const{width_policy:e,height_policy:h}=this.sizing,{min:i,max:r}=Math;let n=0,o=0;for(const e of this.children){const{width:h,height:i}=e.measure(t);n=r(n,h),o=r(o,i)}return{width:(()=>{const{width:h}=this.sizing;if(t.width==1/0)return\"fixed\"==e&&null!=h?h:n;switch(e){case\"fixed\":return null!=h?h:n;case\"min\":return n;case\"fit\":return null!=h?i(t.width,h):t.width;case\"max\":return null!=h?r(t.width,h):t.width}})(),height:(()=>{const{height:e}=this.sizing;if(t.height==1/0)return\"fixed\"==h&&null!=e?e:o;switch(h){case\"fixed\":return null!=e?e:o;case\"min\":return o;case\"fit\":return null!=e?i(t.height,e):t.height;case\"max\":return null!=e?r(t.height,e):t.height}})()}}_set_geometry(t,e){super._set_geometry(t,e);const h=this.absolute?t:t.relative(),{left:i,right:r,top:n,bottom:s}=h,c=Math.round(h.vcenter),a=Math.round(h.hcenter);for(const e of this.children){const{margin:h,halign:l,valign:d}=e.sizing,{width:u,height:g,inner:_}=e.measure(t),w=(()=>{switch(`${d}_${l}`){case\"start_start\":return new o.BBox({left:i+h.left,top:n+h.top,width:u,height:g});case\"start_center\":return new o.BBox({hcenter:a,top:n+h.top,width:u,height:g});case\"start_end\":return new o.BBox({right:r-h.right,top:n+h.top,width:u,height:g});case\"center_start\":return new o.BBox({left:i+h.left,vcenter:c,width:u,height:g});case\"center_center\":return new o.BBox({hcenter:a,vcenter:c,width:u,height:g});case\"center_end\":return new o.BBox({right:r-h.right,vcenter:c,width:u,height:g});case\"end_start\":return new o.BBox({left:i+h.left,bottom:s-h.bottom,width:u,height:g});case\"end_center\":return new o.BBox({hcenter:a,bottom:s-h.bottom,width:u,height:g});case\"end_end\":return new o.BBox({right:r-h.right,bottom:s-h.bottom,width:u,height:g})}})(),m=null==_?w:new o.BBox({left:w.left+_.left,top:w.top+_.top,right:w.right-_.right,bottom:w.bottom-_.bottom});e.set_geometry(w,m)}}}h.NodeLayout=l,l.__name__=\"NodeLayout\"},\n", - " function _(t,i,s,e,o){e();const n=t(124),l=t(125),r=t(8),h=t(65),c=t(9),{max:a,round:g}=Math;class p{constructor(t){this.def=t,this._map=new Map}get(t){let i=this._map.get(t);return void 0===i&&(i=this.def(),this._map.set(t,i)),i}apply(t,i){const s=this.get(t);this._map.set(t,i(s))}}p.__name__=\"DefaultMap\";class f{constructor(){this._items=[],this._nrows=0,this._ncols=0}get nrows(){return this._nrows}get ncols(){return this._ncols}add(t,i){const{r1:s,c1:e}=t;this._nrows=a(this._nrows,s+1),this._ncols=a(this._ncols,e+1),this._items.push({span:t,data:i})}at(t,i){return this._items.filter((({span:s})=>s.r0<=t&&t<=s.r1&&s.c0<=i&&i<=s.c1)).map((({data:t})=>t))}row(t){return this._items.filter((({span:i})=>i.r0<=t&&t<=i.r1)).map((({data:t})=>t))}col(t){return this._items.filter((({span:i})=>i.c0<=t&&t<=i.c1)).map((({data:t})=>t))}foreach(t){for(const{span:i,data:s}of this._items)t(i,s)}map(t){const i=new f;for(const{span:s,data:e}of this._items)i.add(s,t(s,e));return i}}f.__name__=\"Container\";class _ extends l.Layoutable{constructor(t=[]){super(),this.items=t,this.rows=\"auto\",this.cols=\"auto\",this.spacing=0}*[Symbol.iterator](){for(const{layout:t}of this.items)yield t}is_width_expanding(){if(super.is_width_expanding())return!0;if(\"fixed\"==this.sizing.width_policy)return!1;const{cols:t}=this._state;return(0,c.some)(t,(t=>\"max\"==t.policy))}is_height_expanding(){if(super.is_height_expanding())return!0;if(\"fixed\"==this.sizing.height_policy)return!1;const{rows:t}=this._state;return(0,c.some)(t,(t=>\"max\"==t.policy))}_init(){var t,i,s,e;super._init();const o=new f;for(const{layout:t,row:i,col:s,row_span:e,col_span:n}of this.items)if(t.sizing.visible){const l=i,r=s,h=i+(null!=e?e:1)-1,c=s+(null!=n?n:1)-1;o.add({r0:l,c0:r,r1:h,c1:c},t)}const{nrows:n,ncols:l}=o,h=new Array(n);for(let s=0;s{var t;const i=(0,r.isPlainObject)(this.rows)?null!==(t=this.rows[s])&&void 0!==t?t:this.rows[\"*\"]:this.rows;return null==i?{policy:\"auto\"}:(0,r.isNumber)(i)?{policy:\"fixed\",height:i}:(0,r.isString)(i)?{policy:i}:i})(),n=null!==(t=e.align)&&void 0!==t?t:\"auto\";if(\"fixed\"==e.policy)h[s]={policy:\"fixed\",height:e.height,align:n};else if(\"min\"==e.policy)h[s]={policy:\"min\",align:n};else if(\"fit\"==e.policy||\"max\"==e.policy)h[s]={policy:e.policy,flex:null!==(i=e.flex)&&void 0!==i?i:1,align:n};else{if(\"auto\"!=e.policy)throw new Error(\"unrechable\");(0,c.some)(o.row(s),(t=>t.is_height_expanding()))?h[s]={policy:\"max\",flex:1,align:n}:h[s]={policy:\"min\",align:n}}}const a=new Array(l);for(let t=0;t{var i;const s=(0,r.isPlainObject)(this.cols)?null!==(i=this.cols[t])&&void 0!==i?i:this.cols[\"*\"]:this.cols;return null==s?{policy:\"auto\"}:(0,r.isNumber)(s)?{policy:\"fixed\",width:s}:(0,r.isString)(s)?{policy:s}:s})(),n=null!==(s=i.align)&&void 0!==s?s:\"auto\";if(\"fixed\"==i.policy)a[t]={policy:\"fixed\",width:i.width,align:n};else if(\"min\"==i.policy)a[t]={policy:\"min\",align:n};else if(\"fit\"==i.policy||\"max\"==i.policy)a[t]={policy:i.policy,flex:null!==(e=i.flex)&&void 0!==e?e:1,align:n};else{if(\"auto\"!=i.policy)throw new Error(\"unrechable\");(0,c.some)(o.col(t),(t=>t.is_width_expanding()))?a[t]={policy:\"max\",flex:1,align:n}:a[t]={policy:\"min\",align:n}}}const[g,p]=(0,r.isNumber)(this.spacing)?[this.spacing,this.spacing]:this.spacing;this._state={items:o,nrows:n,ncols:l,rows:h,cols:a,rspacing:g,cspacing:p}}_measure_totals(t,i){const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state;return{height:(0,c.sum)(t)+(s-1)*o,width:(0,c.sum)(i)+(e-1)*n}}_measure_cells(t){const{items:i,nrows:s,ncols:e,rows:o,cols:l,rspacing:r,cspacing:h}=this._state,c=new Array(s);for(let t=0;t{const{r0:e,c0:f,r1:d,c1:u}=i,w=(d-e)*r,m=(u-f)*h;let y=0;for(let i=e;i<=d;i++)y+=t(i,f).height;y+=w;let x=0;for(let i=f;i<=u;i++)x+=t(e,i).width;x+=m;const b=s.measure({width:x,height:y});_.add(i,{layout:s,size_hint:b});const z=new n.Sizeable(b).grow_by(s.sizing.margin);z.height-=w,z.width-=m;const v=[];for(let t=e;t<=d;t++){const i=o[t];\"fixed\"==i.policy?z.height-=i.height:v.push(t)}if(z.height>0){const t=g(z.height/v.length);for(const i of v)c[i]=a(c[i],t)}const j=[];for(let t=f;t<=u;t++){const i=l[t];\"fixed\"==i.policy?z.width-=i.width:j.push(t)}if(z.width>0){const t=g(z.width/j.length);for(const i of j)p[i]=a(p[i],t)}}));return{size:this._measure_totals(c,p),row_heights:c,col_widths:p,size_hints:_}}_measure_grid(t){const{nrows:i,ncols:s,rows:e,cols:o,rspacing:n,cspacing:l}=this._state,r=this._measure_cells(((t,i)=>{const s=e[t],n=o[i];return{width:\"fixed\"==n.policy?n.width:1/0,height:\"fixed\"==s.policy?s.height:1/0}}));let h;h=\"fixed\"==this.sizing.height_policy&&null!=this.sizing.height?this.sizing.height:t.height!=1/0&&this.is_height_expanding()?t.height:r.size.height;let c,p=0;for(let t=0;t0)for(let t=0;ti?i:e,t--}}}c=\"fixed\"==this.sizing.width_policy&&null!=this.sizing.width?this.sizing.width:t.width!=1/0&&this.is_width_expanding()?t.width:r.size.width;let f=0;for(let t=0;t0)for(let t=0;ts?s:o,t--}}}const{row_heights:_,col_widths:d,size_hints:u}=this._measure_cells(((t,i)=>({width:r.col_widths[i],height:r.row_heights[t]})));return{size:this._measure_totals(_,d),row_heights:_,col_widths:d,size_hints:u}}_measure(t){const{size:i}=this._measure_grid(t);return i}_set_geometry(t,i){super._set_geometry(t,i);const{nrows:s,ncols:e,rspacing:o,cspacing:n}=this._state,{row_heights:l,col_widths:r,size_hints:c}=this._measure_grid(t),f=this._state.rows.map(((t,i)=>Object.assign(Object.assign({},t),{top:0,height:l[i],get bottom(){return this.top+this.height}}))),_=this._state.cols.map(((t,i)=>Object.assign(Object.assign({},t),{left:0,width:r[i],get right(){return this.left+this.width}}))),d=c.map(((t,i)=>Object.assign(Object.assign({},i),{outer:new h.BBox,inner:new h.BBox})));for(let i=0,e=this.absolute?t.top:0;i{const{layout:r,size_hint:c}=l,{sizing:a}=r,{width:p,height:d}=c,u=function(t,i){let s=(i-t)*n;for(let e=t;e<=i;e++)s+=_[e].width;return s}(i,e),w=function(t,i){let s=(i-t)*o;for(let e=t;e<=i;e++)s+=f[e].height;return s}(t,s),m=i==e&&\"auto\"!=_[i].align?_[i].align:a.halign,y=t==s&&\"auto\"!=f[t].align?f[t].align:a.valign;let x=_[i].left;\"start\"==m?x+=a.margin.left:\"center\"==m?x+=g((u-p)/2):\"end\"==m&&(x+=u-a.margin.right-p);let b=f[t].top;\"start\"==y?b+=a.margin.top:\"center\"==y?b+=g((w-d)/2):\"end\"==y&&(b+=w-a.margin.bottom-d),l.outer=new h.BBox({left:x,top:b,width:p,height:d})}));const u=f.map((()=>({start:new p((()=>0)),end:new p((()=>0))}))),w=_.map((()=>({start:new p((()=>0)),end:new p((()=>0))})));d.foreach((({r0:t,c0:i,r1:s,c1:e},{size_hint:o,outer:n})=>{const{inner:l}=o;null!=l&&(u[t].start.apply(n.top,(t=>a(t,l.top))),u[s].end.apply(f[s].bottom-n.bottom,(t=>a(t,l.bottom))),w[i].start.apply(n.left,(t=>a(t,l.left))),w[e].end.apply(_[e].right-n.right,(t=>a(t,l.right))))})),d.foreach((({r0:t,c0:i,r1:s,c1:e},o)=>{const{size_hint:n,outer:l}=o,r=t=>{const i=this.absolute?l:l.relative(),s=i.left+t.left,e=i.top+t.top,o=i.right-t.right,n=i.bottom-t.bottom;return new h.BBox({left:s,top:e,right:o,bottom:n})};if(null!=n.inner){let h=r(n.inner);if(!1!==n.align){const o=u[t].start.get(l.top),n=u[s].end.get(f[s].bottom-l.bottom),c=w[i].start.get(l.left),a=w[e].end.get(_[e].right-l.right);try{h=r({top:o,bottom:n,left:c,right:a})}catch(t){}}o.inner=h}else o.inner=l})),d.foreach(((t,{layout:i,outer:s,inner:e})=>{i.set_geometry(s,e)}))}}s.Grid=_,_.__name__=\"Grid\";class d extends _{constructor(t){super(),this.items=t.map(((t,i)=>({layout:t,row:0,col:i}))),this.rows=\"fit\"}}s.Row=d,d.__name__=\"Row\";class u extends _{constructor(t){super(),this.items=t.map(((t,i)=>({layout:t,row:i,col:0}))),this.cols=\"fit\"}}s.Column=u,u.__name__=\"Column\"},\n", - " function _(e,t,s,n,i){n();const a=e(125),c=e(124),o=e(43);class r extends a.ContentLayoutable{constructor(e){super(),this.content_size=(0,o.unsized)(e,(()=>new c.Sizeable((0,o.size)(e))))}_content_size(){return this.content_size}}s.ContentBox=r,r.__name__=\"ContentBox\";class _ extends a.Layoutable{constructor(e){super(),this.el=e}_measure(e){const t=new c.Sizeable(e).bounded_to(this.sizing.size);return(0,o.sized)(this.el,t,(()=>{const e=new c.Sizeable((0,o.content_size)(this.el)),{border:t,padding:s}=(0,o.extents)(this.el);return e.grow_by(t).grow_by(s).map(Math.ceil)}))}}s.VariadicBox=_,_.__name__=\"VariadicBox\";class h extends _{constructor(e){super(e),this._cache=new Map}_measure(e){const{width:t,height:s}=e,n=`${t},${s}`;let i=this._cache.get(n);return null==i&&(i=super._measure(e),this._cache.set(n,i)),i}invalidate_cache(){this._cache.clear()}}s.CachedVariadicBox=h,h.__name__=\"CachedVariadicBox\"},\n", - " function _(t,e,i,h,o){h();const s=t(124),r=t(125),n=t(65);class g extends r.Layoutable{constructor(){super(...arguments),this.min_border={left:0,top:0,right:0,bottom:0},this.padding={left:0,top:0,right:0,bottom:0}}*[Symbol.iterator](){yield this.top_panel,yield this.bottom_panel,yield this.left_panel,yield this.right_panel,yield this.center_panel}_measure(t){t=new s.Sizeable({width:\"fixed\"==this.sizing.width_policy||t.width==1/0?this.sizing.width:t.width,height:\"fixed\"==this.sizing.height_policy||t.height==1/0?this.sizing.height:t.height});const e=this.left_panel.measure({width:0,height:t.height}),i=Math.max(e.width,this.min_border.left)+this.padding.left,h=this.right_panel.measure({width:0,height:t.height}),o=Math.max(h.width,this.min_border.right)+this.padding.right,r=this.top_panel.measure({width:t.width,height:0}),n=Math.max(r.height,this.min_border.top)+this.padding.top,g=this.bottom_panel.measure({width:t.width,height:0}),a=Math.max(g.height,this.min_border.bottom)+this.padding.bottom,d=new s.Sizeable(t).shrink_by({left:i,right:o,top:n,bottom:a}),l=this.center_panel.measure(d);return{width:i+l.width+o,height:n+l.height+a,inner:{left:i,right:o,top:n,bottom:a},align:(()=>{const{width_policy:t,height_policy:e}=this.center_panel.sizing;return\"fixed\"!=t&&\"fixed\"!=e})()}}_set_geometry(t,e){super._set_geometry(t,e),this.center_panel.set_geometry(e);const i=this.left_panel.measure({width:0,height:t.height}),h=this.right_panel.measure({width:0,height:t.height}),o=this.top_panel.measure({width:t.width,height:0}),s=this.bottom_panel.measure({width:t.width,height:0}),{left:r,top:g,right:a,bottom:d}=e;this.top_panel.set_geometry(new n.BBox({left:r,right:a,bottom:g,height:o.height})),this.bottom_panel.set_geometry(new n.BBox({left:r,right:a,top:d,height:s.height})),this.left_panel.set_geometry(new n.BBox({top:g,bottom:d,right:r,width:i.width})),this.right_panel.set_geometry(new n.BBox({top:g,bottom:d,left:a,width:h.width}))}}i.BorderLayout=g,g.__name__=\"BorderLayout\"},\n", - " function _(t,e,i,s,l){s();const n=t(1);var o;const a=t(119),_=t(10),d=t(20),h=t(120),r=t(123),u=(0,n.__importStar)(t(48));class c extends a.TextAnnotationView{update_layout(){const{panel:t}=this;this.layout=null!=t?new r.SideLayout(t,(()=>this.get_size()),!1):void 0}_get_size(){const{text:t}=this.model,e=new h.TextBox({text:t}),{angle:i,angle_units:s}=this.model;e.angle=(0,_.resolve_angle)(i,s),e.visuals=this.visuals.text.values();const{width:l,height:n}=e.size();return{width:l,height:n}}_render(){const{angle:t,angle_units:e}=this.model,i=(0,_.resolve_angle)(t,e),s=null!=this.layout?this.layout:this.plot_view.frame,l=this.coordinates.x_scale,n=this.coordinates.y_scale;let o=\"data\"==this.model.x_units?l.compute(this.model.x):s.bbox.xview.compute(this.model.x),a=\"data\"==this.model.y_units?n.compute(this.model.y):s.bbox.yview.compute(this.model.y);o+=this.model.x_offset,a-=this.model.y_offset;(\"canvas\"==this.model.render_mode?this._canvas_text.bind(this):this._css_text.bind(this))(this.layer.ctx,this.model.text,o,a,i)}}i.LabelView=c,c.__name__=\"LabelView\";class x extends a.TextAnnotation{constructor(t){super(t)}}i.Label=x,o=x,x.__name__=\"Label\",o.prototype.default_view=c,o.mixins([u.Text,[\"border_\",u.Line],[\"background_\",u.Fill]]),o.define((({Number:t,String:e,Angle:i})=>({x:[t],x_units:[d.SpatialUnits,\"data\"],y:[t],y_units:[d.SpatialUnits,\"data\"],text:[e,\"\"],angle:[i,0],angle_units:[d.AngleUnits,\"rad\"],x_offset:[t,0],y_offset:[t,0]}))),o.override({background_fill_color:null,border_line_color:null})},\n", - " function _(t,e,s,i,l){i();const o=t(1);var a;const r=t(69),n=(0,o.__importStar)(t(48)),d=t(20),_=t(43),c=t(120),h=(0,o.__importStar)(t(18)),u=t(11);class v extends r.DataAnnotationView{set_data(t){var e;if(super.set_data(t),null===(e=this.els)||void 0===e||e.forEach((t=>(0,_.remove)(t))),\"css\"==this.model.render_mode){const t=this.els=[...this.text].map((()=>(0,_.div)({style:{display:\"none\"}})));for(const e of t)this.plot_view.canvas_view.add_overlay(e)}else delete this.els}remove(){var t;null===(t=this.els)||void 0===t||t.forEach((t=>(0,_.remove)(t))),super.remove()}_rerender(){\"css\"==this.model.render_mode?this.render():this.request_render()}map_data(){const{x_scale:t,y_scale:e}=this.coordinates,s=null!=this.layout?this.layout:this.plot_view.frame;this.sx=\"data\"==this.model.x_units?t.v_compute(this._x):s.bbox.xview.v_compute(this._x),this.sy=\"data\"==this.model.y_units?e.v_compute(this._y):s.bbox.yview.v_compute(this._y)}paint(){const t=\"canvas\"==this.model.render_mode?this._v_canvas_text.bind(this):this._v_css_text.bind(this),{ctx:e}=this.layer;for(let s=0,i=this.text.length;s{switch(this.visuals.text.text_align.get(e)){case\"left\":return[\"left\",\"0%\"];case\"center\":return[\"center\",\"-50%\"];case\"right\":return[\"right\",\"-100%\"]}})(),[d,c]=(()=>{switch(this.visuals.text.text_baseline.get(e)){case\"top\":return[\"top\",\"0%\"];case\"middle\":return[\"center\",\"-50%\"];case\"bottom\":return[\"bottom\",\"-100%\"];default:return[\"center\",\"-50%\"]}})();let h=`translate(${n}, ${c})`;o&&(h+=`rotate(${o}rad)`),a.style.transformOrigin=`${r} ${d}`,a.style.transform=h,this.layout,this.visuals.background_fill.doit&&(this.visuals.background_fill.set_vectorize(t,e),a.style.backgroundColor=t.fillStyle),this.visuals.border_line.doit&&(this.visuals.border_line.set_vectorize(t,e),a.style.borderStyle=t.lineDash.length<2?\"solid\":\"dashed\",a.style.borderWidth=`${t.lineWidth}px`,a.style.borderColor=t.strokeStyle),(0,_.display)(a)}}s.LabelSetView=v,v.__name__=\"LabelSetView\";class x extends r.DataAnnotation{constructor(t){super(t)}}s.LabelSet=x,a=x,x.__name__=\"LabelSet\",a.prototype.default_view=v,a.mixins([n.TextVector,[\"border_\",n.LineVector],[\"background_\",n.FillVector]]),a.define((()=>({x:[h.XCoordinateSpec,{field:\"x\"}],y:[h.YCoordinateSpec,{field:\"y\"}],x_units:[d.SpatialUnits,\"data\"],y_units:[d.SpatialUnits,\"data\"],text:[h.StringSpec,{field:\"text\"}],angle:[h.AngleSpec,0],x_offset:[h.NumberSpec,{value:0}],y_offset:[h.NumberSpec,{value:0}],render_mode:[d.RenderMode,\"canvas\"]}))),a.override({background_fill_color:null,border_line_color:null})},\n", - " function _(t,e,i,l,s){l();const n=t(1);var o;const h=t(40),a=t(215),_=t(20),r=(0,n.__importStar)(t(48)),d=t(15),c=t(123),g=t(121),m=t(65),b=t(9),f=t(8),u=t(11);class x extends h.AnnotationView{update_layout(){const{panel:t}=this;this.layout=null!=t?new c.SideLayout(t,(()=>this.get_size())):void 0}cursor(t,e){return\"none\"==this.model.click_policy?null:\"pointer\"}get legend_padding(){return null!=this.model.border_line_color?this.model.padding:0}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render())),this.connect(this.model.item_change,(()=>this.request_render()))}compute_legend_bbox(){const t=this.model.get_legend_names(),{glyph_height:e,glyph_width:i}=this.model,{label_height:l,label_width:s}=this.model;this.max_label_height=(0,b.max)([(0,g.font_metrics)(this.visuals.label_text.font_value()).height,l,e]);const{ctx:n}=this.layer;n.save(),this.visuals.label_text.set_value(n),this.text_widths=new Map;for(const e of t)this.text_widths.set(e,(0,b.max)([n.measureText(e).width,s]));this.visuals.title_text.set_value(n),this.title_height=this.model.title?(0,g.font_metrics)(this.visuals.title_text.font_value()).height+this.model.title_standoff:0,this.title_width=this.model.title?n.measureText(this.model.title).width:0,n.restore();const o=Math.max((0,b.max)([...this.text_widths.values()]),0),h=this.model.margin,{legend_padding:a}=this,_=this.model.spacing,{label_standoff:r}=this.model;let d,c;if(\"vertical\"==this.model.orientation)d=t.length*this.max_label_height+Math.max(t.length-1,0)*_+2*a+this.title_height,c=(0,b.max)([o+i+r+2*a,this.title_width+2*a]);else{let e=2*a+Math.max(t.length-1,0)*_;for(const[,t]of this.text_widths)e+=(0,b.max)([t,s])+i+r;c=(0,b.max)([this.title_width+2*a,e]),d=this.max_label_height+this.title_height+2*a}const x=null!=this.layout?this.layout:this.plot_view.frame,[p,w]=x.bbox.ranges,{location:v}=this.model;let y,k;if((0,f.isString)(v))switch(v){case\"top_left\":y=p.start+h,k=w.start+h;break;case\"top\":case\"top_center\":y=(p.end+p.start)/2-c/2,k=w.start+h;break;case\"top_right\":y=p.end-h-c,k=w.start+h;break;case\"bottom_right\":y=p.end-h-c,k=w.end-h-d;break;case\"bottom\":case\"bottom_center\":y=(p.end+p.start)/2-c/2,k=w.end-h-d;break;case\"bottom_left\":y=p.start+h,k=w.end-h-d;break;case\"left\":case\"center_left\":y=p.start+h,k=(w.end+w.start)/2-d/2;break;case\"center\":case\"center_center\":y=(p.end+p.start)/2-c/2,k=(w.end+w.start)/2-d/2;break;case\"right\":case\"center_right\":y=p.end-h-c,k=(w.end+w.start)/2-d/2}else if((0,f.isArray)(v)&&2==v.length){const[t,e]=v;y=x.bbox.xview.compute(t),k=x.bbox.yview.compute(e)-d}else(0,u.unreachable)();return new m.BBox({left:y,top:k,width:c,height:d})}interactive_bbox(){return this.compute_legend_bbox()}interactive_hit(t,e){return this.interactive_bbox().contains(t,e)}on_hit(t,e){let i;const{glyph_width:l}=this.model,{legend_padding:s}=this,n=this.model.spacing,{label_standoff:o}=this.model;let h=i=s;const a=this.compute_legend_bbox(),_=\"vertical\"==this.model.orientation;for(const r of this.model.items){const d=r.get_labels_list_from_label_prop();for(const c of d){const d=a.x+h,g=a.y+i+this.title_height;let b,f;[b,f]=_?[a.width-2*s,this.max_label_height]:[this.text_widths.get(c)+l+o,this.max_label_height];if(new m.BBox({left:d,top:g,width:b,height:f}).contains(t,e)){switch(this.model.click_policy){case\"hide\":for(const t of r.renderers)t.visible=!t.visible;break;case\"mute\":for(const t of r.renderers)t.muted=!t.muted}return!0}_?i+=this.max_label_height+n:h+=this.text_widths.get(c)+l+o+n}}return!1}_render(){if(0==this.model.items.length)return;if(!(0,b.some)(this.model.items,(t=>t.visible)))return;for(const t of this.model.items)t.legend=this.model;const{ctx:t}=this.layer,e=this.compute_legend_bbox();t.save(),this._draw_legend_box(t,e),this._draw_legend_items(t,e),this._draw_title(t,e),t.restore()}_draw_legend_box(t,e){t.beginPath(),t.rect(e.x,e.y,e.width,e.height),this.visuals.background_fill.apply(t),this.visuals.border_line.apply(t)}_draw_legend_items(t,e){const{glyph_width:i,glyph_height:l}=this.model,{legend_padding:s}=this,n=this.model.spacing,{label_standoff:o}=this.model;let h=s,a=s;const _=\"vertical\"==this.model.orientation;for(const r of this.model.items){if(!r.visible)continue;const d=r.get_labels_list_from_label_prop(),c=r.get_field_from_label_prop();if(0==d.length)continue;const g=(()=>{switch(this.model.click_policy){case\"none\":return!0;case\"hide\":return(0,b.every)(r.renderers,(t=>t.visible));case\"mute\":return(0,b.every)(r.renderers,(t=>!t.muted))}})();for(const m of d){const d=e.x+h,b=e.y+a+this.title_height,f=d+i,u=b+l;_?a+=this.max_label_height+n:h+=this.text_widths.get(m)+i+o+n,this.visuals.label_text.set_value(t),t.fillText(m,f+o,b+this.max_label_height/2);for(const e of r.renderers){const i=this.plot_view.renderer_view(e);null==i||i.draw_legend(t,d,f,b,u,c,m,r.index)}if(!g){let l,n;[l,n]=_?[e.width-2*s,this.max_label_height]:[this.text_widths.get(m)+i+o,this.max_label_height],t.beginPath(),t.rect(d,b,l,n),this.visuals.inactive_fill.set_value(t),t.fill()}}}}_draw_title(t,e){const{title:i}=this.model;i&&this.visuals.title_text.doit&&(t.save(),t.translate(e.x0,e.y0+this.title_height),this.visuals.title_text.set_value(t),t.fillText(i,this.legend_padding,this.legend_padding-this.model.title_standoff),t.restore())}_get_size(){const{width:t,height:e}=this.compute_legend_bbox();return{width:t+2*this.model.margin,height:e+2*this.model.margin}}}i.LegendView=x,x.__name__=\"LegendView\";class p extends h.Annotation{constructor(t){super(t)}initialize(){super.initialize(),this.item_change=new d.Signal0(this,\"item_change\")}get_legend_names(){const t=[];for(const e of this.items){const i=e.get_labels_list_from_label_prop();t.push(...i)}return t}}i.Legend=p,o=p,p.__name__=\"Legend\",o.prototype.default_view=x,o.mixins([[\"label_\",r.Text],[\"title_\",r.Text],[\"inactive_\",r.Fill],[\"border_\",r.Line],[\"background_\",r.Fill]]),o.define((({Number:t,String:e,Array:i,Tuple:l,Or:s,Ref:n,Nullable:o})=>({orientation:[_.Orientation,\"vertical\"],location:[s(_.LegendLocation,l(t,t)),\"top_right\"],title:[o(e),null],title_standoff:[t,5],label_standoff:[t,5],glyph_height:[t,20],glyph_width:[t,20],label_height:[t,20],label_width:[t,20],margin:[t,10],padding:[t,10],spacing:[t,3],items:[i(n(a.LegendItem)),[]],click_policy:[_.LegendClickPolicy,\"none\"]}))),o.override({border_line_color:\"#e5e5e5\",border_line_alpha:.5,border_line_width:1,background_fill_color:\"#ffffff\",background_fill_alpha:.95,inactive_fill_color:\"white\",inactive_fill_alpha:.7,label_text_font_size:\"13px\",label_text_baseline:\"middle\",title_text_font_size:\"13px\",title_text_font_style:\"italic\"})},\n", - " function _(e,r,l,n,t){n();const i=e(1);var s;const o=e(53),a=e(175),_=e(70),u=e(216),d=(0,i.__importStar)(e(18)),c=e(19),f=e(9);class h extends o.Model{constructor(e){super(e)}_check_data_sources_on_renderers(){if(null!=this.get_field_from_label_prop()){if(this.renderers.length<1)return!1;const e=this.renderers[0].data_source;if(null!=e)for(const r of this.renderers)if(r.data_source!=e)return!1}return!0}_check_field_label_on_data_source(){const e=this.get_field_from_label_prop();if(null!=e){if(this.renderers.length<1)return!1;const r=this.renderers[0].data_source;if(null!=r&&!(0,f.includes)(r.columns(),e))return!1}return!0}initialize(){super.initialize(),this.legend=null,this.connect(this.change,(()=>{var e;return null===(e=this.legend)||void 0===e?void 0:e.item_change.emit()}));this._check_data_sources_on_renderers()||c.logger.error(\"Non matching data sources on legend item renderers\");this._check_field_label_on_data_source()||c.logger.error(`Bad column name on label: ${this.label}`)}get_field_from_label_prop(){const{label:e}=this;return(0,u.isField)(e)?e.field:null}get_labels_list_from_label_prop(){if(!this.visible)return[];if((0,u.isValue)(this.label)){const{value:e}=this.label;return null!=e?[e]:[]}const e=this.get_field_from_label_prop();if(null!=e){let r;if(!this.renderers[0]||null==this.renderers[0].data_source)return[\"No source found\"];if(r=this.renderers[0].data_source,r instanceof _.ColumnarDataSource){const l=r.get_column(e);return null!=l?(0,f.uniq)(Array.from(l)):[\"Invalid field\"]}}return[]}}l.LegendItem=h,s=h,h.__name__=\"LegendItem\",s.define((({Boolean:e,Int:r,Array:l,Ref:n,Nullable:t})=>({label:[d.NullStringSpec,null],renderers:[l(n(a.GlyphRenderer)),[]],index:[t(r),null],visible:[e,!0]})))},\n", - " function _(i,n,e,t,u){t();const c=i(8);e.isValue=function(i){return(0,c.isPlainObject)(i)&&\"value\"in i},e.isField=function(i){return(0,c.isPlainObject)(i)&&\"field\"in i},e.isExpr=function(i){return(0,c.isPlainObject)(i)&&\"expr\"in i}},\n", - " function _(t,n,e,s,i){s();const o=t(1);var a;const l=t(40),c=(0,o.__importStar)(t(48)),r=t(20);class _ extends l.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_render(){const{xs:t,ys:n}=this.model;if(t.length!=n.length)return;const e=t.length;if(e<3)return;const{frame:s}=this.plot_view,{ctx:i}=this.layer,o=this.coordinates.x_scale,a=this.coordinates.y_scale,{screen:l}=this.model;function c(t,n,e,s){return l?t:\"data\"==n?e.v_compute(t):s.v_compute(t)}const r=c(t,this.model.xs_units,o,s.bbox.xview),_=c(n,this.model.ys_units,a,s.bbox.yview);i.beginPath();for(let t=0;t({xs:[n(t),[]],xs_units:[r.SpatialUnits,\"data\"],ys:[n(t),[]],ys_units:[r.SpatialUnits,\"data\"]}))),a.internal((({Boolean:t})=>({screen:[t,!1]}))),a.override({fill_color:\"#fff9ba\",fill_alpha:.4,line_color:\"#cccccc\",line_alpha:.3})},\n", - " function _(e,t,n,o,i){o();const s=e(1);var l;const r=e(40),c=(0,s.__importStar)(e(48));class a extends r.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_render(){const{gradient:e,y_intercept:t}=this.model;if(null==e||null==t)return;const{frame:n}=this.plot_view,o=this.coordinates.x_scale,i=this.coordinates.y_scale;let s,l,r,c;if(0==e)s=i.compute(t),l=s,r=n.bbox.left,c=r+n.bbox.width;else{s=n.bbox.top,l=s+n.bbox.height;const a=(i.invert(s)-t)/e,_=(i.invert(l)-t)/e;r=o.compute(a),c=o.compute(_)}const{ctx:a}=this.layer;a.save(),a.beginPath(),this.visuals.line.set_value(a),a.moveTo(r,s),a.lineTo(c,l),a.stroke(),a.restore()}}n.SlopeView=a,a.__name__=\"SlopeView\";class _ extends r.Annotation{constructor(e){super(e)}}n.Slope=_,l=_,_.__name__=\"Slope\",l.prototype.default_view=a,l.mixins(c.Line),l.define((({Number:e,Nullable:t})=>({gradient:[t(e),null],y_intercept:[t(e),null]}))),l.override({line_color:\"black\"})},\n", - " function _(e,t,i,o,n){o();const s=e(1);var l;const a=e(40),r=(0,s.__importStar)(e(48)),c=e(20);class d extends a.AnnotationView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.plot_view.request_paint(this)))}_render(){const{location:e}=this.model;if(null==e)return;const{frame:t}=this.plot_view,i=this.coordinates.x_scale,o=this.coordinates.y_scale,n=(t,i)=>\"data\"==this.model.location_units?t.compute(e):this.model.for_hover?e:i.compute(e);let s,l,a,r;\"width\"==this.model.dimension?(a=n(o,t.bbox.yview),l=t.bbox.left,r=t.bbox.width,s=this.model.line_width):(a=t.bbox.top,l=n(i,t.bbox.xview),r=this.model.line_width,s=t.bbox.height);const{ctx:c}=this.layer;c.save(),c.beginPath(),this.visuals.line.set_value(c),c.moveTo(l,a),\"width\"==this.model.dimension?c.lineTo(l+r,a):c.lineTo(l,a+s),c.stroke(),c.restore()}}i.SpanView=d,d.__name__=\"SpanView\";class _ extends a.Annotation{constructor(e){super(e)}}i.Span=_,l=_,_.__name__=\"Span\",l.prototype.default_view=d,l.mixins(r.Line),l.define((({Number:e,Nullable:t})=>({render_mode:[c.RenderMode,\"canvas\"],location:[t(e),null],location_units:[c.SpatialUnits,\"data\"],dimension:[c.Dimension,\"width\"]}))),l.internal((({Boolean:e})=>({for_hover:[e,!1]}))),l.override({line_color:\"black\"})},\n", - " function _(i,e,t,o,l){var s;o();const a=i(40),_=i(221),n=i(113),r=i(43),h=i(123),b=i(65);class v extends a.AnnotationView{constructor(){super(...arguments),this._invalidate_toolbar=!0,this._previous_bbox=new b.BBox}update_layout(){this.layout=new h.SideLayout(this.panel,(()=>this.get_size()),!0)}initialize(){super.initialize(),this.el=(0,r.div)(),this.plot_view.canvas_view.add_event(this.el)}async lazy_initialize(){await super.lazy_initialize(),this._toolbar_view=await(0,n.build_view)(this.model.toolbar,{parent:this}),this.plot_view.visibility_callbacks.push((i=>this._toolbar_view.set_visibility(i)))}remove(){this._toolbar_view.remove(),(0,r.remove)(this.el),super.remove()}render(){this.model.visible||(0,r.undisplay)(this.el),super.render()}_render(){const{bbox:i}=this.layout;this._previous_bbox.equals(i)||((0,r.position)(this.el,i),this._previous_bbox=i,this._invalidate_toolbar=!0),this._invalidate_toolbar&&(this.el.style.position=\"absolute\",this.el.style.overflow=\"hidden\",(0,r.empty)(this.el),this.el.appendChild(this._toolbar_view.el),this._toolbar_view.layout.bbox=i,this._toolbar_view.render(),this._invalidate_toolbar=!1),(0,r.display)(this.el)}_get_size(){const{tools:i,logo:e}=this.model.toolbar;return{width:30*i.length+(null!=e?25:0)+15,height:30}}}t.ToolbarPanelView=v,v.__name__=\"ToolbarPanelView\";class d extends a.Annotation{constructor(i){super(i)}}t.ToolbarPanel=d,s=d,d.__name__=\"ToolbarPanel\",s.prototype.default_view=v,s.define((({Ref:i})=>({toolbar:[i(_.Toolbar)]})))},\n", - " function _(t,e,s,i,o){var c;i();const n=t(8),a=t(9),l=t(13),r=t(222),_=t(223),u=t(232),p=t(233);function v(t){switch(t){case\"tap\":return\"active_tap\";case\"pan\":return\"active_drag\";case\"pinch\":case\"scroll\":return\"active_scroll\";case\"multi\":return\"active_multi\"}return null}function h(t){return\"tap\"==t||\"pan\"==t}s.Drag=r.Tool,s.Inspection=r.Tool,s.Scroll=r.Tool,s.Tap=r.Tool;class f extends p.ToolbarBase{constructor(t){super(t)}connect_signals(){super.connect_signals();const{tools:t,active_drag:e,active_inspect:s,active_scroll:i,active_tap:o,active_multi:c}=this.properties;this.on_change([t,e,s,i,o,c],(()=>this._init_tools()))}_init_tools(){if(super._init_tools(),\"auto\"==this.active_inspect);else if(this.active_inspect instanceof u.InspectTool){let t=!1;for(const e of this.inspectors)e!=this.active_inspect?e.active=!1:t=!0;t||(this.active_inspect=null)}else if((0,n.isArray)(this.active_inspect)){const t=(0,a.intersection)(this.active_inspect,this.inspectors);t.length!=this.active_inspect.length&&(this.active_inspect=t);for(const t of this.inspectors)(0,a.includes)(this.active_inspect,t)||(t.active=!1)}else if(null==this.active_inspect)for(const t of this.inspectors)t.active=!1;const t=t=>{t.active?this._active_change(t):t.active=!0};for(const t of(0,l.values)(this.gestures)){t.tools=(0,a.sort_by)(t.tools,(t=>t.default_order));for(const e of t.tools)this.connect(e.properties.active.change,(()=>this._active_change(e)))}for(const[e,s]of(0,l.entries)(this.gestures)){const i=v(e);if(i){const o=this[i];\"auto\"==o?0!=s.tools.length&&h(e)&&t(s.tools[0]):null!=o&&((0,a.includes)(this.tools,o)?t(o):this[i]=null)}}}}s.Toolbar=f,c=f,f.__name__=\"Toolbar\",c.prototype.default_view=p.ToolbarBaseView,c.define((({Or:t,Ref:e,Auto:i,Null:o})=>({active_drag:[t(e(s.Drag),i,o),\"auto\"],active_inspect:[t(e(s.Inspection),i,o),\"auto\"],active_scroll:[t(e(s.Scroll),i,o),\"auto\"],active_tap:[t(e(s.Tap),i,o),\"auto\"],active_multi:[t(e(_.GestureTool),i,o),\"auto\"]})))},\n", - " function _(t,e,n,o,s){var i;o();const a=t(42),r=t(9),l=t(53);class c extends a.View{get plot_view(){return this.parent}get plot_model(){return this.parent.model}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>{this.model.active?this.activate():this.deactivate()}))}activate(){}deactivate(){}}n.ToolView=c,c.__name__=\"ToolView\";class _ extends l.Model{constructor(t){super(t)}get synthetic_renderers(){return[]}_get_dim_limits([t,e],[n,o],s,i){const a=s.bbox.h_range;let l;\"width\"==i||\"both\"==i?(l=[(0,r.min)([t,n]),(0,r.max)([t,n])],l=[(0,r.max)([l[0],a.start]),(0,r.min)([l[1],a.end])]):l=[a.start,a.end];const c=s.bbox.v_range;let _;return\"height\"==i||\"both\"==i?(_=[(0,r.min)([e,o]),(0,r.max)([e,o])],_=[(0,r.max)([_[0],c.start]),(0,r.min)([_[1],c.end])]):_=[c.start,c.end],[l,_]}static register_alias(t,e){this.prototype._known_aliases.set(t,e)}static from_string(t){const e=this.prototype._known_aliases.get(t);if(null!=e)return e();{const e=[...this.prototype._known_aliases.keys()];throw new Error(`unexpected tool name '${t}', possible tools are ${e.join(\", \")}`)}}}n.Tool=_,i=_,_.__name__=\"Tool\",i.prototype._known_aliases=new Map,i.define((({String:t,Nullable:e})=>({description:[e(t),null]}))),i.internal((({Boolean:t})=>({active:[t,!1]})))},\n", - " function _(e,o,t,s,n){s();const u=e(224),_=e(231);class l extends u.ButtonToolView{}t.GestureToolView=l,l.__name__=\"GestureToolView\";class i extends u.ButtonTool{constructor(e){super(e),this.button_view=_.OnOffButtonView}}t.GestureTool=i,i.__name__=\"GestureTool\"},\n", - " function _(t,e,o,s,i){s();const n=t(1);var l;const r=(0,n.__importDefault)(t(225)),a=t(226),u=t(222),h=t(43),_=t(34),d=t(8),c=t(9),m=(0,n.__importStar)(t(227)),p=m,v=(0,n.__importDefault)(t(228)),f=(0,n.__importDefault)(t(229)),g=t(230);class b extends a.DOMView{initialize(){super.initialize();const t=this.model.menu;if(null!=t){const e=this.parent.model.toolbar_location,o=\"left\"==e||\"above\"==e,s=this.parent.model.horizontal?\"vertical\":\"horizontal\";this._menu=new g.ContextMenu(o?(0,c.reversed)(t):t,{orientation:s,prevent_hide:t=>t.target==this.el})}this._hammer=new r.default(this.el,{touchAction:\"auto\",inputClass:r.default.TouchMouseInput}),this.connect(this.model.change,(()=>this.render())),this._hammer.on(\"tap\",(t=>{var e;(null===(e=this._menu)||void 0===e?void 0:e.is_open)?this._menu.hide():t.target==this.el&&this._clicked()})),this._hammer.on(\"press\",(()=>this._pressed())),this.el.addEventListener(\"keydown\",(t=>{t.keyCode==h.Keys.Enter&&this._clicked()}))}remove(){var t;this._hammer.destroy(),null===(t=this._menu)||void 0===t||t.remove(),super.remove()}styles(){return[...super.styles(),m.default,v.default,f.default]}css_classes(){return super.css_classes().concat(p.toolbar_button)}render(){(0,h.empty)(this.el);const t=this.model.computed_icon;(0,d.isString)(t)&&((0,_.startsWith)(t,\"data:image\")?this.el.style.backgroundImage=`url(\"${t}\")`:this.el.classList.add(t)),this.el.title=this.model.tooltip,this.el.tabIndex=0,null!=this._menu&&this.root.el.appendChild(this._menu.el)}_pressed(){var t;const e=(()=>{switch(this.parent.model.toolbar_location){case\"right\":return{left_of:this.el};case\"left\":return{right_of:this.el};case\"above\":return{below:this.el};case\"below\":return{above:this.el}}})();null===(t=this._menu)||void 0===t||t.toggle(e)}}o.ButtonToolButtonView=b,b.__name__=\"ButtonToolButtonView\";class w extends u.ToolView{}o.ButtonToolView=w,w.__name__=\"ButtonToolView\";class y extends u.Tool{constructor(t){super(t)}_get_dim_tooltip(t){const{description:e,tool_name:o}=this;return null!=e?e:\"both\"==t?o:`${o} (${\"width\"==t?\"x\":\"y\"}-axis)`}get tooltip(){var t;return null!==(t=this.description)&&void 0!==t?t:this.tool_name}get computed_icon(){return this.icon}get menu(){return null}}o.ButtonTool=y,l=y,y.__name__=\"ButtonTool\",l.internal((({Boolean:t})=>({disabled:[t,!1]})))},\n", - " function _(t,e,i,n,r){\n", - " /*! Hammer.JS - v2.0.7 - 2016-04-22\n", - " * http://hammerjs.github.io/\n", - " *\n", - " * Copyright (c) 2016 Jorik Tangelder;\n", - " * Licensed under the MIT license */\n", - " !function(t,i,n,r){\"use strict\";var s,o=[\"\",\"webkit\",\"Moz\",\"MS\",\"ms\",\"o\"],a=i.createElement(\"div\"),h=Math.round,u=Math.abs,c=Date.now;function l(t,e,i){return setTimeout(T(t,i),e)}function p(t,e,i){return!!Array.isArray(t)&&(f(t,i[e],i),!0)}function f(t,e,i){var n;if(t)if(t.forEach)t.forEach(e,i);else if(t.length!==r)for(n=0;n\\s*\\(/gm,\"{anonymous}()@\"):\"Unknown Stack Trace\",s=t.console&&(t.console.warn||t.console.log);return s&&s.call(t.console,r,n),e.apply(this,arguments)}}s=\"function\"!=typeof Object.assign?function(t){if(t===r||null===t)throw new TypeError(\"Cannot convert undefined or null to object\");for(var e=Object(t),i=1;i-1}function S(t){return t.trim().split(/\\s+/g)}function b(t,e,i){if(t.indexOf&&!i)return t.indexOf(e);for(var n=0;ni[e]})):n.sort()),n}function x(t,e){for(var i,n,s=e[0].toUpperCase()+e.slice(1),a=0;a1&&!i.firstMultiple?i.firstMultiple=H(e):1===s&&(i.firstMultiple=!1);var o=i.firstInput,a=i.firstMultiple,h=a?a.center:o.center,l=e.center=L(n);e.timeStamp=c(),e.deltaTime=e.timeStamp-o.timeStamp,e.angle=G(h,l),e.distance=j(h,l),function(t,e){var i=e.center,n=t.offsetDelta||{},r=t.prevDelta||{},s=t.prevInput||{};1!==e.eventType&&4!==s.eventType||(r=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},n=t.offsetDelta={x:i.x,y:i.y});e.deltaX=r.x+(i.x-n.x),e.deltaY=r.y+(i.y-n.y)}(i,e),e.offsetDirection=V(e.deltaX,e.deltaY);var p=U(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=p.x,e.overallVelocityY=p.y,e.overallVelocity=u(p.x)>u(p.y)?p.x:p.y,e.scale=a?(f=a.pointers,v=n,j(v[0],v[1],W)/j(f[0],f[1],W)):1,e.rotation=a?function(t,e){return G(e[1],e[0],W)+G(t[1],t[0],W)}(a.pointers,n):0,e.maxPointers=i.prevInput?e.pointers.length>i.prevInput.maxPointers?e.pointers.length:i.prevInput.maxPointers:e.pointers.length,function(t,e){var i,n,s,o,a=t.lastInterval||e,h=e.timeStamp-a.timeStamp;if(8!=e.eventType&&(h>25||a.velocity===r)){var c=e.deltaX-a.deltaX,l=e.deltaY-a.deltaY,p=U(h,c,l);n=p.x,s=p.y,i=u(p.x)>u(p.y)?p.x:p.y,o=V(c,l),t.lastInterval=e}else i=a.velocity,n=a.velocityX,s=a.velocityY,o=a.direction;e.velocity=i,e.velocityX=n,e.velocityY=s,e.direction=o}(i,e);var f,v;var d=t.element;_(e.srcEvent.target,d)&&(d=e.srcEvent.target);e.target=d}(t,i),t.emit(\"hammer.input\",i),t.recognize(i),t.session.prevInput=i}function H(t){for(var e=[],i=0;i=u(e)?t<0?2:4:e<0?8:16}function j(t,e,i){i||(i=F);var n=e[i[0]]-t[i[0]],r=e[i[1]]-t[i[1]];return Math.sqrt(n*n+r*r)}function G(t,e,i){i||(i=F);var n=e[i[0]]-t[i[0]],r=e[i[1]]-t[i[1]];return 180*Math.atan2(r,n)/Math.PI}q.prototype={handler:function(){},init:function(){this.evEl&&I(this.element,this.evEl,this.domHandler),this.evTarget&&I(this.target,this.evTarget,this.domHandler),this.evWin&&I(O(this.element),this.evWin,this.domHandler)},destroy:function(){this.evEl&&A(this.element,this.evEl,this.domHandler),this.evTarget&&A(this.target,this.evTarget,this.domHandler),this.evWin&&A(O(this.element),this.evWin,this.domHandler)}};var Z={mousedown:1,mousemove:2,mouseup:4},B=\"mousedown\",$=\"mousemove mouseup\";function J(){this.evEl=B,this.evWin=$,this.pressed=!1,q.apply(this,arguments)}g(J,q,{handler:function(t){var e=Z[t.type];1&e&&0===t.button&&(this.pressed=!0),2&e&&1!==t.which&&(e=4),this.pressed&&(4&e&&(this.pressed=!1),this.callback(this.manager,e,{pointers:[t],changedPointers:[t],pointerType:X,srcEvent:t}))}});var K={pointerdown:1,pointermove:2,pointerup:4,pointercancel:8,pointerout:8},Q={2:N,3:\"pen\",4:X,5:\"kinect\"},tt=\"pointerdown\",et=\"pointermove pointerup pointercancel\";function it(){this.evEl=tt,this.evWin=et,q.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}t.MSPointerEvent&&!t.PointerEvent&&(tt=\"MSPointerDown\",et=\"MSPointerMove MSPointerUp MSPointerCancel\"),g(it,q,{handler:function(t){var e=this.store,i=!1,n=t.type.toLowerCase().replace(\"ms\",\"\"),r=K[n],s=Q[t.pointerType]||t.pointerType,o=s==N,a=b(e,t.pointerId,\"pointerId\");1&r&&(0===t.button||o)?a<0&&(e.push(t),a=e.length-1):12&r&&(i=!0),a<0||(e[a]=t,this.callback(this.manager,r,{pointers:e,changedPointers:[t],pointerType:s,srcEvent:t}),i&&e.splice(a,1))}});var nt={touchstart:1,touchmove:2,touchend:4,touchcancel:8},rt=\"touchstart\",st=\"touchstart touchmove touchend touchcancel\";function ot(){this.evTarget=rt,this.evWin=st,this.started=!1,q.apply(this,arguments)}function at(t,e){var i=P(t.touches),n=P(t.changedTouches);return 12&e&&(i=D(i.concat(n),\"identifier\",!0)),[i,n]}g(ot,q,{handler:function(t){var e=nt[t.type];if(1===e&&(this.started=!0),this.started){var i=at.call(this,t,e);12&e&&i[0].length-i[1].length==0&&(this.started=!1),this.callback(this.manager,e,{pointers:i[0],changedPointers:i[1],pointerType:N,srcEvent:t})}}});var ht={touchstart:1,touchmove:2,touchend:4,touchcancel:8},ut=\"touchstart touchmove touchend touchcancel\";function ct(){this.evTarget=ut,this.targetIds={},q.apply(this,arguments)}function lt(t,e){var i=P(t.touches),n=this.targetIds;if(3&e&&1===i.length)return n[i[0].identifier]=!0,[i,i];var r,s,o=P(t.changedTouches),a=[],h=this.target;if(s=i.filter((function(t){return _(t.target,h)})),1===e)for(r=0;r-1&&n.splice(t,1)}),2500)}}function dt(t){for(var e=t.srcEvent.clientX,i=t.srcEvent.clientY,n=0;n-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){var e=this,i=this.state;function n(i){e.manager.emit(i,t)}i<8&&n(e.options.event+Dt(i)),n(e.options.event),t.additionalEvent&&n(t.additionalEvent),i>=8&&n(e.options.event+Dt(i))},tryEmit:function(t){if(this.canEmit())return this.emit(t);this.state=bt},canEmit:function(){for(var t=0;te.threshold&&r&e.direction},attrTest:function(t){return Ot.prototype.attrTest.call(this,t)&&(2&this.state||!(2&this.state)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=xt(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),g(Mt,Ot,{defaults:{event:\"pinch\",threshold:0,pointers:2},getTouchAction:function(){return[It]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||2&this.state)},emit:function(t){if(1!==t.scale){var e=t.scale<1?\"in\":\"out\";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),g(zt,Pt,{defaults:{event:\"press\",pointers:1,time:251,threshold:9},getTouchAction:function(){return[yt]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,n=t.distancee.time;if(this._input=t,!n||!i||12&t.eventType&&!r)this.reset();else if(1&t.eventType)this.reset(),this._timer=l((function(){this.state=8,this.tryEmit()}),e.time,this);else if(4&t.eventType)return 8;return bt},reset:function(){clearTimeout(this._timer)},emit:function(t){8===this.state&&(t&&4&t.eventType?this.manager.emit(this.options.event+\"up\",t):(this._input.timeStamp=c(),this.manager.emit(this.options.event,this._input)))}}),g(Nt,Ot,{defaults:{event:\"rotate\",threshold:0,pointers:2},getTouchAction:function(){return[It]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||2&this.state)}}),g(Xt,Ot,{defaults:{event:\"swipe\",threshold:10,velocity:.3,direction:30,pointers:1},getTouchAction:function(){return Rt.prototype.getTouchAction.call(this)},attrTest:function(t){var e,i=this.options.direction;return 30&i?e=t.overallVelocity:6&i?e=t.overallVelocityX:i&Y&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&i&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&u(e)>this.options.velocity&&4&t.eventType},emit:function(t){var e=xt(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),g(Yt,Pt,{defaults:{event:\"tap\",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return[Et]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,n=t.distance .bk-divider{cursor:default;overflow:hidden;background-color:#e5e5e5;}.bk-root .bk-context-menu.bk-horizontal > .bk-divider{width:1px;margin:5px 0;}.bk-root .bk-context-menu.bk-vertical > .bk-divider{height:1px;margin:0 5px;}.bk-root .bk-context-menu > :not(.bk-divider){border:1px solid transparent;}.bk-root .bk-context-menu > :not(.bk-divider).bk-active{border-color:#26aae1;}.bk-root .bk-context-menu > :not(.bk-divider):hover{background-color:#f9f9f9;}.bk-root .bk-context-menu > :not(.bk-divider):focus,.bk-root .bk-context-menu > :not(.bk-divider):focus-visible{outline:1px dotted #26aae1;outline-offset:-1px;}.bk-root .bk-context-menu > :not(.bk-divider)::-moz-focus-inner{border:0;}.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):first-child{border-top-left-radius:4px;border-bottom-left-radius:4px;}.bk-root .bk-context-menu.bk-horizontal > :not(.bk-divider):last-child{border-top-right-radius:4px;border-bottom-right-radius:4px;}.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):first-child{border-top-left-radius:4px;border-top-right-radius:4px;}.bk-root .bk-context-menu.bk-vertical > :not(.bk-divider):last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;}.bk-root .bk-menu{position:absolute;left:0;width:100%;z-index:100;cursor:pointer;font-size:12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);}.bk-root .bk-menu.bk-above{bottom:100%;}.bk-root .bk-menu.bk-below{top:100%;}.bk-root .bk-menu > .bk-divider{height:1px;margin:7.5px 0;overflow:hidden;background-color:#e5e5e5;}.bk-root .bk-menu > :not(.bk-divider){padding:6px 12px;}.bk-root .bk-menu > :not(.bk-divider):hover,.bk-root .bk-menu > :not(.bk-divider).bk-active{background-color:#e6e6e6;}.bk-root .bk-caret{display:inline-block;vertical-align:middle;width:0;height:0;margin:0 5px;}.bk-root .bk-caret.bk-down{border-top:4px solid;}.bk-root .bk-caret.bk-up{border-bottom:4px solid;}.bk-root .bk-caret.bk-down,.bk-root .bk-caret.bk-up{border-right:4px solid transparent;border-left:4px solid transparent;}.bk-root .bk-caret.bk-left{border-right:4px solid;}.bk-root .bk-caret.bk-right{border-left:4px solid;}.bk-root .bk-caret.bk-left,.bk-root .bk-caret.bk-right{border-top:4px solid transparent;border-bottom:4px solid transparent;}\"},\n", - " function _(t,e,i,n,o){n();const s=t(1),l=t(43),h=t(9),r=(0,s.__importStar)(t(229));class d{constructor(t,e={}){var i,n;this.items=t,this.el=(0,l.div)(),this._open=!1,this._item_click=t=>{var e;null===(e=t.handler)||void 0===e||e.call(t),this.hide()},this._on_mousedown=t=>{var e;const{target:i}=t;i instanceof Node&&this.el.contains(i)||(null===(e=this.prevent_hide)||void 0===e?void 0:e.call(this,t))||this.hide()},this._on_keydown=t=>{t.keyCode==l.Keys.Esc&&this.hide()},this._on_blur=()=>{this.hide()},this.orientation=null!==(i=e.orientation)&&void 0!==i?i:\"vertical\",this.reversed=null!==(n=e.reversed)&&void 0!==n&&n,this.prevent_hide=e.prevent_hide,(0,l.undisplay)(this.el)}get is_open(){return this._open}get can_open(){return 0!=this.items.length}remove(){(0,l.remove)(this.el),this._unlisten()}_listen(){document.addEventListener(\"mousedown\",this._on_mousedown),document.addEventListener(\"keydown\",this._on_keydown),window.addEventListener(\"blur\",this._on_blur)}_unlisten(){document.removeEventListener(\"mousedown\",this._on_mousedown),document.removeEventListener(\"keydown\",this._on_keydown),window.removeEventListener(\"blur\",this._on_blur)}_position(t){const e=this.el.parentElement;if(null!=e){const i=(()=>{if(\"left_of\"in t){const{left:e,top:i}=t.left_of.getBoundingClientRect();return{right:e,top:i}}if(\"right_of\"in t){const{top:e,right:i}=t.right_of.getBoundingClientRect();return{left:i,top:e}}if(\"below\"in t){const{left:e,bottom:i}=t.below.getBoundingClientRect();return{left:e,top:i}}if(\"above\"in t){const{left:e,top:i}=t.above.getBoundingClientRect();return{left:e,bottom:i}}return t})(),n=e.getBoundingClientRect();this.el.style.left=null!=i.left?i.left-n.left+\"px\":\"\",this.el.style.top=null!=i.top?i.top-n.top+\"px\":\"\",this.el.style.right=null!=i.right?n.right-i.right+\"px\":\"\",this.el.style.bottom=null!=i.bottom?n.bottom-i.bottom+\"px\":\"\"}}render(){var t;(0,l.empty)(this.el,!0),(0,l.classes)(this.el).add(\"bk-context-menu\",`bk-${this.orientation}`);const e=this.reversed?(0,h.reversed)(this.items):this.items;for(const i of e){let e;if(null==i)e=(0,l.div)({class:r.divider});else{if(null!=i.if&&!i.if())continue;if(null!=i.content)e=i.content;else{const n=null!=i.icon?(0,l.div)({class:[\"bk-menu-icon\",i.icon]}):null,o=[(null===(t=i.active)||void 0===t?void 0:t.call(i))?\"bk-active\":null,i.class];e=(0,l.div)({class:o,title:i.tooltip,tabIndex:0},n,i.label,i.content),e.addEventListener(\"click\",(()=>{this._item_click(i)})),e.addEventListener(\"keydown\",(t=>{t.keyCode==l.Keys.Enter&&this._item_click(i)}))}}this.el.appendChild(e)}}show(t){if(0!=this.items.length&&!this._open){if(this.render(),0==this.el.children.length)return;this._position(null!=t?t:{left:0,top:0}),(0,l.display)(this.el),this._listen(),this._open=!0}}hide(){this._open&&(this._open=!1,this._unlisten(),(0,l.undisplay)(this.el))}toggle(t){this._open?this.hide():this.show(t)}}i.ContextMenu=d,d.__name__=\"ContextMenu\"},\n", - " function _(t,e,i,n,o){n();const s=t(1),c=t(224),l=(0,s.__importStar)(t(227)),a=t(43);class _ extends c.ButtonToolButtonView{render(){super.render(),(0,a.classes)(this.el).toggle(l.active,this.model.active)}_clicked(){const{active:t}=this.model;this.model.active=!t}}i.OnOffButtonView=_,_.__name__=\"OnOffButtonView\"},\n", - " function _(e,o,t,n,s){var c;n();const l=e(224),_=e(231);class i extends l.ButtonToolView{}t.InspectToolView=i,i.__name__=\"InspectToolView\";class a extends l.ButtonTool{constructor(e){super(e),this.event_type=\"move\"}}t.InspectTool=a,c=a,a.__name__=\"InspectTool\",c.prototype.button_view=_.OnOffButtonView,c.define((({Boolean:e})=>({toggleable:[e,!0]}))),c.override({active:!0})},\n", - " function _(t,o,e,l,i){l();const s=t(1);var n,a;const r=t(19),c=t(43),h=t(113),_=t(226),u=t(20),v=t(9),d=t(234),p=t(13),b=t(8),g=t(235),f=t(65),m=t(53),w=t(222),y=t(223),T=t(238),z=t(239),x=t(232),B=t(230),C=(0,s.__importStar)(t(227)),k=C,L=(0,s.__importStar)(t(240)),M=L;class S extends m.Model{constructor(t){super(t)}get visible(){var t;return!this.autohide||null!==(t=this._visible)&&void 0!==t&&t}}e.ToolbarViewModel=S,n=S,S.__name__=\"ToolbarViewModel\",n.define((({Boolean:t})=>({autohide:[t,!1]}))),n.internal((({Boolean:t,Nullable:o})=>({_visible:[o(t),null]})));class $ extends _.DOMView{constructor(){super(...arguments),this.layout={bbox:new f.BBox}}initialize(){super.initialize(),this._tool_button_views=new Map,this._toolbar_view_model=new S({autohide:this.model.autohide});const{toolbar_location:t}=this.model,o=\"left\"==t||\"above\"==t,e=this.model.horizontal?\"vertical\":\"horizontal\";this._overflow_menu=new B.ContextMenu([],{orientation:e,reversed:o})}async lazy_initialize(){await super.lazy_initialize(),await this._build_tool_button_views()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tools.change,(async()=>{await this._build_tool_button_views(),this.render()})),this.connect(this.model.properties.autohide.change,(()=>{this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change()})),this.connect(this._toolbar_view_model.properties._visible.change,(()=>this._on_visible_change()))}styles(){return[...super.styles(),C.default,L.default]}remove(){(0,h.remove_views)(this._tool_button_views),super.remove()}async _build_tool_button_views(){const t=null!=this.model._proxied_tools?this.model._proxied_tools:this.model.tools;await(0,h.build_views)(this._tool_button_views,t,{parent:this},(t=>t.button_view))}set_visibility(t){t!=this._toolbar_view_model._visible&&(this._toolbar_view_model._visible=t)}_on_visible_change(){const{visible:t}=this._toolbar_view_model;(0,c.classes)(this.el).toggle(k.toolbar_hidden,!t)}render(){(0,c.empty)(this.el),this.el.classList.add(k.toolbar),this.el.classList.add(k[this.model.toolbar_location]),this._toolbar_view_model.autohide=this.model.autohide,this._on_visible_change();const{horizontal:t}=this.model;let o=0;if(null!=this.model.logo){const e=\"grey\"===this.model.logo?M.grey:null,l=(0,c.a)({href:\"https://bokeh.org/\",target:\"_blank\",class:[M.logo,M.logo_small,e]});this.el.appendChild(l);const{width:i,height:s}=l.getBoundingClientRect();o+=t?i:s}for(const[,t]of this._tool_button_views)t.render();const e=[],l=t=>this._tool_button_views.get(t).el,{gestures:i}=this.model;for(const t of(0,p.values)(i))e.push(t.tools.map(l));e.push(this.model.actions.map(l)),e.push(this.model.inspectors.filter((t=>t.toggleable)).map(l));const s=e.filter((t=>0!=t.length)),n=()=>(0,c.div)({class:k.divider}),{bbox:a}=this.layout;let r=!1;this.root.el.appendChild(this._overflow_menu.el);const h=(0,c.div)({class:k.tool_overflow,tabIndex:0},t?\"\\u22ee\":\"\\u22ef\"),_=()=>{const t=(()=>{switch(this.model.toolbar_location){case\"right\":return{left_of:h};case\"left\":return{right_of:h};case\"above\":return{below:h};case\"below\":return{above:h}}})();this._overflow_menu.toggle(t)};h.addEventListener(\"click\",(()=>{_()})),h.addEventListener(\"keydown\",(t=>{t.keyCode==c.Keys.Enter&&_()}));for(const e of(0,d.join)(s,n))if(r)this._overflow_menu.items.push({content:e,class:t?k.right:k.above});else{this.el.appendChild(e);const{width:l,height:i}=e.getBoundingClientRect();if(o+=t?l:i,r=t?o>a.width-15:o>a.height-15,r){this.el.removeChild(e),this.el.appendChild(h);const{items:t}=this._overflow_menu;t.splice(0,t.length),t.push({content:e})}}}update_layout(){}update_position(){}after_layout(){this._has_finished=!0}export(t,o=!0){const e=\"png\"==t?\"canvas\":\"svg\",l=new g.CanvasLayer(e,o);return l.resize(0,0),l}}function V(){return{pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}}}e.ToolbarBaseView=$,$.__name__=\"ToolbarBaseView\";class A extends m.Model{constructor(t){super(t)}initialize(){super.initialize(),this._init_tools()}_init_tools(){const t=function(t,o){if(t.length!=o.length)return!0;const e=new Set(o.map((t=>t.id)));return(0,v.some)(t,(t=>!e.has(t.id)))},o=this.tools.filter((t=>t instanceof x.InspectTool));t(this.inspectors,o)&&(this.inspectors=o);const e=this.tools.filter((t=>t instanceof z.HelpTool));t(this.help,e)&&(this.help=e);const l=this.tools.filter((t=>t instanceof T.ActionTool));t(this.actions,l)&&(this.actions=l);const i=(t,o)=>{t in this.gestures||r.logger.warn(`Toolbar: unknown event type '${t}' for tool: ${o}`)},s={pan:{tools:[],active:null},scroll:{tools:[],active:null},pinch:{tools:[],active:null},tap:{tools:[],active:null},doubletap:{tools:[],active:null},press:{tools:[],active:null},pressup:{tools:[],active:null},rotate:{tools:[],active:null},move:{tools:[],active:null},multi:{tools:[],active:null}};for(const t of this.tools)if(t instanceof y.GestureTool&&t.event_type)if((0,b.isString)(t.event_type))s[t.event_type].tools.push(t),i(t.event_type,t);else{s.multi.tools.push(t);for(const o of t.event_type)i(o,t)}for(const o of Object.keys(s)){const e=this.gestures[o];t(e.tools,s[o].tools)&&(e.tools=s[o].tools),e.active&&(0,v.every)(e.tools,(t=>t.id!=e.active.id))&&(e.active=null)}}get horizontal(){return\"above\"===this.toolbar_location||\"below\"===this.toolbar_location}get vertical(){return\"left\"===this.toolbar_location||\"right\"===this.toolbar_location}_active_change(t){const{event_type:o}=t;if(null==o)return;const e=(0,b.isString)(o)?[o]:o;for(const o of e)if(t.active){const e=this.gestures[o].active;null!=e&&t!=e&&(r.logger.debug(`Toolbar: deactivating tool: ${e} for event type '${o}'`),e.active=!1),this.gestures[o].active=t,r.logger.debug(`Toolbar: activating tool: ${t} for event type '${o}'`)}else this.gestures[o].active=null}}e.ToolbarBase=A,a=A,A.__name__=\"ToolbarBase\",a.prototype.default_view=$,a.define((({Boolean:t,Array:o,Ref:e,Nullable:l})=>({tools:[o(e(w.Tool)),[]],logo:[l(u.Logo),\"normal\"],autohide:[t,!1]}))),a.internal((({Array:t,Struct:o,Ref:e,Nullable:l})=>{const i=o({tools:t(e(y.GestureTool)),active:l(e(w.Tool))});return{gestures:[o({pan:i,scroll:i,pinch:i,tap:i,doubletap:i,press:i,pressup:i,rotate:i,move:i,multi:i}),V],actions:[t(e(T.ActionTool)),[]],inspectors:[t(e(x.InspectTool)),[]],help:[t(e(z.HelpTool)),[]],toolbar_location:[u.Location,\"right\"]}}))},\n", - " function _(n,o,e,t,f){t();const r=n(9);function*i(n,o){const e=n.length;if(o>e)return;const t=(0,r.range)(o);for(yield t.map((o=>n[o]));;){let f;for(const n of(0,r.reversed)((0,r.range)(o)))if(t[n]!=n+e-o){f=n;break}if(null==f)return;t[f]+=1;for(const n of(0,r.range)(f+1,o))t[n]=t[n-1]+1;yield t.map((o=>n[o]))}}e.enumerate=function*(n){let o=0;for(const e of n)yield[e,o++]},e.join=function*(n,o){let e=!0;for(const t of n)e?e=!1:null!=o&&(yield o()),yield*t},e.combinations=i,e.subsets=function*(n){for(const o of(0,r.range)(n.length+1))yield*i(n,o)}},\n", - " function _(t,e,s,i,n){i();const o=t(236),a=t(65),r=t(43);function h(t){!function(t){void 0===t.lineDash&&Object.defineProperty(t,\"lineDash\",{get:()=>t.getLineDash(),set:e=>t.setLineDash(e)})}(t),function(t){t.setImageSmoothingEnabled=e=>{t.imageSmoothingEnabled=e,t.mozImageSmoothingEnabled=e,t.oImageSmoothingEnabled=e,t.webkitImageSmoothingEnabled=e,t.msImageSmoothingEnabled=e},t.getImageSmoothingEnabled=()=>{const e=t.imageSmoothingEnabled;return null==e||e}}(t),function(t){t.ellipse||(t.ellipse=function(e,s,i,n,o,a,r,h=!1){const l=.551784;t.translate(e,s),t.rotate(o);let c=i,g=n;h&&(c=-i,g=-n),t.moveTo(-c,0),t.bezierCurveTo(-c,g*l,-c*l,g,0,g),t.bezierCurveTo(c*l,g,c,g*l,c,0),t.bezierCurveTo(c,-g*l,c*l,-g,0,-g),t.bezierCurveTo(-c*l,-g,-c,-g*l,-c,0),t.rotate(-o),t.translate(-e,-s)})}(t)}const l={position:\"absolute\",top:\"0\",left:\"0\",width:\"100%\",height:\"100%\"};class c{constructor(t,e){switch(this.backend=t,this.hidpi=e,this.pixel_ratio=1,this.bbox=new a.BBox,t){case\"webgl\":case\"canvas\":{this._el=this._canvas=(0,r.canvas)({style:l});const t=this.canvas.getContext(\"2d\");if(null==t)throw new Error(\"unable to obtain 2D rendering context\");this._ctx=t,e&&(this.pixel_ratio=devicePixelRatio);break}case\"svg\":{const t=new o.SVGRenderingContext2D;this._ctx=t,this._canvas=t.get_svg(),this._el=(0,r.div)({style:l},this._canvas);break}}this._ctx.layer=this,h(this._ctx)}get canvas(){return this._canvas}get ctx(){return this._ctx}get el(){return this._el}resize(t,e){this.bbox=new a.BBox({left:0,top:0,width:t,height:e});const s=this._ctx instanceof o.SVGRenderingContext2D?this._ctx:this.canvas;s.width=t*this.pixel_ratio,s.height=e*this.pixel_ratio}undo_transform(t){const{ctx:e}=this;if(void 0===e.getTransform)t(e);else{const s=e.getTransform();e.setTransform(this._base_transform);try{t(e)}finally{e.setTransform(s)}}}prepare(){const{ctx:t,hidpi:e,pixel_ratio:s}=this;t.save(),e&&(t.scale(s,s),t.translate(.5,.5)),void 0!==t.getTransform&&(this._base_transform=t.getTransform()),this.clear()}clear(){const{x:t,y:e,width:s,height:i}=this.bbox;this.ctx.clearRect(t,e,s,i)}finish(){this.ctx.restore()}to_blob(){const{_canvas:t}=this;if(t instanceof HTMLCanvasElement)return null!=t.msToBlob?Promise.resolve(t.msToBlob()):new Promise(((e,s)=>{t.toBlob((t=>null!=t?e(t):s()),\"image/png\")}));{const t=this._ctx.get_serialized_svg(!0),e=new Blob([t],{type:\"image/svg+xml\"});return Promise.resolve(e)}}}s.CanvasLayer=c,c.__name__=\"CanvasLayer\"},\n", - " function _(t,e,i,s,r){s();const n=t(122),a=t(8),o=t(237),l=t(10),h=t(43);function _(t){var e;const i={left:\"start\",right:\"end\",center:\"middle\",start:\"start\",end:\"end\"};return null!==(e=i[t])&&void 0!==e?e:i.start}function c(t){var e;const i={alphabetic:\"alphabetic\",hanging:\"hanging\",top:\"text-before-edge\",bottom:\"text-after-edge\",middle:\"central\"};return null!==(e=i[t])&&void 0!==e?e:i.alphabetic}const p=function(t,e){const i=new Map,s=t.split(\",\");e=null!=e?e:10;for(let t=0;t=0?Math.acos(e):-Math.acos(e)}const v=b(f),A=b(g);this.lineTo(d+f[0]*r,m+f[1]*r),this.arc(d,m,r,v,A)}stroke(){\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"fill\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"stroke\"),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}fill(t,e){let i=null;if(t instanceof Path2D)i=t;else{if(\"evenodd\"!=t&&\"nonzero\"!=t&&null!=t||null!=e)throw new Error(\"invalid arguments\");e=t}if(null!=i)throw new Error(\"not implemented\");\"none\"!=this.__currentElement.getAttribute(\"fill\")&&this.__init_element(),\"path\"===this.__currentElement.nodeName&&this.__currentElement.setAttribute(\"paint-order\",\"stroke\"),this.__applyCurrentDefaultPath(),this.__applyStyleToCurrentElement(\"fill\"),null!=e&&this.__currentElement.setAttribute(\"fill-rule\",e),null!=this._clip_path&&this.__currentElement.setAttribute(\"clip-path\",this._clip_path)}rect(t,e,i,s){isFinite(t+e+i+s)&&(this.moveTo(t,e),this.lineTo(t+i,e),this.lineTo(t+i,e+s),this.lineTo(t,e+s),this.lineTo(t,e))}fillRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.fill())}strokeRect(t,e,i,s){isFinite(t+e+i+s)&&(this.beginPath(),this.rect(t,e,i,s),this.stroke())}__clearCanvas(){(0,h.empty)(this.__defs),(0,h.empty)(this.__root),this.__root.appendChild(this.__defs),this.__currentElement=this.__root}clearRect(t,e,i,s){if(!isFinite(t+e+i+s))return;if(0===t&&0===e&&i===this.width&&s===this.height)return void this.__clearCanvas();const r=this.__createElement(\"rect\",{x:t,y:e,width:i,height:s,fill:\"#FFFFFF\"},!0);this._apply_transform(r),this.__root.appendChild(r)}createLinearGradient(t,e,i,s){if(!isFinite(t+e+i+s))throw new Error(\"The provided double value is non-finite\");const[r,n]=this._transform.apply(t,e),[a,o]=this._transform.apply(i,s),l=this.__createElement(\"linearGradient\",{id:this._random_string(),x1:`${r}px`,x2:`${a}px`,y1:`${n}px`,y2:`${o}px`,gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(l),new d(l,this)}createRadialGradient(t,e,i,s,r,n){if(!isFinite(t+e+i+s+r+n))throw new Error(\"The provided double value is non-finite\");const[a,o]=this._transform.apply(t,e),[l,h]=this._transform.apply(s,r),_=this.__createElement(\"radialGradient\",{id:this._random_string(),cx:`${l}px`,cy:`${h}px`,r:`${n}px`,r0:`${i}px`,fx:`${a}px`,fy:`${o}px`,gradientUnits:\"userSpaceOnUse\"},!1);return this.__defs.appendChild(_),new d(_,this)}__parseFont(){var t,e,i,s,r;const n=/^\\s*(?=(?:(?:[-a-z]+\\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\\1|\\2|\\3)\\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx]))(?:\\s*\\/\\s*(normal|[.\\d]+(?:\\%|in|[cem]m|ex|p[ctx])))?\\s*([-,\\'\\\"\\sa-z0-9]+?)\\s*$/i.exec(this.font);return{style:null!==(t=n[1])&&void 0!==t?t:\"normal\",size:null!==(e=n[4])&&void 0!==e?e:\"10px\",family:null!==(i=n[6])&&void 0!==i?i:\"sans-serif\",weight:null!==(s=n[3])&&void 0!==s?s:\"normal\",decoration:null!==(r=n[2])&&void 0!==r?r:\"normal\"}}__applyText(t,e,i,s){const r=this.__parseFont(),n=this.__createElement(\"text\",{\"font-family\":r.family,\"font-size\":r.size,\"font-style\":r.style,\"font-weight\":r.weight,\"text-decoration\":r.decoration,x:e,y:i,\"text-anchor\":_(this.textAlign),\"dominant-baseline\":c(this.textBaseline)},!0);n.appendChild(this.__document.createTextNode(t)),this._apply_transform(n),this.__currentElement=n,this.__applyStyleToCurrentElement(s);const a=(()=>{if(null!=this._clip_path){const t=this.__createElement(\"g\");return t.setAttribute(\"clip-path\",this._clip_path),t.appendChild(n),t}return n})();this.__root.appendChild(a)}fillText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"fill\")}strokeText(t,e,i){null!=t&&isFinite(e+i)&&this.__applyText(t,e,i,\"stroke\")}measureText(t){return this.__ctx.font=this.font,this.__ctx.measureText(t)}arc(t,e,i,s,r,n=!1){this.ellipse(t,e,i,i,0,s,r,n)}ellipse(t,e,i,s,r,n,a,o=!1){if(!isFinite(t+e+i+s+r+n+a))return;if(i<0||s<0)throw new DOMException(\"IndexSizeError, radius can't be negative\");const h=o?a-n:n-a;n%=2*Math.PI,a%=2*Math.PI;const _=t+i*Math.cos(n),c=e+s*Math.sin(n);this.lineTo(_,c);const p=180*r/Math.PI,u=o?0:1;if(Math.abs(n-a)<2*l.float32_epsilon&&!(Math.abs(h)<2*l.float32_epsilon&&h<0)){const r=t+i*Math.cos(n+Math.PI),a=e+s*Math.sin(n+Math.PI),[o,l]=this._transform.apply(_,c),[h,d]=this._transform.apply(r,a);this.__addPathCommand(o,l,`A ${i} ${s} ${p} 0 ${u} ${h} ${d} A ${i} ${s} ${p} 0 ${u} ${o} ${l}`)}else{const r=t+i*Math.cos(a),l=e+s*Math.sin(a);let h=a-n;h<0&&(h+=2*Math.PI);const _=o!==h>Math.PI?1:0,[c,d]=this._transform.apply(r,l);this.__addPathCommand(c,d,`A ${i} ${s} ${p} ${_} ${u} ${c} ${d}`)}}clip(){const t=this.__createElement(\"clipPath\"),e=this._random_string();this.__applyCurrentDefaultPath(),t.setAttribute(\"id\",e),t.appendChild(this.__currentElement),this.__defs.appendChild(t),this._clip_path=`url(#${e})`}drawImage(t,...e){let i,s,r,n,a,o,l,h;if(2==e.length){if([i,s]=e,!isFinite(i+s))return;a=0,o=0,l=t.width,h=t.height,r=l,n=h}else if(4==e.length){if([i,s,r,n]=e,!isFinite(i+s+r+n))return;a=0,o=0,l=t.width,h=t.height}else{if(8!==e.length)throw new Error(`Inavlid number of arguments passed to drawImage: ${arguments.length}`);if([a,o,l,h,i,s,r,n]=e,!isFinite(a+o+l+h+i+s+r+n))return}const _=this.__root,c=this._transform.clone().translate(i,s);if(t instanceof f||t instanceof SVGSVGElement){const e=(t instanceof SVGSVGElement?t:t.get_svg()).cloneNode(!0);let i;c.is_identity&&1==this.globalAlpha&&null==this._clip_path?i=_:(i=this.__createElement(\"g\"),c.is_identity||this._apply_transform(i,c),1!=this.globalAlpha&&i.setAttribute(\"opacity\",`${this.globalAlpha}`),null!=this._clip_path&&i.setAttribute(\"clip-path\",this._clip_path),_.appendChild(i));for(const t of[...e.childNodes])if(t instanceof SVGDefsElement){for(const e of[...t.childNodes])if(e instanceof Element){const t=e.getAttribute(\"id\");this.__ids.add(t),this.__defs.appendChild(e.cloneNode(!0))}}else i.appendChild(t.cloneNode(!0))}else if(t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__createElement(\"image\");if(e.setAttribute(\"width\",`${r}`),e.setAttribute(\"height\",`${n}`),e.setAttribute(\"preserveAspectRatio\",\"none\"),1!=this.globalAlpha&&e.setAttribute(\"opacity\",`${this.globalAlpha}`),a||o||l!==t.width||h!==t.height){const e=this.__document.createElement(\"canvas\");e.width=r,e.height=n;e.getContext(\"2d\").drawImage(t,a,o,l,h,0,0,r,n),t=e}this._apply_transform(e,c);const i=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");if(e.setAttribute(\"href\",i),null!=this._clip_path){const t=this.__createElement(\"g\");t.setAttribute(\"clip-path\",this._clip_path),t.appendChild(e),_.appendChild(t)}else _.appendChild(e)}else if(t instanceof HTMLCanvasElement){const e=this.__createElement(\"image\");e.setAttribute(\"width\",`${r}`),e.setAttribute(\"height\",`${n}`),e.setAttribute(\"preserveAspectRatio\",\"none\"),1!=this.globalAlpha&&e.setAttribute(\"opacity\",`${this.globalAlpha}`);const i=this.__document.createElement(\"canvas\");i.width=r,i.height=n;const s=i.getContext(\"2d\");if(s.imageSmoothingEnabled=!1,s.drawImage(t,a,o,l,h,0,0,r,n),t=i,this._apply_transform(e,c),e.setAttribute(\"href\",t.toDataURL()),null!=this._clip_path){const t=this.__createElement(\"g\");t.setAttribute(\"clip-path\",this._clip_path),t.appendChild(e),_.appendChild(t)}else _.appendChild(e)}}createPattern(t,e){const i=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"pattern\"),s=this._random_string();if(i.setAttribute(\"id\",s),i.setAttribute(\"width\",`${this._to_number(t.width)}`),i.setAttribute(\"height\",`${this._to_number(t.height)}`),i.setAttribute(\"patternUnits\",\"userSpaceOnUse\"),t instanceof HTMLCanvasElement||t instanceof HTMLImageElement||t instanceof SVGImageElement){const e=this.__document.createElementNS(\"http://www.w3.org/2000/svg\",\"image\"),s=t instanceof HTMLCanvasElement?t.toDataURL():t.getAttribute(\"src\");e.setAttribute(\"href\",s),i.appendChild(e),this.__defs.appendChild(i)}else if(t instanceof f){for(const e of[...t.__root.childNodes])e instanceof SVGDefsElement||i.appendChild(e.cloneNode(!0));this.__defs.appendChild(i)}else{if(!(t instanceof SVGSVGElement))throw new Error(\"unsupported\");for(const e of[...t.childNodes])e instanceof SVGDefsElement||i.appendChild(e.cloneNode(!0));this.__defs.appendChild(i)}return new m(i,this)}getLineDash(){const{lineDash:t}=this;return(0,a.isString)(t)?t.split(\",\").map((t=>parseInt(t))):null==t?[]:t}setLineDash(t){t&&t.length>0?this.lineDash=t.join(\",\"):this.lineDash=null}_to_number(t){return(0,a.isNumber)(t)?t:t.baseVal.value}getTransform(){return this._transform.to_DOMMatrix()}setTransform(...t){let e;e=(0,a.isNumber)(t[0])?new DOMMatrix(t):t[0]instanceof DOMMatrix?t[0]:new DOMMatrix(Object.values(!t[0])),this._transform=n.AffineTransform.from_DOMMatrix(e)}resetTransform(){this._transform=new n.AffineTransform}isPointInPath(...t){throw new Error(\"not implemented\")}isPointInStroke(...t){throw new Error(\"not implemented\")}createImageData(...t){throw new Error(\"not implemented\")}getImageData(t,e,i,s){throw new Error(\"not implemented\")}putImageData(...t){throw new Error(\"not implemented\")}drawFocusIfNeeded(...t){throw new Error(\"not implemented\")}scrollPathIntoView(...t){throw new Error(\"not implemented\")}}i.SVGRenderingContext2D=f,f.__name__=\"SVGRenderingContext2D\",f.__random=o.random},\n", - " function _(e,t,s,n,r){n();const o=2147483647;class i{constructor(e){this.seed=e%o,this.seed<=0&&(this.seed+=2147483646)}integer(){return this.seed=48271*this.seed%o,this.seed}float(){return(this.integer()-1)/2147483646}floats(e,t=0,s=1){const n=new Array(e);for(let r=0;rthis.doit(o)))}}n.ActionToolView=_,_.__name__=\"ActionToolView\";class d extends s.ButtonTool{constructor(o){super(o),this.button_view=l,this.do=new c.Signal(this,\"do\")}}n.ActionTool=d,d.__name__=\"ActionTool\"},\n", - " function _(o,e,t,l,i){var s;l();const n=o(238),r=o(228);class c extends n.ActionToolView{doit(){window.open(this.model.redirect)}}t.HelpToolView=c,c.__name__=\"HelpToolView\";class _ extends n.ActionTool{constructor(o){super(o),this.tool_name=\"Help\",this.icon=r.tool_icon_help}}t.HelpTool=_,s=_,_.__name__=\"HelpTool\",s.prototype.default_view=c,s.define((({String:o})=>({redirect:[o,\"https://docs.bokeh.org/en/latest/docs/user_guide/tools.html\"]}))),s.override({description:\"Click the question mark to learn more about Bokeh plot tools.\"}),s.register_alias(\"help\",(()=>new _))},\n", - " function _(o,l,g,A,r){A(),g.root=\"bk-root\",g.logo=\"bk-logo\",g.grey=\"bk-grey\",g.logo_small=\"bk-logo-small\",g.logo_notebook=\"bk-logo-notebook\",g.default=\".bk-root .bk-logo{margin:5px;position:relative;display:block;background-repeat:no-repeat;}.bk-root .bk-logo.bk-grey{filter:url(\\\"data:image/svg+xml;utf8,#grayscale\\\");filter:gray;-webkit-filter:grayscale(100%);}.bk-root .bk-logo-small{width:20px;height:20px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAOkSURBVDiNjZRtaJVlGMd/1/08zzln5zjP1LWcU9N0NkN8m2CYjpgQYQXqSs0I84OLIC0hkEKoPtiH3gmKoiJDU7QpLgoLjLIQCpEsNJ1vqUOdO7ppbuec5+V+rj4ctwzd8IIbbi6u+8f1539dt3A78eXC7QizUF7gyV1fD1Yqg4JWz84yffhm0qkFqBogB9rM8tZdtwVsPUhWhGcFJngGeWrPzHm5oaMmkfEg1usvLFyc8jLRqDOMru7AyC8saQr7GG7f5fvDeH7Ej8CM66nIF+8yngt6HWaKh7k49Soy9nXurCi1o3qUbS3zWfrYeQDTB/Qj6kX6Ybhw4B+bOYoLKCC9H3Nu/leUTZ1JdRWkkn2ldcCamzrcf47KKXdAJllSlxAOkRgyHsGC/zRday5Qld9DyoM4/q/rUoy/CXh3jzOu3bHUVZeU+DEn8FInkPBFlu3+nW3Nw0mk6vCDiWg8CeJaxEwuHS3+z5RgY+YBR6V1Z1nxSOfoaPa4LASWxxdNp+VWTk7+4vzaou8v8PN+xo+KY2xsw6une2frhw05CTYOmQvsEhjhWjn0bmXPjpE1+kplmmkP3suftwTubK9Vq22qKmrBhpY4jvd5afdRA3wGjFAgcnTK2s4hY0/GPNIb0nErGMCRxWOOX64Z8RAC4oCXdklmEvcL8o0BfkNK4lUg9HTl+oPlQxdNo3Mg4Nv175e/1LDGzZen30MEjRUtmXSfiTVu1kK8W4txyV6BMKlbgk3lMwYCiusNy9fVfvvwMxv8Ynl6vxoByANLTWplvuj/nF9m2+PDtt1eiHPBr1oIfhCChQMBw6Aw0UulqTKZdfVvfG7VcfIqLG9bcldL/+pdWTLxLUy8Qq38heUIjh4XlzZxzQm19lLFlr8vdQ97rjZVOLf8nclzckbcD4wxXMidpX30sFd37Fv/GtwwhzhxGVAprjbg0gCAEeIgwCZyTV2Z1REEW8O4py0wsjeloKoMr6iCY6dP92H6Vw/oTyICIthibxjm/DfN9lVz8IqtqKYLUXfoKVMVQVVJOElGjrnnUt9T9wbgp8AyYKaGlqingHZU/uG2NTZSVqwHQTWkx9hxjkpWDaCg6Ckj5qebgBVbT3V3NNXMSiWSDdGV3hrtzla7J+duwPOToIg42ChPQOQjspnSlp1V+Gjdged7+8UN5CRAV7a5EdFNwCjEaBR27b3W890TE7g24NAP/mMDXRWrGoFPQI9ls/MWO2dWFAar/xcOIImbbpA3zgAAAABJRU5ErkJggg==);}.bk-root .bk-logo-notebook{display:inline-block;vertical-align:middle;margin-right:5px;}\"},\n", - " function _(e,t,s,i,l){i();const o=e(1);var n;const a=e(40),h=e(20),r=e(43),c=(0,o.__importStar)(e(242)),d=c;class p extends a.AnnotationView{initialize(){super.initialize(),this.el=(0,r.div)({class:d.tooltip}),(0,r.undisplay)(this.el),this.plot_view.canvas_view.add_overlay(this.el)}remove(){(0,r.remove)(this.el),super.remove()}connect_signals(){super.connect_signals(),this.connect(this.model.properties.content.change,(()=>this.render())),this.connect(this.model.properties.position.change,(()=>this._reposition()))}styles(){return[...super.styles(),c.default]}render(){this.model.visible||(0,r.undisplay)(this.el),super.render()}_render(){const{content:e}=this.model;null!=e?((0,r.empty)(this.el),(0,r.classes)(this.el).toggle(\"bk-tooltip-custom\",this.model.custom),this.el.appendChild(e),this.model.show_arrow&&this.el.classList.add(d.tooltip_arrow)):(0,r.undisplay)(this.el)}_reposition(){const{position:e}=this.model;if(null==e)return void(0,r.undisplay)(this.el);const[t,s]=e,i=(()=>{const e=this.parent.layout.bbox.relative(),{attachment:i}=this.model;switch(i){case\"horizontal\":return t({attachment:[h.TooltipAttachment,\"horizontal\"],inner_only:[e,!0],show_arrow:[e,!0]}))),n.internal((({Boolean:e,Number:t,Tuple:s,Ref:i,Nullable:l})=>({position:[l(s(t,t)),null],content:[i(HTMLElement),()=>(0,r.div)()],custom:[e]}))),n.override({level:\"overlay\"})},\n", - " function _(o,t,r,e,l){e(),r.root=\"bk-root\",r.tooltip=\"bk-tooltip\",r.left=\"bk-left\",r.tooltip_arrow=\"bk-tooltip-arrow\",r.right=\"bk-right\",r.above=\"bk-above\",r.below=\"bk-below\",r.tooltip_row_label=\"bk-tooltip-row-label\",r.tooltip_row_value=\"bk-tooltip-row-value\",r.tooltip_color_block=\"bk-tooltip-color-block\",r.default='.bk-root{}.bk-root .bk-tooltip{font-weight:300;font-size:12px;position:absolute;padding:5px;border:1px solid #e5e5e5;color:#2f2f2f;background-color:white;pointer-events:none;opacity:0.95;z-index:100;}.bk-root .bk-tooltip > div:not(:first-child){margin-top:5px;border-top:#e5e5e5 1px dashed;}.bk-root .bk-tooltip.bk-left.bk-tooltip-arrow::before{position:absolute;margin:-7px 0 0 0;top:50%;width:0;height:0;border-style:solid;border-width:7px 0 7px 0;border-color:transparent;content:\" \";display:block;left:-10px;border-right-width:10px;border-right-color:#909599;}.bk-root .bk-tooltip.bk-left::before{left:-10px;border-right-width:10px;border-right-color:#909599;}.bk-root .bk-tooltip.bk-right.bk-tooltip-arrow::after{position:absolute;margin:-7px 0 0 0;top:50%;width:0;height:0;border-style:solid;border-width:7px 0 7px 0;border-color:transparent;content:\" \";display:block;right:-10px;border-left-width:10px;border-left-color:#909599;}.bk-root .bk-tooltip.bk-right::after{right:-10px;border-left-width:10px;border-left-color:#909599;}.bk-root .bk-tooltip.bk-above::before{position:absolute;margin:0 0 0 -7px;left:50%;width:0;height:0;border-style:solid;border-width:0 7px 0 7px;border-color:transparent;content:\" \";display:block;top:-10px;border-bottom-width:10px;border-bottom-color:#909599;}.bk-root .bk-tooltip.bk-below::after{position:absolute;margin:0 0 0 -7px;left:50%;width:0;height:0;border-style:solid;border-width:0 7px 0 7px;border-color:transparent;content:\" \";display:block;bottom:-10px;border-top-width:10px;border-top-color:#909599;}.bk-root .bk-tooltip-row-label{text-align:right;color:#26aae1;}.bk-root .bk-tooltip-row-value{color:default;}.bk-root .bk-tooltip-color-block{width:12px;height:12px;margin-left:5px;margin-right:5px;outline:#dddddd solid 1px;display:inline-block;}'},\n", - " function _(e,t,s,i,r){var a;i();const l=e(115),_=e(112),h=e(113),o=e(48);class n extends l.UpperLowerView{async lazy_initialize(){await super.lazy_initialize();const{lower_head:e,upper_head:t}=this.model;null!=e&&(this.lower_head=await(0,h.build_view)(e,{parent:this})),null!=t&&(this.upper_head=await(0,h.build_view)(t,{parent:this}))}set_data(e){var t,s;super.set_data(e),null===(t=this.lower_head)||void 0===t||t.set_data(e),null===(s=this.upper_head)||void 0===s||s.set_data(e)}paint(e){if(this.visuals.line.doit)for(let t=0,s=this._lower_sx.length;t({lower_head:[t(e(_.ArrowHead)),()=>new _.TeeHead({size:10})],upper_head:[t(e(_.ArrowHead)),()=>new _.TeeHead({size:10})]}))),a.override({level:\"underlay\"})},\n", - " function _(n,o,t,u,e){u(),e(\"CustomJS\",n(245).CustomJS),e(\"OpenURL\",n(247).OpenURL)},\n", - " function _(t,e,s,n,c){var a;n();const r=t(246),u=t(13),o=t(34);class i extends r.Callback{constructor(t){super(t)}get names(){return(0,u.keys)(this.args)}get values(){return(0,u.values)(this.args)}get func(){const t=(0,o.use_strict)(this.code);return new Function(...this.names,\"cb_obj\",\"cb_data\",t)}execute(t,e={}){return this.func.apply(t,this.values.concat(t,e))}}s.CustomJS=i,a=i,i.__name__=\"CustomJS\",a.define((({Unknown:t,String:e,Dict:s})=>({args:[s(t),{}],code:[e,\"\"]})))},\n", - " function _(c,a,l,n,s){n();const e=c(53);class o extends e.Model{constructor(c){super(c)}}l.Callback=o,o.__name__=\"Callback\"},\n", - " function _(e,t,n,o,i){var s;o();const c=e(246),r=e(152),a=e(8);class d extends c.Callback{constructor(e){super(e)}navigate(e){this.same_tab?window.location.href=e:window.open(e)}execute(e,{source:t}){const n=e=>{const n=(0,r.replace_placeholders)(this.url,t,e,void 0,void 0,encodeURI);if(!(0,a.isString)(n))throw new Error(\"HTML output is not supported in this context\");this.navigate(n)},{selected:o}=t;for(const e of o.indices)n(e);for(const e of o.line_indices)n(e)}}n.OpenURL=d,s=d,d.__name__=\"OpenURL\",s.define((({Boolean:e,String:t})=>({url:[t,\"http://\"],same_tab:[e,!1]})))},\n", - " function _(a,n,i,e,r){e(),r(\"Canvas\",a(249).Canvas),r(\"CartesianFrame\",a(126).CartesianFrame),r(\"CoordinateMapping\",a(54).CoordinateMapping)},\n", - " function _(e,t,i,s,a){var r,l=this&&this.__createBinding||(Object.create?function(e,t,i,s){void 0===s&&(s=i),Object.defineProperty(e,s,{enumerable:!0,get:function(){return t[i]}})}:function(e,t,i,s){void 0===s&&(s=i),e[s]=t[i]}),n=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:!0,value:t})}:function(e,t){e.default=t}),o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var i in e)\"default\"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&l(t,e,i);return n(t,e),t};s();const h=e(14),c=e(226),u=e(19),_=e(43),d=e(20),p=e(13),b=e(250),v=e(65),g=e(138),w=e(235);const y=(()=>{let t;return async()=>void 0!==t?t:t=await async function(){const t=document.createElement(\"canvas\"),i=t.getContext(\"webgl\",{premultipliedAlpha:!0});if(null!=i){const s=await(0,g.load_module)(Promise.resolve().then((()=>o(e(410)))));if(null!=s){const e=s.get_regl(i);if(e.has_webgl)return{canvas:t,regl_wrapper:e};u.logger.trace(\"WebGL is supported, but not the required extensions\")}else u.logger.trace(\"WebGL is supported, but bokehjs(.min).js bundle is not available\")}else u.logger.trace(\"WebGL is not supported\");return null}()})(),m={position:\"absolute\",top:\"0\",left:\"0\",width:\"100%\",height:\"100%\"};class f extends c.DOMView{constructor(){super(...arguments),this.bbox=new v.BBox,this.webgl=null}initialize(){super.initialize(),this.underlays_el=(0,_.div)({style:m}),this.primary=this.create_layer(),this.overlays=this.create_layer(),this.overlays_el=(0,_.div)({style:m}),this.events_el=(0,_.div)({class:\"bk-canvas-events\",style:m});const e=[this.underlays_el,this.primary.el,this.overlays.el,this.overlays_el,this.events_el];(0,p.extend)(this.el.style,m),(0,_.append)(this.el,...e),this.ui_event_bus=new b.UIEventBus(this)}async lazy_initialize(){await super.lazy_initialize(),\"webgl\"==this.model.output_backend&&(this.webgl=await y())}remove(){this.ui_event_bus.destroy(),super.remove()}add_underlay(e){this.underlays_el.appendChild(e)}add_overlay(e){this.overlays_el.appendChild(e)}add_event(e){this.events_el.appendChild(e)}get pixel_ratio(){return this.primary.pixel_ratio}resize(e,t){this.bbox=new v.BBox({left:0,top:0,width:e,height:t}),this.primary.resize(e,t),this.overlays.resize(e,t)}prepare_webgl(e){const{webgl:t}=this;if(null!=t){const{width:i,height:s}=this.bbox;t.canvas.width=this.pixel_ratio*i,t.canvas.height=this.pixel_ratio*s;const[a,r,l,n]=e,{xview:o,yview:h}=this.bbox,c=o.compute(a),u=h.compute(r+n),_=this.pixel_ratio;t.regl_wrapper.set_scissor(_*c,_*u,_*l,_*n),this._clear_webgl()}}blit_webgl(e){const{webgl:t}=this;if(null!=t){if(u.logger.debug(\"Blitting WebGL canvas\"),e.restore(),e.drawImage(t.canvas,0,0),e.save(),this.model.hidpi){const t=this.pixel_ratio;e.scale(t,t),e.translate(.5,.5)}this._clear_webgl()}}_clear_webgl(){const{webgl:e}=this;if(null!=e){const{regl_wrapper:t,canvas:i}=e;t.clear(i.width,i.height)}}compose(){const e=this.create_layer(),{width:t,height:i}=this.bbox;return e.resize(t,i),e.ctx.drawImage(this.primary.canvas,0,0),e.ctx.drawImage(this.overlays.canvas,0,0),e}create_layer(){const{output_backend:e,hidpi:t}=this.model;return new w.CanvasLayer(e,t)}to_blob(){return this.compose().to_blob()}}i.CanvasView=f,f.__name__=\"CanvasView\";class x extends h.HasProps{constructor(e){super(e)}}i.Canvas=x,r=x,x.__name__=\"Canvas\",r.prototype.default_view=f,r.internal((({Boolean:e})=>({hidpi:[e,!0],output_backend:[d.OutputBackend,\"canvas\"]})))},\n", - " function _(t,e,s,n,i){n();const r=t(1),a=(0,r.__importDefault)(t(225)),_=t(15),h=t(19),o=t(43),l=(0,r.__importStar)(t(251)),c=t(252),p=t(9),u=t(8),v=t(27),d=t(230);class g{constructor(t){this.canvas_view=t,this.pan_start=new _.Signal(this,\"pan:start\"),this.pan=new _.Signal(this,\"pan\"),this.pan_end=new _.Signal(this,\"pan:end\"),this.pinch_start=new _.Signal(this,\"pinch:start\"),this.pinch=new _.Signal(this,\"pinch\"),this.pinch_end=new _.Signal(this,\"pinch:end\"),this.rotate_start=new _.Signal(this,\"rotate:start\"),this.rotate=new _.Signal(this,\"rotate\"),this.rotate_end=new _.Signal(this,\"rotate:end\"),this.tap=new _.Signal(this,\"tap\"),this.doubletap=new _.Signal(this,\"doubletap\"),this.press=new _.Signal(this,\"press\"),this.pressup=new _.Signal(this,\"pressup\"),this.move_enter=new _.Signal(this,\"move:enter\"),this.move=new _.Signal(this,\"move\"),this.move_exit=new _.Signal(this,\"move:exit\"),this.scroll=new _.Signal(this,\"scroll\"),this.keydown=new _.Signal(this,\"keydown\"),this.keyup=new _.Signal(this,\"keyup\"),this.hammer=new a.default(this.hit_area,{touchAction:\"auto\",inputClass:a.default.TouchMouseInput}),this._prev_move=null,this._curr_pan=null,this._curr_pinch=null,this._curr_rotate=null,this._configure_hammerjs(),this.hit_area.addEventListener(\"mousemove\",(t=>this._mouse_move(t))),this.hit_area.addEventListener(\"mouseenter\",(t=>this._mouse_enter(t))),this.hit_area.addEventListener(\"mouseleave\",(t=>this._mouse_exit(t))),this.hit_area.addEventListener(\"contextmenu\",(t=>this._context_menu(t))),this.hit_area.addEventListener(\"wheel\",(t=>this._mouse_wheel(t))),document.addEventListener(\"keydown\",this),document.addEventListener(\"keyup\",this),this.menu=new d.ContextMenu([],{prevent_hide:t=>2==t.button&&t.target==this.hit_area}),this.hit_area.appendChild(this.menu.el)}get hit_area(){return this.canvas_view.events_el}destroy(){this.menu.remove(),this.hammer.destroy(),document.removeEventListener(\"keydown\",this),document.removeEventListener(\"keyup\",this)}handleEvent(t){\"keydown\"==t.type?this._key_down(t):\"keyup\"==t.type&&this._key_up(t)}_configure_hammerjs(){this.hammer.get(\"doubletap\").recognizeWith(\"tap\"),this.hammer.get(\"tap\").requireFailure(\"doubletap\"),this.hammer.get(\"doubletap\").dropRequireFailure(\"tap\"),this.hammer.on(\"doubletap\",(t=>this._doubletap(t))),this.hammer.on(\"tap\",(t=>this._tap(t))),this.hammer.on(\"press\",(t=>this._press(t))),this.hammer.on(\"pressup\",(t=>this._pressup(t))),this.hammer.get(\"pan\").set({direction:a.default.DIRECTION_ALL}),this.hammer.on(\"panstart\",(t=>this._pan_start(t))),this.hammer.on(\"pan\",(t=>this._pan(t))),this.hammer.on(\"panend\",(t=>this._pan_end(t))),this.hammer.get(\"pinch\").set({enable:!0}),this.hammer.on(\"pinchstart\",(t=>this._pinch_start(t))),this.hammer.on(\"pinch\",(t=>this._pinch(t))),this.hammer.on(\"pinchend\",(t=>this._pinch_end(t))),this.hammer.get(\"rotate\").set({enable:!0}),this.hammer.on(\"rotatestart\",(t=>this._rotate_start(t))),this.hammer.on(\"rotate\",(t=>this._rotate(t))),this.hammer.on(\"rotateend\",(t=>this._rotate_end(t)))}register_tool(t){const e=t.model.event_type;null!=e&&((0,u.isString)(e)?this._register_tool(t,e):e.forEach(((e,s)=>this._register_tool(t,e,s<1))))}_register_tool(t,e,s=!0){const n=t,{id:i}=n.model,r=t=>e=>{e.id==i&&t(e.e)},a=t=>e=>{t(e.e)};switch(e){case\"pan\":null!=n._pan_start&&n.connect(this.pan_start,r(n._pan_start.bind(n))),null!=n._pan&&n.connect(this.pan,r(n._pan.bind(n))),null!=n._pan_end&&n.connect(this.pan_end,r(n._pan_end.bind(n)));break;case\"pinch\":null!=n._pinch_start&&n.connect(this.pinch_start,r(n._pinch_start.bind(n))),null!=n._pinch&&n.connect(this.pinch,r(n._pinch.bind(n))),null!=n._pinch_end&&n.connect(this.pinch_end,r(n._pinch_end.bind(n)));break;case\"rotate\":null!=n._rotate_start&&n.connect(this.rotate_start,r(n._rotate_start.bind(n))),null!=n._rotate&&n.connect(this.rotate,r(n._rotate.bind(n))),null!=n._rotate_end&&n.connect(this.rotate_end,r(n._rotate_end.bind(n)));break;case\"move\":null!=n._move_enter&&n.connect(this.move_enter,r(n._move_enter.bind(n))),null!=n._move&&n.connect(this.move,r(n._move.bind(n))),null!=n._move_exit&&n.connect(this.move_exit,r(n._move_exit.bind(n)));break;case\"tap\":null!=n._tap&&n.connect(this.tap,r(n._tap.bind(n))),null!=n._doubletap&&n.connect(this.doubletap,r(n._doubletap.bind(n)));break;case\"press\":null!=n._press&&n.connect(this.press,r(n._press.bind(n))),null!=n._pressup&&n.connect(this.pressup,r(n._pressup.bind(n)));break;case\"scroll\":null!=n._scroll&&n.connect(this.scroll,r(n._scroll.bind(n)));break;default:throw new Error(`unsupported event_type: ${e}`)}s&&(null!=n._keydown&&n.connect(this.keydown,a(n._keydown.bind(n))),null!=n._keyup&&n.connect(this.keyup,a(n._keyup.bind(n))),v.is_mobile&&null!=n._scroll&&\"pinch\"==e&&(h.logger.debug(\"Registering scroll on touch screen\"),n.connect(this.scroll,r(n._scroll.bind(n)))))}_hit_test_renderers(t,e,s){var n;const i=t.get_renderer_views();for(const t of(0,p.reversed)(i))if(null===(n=t.interactive_hit)||void 0===n?void 0:n.call(t,e,s))return t;return null}set_cursor(t=\"default\"){this.hit_area.style.cursor=t}_hit_test_frame(t,e,s){return t.frame.bbox.contains(e,s)}_hit_test_canvas(t,e,s){return t.layout.bbox.contains(e,s)}_hit_test_plot(t,e){for(const s of this.canvas_view.plot_views)if(s.layout.bbox.relative().contains(t,e))return s;return null}_trigger(t,e,s){var n;const{sx:i,sy:r}=e,a=this._hit_test_plot(i,r),_=t=>{const[s,n]=[i,r];return Object.assign(Object.assign({},e),{sx:s,sy:n})};if(\"panstart\"==e.type||\"pan\"==e.type||\"panend\"==e.type){let n;if(\"panstart\"==e.type&&null!=a?(this._curr_pan={plot_view:a},n=a):\"pan\"==e.type&&null!=this._curr_pan?n=this._curr_pan.plot_view:\"panend\"==e.type&&null!=this._curr_pan?(n=this._curr_pan.plot_view,this._curr_pan=null):n=null,null!=n){const e=_();this.__trigger(n,t,e,s)}}else if(\"pinchstart\"==e.type||\"pinch\"==e.type||\"pinchend\"==e.type){let n;if(\"pinchstart\"==e.type&&null!=a?(this._curr_pinch={plot_view:a},n=a):\"pinch\"==e.type&&null!=this._curr_pinch?n=this._curr_pinch.plot_view:\"pinchend\"==e.type&&null!=this._curr_pinch?(n=this._curr_pinch.plot_view,this._curr_pinch=null):n=null,null!=n){const e=_();this.__trigger(n,t,e,s)}}else if(\"rotatestart\"==e.type||\"rotate\"==e.type||\"rotateend\"==e.type){let n;if(\"rotatestart\"==e.type&&null!=a?(this._curr_rotate={plot_view:a},n=a):\"rotate\"==e.type&&null!=this._curr_rotate?n=this._curr_rotate.plot_view:\"rotateend\"==e.type&&null!=this._curr_rotate?(n=this._curr_rotate.plot_view,this._curr_rotate=null):n=null,null!=n){const e=_();this.__trigger(n,t,e,s)}}else if(\"mouseenter\"==e.type||\"mousemove\"==e.type||\"mouseleave\"==e.type){const h=null===(n=this._prev_move)||void 0===n?void 0:n.plot_view;if(null!=h&&(\"mouseleave\"==e.type||h!=a)){const{sx:t,sy:e}=_();this.__trigger(h,this.move_exit,{type:\"mouseleave\",sx:t,sy:e,shiftKey:!1,ctrlKey:!1},s)}if(null!=a&&(\"mouseenter\"==e.type||h!=a)){const{sx:t,sy:e}=_();this.__trigger(a,this.move_enter,{type:\"mouseenter\",sx:t,sy:e,shiftKey:!1,ctrlKey:!1},s)}if(null!=a&&\"mousemove\"==e.type){const e=_();this.__trigger(a,t,e,s)}this._prev_move={sx:i,sy:r,plot_view:a}}else if(null!=a){const e=_();this.__trigger(a,t,e,s)}}__trigger(t,e,s,n){var i,r;const a=t.model.toolbar.gestures,_=e.name.split(\":\")[0],h=this._hit_test_renderers(t,s.sx,s.sy),o=this._hit_test_canvas(t,s.sx,s.sy);switch(_){case\"move\":{const n=a[_].active;null!=n&&this.trigger(e,s,n.id);const r=t.model.toolbar.inspectors.filter((t=>t.active));let l=\"default\";null!=h?(l=null!==(i=h.cursor(s.sx,s.sy))&&void 0!==i?i:l,(0,p.is_empty)(r)||(e=this.move_exit)):this._hit_test_frame(t,s.sx,s.sy)&&((0,p.is_empty)(r)||(l=\"crosshair\")),this.set_cursor(l),t.set_toolbar_visibility(o),r.map((t=>this.trigger(e,s,t.id)));break}case\"tap\":{const{target:t}=n;if(null!=t&&t!=this.hit_area)return;null!=h&&null!=h.on_hit&&h.on_hit(s.sx,s.sy);const i=a[_].active;null!=i&&this.trigger(e,s,i.id);break}case\"doubletap\":{const t=null!==(r=a.doubletap.active)&&void 0!==r?r:a.tap.active;null!=t&&this.trigger(e,s,t.id);break}case\"scroll\":{const t=a[v.is_mobile?\"pinch\":\"scroll\"].active;null!=t&&(n.preventDefault(),n.stopPropagation(),this.trigger(e,s,t.id));break}case\"pan\":{const t=a[_].active;null!=t&&(n.preventDefault(),this.trigger(e,s,t.id));break}default:{const t=a[_].active;null!=t&&this.trigger(e,s,t.id)}}this._trigger_bokeh_event(t,s)}trigger(t,e,s=null){t.emit({id:s,e})}_trigger_bokeh_event(t,e){const s=(()=>{const{sx:s,sy:n}=e,i=t.frame.x_scale.invert(s),r=t.frame.y_scale.invert(n);switch(e.type){case\"wheel\":return new l.MouseWheel(s,n,i,r,e.delta);case\"mousemove\":return new l.MouseMove(s,n,i,r);case\"mouseenter\":return new l.MouseEnter(s,n,i,r);case\"mouseleave\":return new l.MouseLeave(s,n,i,r);case\"tap\":return new l.Tap(s,n,i,r);case\"doubletap\":return new l.DoubleTap(s,n,i,r);case\"press\":return new l.Press(s,n,i,r);case\"pressup\":return new l.PressUp(s,n,i,r);case\"pan\":return new l.Pan(s,n,i,r,e.deltaX,e.deltaY);case\"panstart\":return new l.PanStart(s,n,i,r);case\"panend\":return new l.PanEnd(s,n,i,r);case\"pinch\":return new l.Pinch(s,n,i,r,e.scale);case\"pinchstart\":return new l.PinchStart(s,n,i,r);case\"pinchend\":return new l.PinchEnd(s,n,i,r);case\"rotate\":return new l.Rotate(s,n,i,r,e.rotation);case\"rotatestart\":return new l.RotateStart(s,n,i,r);case\"rotateend\":return new l.RotateEnd(s,n,i,r);default:return}})();null!=s&&t.model.trigger_event(s)}_get_sxy(t){const{pageX:e,pageY:s}=function(t){return\"undefined\"!=typeof TouchEvent&&t instanceof TouchEvent}(t)?(0!=t.touches.length?t.touches:t.changedTouches)[0]:t,{left:n,top:i}=(0,o.offset)(this.hit_area);return{sx:e-n,sy:s-i}}_pan_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{deltaX:t.deltaX,deltaY:t.deltaY,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_pinch_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{scale:t.scale,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_rotate_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{rotation:t.rotation,shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_tap_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t.srcEvent)),{shiftKey:t.srcEvent.shiftKey,ctrlKey:t.srcEvent.ctrlKey})}_move_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_scroll_event(t){return Object.assign(Object.assign({type:t.type},this._get_sxy(t)),{delta:(0,c.getDeltaY)(t),shiftKey:t.shiftKey,ctrlKey:t.ctrlKey})}_key_event(t){return{type:t.type,keyCode:t.keyCode}}_pan_start(t){const e=this._pan_event(t);e.sx-=t.deltaX,e.sy-=t.deltaY,this._trigger(this.pan_start,e,t.srcEvent)}_pan(t){this._trigger(this.pan,this._pan_event(t),t.srcEvent)}_pan_end(t){this._trigger(this.pan_end,this._pan_event(t),t.srcEvent)}_pinch_start(t){this._trigger(this.pinch_start,this._pinch_event(t),t.srcEvent)}_pinch(t){this._trigger(this.pinch,this._pinch_event(t),t.srcEvent)}_pinch_end(t){this._trigger(this.pinch_end,this._pinch_event(t),t.srcEvent)}_rotate_start(t){this._trigger(this.rotate_start,this._rotate_event(t),t.srcEvent)}_rotate(t){this._trigger(this.rotate,this._rotate_event(t),t.srcEvent)}_rotate_end(t){this._trigger(this.rotate_end,this._rotate_event(t),t.srcEvent)}_tap(t){this._trigger(this.tap,this._tap_event(t),t.srcEvent)}_doubletap(t){this._trigger(this.doubletap,this._tap_event(t),t.srcEvent)}_press(t){this._trigger(this.press,this._tap_event(t),t.srcEvent)}_pressup(t){this._trigger(this.pressup,this._tap_event(t),t.srcEvent)}_mouse_enter(t){this._trigger(this.move_enter,this._move_event(t),t)}_mouse_move(t){this._trigger(this.move,this._move_event(t),t)}_mouse_exit(t){this._trigger(this.move_exit,this._move_event(t),t)}_mouse_wheel(t){this._trigger(this.scroll,this._scroll_event(t),t)}_context_menu(t){!this.menu.is_open&&this.menu.can_open&&t.preventDefault();const{sx:e,sy:s}=this._get_sxy(t);this.menu.toggle({left:e,top:s})}_key_down(t){this.trigger(this.keydown,this._key_event(t))}_key_up(t){this.trigger(this.keyup,this._key_event(t))}}s.UIEventBus=g,g.__name__=\"UIEventBus\"},\n", - " function _(e,t,s,n,_){n();var a=this&&this.__decorate||function(e,t,s,n){var _,a=arguments.length,o=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,s):n;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,s,n);else for(var r=e.length-1;r>=0;r--)(_=e[r])&&(o=(a<3?_(o):a>3?_(t,s,o):_(t,s))||o);return a>3&&o&&Object.defineProperty(t,s,o),o};function o(e){return function(t){t.prototype.event_name=e}}class r{to_json(){const{event_name:e}=this;return{event_name:e,event_values:this._to_json()}}}s.BokehEvent=r,r.__name__=\"BokehEvent\";class c extends r{constructor(){super(...arguments),this.origin=null}_to_json(){return{model:this.origin}}}s.ModelEvent=c,c.__name__=\"ModelEvent\";let l=class extends r{_to_json(){return{}}};s.DocumentReady=l,l.__name__=\"DocumentReady\",s.DocumentReady=l=a([o(\"document_ready\")],l);let i=class extends c{};s.ButtonClick=i,i.__name__=\"ButtonClick\",s.ButtonClick=i=a([o(\"button_click\")],i);let u=class extends c{constructor(e){super(),this.item=e}_to_json(){const{item:e}=this;return Object.assign(Object.assign({},super._to_json()),{item:e})}};s.MenuItemClick=u,u.__name__=\"MenuItemClick\",s.MenuItemClick=u=a([o(\"menu_item_click\")],u);class d extends c{}s.UIEvent=d,d.__name__=\"UIEvent\";let m=class extends d{};s.LODStart=m,m.__name__=\"LODStart\",s.LODStart=m=a([o(\"lodstart\")],m);let h=class extends d{};s.LODEnd=h,h.__name__=\"LODEnd\",s.LODEnd=h=a([o(\"lodend\")],h);let p=class extends d{constructor(e,t,s,n){super(),this.x0=e,this.x1=t,this.y0=s,this.y1=n}_to_json(){const{x0:e,x1:t,y0:s,y1:n}=this;return Object.assign(Object.assign({},super._to_json()),{x0:e,x1:t,y0:s,y1:n})}};s.RangesUpdate=p,p.__name__=\"RangesUpdate\",s.RangesUpdate=p=a([o(\"rangesupdate\")],p);let x=class extends d{constructor(e,t){super(),this.geometry=e,this.final=t}_to_json(){const{geometry:e,final:t}=this;return Object.assign(Object.assign({},super._to_json()),{geometry:e,final:t})}};s.SelectionGeometry=x,x.__name__=\"SelectionGeometry\",s.SelectionGeometry=x=a([o(\"selectiongeometry\")],x);let j=class extends d{};s.Reset=j,j.__name__=\"Reset\",s.Reset=j=a([o(\"reset\")],j);class y extends d{constructor(e,t,s,n){super(),this.sx=e,this.sy=t,this.x=s,this.y=n}_to_json(){const{sx:e,sy:t,x:s,y:n}=this;return Object.assign(Object.assign({},super._to_json()),{sx:e,sy:t,x:s,y:n})}}s.PointEvent=y,y.__name__=\"PointEvent\";let g=class extends y{constructor(e,t,s,n,_,a){super(e,t,s,n),this.delta_x=_,this.delta_y=a}_to_json(){const{delta_x:e,delta_y:t}=this;return Object.assign(Object.assign({},super._to_json()),{delta_x:e,delta_y:t})}};s.Pan=g,g.__name__=\"Pan\",s.Pan=g=a([o(\"pan\")],g);let P=class extends y{constructor(e,t,s,n,_){super(e,t,s,n),this.scale=_}_to_json(){const{scale:e}=this;return Object.assign(Object.assign({},super._to_json()),{scale:e})}};s.Pinch=P,P.__name__=\"Pinch\",s.Pinch=P=a([o(\"pinch\")],P);let O=class extends y{constructor(e,t,s,n,_){super(e,t,s,n),this.rotation=_}_to_json(){const{rotation:e}=this;return Object.assign(Object.assign({},super._to_json()),{rotation:e})}};s.Rotate=O,O.__name__=\"Rotate\",s.Rotate=O=a([o(\"rotate\")],O);let b=class extends y{constructor(e,t,s,n,_){super(e,t,s,n),this.delta=_}_to_json(){const{delta:e}=this;return Object.assign(Object.assign({},super._to_json()),{delta:e})}};s.MouseWheel=b,b.__name__=\"MouseWheel\",s.MouseWheel=b=a([o(\"wheel\")],b);let v=class extends y{};s.MouseMove=v,v.__name__=\"MouseMove\",s.MouseMove=v=a([o(\"mousemove\")],v);let E=class extends y{};s.MouseEnter=E,E.__name__=\"MouseEnter\",s.MouseEnter=E=a([o(\"mouseenter\")],E);let R=class extends y{};s.MouseLeave=R,R.__name__=\"MouseLeave\",s.MouseLeave=R=a([o(\"mouseleave\")],R);let M=class extends y{};s.Tap=M,M.__name__=\"Tap\",s.Tap=M=a([o(\"tap\")],M);let f=class extends y{};s.DoubleTap=f,f.__name__=\"DoubleTap\",s.DoubleTap=f=a([o(\"doubletap\")],f);let S=class extends y{};s.Press=S,S.__name__=\"Press\",s.Press=S=a([o(\"press\")],S);let D=class extends y{};s.PressUp=D,D.__name__=\"PressUp\",s.PressUp=D=a([o(\"pressup\")],D);let k=class extends y{};s.PanStart=k,k.__name__=\"PanStart\",s.PanStart=k=a([o(\"panstart\")],k);let L=class extends y{};s.PanEnd=L,L.__name__=\"PanEnd\",s.PanEnd=L=a([o(\"panend\")],L);let U=class extends y{};s.PinchStart=U,U.__name__=\"PinchStart\",s.PinchStart=U=a([o(\"pinchstart\")],U);let C=class extends y{};s.PinchEnd=C,C.__name__=\"PinchEnd\",s.PinchEnd=C=a([o(\"pinchend\")],C);let T=class extends y{};s.RotateStart=T,T.__name__=\"RotateStart\",s.RotateStart=T=a([o(\"rotatestart\")],T);let B=class extends y{};s.RotateEnd=B,B.__name__=\"RotateEnd\",s.RotateEnd=B=a([o(\"rotateend\")],B)},\n", - " function _(t,e,n,l,o){\n", - " /*!\n", - " * jQuery Mousewheel 3.1.13\n", - " *\n", - " * Copyright jQuery Foundation and other contributors\n", - " * Released under the MIT license\n", - " * http://jquery.org/license\n", - " */\n", - " function u(t){const e=getComputedStyle(t).fontSize;return null!=e?parseInt(e,10):null}l(),n.getDeltaY=function(t){let e=-t.deltaY;if(t.target instanceof HTMLElement)switch(t.deltaMode){case t.DOM_DELTA_LINE:e*=(n=t.target,null!==(a=null!==(o=u(null!==(l=n.offsetParent)&&void 0!==l?l:document.body))&&void 0!==o?o:u(n))&&void 0!==a?a:16);break;case t.DOM_DELTA_PAGE:e*=function(t){return t.clientHeight}(t.target)}var n,l,o,a;return e}},\n", - " function _(m,o,n,r,a){r(),a(\"Expression\",m(254).Expression),a(\"CustomJSExpr\",m(255).CustomJSExpr),a(\"Stack\",m(256).Stack),a(\"CumSum\",m(257).CumSum),a(\"ScalarExpression\",m(254).ScalarExpression),a(\"Minimum\",m(258).Minimum),a(\"Maximum\",m(259).Maximum);var s=m(260);a(\"XComponent\",s.XComponent),a(\"YComponent\",s.YComponent),a(\"PolarTransform\",m(261).PolarTransform)},\n", - " function _(e,t,s,i,r){i();const n=e(53);class _ extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._result=new Map}v_compute(e){let t=this._result.get(e);return(void 0===t||e.changed_for(this))&&(t=this._v_compute(e),this._result.set(e,t)),t}}s.Expression=_,_.__name__=\"Expression\";class o extends n.Model{constructor(e){super(e)}initialize(){super.initialize(),this._result=new Map}compute(e){let t=this._result.get(e);return(void 0===t||e.changed_for(this))&&(t=this._compute(e),this._result.set(e,t)),t}}s.ScalarExpression=o,o.__name__=\"ScalarExpression\"},\n", - " function _(e,s,t,n,r){var a;n();const o=e(14),c=e(254),i=e(24),u=e(9),l=e(13),h=e(34),g=e(8);class p extends c.Expression{constructor(e){super(e)}connect_signals(){super.connect_signals();for(const e of(0,l.values)(this.args))e instanceof o.HasProps&&e.change.connect((()=>{this._result.clear(),this.change.emit()}))}get names(){return(0,l.keys)(this.args)}get values(){return(0,l.values)(this.args)}get func(){const e=(0,h.use_strict)(this.code);return new i.GeneratorFunction(...this.names,e)}_v_compute(e){const s=this.func.apply(e,this.values);let t=s.next();if(t.done&&void 0!==t.value){const{value:s}=t;return(0,g.isArray)(s)||(0,g.isTypedArray)(s)?s:(0,g.isIterable)(s)?[...s]:(0,u.repeat)(s,e.length)}{const e=[];do{e.push(t.value),t=s.next()}while(!t.done);return e}}}t.CustomJSExpr=p,a=p,p.__name__=\"CustomJSExpr\",a.define((({Unknown:e,String:s,Dict:t})=>({args:[t(e),{}],code:[s,\"\"]})))},\n", - " function _(t,n,e,o,r){var s;o();const a=t(254);class c extends a.Expression{constructor(t){super(t)}_v_compute(t){var n;const e=null!==(n=t.get_length())&&void 0!==n?n:0,o=new Float64Array(e);for(const n of this.fields){const r=t.data[n];if(null!=r){const t=Math.min(e,r.length);for(let n=0;n({fields:[n(t),[]]})))},\n", - " function _(e,n,t,o,r){var i;o();const l=e(254);class u extends l.Expression{constructor(e){super(e)}_v_compute(e){var n;const t=new Float64Array(null!==(n=e.get_length())&&void 0!==n?n:0),o=e.data[this.field],r=this.include_zero?1:0;t[0]=this.include_zero?0:o[0];for(let e=1;e({field:[n],include_zero:[e,!1]})))},\n", - " function _(i,n,l,t,e){var a;t();const u=i(254),r=i(9);class s extends u.ScalarExpression{constructor(i){super(i)}_compute(i){var n,l;const t=null!==(n=i.data[this.field])&&void 0!==n?n:[];return Math.min(null!==(l=this.initial)&&void 0!==l?l:1/0,(0,r.min)(t))}}l.Minimum=s,a=s,s.__name__=\"Minimum\",a.define((({Number:i,String:n,Nullable:l})=>({field:[n],initial:[l(i),null]})))},\n", - " function _(i,a,n,l,t){var e;l();const u=i(254),r=i(9);class s extends u.ScalarExpression{constructor(i){super(i)}_compute(i){var a,n;const l=null!==(a=i.data[this.field])&&void 0!==a?a:[];return Math.max(null!==(n=this.initial)&&void 0!==n?n:-1/0,(0,r.max)(l))}}n.Maximum=s,e=s,s.__name__=\"Maximum\",e.define((({Number:i,String:a,Nullable:n})=>({field:[a],initial:[n(i),null]})))},\n", - " function _(n,e,t,o,r){var s;o();const _=n(254);class m extends _.Expression{constructor(n){super(n)}get x(){return new c({transform:this})}get y(){return new u({transform:this})}}t.CoordinateTransform=m,m.__name__=\"CoordinateTransform\";class a extends _.Expression{constructor(n){super(n)}}t.XYComponent=a,s=a,a.__name__=\"XYComponent\",s.define((({Ref:n})=>({transform:[n(m)]})));class c extends a{constructor(n){super(n)}_v_compute(n){return this.transform.v_compute(n).x}}t.XComponent=c,c.__name__=\"XComponent\";class u extends a{constructor(n){super(n)}_v_compute(n){return this.transform.v_compute(n).y}}t.YComponent=u,u.__name__=\"YComponent\"},\n", - " function _(r,t,n,e,o){e();const i=r(1);var a;const s=r(260),c=r(20),l=(0,i.__importStar)(r(18));class d extends s.CoordinateTransform{constructor(r){super(r)}_v_compute(r){const t=this.properties.radius.uniform(r),n=this.properties.angle.uniform(r),e=\"anticlock\"==this.direction?-1:1,o=Math.min(t.length,n.length),i=new Float64Array(o),a=new Float64Array(o);for(let r=0;r({radius:[l.DistanceSpec,{field:\"radius\"}],angle:[l.AngleSpec,{field:\"angle\"}],direction:[c.Direction,\"anticlock\"]})))},\n", - " function _(e,t,l,r,i){r(),i(\"BooleanFilter\",e(263).BooleanFilter),i(\"CustomJSFilter\",e(264).CustomJSFilter),i(\"Filter\",e(191).Filter),i(\"GroupFilter\",e(265).GroupFilter),i(\"IndexFilter\",e(266).IndexFilter)},\n", - " function _(e,n,l,o,s){var t;o();const a=e(191),r=e(24);class c extends a.Filter{constructor(e){super(e)}compute_indices(e){const n=e.length,{booleans:l}=this;return null==l?r.Indices.all_set(n):r.Indices.from_booleans(n,l)}}l.BooleanFilter=c,t=c,c.__name__=\"BooleanFilter\",t.define((({Boolean:e,Array:n,Nullable:l})=>({booleans:[l(n(e)),null]})))},\n", - " function _(e,n,r,s,t){var i;s();const o=e(191),c=e(24),u=e(13),a=e(8),l=e(34);class f extends o.Filter{constructor(e){super(e)}get names(){return(0,u.keys)(this.args)}get values(){return(0,u.values)(this.args)}get func(){const e=(0,l.use_strict)(this.code);return new Function(...this.names,\"source\",e)}compute_indices(e){const n=e.length,r=this.func(...this.values,e);if(null==r)return c.Indices.all_set(n);if((0,a.isArrayOf)(r,a.isInteger))return c.Indices.from_indices(n,r);if((0,a.isArrayOf)(r,a.isBoolean))return c.Indices.from_booleans(n,r);throw new Error(`expect an array of integers or booleans, or null, got ${r}`)}}r.CustomJSFilter=f,i=f,f.__name__=\"CustomJSFilter\",i.define((({Unknown:e,String:n,Dict:r})=>({args:[r(e),{}],code:[n,\"\"]})))},\n", - " function _(n,e,t,o,r){var u;o();const s=n(191),c=n(24),i=n(19);class l extends s.Filter{constructor(n){super(n)}compute_indices(n){const e=n.get_column(this.column_name);if(null==e)return i.logger.warn(`${this}: groupby column '${this.column_name}' not found in the data source`),new c.Indices(n.length,1);{const t=new c.Indices(n.length);for(let n=0;n({column_name:[n],group:[n]})))},\n", - " function _(e,n,i,s,t){var l;s();const c=e(191),r=e(24);class d extends c.Filter{constructor(e){super(e)}compute_indices(e){const n=e.length,{indices:i}=this;return null==i?r.Indices.all_set(n):r.Indices.from_indices(n,i)}}i.IndexFilter=d,l=d,d.__name__=\"IndexFilter\",l.define((({Int:e,Array:n,Nullable:i})=>({indices:[i(n(e)),null]})))},\n", - " function _(e,a,l,i,t){i(),t(\"AnnularWedge\",e(268).AnnularWedge),t(\"Annulus\",e(269).Annulus),t(\"Arc\",e(270).Arc),t(\"Bezier\",e(271).Bezier),t(\"Circle\",e(272).Circle),t(\"Ellipse\",e(273).Ellipse),t(\"EllipseOval\",e(274).EllipseOval),t(\"Glyph\",e(179).Glyph),t(\"HArea\",e(187).HArea),t(\"HBar\",e(276).HBar),t(\"HexTile\",e(278).HexTile),t(\"Image\",e(279).Image),t(\"ImageRGBA\",e(281).ImageRGBA),t(\"ImageURL\",e(282).ImageURL),t(\"Line\",e(177).Line),t(\"MultiLine\",e(283).MultiLine),t(\"MultiPolygons\",e(284).MultiPolygons),t(\"Oval\",e(285).Oval),t(\"Patch\",e(186).Patch),t(\"Patches\",e(286).Patches),t(\"Quad\",e(287).Quad),t(\"Quadratic\",e(288).Quadratic),t(\"Ray\",e(289).Ray),t(\"Rect\",e(290).Rect),t(\"Scatter\",e(291).Scatter),t(\"Segment\",e(294).Segment),t(\"Spline\",e(295).Spline),t(\"Step\",e(297).Step),t(\"Text\",e(298).Text),t(\"VArea\",e(189).VArea),t(\"VBar\",e(299).VBar),t(\"Wedge\",e(300).Wedge)},\n", - " function _(e,t,s,i,r){i();const n=e(1);var a;const o=e(178),_=e(184),d=e(48),u=e(24),h=e(20),c=(0,n.__importStar)(e(18)),l=e(10),p=e(72);class x extends o.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this.inner_radius):this.sinner_radius=(0,u.to_screen)(this.inner_radius),\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this.outer_radius):this.souter_radius=(0,u.to_screen)(this.outer_radius)}_render(e,t,s){const{sx:i,sy:r,start_angle:n,end_angle:a,sinner_radius:o,souter_radius:_}=null!=s?s:this,d=\"anticlock\"==this.model.direction;for(const s of t){const t=i[s],u=r[s],h=o[s],c=_[s],l=n.get(s),p=a.get(s);if(!isFinite(t+u+h+c+l+p))continue;const x=p-l;e.translate(t,u),e.rotate(l),e.beginPath(),e.moveTo(c,0),e.arc(0,0,c,0,x,d),e.rotate(x),e.lineTo(h,0),e.arc(0,0,h,0,-x,!d),e.closePath(),e.rotate(-x-l),e.translate(-t,-u),this.visuals.fill.apply(e,s),this.visuals.hatch.apply(e,s),this.visuals.line.apply(e,s)}}_hit_point(e){const{sx:t,sy:s}=e,i=this.renderer.xscale.invert(t),r=this.renderer.yscale.invert(s);let n,a,o,_;if(\"data\"==this.model.properties.outer_radius.units)n=i-this.max_outer_radius,o=i+this.max_outer_radius,a=r-this.max_outer_radius,_=r+this.max_outer_radius;else{const e=t-this.max_outer_radius,i=t+this.max_outer_radius;[n,o]=this.renderer.xscale.r_invert(e,i);const r=s-this.max_outer_radius,d=s+this.max_outer_radius;[a,_]=this.renderer.yscale.r_invert(r,d)}const d=[];for(const e of this.index.indices({x0:n,x1:o,y0:a,y1:_})){const t=this.souter_radius[e]**2,s=this.sinner_radius[e]**2,[n,a]=this.renderer.xscale.r_compute(i,this._x[e]),[o,_]=this.renderer.yscale.r_compute(r,this._y[e]),u=(n-a)**2+(o-_)**2;u<=t&&u>=s&&d.push(e)}const u=\"anticlock\"==this.model.direction,h=[];for(const e of d){const i=Math.atan2(s-this.sy[e],t-this.sx[e]);(0,l.angle_between)(-i,-this.start_angle.get(e),-this.end_angle.get(e),u)&&h.push(e)}return new p.Selection({indices:h})}draw_legend_for_index(e,t,s){(0,_.generic_area_vector_legend)(this.visuals,e,t,s)}scenterxy(e){const t=(this.sinner_radius[e]+this.souter_radius[e])/2,s=(this.start_angle.get(e)+this.end_angle.get(e))/2;return[this.sx[e]+t*Math.cos(s),this.sy[e]+t*Math.sin(s)]}}s.AnnularWedgeView=x,x.__name__=\"AnnularWedgeView\";class g extends o.XYGlyph{constructor(e){super(e)}}s.AnnularWedge=g,a=g,g.__name__=\"AnnularWedge\",a.prototype.default_view=x,a.mixins([d.LineVector,d.FillVector,d.HatchVector]),a.define((({})=>({direction:[h.Direction,\"anticlock\"],inner_radius:[c.DistanceSpec,{field:\"inner_radius\"}],outer_radius:[c.DistanceSpec,{field:\"outer_radius\"}],start_angle:[c.AngleSpec,{field:\"start_angle\"}],end_angle:[c.AngleSpec,{field:\"end_angle\"}]})))},\n", - " function _(s,e,i,r,t){r();const n=s(1);var a;const u=s(178),o=s(24),_=s(48),d=(0,n.__importStar)(s(18)),h=s(27),c=s(72);class l extends u.XYGlyphView{_map_data(){\"data\"==this.model.properties.inner_radius.units?this.sinner_radius=this.sdist(this.renderer.xscale,this._x,this.inner_radius):this.sinner_radius=(0,o.to_screen)(this.inner_radius),\"data\"==this.model.properties.outer_radius.units?this.souter_radius=this.sdist(this.renderer.xscale,this._x,this.outer_radius):this.souter_radius=(0,o.to_screen)(this.outer_radius)}_render(s,e,i){const{sx:r,sy:t,sinner_radius:n,souter_radius:a}=null!=i?i:this;for(const i of e){const e=r[i],u=t[i],o=n[i],_=a[i];if(isFinite(e+u+o+_)){if(s.beginPath(),h.is_ie)for(const i of[!1,!0])s.moveTo(e,u),s.arc(e,u,o,0,Math.PI,i),s.moveTo(e+_,u),s.arc(e,u,_,Math.PI,0,!i);else s.arc(e,u,o,0,2*Math.PI,!0),s.moveTo(e+_,u),s.arc(e,u,_,2*Math.PI,0,!1);this.visuals.fill.apply(s,i),this.visuals.hatch.apply(s,i),this.visuals.line.apply(s,i)}}}_hit_point(s){const{sx:e,sy:i}=s,r=this.renderer.xscale.invert(e),t=this.renderer.yscale.invert(i);let n,a,u,o;if(\"data\"==this.model.properties.outer_radius.units)n=r-this.max_outer_radius,u=r+this.max_outer_radius,a=t-this.max_outer_radius,o=t+this.max_outer_radius;else{const s=e-this.max_outer_radius,r=e+this.max_outer_radius;[n,u]=this.renderer.xscale.r_invert(s,r);const t=i-this.max_outer_radius,_=i+this.max_outer_radius;[a,o]=this.renderer.yscale.r_invert(t,_)}const _=[];for(const s of this.index.indices({x0:n,x1:u,y0:a,y1:o})){const e=this.souter_radius[s]**2,i=this.sinner_radius[s]**2,[n,a]=this.renderer.xscale.r_compute(r,this._x[s]),[u,o]=this.renderer.yscale.r_compute(t,this._y[s]),d=(n-a)**2+(u-o)**2;d<=e&&d>=i&&_.push(s)}return new c.Selection({indices:_})}draw_legend_for_index(s,{x0:e,y0:i,x1:r,y1:t},n){const a=n+1,u=new Array(a);u[n]=(e+r)/2;const o=new Array(a);o[n]=(i+t)/2;const _=.5*Math.min(Math.abs(r-e),Math.abs(t-i)),d=new Array(a);d[n]=.4*_;const h=new Array(a);h[n]=.8*_,this._render(s,[n],{sx:u,sy:o,sinner_radius:d,souter_radius:h})}}i.AnnulusView=l,l.__name__=\"AnnulusView\";class x extends u.XYGlyph{constructor(s){super(s)}}i.Annulus=x,a=x,x.__name__=\"Annulus\",a.prototype.default_view=l,a.mixins([_.LineVector,_.FillVector,_.HatchVector]),a.define((({})=>({inner_radius:[d.DistanceSpec,{field:\"inner_radius\"}],outer_radius:[d.DistanceSpec,{field:\"outer_radius\"}]})))},\n", - " function _(e,i,s,t,n){t();const r=e(1);var a;const c=e(178),d=e(184),l=e(48),_=e(24),o=e(20),u=(0,r.__importStar)(e(18));class h extends c.XYGlyphView{_map_data(){\"data\"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this.radius):this.sradius=(0,_.to_screen)(this.radius)}_render(e,i,s){if(this.visuals.line.doit){const{sx:t,sy:n,sradius:r,start_angle:a,end_angle:c}=null!=s?s:this,d=\"anticlock\"==this.model.direction;for(const s of i){const i=t[s],l=n[s],_=r[s],o=a.get(s),u=c.get(s);isFinite(i+l+_+o+u)&&(e.beginPath(),e.arc(i,l,_,o,u,d),this.visuals.line.set_vectorize(e,s),e.stroke())}}}draw_legend_for_index(e,i,s){(0,d.generic_line_vector_legend)(this.visuals,e,i,s)}}s.ArcView=h,h.__name__=\"ArcView\";class g extends c.XYGlyph{constructor(e){super(e)}}s.Arc=g,a=g,g.__name__=\"Arc\",a.prototype.default_view=h,a.mixins(l.LineVector),a.define((({})=>({direction:[o.Direction,\"anticlock\"],radius:[u.DistanceSpec,{field:\"radius\"}],start_angle:[u.AngleSpec,{field:\"start_angle\"}],end_angle:[u.AngleSpec,{field:\"end_angle\"}]})))},\n", - " function _(e,t,i,n,s){n();const o=e(1);var c;const r=e(48),a=e(179),_=e(184),d=e(78),l=(0,o.__importStar)(e(18));function x(e,t,i,n,s,o,c,r){const a=[],_=[[],[]];for(let _=0;_<=2;_++){let d,l,x;if(0===_?(l=6*e-12*i+6*s,d=-3*e+9*i-9*s+3*c,x=3*i-3*e):(l=6*t-12*n+6*o,d=-3*t+9*n-9*o+3*r,x=3*n-3*t),Math.abs(d)<1e-12){if(Math.abs(l)<1e-12)continue;const e=-x/l;0({x0:[l.XCoordinateSpec,{field:\"x0\"}],y0:[l.YCoordinateSpec,{field:\"y0\"}],x1:[l.XCoordinateSpec,{field:\"x1\"}],y1:[l.YCoordinateSpec,{field:\"y1\"}],cx0:[l.XCoordinateSpec,{field:\"cx0\"}],cy0:[l.YCoordinateSpec,{field:\"cy0\"}],cx1:[l.XCoordinateSpec,{field:\"cx1\"}],cy1:[l.YCoordinateSpec,{field:\"cy1\"}]}))),c.mixins(r.LineVector)},\n", - " function _(s,i,e,t,r){t();const a=s(1);var n;const h=s(178),d=s(48),l=s(24),c=s(20),_=(0,a.__importStar)(s(185)),u=(0,a.__importStar)(s(18)),o=s(9),x=s(12),m=s(72);class p extends h.XYGlyphView{async lazy_initialize(){await super.lazy_initialize();const{webgl:i}=this.renderer.plot_view.canvas_view;if(null==i?void 0:i.regl_wrapper.has_webgl){const{MarkerGL:e}=await Promise.resolve().then((()=>(0,a.__importStar)(s(426))));this.glglyph=new e(i.regl_wrapper,this,\"circle\")}}get use_radius(){return!(this.radius.is_Scalar()&&isNaN(this.radius.value))}_set_data(s){super._set_data(s);const i=(()=>{if(this.use_radius)return 2*this.max_radius;{const{size:s}=this;return s.is_Scalar()?s.value:(0,x.max)(s.array)}})();this._configure(\"max_size\",{value:i})}_map_data(){if(this.use_radius)if(\"data\"==this.model.properties.radius.units)switch(this.model.radius_dimension){case\"x\":this.sradius=this.sdist(this.renderer.xscale,this._x,this.radius);break;case\"y\":this.sradius=this.sdist(this.renderer.yscale,this._y,this.radius);break;case\"max\":{const s=this.sdist(this.renderer.xscale,this._x,this.radius),i=this.sdist(this.renderer.yscale,this._y,this.radius);this.sradius=(0,x.map)(s,((s,e)=>Math.max(s,i[e])));break}case\"min\":{const s=this.sdist(this.renderer.xscale,this._x,this.radius),i=this.sdist(this.renderer.yscale,this._y,this.radius);this.sradius=(0,x.map)(s,((s,e)=>Math.min(s,i[e])));break}}else this.sradius=(0,l.to_screen)(this.radius);else{const s=l.ScreenArray.from(this.size);this.sradius=(0,x.map)(s,(s=>s/2))}}_mask_data(){const{frame:s}=this.renderer.plot_view,i=s.x_target,e=s.y_target;let t,r;return this.use_radius&&\"data\"==this.model.properties.radius.units?(t=i.map((s=>this.renderer.xscale.invert(s))).widen(this.max_radius),r=e.map((s=>this.renderer.yscale.invert(s))).widen(this.max_radius)):(t=i.widen(this.max_size).map((s=>this.renderer.xscale.invert(s))),r=e.widen(this.max_size).map((s=>this.renderer.yscale.invert(s)))),this.index.indices({x0:t.start,x1:t.end,y0:r.start,y1:r.end})}_render(s,i,e){const{sx:t,sy:r,sradius:a}=null!=e?e:this;for(const e of i){const i=t[e],n=r[e],h=a[e];isFinite(i+n+h)&&(s.beginPath(),s.arc(i,n,h,0,2*Math.PI,!1),this.visuals.fill.apply(s,e),this.visuals.hatch.apply(s,e),this.visuals.line.apply(s,e))}}_hit_point(s){const{sx:i,sy:e}=s,t=this.renderer.xscale.invert(i),r=this.renderer.yscale.invert(e),{hit_dilation:a}=this.model;let n,h,d,l;if(this.use_radius&&\"data\"==this.model.properties.radius.units)n=t-this.max_radius*a,h=t+this.max_radius*a,d=r-this.max_radius*a,l=r+this.max_radius*a;else{const s=i-this.max_size*a,t=i+this.max_size*a;[n,h]=this.renderer.xscale.r_invert(s,t);const r=e-this.max_size*a,c=e+this.max_size*a;[d,l]=this.renderer.yscale.r_invert(r,c)}const c=this.index.indices({x0:n,x1:h,y0:d,y1:l}),_=[];if(this.use_radius&&\"data\"==this.model.properties.radius.units)for(const s of c){const i=(this.sradius[s]*a)**2,[e,n]=this.renderer.xscale.r_compute(t,this._x[s]),[h,d]=this.renderer.yscale.r_compute(r,this._y[s]);(e-n)**2+(h-d)**2<=i&&_.push(s)}else for(const s of c){const t=(this.sradius[s]*a)**2;(this.sx[s]-i)**2+(this.sy[s]-e)**2<=t&&_.push(s)}return new m.Selection({indices:_})}_hit_span(s){const{sx:i,sy:e}=s,t=this.bounds();let r,a,n,h;if(\"h\"==s.direction){let s,e;if(n=t.y0,h=t.y1,this.use_radius&&\"data\"==this.model.properties.radius.units)s=i-this.max_radius,e=i+this.max_radius,[r,a]=this.renderer.xscale.r_invert(s,e);else{const t=this.max_size/2;s=i-t,e=i+t,[r,a]=this.renderer.xscale.r_invert(s,e)}}else{let s,i;if(r=t.x0,a=t.x1,this.use_radius&&\"data\"==this.model.properties.radius.units)s=e-this.max_radius,i=e+this.max_radius,[n,h]=this.renderer.yscale.r_invert(s,i);else{const t=this.max_size/2;s=e-t,i=e+t,[n,h]=this.renderer.yscale.r_invert(s,i)}}const d=[...this.index.indices({x0:r,x1:a,y0:n,y1:h})];return new m.Selection({indices:d})}_hit_rect(s){const{sx0:i,sx1:e,sy0:t,sy1:r}=s,[a,n]=this.renderer.xscale.r_invert(i,e),[h,d]=this.renderer.yscale.r_invert(t,r),l=[...this.index.indices({x0:a,x1:n,y0:h,y1:d})];return new m.Selection({indices:l})}_hit_poly(s){const{sx:i,sy:e}=s,t=(0,o.range)(0,this.sx.length),r=[];for(let s=0,a=t.length;s({angle:[u.AngleSpec,0],size:[u.ScreenSizeSpec,{value:4}],radius:[u.NullDistanceSpec,null],radius_dimension:[c.RadiusDimension,\"x\"],hit_dilation:[s,1]})))},\n", - " function _(e,l,s,i,_){var p;i();const t=e(274);class a extends t.EllipseOvalView{}s.EllipseView=a,a.__name__=\"EllipseView\";class n extends t.EllipseOval{constructor(e){super(e)}}s.Ellipse=n,p=n,n.__name__=\"Ellipse\",p.prototype.default_view=a},\n", - " function _(t,s,e,i,h){i();const n=t(1),r=t(275),a=(0,n.__importStar)(t(185)),l=t(24),_=t(72),o=(0,n.__importStar)(t(18));class d extends r.CenterRotatableView{_map_data(){\"data\"==this.model.properties.width.units?this.sw=this.sdist(this.renderer.xscale,this._x,this.width,\"center\"):this.sw=(0,l.to_screen)(this.width),\"data\"==this.model.properties.height.units?this.sh=this.sdist(this.renderer.yscale,this._y,this.height,\"center\"):this.sh=(0,l.to_screen)(this.height)}_render(t,s,e){const{sx:i,sy:h,sw:n,sh:r,angle:a}=null!=e?e:this;for(const e of s){const s=i[e],l=h[e],_=n[e],o=r[e],d=a.get(e);isFinite(s+l+_+o+d)&&(t.beginPath(),t.ellipse(s,l,_/2,o/2,d,0,2*Math.PI),this.visuals.fill.apply(t,e),this.visuals.hatch.apply(t,e),this.visuals.line.apply(t,e))}}_hit_point(t){let s,e,i,h,n,r,l,o,d;const{sx:c,sy:p}=t,w=this.renderer.xscale.invert(c),x=this.renderer.yscale.invert(p);\"data\"==this.model.properties.width.units?(s=w-this.max_width,e=w+this.max_width):(r=c-this.max_width,l=c+this.max_width,[s,e]=this.renderer.xscale.r_invert(r,l)),\"data\"==this.model.properties.height.units?(i=x-this.max_height,h=x+this.max_height):(o=p-this.max_height,d=p+this.max_height,[i,h]=this.renderer.yscale.r_invert(o,d));const m=this.index.indices({x0:s,x1:e,y0:i,y1:h}),y=[];for(const t of m)n=a.point_in_ellipse(c,p,this.angle.get(t),this.sh[t]/2,this.sw[t]/2,this.sx[t],this.sy[t]),n&&y.push(t);return new _.Selection({indices:y})}draw_legend_for_index(t,{x0:s,y0:e,x1:i,y1:h},n){const r=n+1,a=new Array(r);a[n]=(s+i)/2;const l=new Array(r);l[n]=(e+h)/2;const _=this.sw[n]/this.sh[n],d=.8*Math.min(Math.abs(i-s),Math.abs(h-e)),c=new Array(r),p=new Array(r);_>1?(c[n]=d,p[n]=d/_):(c[n]=d*_,p[n]=d);const w=new o.UniformScalar(0,r);this._render(t,[n],{sx:a,sy:l,sw:c,sh:p,angle:w})}}e.EllipseOvalView=d,d.__name__=\"EllipseOvalView\";class c extends r.CenterRotatable{constructor(t){super(t)}}e.EllipseOval=c,c.__name__=\"EllipseOval\"},\n", - " function _(e,t,i,a,n){a();const s=e(1);var r;const h=e(178),o=e(48),_=(0,s.__importStar)(e(18));class c extends h.XYGlyphView{get max_w2(){return\"data\"==this.model.properties.width.units?this.max_width/2:0}get max_h2(){return\"data\"==this.model.properties.height.units?this.max_height/2:0}_bounds({x0:e,x1:t,y0:i,y1:a}){const{max_w2:n,max_h2:s}=this;return{x0:e-n,x1:t+n,y0:i-s,y1:a+s}}}i.CenterRotatableView=c,c.__name__=\"CenterRotatableView\";class l extends h.XYGlyph{constructor(e){super(e)}}i.CenterRotatable=l,r=l,l.__name__=\"CenterRotatable\",r.mixins([o.LineVector,o.FillVector,o.HatchVector]),r.define((({})=>({angle:[_.AngleSpec,0],width:[_.DistanceSpec,{field:\"width\"}],height:[_.DistanceSpec,{field:\"height\"}]})))},\n", - " function _(t,e,s,i,h){i();const r=t(1);var a;const n=t(277),o=t(24),_=(0,r.__importStar)(t(18));class c extends n.BoxView{scenterxy(t){return[(this.sleft[t]+this.sright[t])/2,this.sy[t]]}_lrtb(t){const e=this._left[t],s=this._right[t],i=this._y[t],h=this.height.get(t)/2;return[Math.min(e,s),Math.max(e,s),i+h,i-h]}_map_data(){this.sy=this.renderer.yscale.v_compute(this._y),this.sh=this.sdist(this.renderer.yscale,this._y,this.height,\"center\"),this.sleft=this.renderer.xscale.v_compute(this._left),this.sright=this.renderer.xscale.v_compute(this._right);const t=this.sy.length;this.stop=new o.ScreenArray(t),this.sbottom=new o.ScreenArray(t);for(let e=0;e({left:[_.XCoordinateSpec,{value:0}],y:[_.YCoordinateSpec,{field:\"y\"}],height:[_.NumberSpec,{value:1}],right:[_.XCoordinateSpec,{field:\"right\"}]})))},\n", - " function _(t,e,s,r,i){var n;r();const a=t(48),h=t(179),o=t(184),c=t(72);class _ extends h.GlyphView{get_anchor_point(t,e,s){const r=Math.min(this.sleft[e],this.sright[e]),i=Math.max(this.sright[e],this.sleft[e]),n=Math.min(this.stop[e],this.sbottom[e]),a=Math.max(this.sbottom[e],this.stop[e]);switch(t){case\"top_left\":return{x:r,y:n};case\"top\":case\"top_center\":return{x:(r+i)/2,y:n};case\"top_right\":return{x:i,y:n};case\"bottom_left\":return{x:r,y:a};case\"bottom\":case\"bottom_center\":return{x:(r+i)/2,y:a};case\"bottom_right\":return{x:i,y:a};case\"left\":case\"center_left\":return{x:r,y:(n+a)/2};case\"center\":case\"center_center\":return{x:(r+i)/2,y:(n+a)/2};case\"right\":case\"center_right\":return{x:i,y:(n+a)/2}}}_index_data(t){const{min:e,max:s}=Math,{data_size:r}=this;for(let i=0;i({r:[l.NumberSpec,{field:\"r\"}],q:[l.NumberSpec,{field:\"q\"}],scale:[l.NumberSpec,1],size:[e,1],aspect_scale:[e,1],orientation:[_.HexTileOrientation,\"pointytop\"]}))),a.override({line_color:null})},\n", - " function _(e,a,t,_,r){var n;_();const s=e(280),o=e(173),i=e(201);class p extends s.ImageBaseView{connect_signals(){super.connect_signals(),this.connect(this.model.color_mapper.change,(()=>this._update_image()))}_update_image(){null!=this.image_data&&(this._set_data(null),this.renderer.request_render())}_flat_img_to_buf8(e){return this.model.color_mapper.rgba_mapper.v_compute(e)}}t.ImageView=p,p.__name__=\"ImageView\";class m extends s.ImageBase{constructor(e){super(e)}}t.Image=m,n=m,m.__name__=\"Image\",n.prototype.default_view=p,n.define((({Ref:e})=>({color_mapper:[e(o.ColorMapper),()=>new i.LinearColorMapper({palette:[\"#000000\",\"#252525\",\"#525252\",\"#737373\",\"#969696\",\"#bdbdbd\",\"#d9d9d9\",\"#f0f0f0\",\"#ffffff\"]})]})))},\n", - " function _(e,t,i,s,a){s();const h=e(1);var n;const r=e(178),_=e(24),d=(0,h.__importStar)(e(18)),l=e(72),g=e(9),o=e(29),c=e(11);class m extends r.XYGlyphView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,(()=>this.renderer.request_render()))}_render(e,t,i){const{image_data:s,sx:a,sy:h,sw:n,sh:r,global_alpha:_}=null!=i?i:this,d=e.getImageSmoothingEnabled();e.setImageSmoothingEnabled(!1);const l=_.is_Scalar();l&&(e.globalAlpha=_.value);for(const i of t){const t=s[i],_=a[i],d=h[i],g=n[i],o=r[i],c=this.global_alpha.get(i);if(null==t||!isFinite(_+d+g+o+c))continue;l||(e.globalAlpha=c);const m=d;e.translate(0,m),e.scale(1,-1),e.translate(0,-m),e.drawImage(t,0|_,0|d,g,o),e.translate(0,m),e.scale(1,-1),e.translate(0,-m)}e.setImageSmoothingEnabled(d)}_set_data(e){this._set_width_heigh_data();for(let t=0,i=this.image.length;t({image:[d.NDArraySpec,{field:\"image\"}],dw:[d.DistanceSpec,{field:\"dw\"}],dh:[d.DistanceSpec,{field:\"dh\"}],global_alpha:[d.NumberSpec,{value:1}],dilate:[e,!1]})))},\n", - " function _(e,a,t,r,_){var n;r();const s=e(280),m=e(8);class i extends s.ImageBaseView{_flat_img_to_buf8(e){let a;return a=(0,m.isArray)(e)?new Uint32Array(e):e,new Uint8ClampedArray(a.buffer)}}t.ImageRGBAView=i,i.__name__=\"ImageRGBAView\";class g extends s.ImageBase{constructor(e){super(e)}}t.ImageRGBA=g,n=g,g.__name__=\"ImageRGBA\",n.prototype.default_view=i},\n", - " function _(e,t,s,r,a){r();const i=e(1);var n;const o=e(178),c=e(24),_=e(20),h=(0,i.__importStar)(e(18)),l=e(12),d=e(136);class m extends o.XYGlyphView{constructor(){super(...arguments),this._images_rendered=!1,this._set_data_iteration=0}connect_signals(){super.connect_signals(),this.connect(this.model.properties.global_alpha.change,(()=>this.renderer.request_render()))}_index_data(e){const{data_size:t}=this;for(let s=0;s{this._set_data_iteration==r&&(this.image[a]=e,this.renderer.request_render())},attempts:t+1,timeout:s})}const a=\"data\"==this.model.properties.w.units,i=\"data\"==this.model.properties.h.units,n=this._x.length,o=new c.ScreenArray(a?2*n:n),_=new c.ScreenArray(i?2*n:n),{anchor:h}=this.model;function m(e,t){switch(h){case\"top_left\":case\"bottom_left\":case\"left\":case\"center_left\":return[e,e+t];case\"top\":case\"top_center\":case\"bottom\":case\"bottom_center\":case\"center\":case\"center_center\":return[e-t/2,e+t/2];case\"top_right\":case\"bottom_right\":case\"right\":case\"center_right\":return[e-t,e]}}function g(e,t){switch(h){case\"top_left\":case\"top\":case\"top_center\":case\"top_right\":return[e,e-t];case\"bottom_left\":case\"bottom\":case\"bottom_center\":case\"bottom_right\":return[e+t,e];case\"left\":case\"center_left\":case\"center\":case\"center_center\":case\"right\":case\"center_right\":return[e+t/2,e-t/2]}}if(a)for(let e=0;e({url:[h.StringSpec,{field:\"url\"}],anchor:[_.Anchor,\"top_left\"],global_alpha:[h.NumberSpec,{value:1}],angle:[h.AngleSpec,0],w:[h.NullDistanceSpec,null],h:[h.NullDistanceSpec,null],dilate:[e,!1],retry_attempts:[t,0],retry_timeout:[t,0]})))},\n", - " function _(e,t,s,i,n){i();const o=e(1);var r;const l=e(78),_=e(48),c=(0,o.__importStar)(e(185)),h=(0,o.__importStar)(e(18)),a=e(12),d=e(13),x=e(179),y=e(184),g=e(72);class p extends x.GlyphView{_project_data(){l.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s0&&o.set(e,s)}return new g.Selection({indices:[...o.keys()],multiline_indices:(0,d.to_object)(o)})}get_interpolation_hit(e,t,s){const i=this._xs.get(e),n=this._ys.get(e),o=i[t],r=n[t],l=i[t+1],_=n[t+1];return(0,y.line_interpolation)(this.renderer,s,o,r,l,_)}draw_legend_for_index(e,t,s){(0,y.generic_line_vector_legend)(this.visuals,e,t,s)}scenterxy(){throw new Error(`${this}.scenterxy() is not implemented`)}}s.MultiLineView=p,p.__name__=\"MultiLineView\";class u extends x.Glyph{constructor(e){super(e)}}s.MultiLine=u,r=u,u.__name__=\"MultiLine\",r.prototype.default_view=p,r.define((({})=>({xs:[h.XCoordinateSeqSpec,{field:\"xs\"}],ys:[h.YCoordinateSeqSpec,{field:\"ys\"}]}))),r.mixins(_.LineVector)},\n", - " function _(t,e,s,n,i){n();const o=t(1);var r;const l=t(181),h=t(179),a=t(184),_=t(12),c=t(12),d=t(48),x=(0,o.__importStar)(t(185)),y=(0,o.__importStar)(t(18)),f=t(72),g=t(11);class p extends h.GlyphView{_project_data(){}_index_data(t){const{min:e,max:s}=Math,{data_size:n}=this;for(let i=0;i1&&c.length>1)for(let s=1,n=i.length;s1){let r=!1;for(let t=1;t({xs:[y.XCoordinateSeqSeqSeqSpec,{field:\"xs\"}],ys:[y.YCoordinateSeqSeqSeqSpec,{field:\"ys\"}]}))),r.mixins([d.LineVector,d.FillVector,d.HatchVector])},\n", - " function _(a,e,l,s,_){var t;s();const i=a(274),n=a(12);class p extends i.EllipseOvalView{_map_data(){super._map_data(),(0,n.mul)(this.sw,.75)}}l.OvalView=p,p.__name__=\"OvalView\";class v extends i.EllipseOval{constructor(a){super(a)}}l.Oval=v,t=v,v.__name__=\"Oval\",t.prototype.default_view=p},\n", - " function _(e,t,s,i,n){i();const r=e(1);var a;const o=e(179),c=e(184),_=e(12),h=e(48),l=(0,r.__importStar)(e(185)),d=(0,r.__importStar)(e(18)),y=e(72),p=e(11),x=e(78);class f extends o.GlyphView{_project_data(){x.inplace.project_xy(this._xs.array,this._ys.array)}_index_data(e){const{data_size:t}=this;for(let s=0;s({xs:[d.XCoordinateSeqSpec,{field:\"xs\"}],ys:[d.YCoordinateSeqSpec,{field:\"ys\"}]}))),a.mixins([h.LineVector,h.FillVector,h.HatchVector])},\n", - " function _(t,e,o,i,s){i();const r=t(1);var n;const _=t(277),d=(0,r.__importStar)(t(18));class a extends _.BoxView{scenterxy(t){return[this.sleft[t]/2+this.sright[t]/2,this.stop[t]/2+this.sbottom[t]/2]}_lrtb(t){return[this._left[t],this._right[t],this._top[t],this._bottom[t]]}}o.QuadView=a,a.__name__=\"QuadView\";class c extends _.Box{constructor(t){super(t)}}o.Quad=c,n=c,c.__name__=\"Quad\",n.prototype.default_view=a,n.define((({})=>({right:[d.XCoordinateSpec,{field:\"right\"}],bottom:[d.YCoordinateSpec,{field:\"bottom\"}],left:[d.XCoordinateSpec,{field:\"left\"}],top:[d.YCoordinateSpec,{field:\"top\"}]})))},\n", - " function _(e,t,i,n,s){n();const c=e(1);var o;const r=e(48),a=e(78),_=e(179),d=e(184),l=(0,c.__importStar)(e(18));function x(e,t,i){if(t==(e+i)/2)return[e,i];{const n=(e-t)/(e-2*t+i),s=e*(1-n)**2+2*t*(1-n)*n+i*n**2;return[Math.min(e,i,s),Math.max(e,i,s)]}}class y extends _.GlyphView{_project_data(){a.inplace.project_xy(this._x0,this._y0),a.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{_x0:t,_x1:i,_y0:n,_y1:s,_cx:c,_cy:o,data_size:r}=this;for(let a=0;a({x0:[l.XCoordinateSpec,{field:\"x0\"}],y0:[l.YCoordinateSpec,{field:\"y0\"}],x1:[l.XCoordinateSpec,{field:\"x1\"}],y1:[l.YCoordinateSpec,{field:\"y1\"}],cx:[l.XCoordinateSpec,{field:\"cx\"}],cy:[l.YCoordinateSpec,{field:\"cy\"}]}))),o.mixins(r.LineVector)},\n", - " function _(e,t,s,i,n){i();const l=e(1);var a;const r=e(178),o=e(184),h=e(48),_=e(24),c=(0,l.__importStar)(e(18));class g extends r.XYGlyphView{_map_data(){\"data\"==this.model.properties.length.units?this.slength=this.sdist(this.renderer.xscale,this._x,this.length):this.slength=(0,_.to_screen)(this.length);const{width:e,height:t}=this.renderer.plot_view.frame.bbox,s=2*(e+t),{slength:i}=this;for(let e=0,t=i.length;e({length:[c.DistanceSpec,0],angle:[c.AngleSpec,0]})))},\n", - " function _(t,e,s,i,r){var n,h=this&&this.__createBinding||(Object.create?function(t,e,s,i){void 0===i&&(i=s),Object.defineProperty(t,i,{enumerable:!0,get:function(){return e[s]}})}:function(t,e,s,i){void 0===i&&(i=s),t[i]=e[s]}),a=this&&this.__setModuleDefault||(Object.create?function(t,e){Object.defineProperty(t,\"default\",{enumerable:!0,value:e})}:function(t,e){t.default=e}),l=this&&this.__importStar||function(t){if(t&&t.__esModule)return t;var e={};if(null!=t)for(var s in t)\"default\"!==s&&Object.prototype.hasOwnProperty.call(t,s)&&h(e,t,s);return a(e,t),e};i();const o=t(275),c=t(184),_=t(24),d=t(12),f=t(72);class y extends o.CenterRotatableView{async lazy_initialize(){await super.lazy_initialize();const{webgl:e}=this.renderer.plot_view.canvas_view;if(null==e?void 0:e.regl_wrapper.has_webgl){const{RectGL:s}=await Promise.resolve().then((()=>l(t(425))));this.glglyph=new s(e.regl_wrapper,this)}}_map_data(){if(\"data\"==this.model.properties.width.units)[this.sw,this.sx0]=this._map_dist_corner_for_data_side_length(this._x,this.width,this.renderer.xscale);else{this.sw=(0,_.to_screen)(this.width);const t=this.sx.length;this.sx0=new _.ScreenArray(t);for(let e=0;e({dilate:[t,!1]})))},\n", - " function _(e,t,s,r,i){r();const a=e(1);var n;const l=e(292),_=e(293),c=(0,a.__importStar)(e(18));class o extends l.MarkerView{async lazy_initialize(){await super.lazy_initialize();const{webgl:t}=this.renderer.plot_view.canvas_view;if(null==t?void 0:t.regl_wrapper.has_webgl){const{MarkerGL:t}=await Promise.resolve().then((()=>(0,a.__importStar)(e(426))));this.glcls=t}}_init_webgl(){const{webgl:e}=this.renderer.plot_view.canvas_view;if(null!=e){const{regl_wrapper:t}=e;if(t.has_webgl){const e=new Set(null!=this.base?this.base.marker:this.marker);if(1==e.size){const[s]=[...e],r=this.glcls;if(null==r?void 0:r.is_supported(s)){const{glglyph:e}=this;if(null==e||e.marker_type!=s)return void(this.glglyph=new r(t,this,s))}}}}delete this.glglyph}_set_visuals(){this._init_webgl()}_render(e,t,s){const{sx:r,sy:i,size:a,angle:n,marker:l}=null!=s?s:this;for(const s of t){const t=r[s],c=i[s],o=a.get(s),g=n.get(s),h=l.get(s);if(!isFinite(t+c+o+g)||null==h)continue;const w=o/2;e.beginPath(),e.translate(t,c),g&&e.rotate(g),_.marker_funcs[h](e,s,w,this.visuals),g&&e.rotate(-g),e.translate(-t,-c)}}draw_legend_for_index(e,{x0:t,x1:s,y0:r,y1:i},a){const n=a+1,l=this.marker.get(a),_=Object.assign(Object.assign({},this._get_legend_args({x0:t,x1:s,y0:r,y1:i},a)),{marker:new c.UniformScalar(l,n)});this._render(e,[a],_)}}s.ScatterView=o,o.__name__=\"ScatterView\";class g extends l.Marker{constructor(e){super(e)}}s.Scatter=g,n=g,g.__name__=\"Scatter\",n.prototype.default_view=o,n.define((()=>({marker:[c.MarkerSpec,{value:\"circle\"}]})))},\n", - " function _(e,t,s,n,i){n();const r=e(1);var a;const c=e(178),o=e(48),_=(0,r.__importStar)(e(185)),h=(0,r.__importStar)(e(18)),l=e(9),x=e(72);class d extends c.XYGlyphView{_render(e,t,s){const{sx:n,sy:i,size:r,angle:a}=null!=s?s:this;for(const s of t){const t=n[s],c=i[s],o=r.get(s),_=a.get(s);if(!isFinite(t+c+o+_))continue;const h=o/2;e.beginPath(),e.translate(t,c),_&&e.rotate(_),this._render_one(e,s,h,this.visuals),_&&e.rotate(-_),e.translate(-t,-c)}}_mask_data(){const{x_target:e,y_target:t}=this.renderer.plot_view.frame,s=e.widen(this.max_size).map((e=>this.renderer.xscale.invert(e))),n=t.widen(this.max_size).map((e=>this.renderer.yscale.invert(e)));return this.index.indices({x0:s.start,x1:s.end,y0:n.start,y1:n.end})}_hit_point(e){const{sx:t,sy:s}=e,{max_size:n}=this,{hit_dilation:i}=this.model,r=t-n*i,a=t+n*i,[c,o]=this.renderer.xscale.r_invert(r,a),_=s-n*i,h=s+n*i,[l,d]=this.renderer.yscale.r_invert(_,h),y=this.index.indices({x0:c,x1:o,y0:l,y1:d}),g=[];for(const e of y){const n=this.size.get(e)/2*i;Math.abs(this.sx[e]-t)<=n&&Math.abs(this.sy[e]-s)<=n&&g.push(e)}return new x.Selection({indices:g})}_hit_span(e){const{sx:t,sy:s}=e,n=this.bounds(),i=this.max_size/2;let r,a,c,o;if(\"h\"==e.direction){c=n.y0,o=n.y1;const e=t-i,s=t+i;[r,a]=this.renderer.xscale.r_invert(e,s)}else{r=n.x0,a=n.x1;const e=s-i,t=s+i;[c,o]=this.renderer.yscale.r_invert(e,t)}const _=[...this.index.indices({x0:r,x1:a,y0:c,y1:o})];return new x.Selection({indices:_})}_hit_rect(e){const{sx0:t,sx1:s,sy0:n,sy1:i}=e,[r,a]=this.renderer.xscale.r_invert(t,s),[c,o]=this.renderer.yscale.r_invert(n,i),_=[...this.index.indices({x0:r,x1:a,y0:c,y1:o})];return new x.Selection({indices:_})}_hit_poly(e){const{sx:t,sy:s}=e,n=(0,l.range)(0,this.sx.length),i=[];for(let e=0,r=n.length;e({size:[h.ScreenSizeSpec,{value:4}],angle:[h.AngleSpec,0],hit_dilation:[e,1]})))},\n", - " function _(l,o,n,t,i){t();const e=Math.sqrt(3),a=Math.sqrt(5),c=(a+1)/4,p=Math.sqrt((5-a)/8),r=(a-1)/4,h=Math.sqrt((5+a)/8);function u(l,o){l.rotate(Math.PI/4),s(l,o),l.rotate(-Math.PI/4)}function f(l,o){const n=o*e,t=n/3;l.moveTo(-n/2,-t),l.lineTo(0,0),l.lineTo(n/2,-t),l.lineTo(0,0),l.lineTo(0,o)}function s(l,o){l.moveTo(0,o),l.lineTo(0,-o),l.moveTo(-o,0),l.lineTo(o,0)}function T(l,o){l.moveTo(0,o),l.lineTo(o/1.5,0),l.lineTo(0,-o),l.lineTo(-o/1.5,0),l.closePath()}function y(l,o){const n=o*e,t=n/3;l.moveTo(-o,t),l.lineTo(o,t),l.lineTo(0,t-n),l.closePath()}function v(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function d(l,o,n,t){T(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function _(l,o,n,t){!function(l,o){l.beginPath(),l.arc(0,0,o/4,0,2*Math.PI,!1),l.closePath()}(l,n),t.line.set_vectorize(l,o),l.fillStyle=l.strokeStyle,l.fill()}function P(l,o,n,t){!function(l,o){const n=o/2,t=e*n;l.moveTo(o,0),l.lineTo(n,-t),l.lineTo(-n,-t),l.lineTo(-o,0),l.lineTo(-n,t),l.lineTo(n,t),l.closePath()}(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function m(l,o,n,t){const i=2*n;l.rect(-n,-n,i,i),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function q(l,o,n,t){!function(l,o){const n=Math.sqrt(5-2*a)*o;l.moveTo(0,-o),l.lineTo(n*r,n*h-o),l.lineTo(n*(1+r),n*h-o),l.lineTo(n*(1+r-c),n*(h+p)-o),l.lineTo(n*(1+2*r-c),n*(2*h+p)-o),l.lineTo(0,2*n*h-o),l.lineTo(-n*(1+2*r-c),n*(2*h+p)-o),l.lineTo(-n*(1+r-c),n*(h+p)-o),l.lineTo(-n*(1+r),n*h-o),l.lineTo(-n*r,n*h-o),l.closePath()}(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}function M(l,o,n,t){y(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)}n.marker_funcs={asterisk:function(l,o,n,t){s(l,n),u(l,n),t.line.apply(l,o)},circle:v,circle_cross:function(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),s(l,n),l.stroke())},circle_dot:function(l,o,n,t){v(l,o,n,t),_(l,o,n,t)},circle_y:function(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),f(l,n),l.stroke())},circle_x:function(l,o,n,t){l.arc(0,0,n,0,2*Math.PI,!1),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),u(l,n),l.stroke())},cross:function(l,o,n,t){s(l,n),t.line.apply(l,o)},diamond:d,diamond_dot:function(l,o,n,t){d(l,o,n,t),_(l,o,n,t)},diamond_cross:function(l,o,n,t){T(l,n),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),l.moveTo(0,n),l.lineTo(0,-n),l.moveTo(-n/1.5,0),l.lineTo(n/1.5,0),l.stroke())},dot:_,hex:P,hex_dot:function(l,o,n,t){P(l,o,n,t),_(l,o,n,t)},inverted_triangle:function(l,o,n,t){l.rotate(Math.PI),y(l,n),l.rotate(-Math.PI),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},plus:function(l,o,n,t){const i=3*n/8,e=[i,i,n,n,i,i,-i,-i,-n,-n,-i,-i],a=[n,i,i,-i,-i,-n,-n,-i,-i,i,i,n];l.beginPath();for(let o=0;o<12;o++)l.lineTo(e[o],a[o]);l.closePath(),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},square:m,square_cross:function(l,o,n,t){const i=2*n;l.rect(-n,-n,i,i),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),s(l,n),l.stroke())},square_dot:function(l,o,n,t){m(l,o,n,t),_(l,o,n,t)},square_pin:function(l,o,n,t){const i=3*n/8;l.moveTo(-n,-n),l.quadraticCurveTo(0,-i,n,-n),l.quadraticCurveTo(i,0,n,n),l.quadraticCurveTo(0,i,-n,n),l.quadraticCurveTo(-i,0,-n,-n),l.closePath(),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},square_x:function(l,o,n,t){const i=2*n;l.rect(-n,-n,i,i),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.doit&&(t.line.set_vectorize(l,o),l.moveTo(-n,n),l.lineTo(n,-n),l.moveTo(-n,-n),l.lineTo(n,n),l.stroke())},star:q,star_dot:function(l,o,n,t){q(l,o,n,t),_(l,o,n,t)},triangle:M,triangle_dot:function(l,o,n,t){M(l,o,n,t),_(l,o,n,t)},triangle_pin:function(l,o,n,t){const i=n*e,a=i/3,c=3*a/8;l.moveTo(-n,a),l.quadraticCurveTo(0,c,n,a),l.quadraticCurveTo(e*c/2,c/2,0,a-i),l.quadraticCurveTo(-e*c/2,c/2,-n,a),l.closePath(),t.fill.apply(l,o),t.hatch.apply(l,o),t.line.apply(l,o)},dash:function(l,o,n,t){!function(l,o){l.moveTo(-o,0),l.lineTo(o,0)}(l,n),t.line.apply(l,o)},x:function(l,o,n,t){u(l,n),t.line.apply(l,o)},y:function(l,o,n,t){f(l,n),t.line.apply(l,o)}}},\n", - " function _(e,t,s,i,n){i();const r=e(1);var o;const _=(0,r.__importStar)(e(185)),h=(0,r.__importStar)(e(18)),c=e(48),a=e(78),d=e(179),x=e(184),l=e(72);class y extends d.GlyphView{_project_data(){a.inplace.project_xy(this._x0,this._y0),a.inplace.project_xy(this._x1,this._y1)}_index_data(e){const{min:t,max:s}=Math,{_x0:i,_x1:n,_y0:r,_y1:o,data_size:_}=this;for(let h=0;h<_;h++){const _=i[h],c=n[h],a=r[h],d=o[h];e.add_rect(t(_,c),t(a,d),s(_,c),s(a,d))}}_render(e,t,s){if(this.visuals.line.doit){const{sx0:i,sy0:n,sx1:r,sy1:o}=null!=s?s:this;for(const s of t){const t=i[s],_=n[s],h=r[s],c=o[s];isFinite(t+_+h+c)&&(e.beginPath(),e.moveTo(t,_),e.lineTo(h,c),this.visuals.line.set_vectorize(e,s),e.stroke())}}}_hit_point(e){const{sx:t,sy:s}=e,i={x:t,y:s},[n,r]=this.renderer.xscale.r_invert(t-2,t+2),[o,h]=this.renderer.yscale.r_invert(s-2,s+2),c=this.index.indices({x0:n,y0:o,x1:r,y1:h}),a=[];for(const e of c){const t=Math.max(2,this.line_width.get(e)/2)**2,s={x:this.sx0[e],y:this.sy0[e]},n={x:this.sx1[e],y:this.sy1[e]};_.dist_to_segment_squared(i,s,n)({x0:[h.XCoordinateSpec,{field:\"x0\"}],y0:[h.YCoordinateSpec,{field:\"y0\"}],x1:[h.XCoordinateSpec,{field:\"x1\"}],y1:[h.YCoordinateSpec,{field:\"y1\"}]}))),o.mixins(c.LineVector)},\n", - " function _(t,e,s,i,n){i();const o=t(1);var _;const l=t(178),a=(0,o.__importStar)(t(48)),c=t(296);class r extends l.XYGlyphView{_set_data(){const{tension:t,closed:e}=this.model;[this._xt,this._yt]=(0,c.catmullrom_spline)(this._x,this._y,20,t,e)}_map_data(){const{x_scale:t,y_scale:e}=this.renderer.coordinates;this.sxt=t.v_compute(this._xt),this.syt=e.v_compute(this._yt)}_render(t,e,s){const{sxt:i,syt:n}=null!=s?s:this;let o=!0;t.beginPath();const _=i.length;for(let e=0;e<_;e++){const s=i[e],_=n[e];isFinite(s+_)?o?(t.moveTo(s,_),o=!1):t.lineTo(s,_):o=!0}this.visuals.line.set_value(t),t.stroke()}}s.SplineView=r,r.__name__=\"SplineView\";class h extends l.XYGlyph{constructor(t){super(t)}}s.Spline=h,_=h,h.__name__=\"Spline\",_.prototype.default_view=r,_.mixins(a.LineScalar),_.define((({Boolean:t,Number:e})=>({tension:[e,.5],closed:[t,!1]})))},\n", - " function _(n,t,e,o,s){o();const c=n(24),l=n(11);e.catmullrom_spline=function(n,t,e=10,o=.5,s=!1){(0,l.assert)(n.length==t.length);const r=n.length,f=s?r+1:r,w=(0,c.infer_type)(n,t),i=new w(f+2),u=new w(f+2);i.set(n,1),u.set(t,1),s?(i[0]=n[r-1],u[0]=t[r-1],i[f]=n[0],u[f]=t[0],i[f+1]=n[1],u[f+1]=t[1]):(i[0]=n[0],u[0]=t[0],i[f+1]=n[r-1],u[f+1]=t[r-1]);const g=new w(4*(e+1));for(let n=0,t=0;n<=e;n++){const o=n/e,s=o**2,c=o*s;g[t++]=2*c-3*s+1,g[t++]=-2*c+3*s,g[t++]=c-2*s+o,g[t++]=c-s}const h=new w((f-1)*(e+1)),_=new w((f-1)*(e+1));for(let n=1,t=0;n1&&(e.stroke(),o=!1)}o?(e.lineTo(t,r),e.lineTo(a,c)):(e.beginPath(),e.moveTo(s[n],i[n]),o=!0),l=n}e.lineTo(s[a-1],i[a-1]),e.stroke()}}draw_legend_for_index(e,t,n){(0,r.generic_line_scalar_legend)(this.visuals,e,t)}}n.StepView=f,f.__name__=\"StepView\";class u extends a.XYGlyph{constructor(e){super(e)}}n.Step=u,l=u,u.__name__=\"Step\",l.prototype.default_view=f,l.mixins(c.LineScalar),l.define((()=>({mode:[_.StepMode,\"before\"]})))},\n", - " function _(t,e,s,i,n){i();const o=t(1);var _;const h=t(178),l=t(48),r=(0,o.__importStar)(t(185)),a=(0,o.__importStar)(t(18)),c=t(121),x=t(11),u=t(72);class f extends h.XYGlyphView{_rotate_point(t,e,s,i,n){return[(t-s)*Math.cos(n)-(e-i)*Math.sin(n)+s,(t-s)*Math.sin(n)+(e-i)*Math.cos(n)+i]}_text_bounds(t,e,s,i){return[[t,t+s,t+s,t,t],[e,e,e-i,e-i,e]]}_render(t,e,s){const{sx:i,sy:n,x_offset:o,y_offset:_,angle:h,text:l}=null!=s?s:this;this._sys=[],this._sxs=[];for(const s of e){const e=this._sxs[s]=[],r=this._sys[s]=[],a=i[s],x=n[s],u=o.get(s),f=_.get(s),p=h.get(s),g=l.get(s);if(isFinite(a+x+u+f+p)&&null!=g&&this.visuals.text.doit){const i=`${g}`;t.save(),t.translate(a+u,x+f),t.rotate(p),this.visuals.text.set_vectorize(t,s);const n=this.visuals.text.font_value(s),{height:o}=(0,c.font_metrics)(n),_=this.text_line_height.get(s)*o;if(-1==i.indexOf(\"\\n\")){t.fillText(i,0,0);const s=a+u,n=x+f,o=t.measureText(i).width,[h,l]=this._text_bounds(s,n,o,_);e.push(h),r.push(l)}else{const n=i.split(\"\\n\"),o=_*n.length,h=this.text_baseline.get(s);let l;switch(h){case\"top\":l=0;break;case\"middle\":l=-o/2+_/2;break;case\"bottom\":l=-o+_;break;default:l=0,console.warn(`'${h}' baseline not supported with multi line text`)}for(const s of n){t.fillText(s,0,l);const i=a+u,n=l+x+f,o=t.measureText(s).width,[h,c]=this._text_bounds(i,n,o,_);e.push(h),r.push(c),l+=_}}t.restore()}}}_hit_point(t){const{sx:e,sy:s}=t,i=[];for(let t=0;t({text:[a.NullStringSpec,{field:\"text\"}],angle:[a.AngleSpec,0],x_offset:[a.NumberSpec,0],y_offset:[a.NumberSpec,0]})))},\n", - " function _(t,s,e,i,r){i();const h=t(1);var o;const a=t(277),n=t(24),_=(0,h.__importStar)(t(18));class c extends a.BoxView{scenterxy(t){return[this.sx[t],(this.stop[t]+this.sbottom[t])/2]}_lrtb(t){const s=this.width.get(t)/2,e=this._x[t],i=this._top[t],r=this._bottom[t];return[e-s,e+s,Math.max(i,r),Math.min(i,r)]}_map_data(){this.sx=this.renderer.xscale.v_compute(this._x),this.sw=this.sdist(this.renderer.xscale,this._x,this.width,\"center\"),this.stop=this.renderer.yscale.v_compute(this._top),this.sbottom=this.renderer.yscale.v_compute(this._bottom);const t=this.sx.length;this.sleft=new n.ScreenArray(t),this.sright=new n.ScreenArray(t);for(let s=0;s({x:[_.XCoordinateSpec,{field:\"x\"}],bottom:[_.YCoordinateSpec,{value:0}],width:[_.NumberSpec,{value:1}],top:[_.YCoordinateSpec,{field:\"top\"}]})))},\n", - " function _(e,s,t,i,n){i();const r=e(1);var a;const c=e(178),l=e(184),d=e(48),o=e(24),h=e(20),_=(0,r.__importStar)(e(18)),u=e(10),g=e(72);class p extends c.XYGlyphView{_map_data(){\"data\"==this.model.properties.radius.units?this.sradius=this.sdist(this.renderer.xscale,this._x,this.radius):this.sradius=(0,o.to_screen)(this.radius)}_render(e,s,t){const{sx:i,sy:n,sradius:r,start_angle:a,end_angle:c}=null!=t?t:this,l=\"anticlock\"==this.model.direction;for(const t of s){const s=i[t],d=n[t],o=r[t],h=a.get(t),_=c.get(t);isFinite(s+d+o+h+_)&&(e.beginPath(),e.arc(s,d,o,h,_,l),e.lineTo(s,d),e.closePath(),this.visuals.fill.apply(e,t),this.visuals.hatch.apply(e,t),this.visuals.line.apply(e,t))}}_hit_point(e){let s,t,i,n,r,a,c,l,d;const{sx:o,sy:h}=e,_=this.renderer.xscale.invert(o),p=this.renderer.yscale.invert(h),x=2*this.max_radius;\"data\"===this.model.properties.radius.units?(a=_-x,c=_+x,l=p-x,d=p+x):(t=o-x,i=o+x,[a,c]=this.renderer.xscale.r_invert(t,i),n=h-x,r=h+x,[l,d]=this.renderer.yscale.r_invert(n,r));const y=[];for(const e of this.index.indices({x0:a,x1:c,y0:l,y1:d})){const a=this.sradius[e]**2;[t,i]=this.renderer.xscale.r_compute(_,this._x[e]),[n,r]=this.renderer.yscale.r_compute(p,this._y[e]),s=(t-i)**2+(n-r)**2,s<=a&&y.push(e)}const f=\"anticlock\"==this.model.direction,m=[];for(const e of y){const s=Math.atan2(h-this.sy[e],o-this.sx[e]);(0,u.angle_between)(-s,-this.start_angle.get(e),-this.end_angle.get(e),f)&&m.push(e)}return new g.Selection({indices:m})}draw_legend_for_index(e,s,t){(0,l.generic_area_vector_legend)(this.visuals,e,s,t)}scenterxy(e){const s=this.sradius[e]/2,t=(this.start_angle.get(e)+this.end_angle.get(e))/2;return[this.sx[e]+s*Math.cos(t),this.sy[e]+s*Math.sin(t)]}}t.WedgeView=p,p.__name__=\"WedgeView\";class x extends c.XYGlyph{constructor(e){super(e)}}t.Wedge=x,a=x,x.__name__=\"Wedge\",a.prototype.default_view=p,a.mixins([d.LineVector,d.FillVector,d.HatchVector]),a.define((({})=>({direction:[h.Direction,\"anticlock\"],radius:[_.DistanceSpec,{field:\"radius\"}],start_angle:[_.AngleSpec,{field:\"start_angle\"}],end_angle:[_.AngleSpec,{field:\"end_angle\"}]})))},\n", - " function _(t,_,r,o,a){o();const e=t(1);(0,e.__exportStar)(t(302),r),(0,e.__exportStar)(t(303),r),(0,e.__exportStar)(t(304),r)},\n", - " function _(e,t,d,n,s){n();const o=e(53),r=e(12),_=e(9),i=e(72);class c extends o.Model{constructor(e){super(e)}_hit_test(e,t,d){if(!t.model.visible)return null;const n=d.glyph.hit_test(e);return null==n?null:d.model.view.convert_selection_from_subset(n)}}d.GraphHitTestPolicy=c,c.__name__=\"GraphHitTestPolicy\";class a extends c{constructor(e){super(e)}hit_test(e,t){return this._hit_test(e,t,t.edge_view)}do_selection(e,t,d,n){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;return s.update(e,d,n),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,d,n,s){if(null==e)return!1;const{edge_renderer:o}=d.model,r=o.get_selection_manager().get_or_create_inspector(d.edge_view.model);return r.update(e,n,s),d.edge_view.model.data_source.setv({inspected:r},{silent:!0}),d.edge_view.model.data_source.inspect.emit([d.edge_view.model,{geometry:t}]),!r.is_empty()}}d.EdgesOnly=a,a.__name__=\"EdgesOnly\";class l extends c{constructor(e){super(e)}hit_test(e,t){return this._hit_test(e,t,t.node_view)}do_selection(e,t,d,n){if(null==e)return!1;const s=t.node_renderer.data_source.selected;return s.update(e,d,n),t.node_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,d,n,s){if(null==e)return!1;const{node_renderer:o}=d.model,r=o.get_selection_manager().get_or_create_inspector(d.node_view.model);return r.update(e,n,s),d.node_view.model.data_source.setv({inspected:r},{silent:!0}),d.node_view.model.data_source.inspect.emit([d.node_view.model,{geometry:t}]),!r.is_empty()}}d.NodesOnly=l,l.__name__=\"NodesOnly\";class u extends c{constructor(e){super(e)}hit_test(e,t){return this._hit_test(e,t,t.node_view)}get_linked_edges(e,t,d){let n=[];\"selection\"==d?n=e.selected.indices.map((t=>e.data.index[t])):\"inspection\"==d&&(n=e.inspected.indices.map((t=>e.data.index[t])));const s=[];for(let e=0;e(0,r.indexOf)(e.data.index,t)));return new i.Selection({indices:o})}do_selection(e,t,d,n){if(null==e)return!1;const s=t.edge_renderer.data_source.selected;s.update(e,d,n);const o=t.node_renderer.data_source.selected,r=this.get_linked_nodes(t.node_renderer.data_source,t.edge_renderer.data_source,\"selection\");return o.update(r,d,n),t.edge_renderer.data_source._select.emit(),!s.is_empty()}do_inspection(e,t,d,n,s){if(null==e)return!1;const o=d.edge_view.model.data_source.selection_manager.get_or_create_inspector(d.edge_view.model);o.update(e,n,s),d.edge_view.model.data_source.setv({inspected:o},{silent:!0});const r=d.node_view.model.data_source.selection_manager.get_or_create_inspector(d.node_view.model),_=this.get_linked_nodes(d.node_view.model.data_source,d.edge_view.model.data_source,\"inspection\");return r.update(_,n,s),d.node_view.model.data_source.setv({inspected:r},{silent:!0}),d.edge_view.model.data_source.inspect.emit([d.edge_view.model,{geometry:t}]),!o.is_empty()}}d.EdgesAndLinkedNodes=m,m.__name__=\"EdgesAndLinkedNodes\"},\n", - " function _(e,o,t,r,n){var s;r();const a=e(53),d=e(260);class _ extends a.Model{constructor(e){super(e)}get node_coordinates(){return new u({layout:this})}get edge_coordinates(){return new i({layout:this})}}t.LayoutProvider=_,_.__name__=\"LayoutProvider\";class c extends d.CoordinateTransform{constructor(e){super(e)}}t.GraphCoordinates=c,s=c,c.__name__=\"GraphCoordinates\",s.define((({Ref:e})=>({layout:[e(_)]})));class u extends c{constructor(e){super(e)}_v_compute(e){const[o,t]=this.layout.get_node_coordinates(e);return{x:o,y:t}}}t.NodeCoordinates=u,u.__name__=\"NodeCoordinates\";class i extends c{constructor(e){super(e)}_v_compute(e){const[o,t]=this.layout.get_edge_coordinates(e);return{x:o,y:t}}}t.EdgeCoordinates=i,i.__name__=\"EdgeCoordinates\"},\n", - " function _(t,a,l,e,n){var o;e();const r=t(303);class u extends r.LayoutProvider{constructor(t){super(t)}get_node_coordinates(t){var a;const l=null!==(a=t.data.index)&&void 0!==a?a:[],e=l.length,n=new Float64Array(e),o=new Float64Array(e);for(let t=0;t({graph_layout:[l(a(t,t)),{}]})))},\n", - " function _(i,d,n,r,G){r(),G(\"Grid\",i(306).Grid)},\n", - " function _(i,e,n,s,t){s();const r=i(1);var o;const d=i(127),_=i(129),a=i(130),l=(0,r.__importStar)(i(48)),h=i(8);class c extends _.GuideRendererView{_render(){const i=this.layer.ctx;i.save(),this._draw_regions(i),this._draw_minor_grids(i),this._draw_grids(i),i.restore()}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render()))}_draw_regions(i){if(!this.visuals.band_fill.doit&&!this.visuals.band_hatch.doit)return;const[e,n]=this.grid_coords(\"major\",!1);for(let s=0;sn[1]&&(t=n[1]);else{[s,t]=n;for(const i of this.plot_view.axis_views)i.dimension==this.model.dimension&&i.model.x_range_name==this.model.x_range_name&&i.model.y_range_name==this.model.y_range_name&&([s,t]=i.computed_bounds)}return[s,t]}grid_coords(i,e=!0){const n=this.model.dimension,s=(n+1)%2,[t,r]=this.ranges();let[o,d]=this.computed_bounds();[o,d]=[Math.min(o,d),Math.max(o,d)];const _=[[],[]],a=this.model.get_ticker();if(null==a)return _;const l=a.get_ticks(o,d,t,r.min)[i],h=t.min,c=t.max,u=r.min,m=r.max;e||(l[0]!=h&&l.splice(0,0,h),l[l.length-1]!=c&&l.push(c));for(let i=0;i({bounds:[r(t(i,i),e),\"auto\"],dimension:[n(0,1),0],axis:[o(s(d.Axis)),null],ticker:[o(s(a.Ticker)),null]}))),o.override({level:\"underlay\",band_fill_color:null,band_fill_alpha:0,grid_line_color:\"#e5e5e5\",minor_grid_line_color:null})},\n", - " function _(o,a,x,B,e){B(),e(\"Box\",o(308).Box),e(\"Column\",o(310).Column),e(\"GridBox\",o(311).GridBox),e(\"HTMLBox\",o(312).HTMLBox),e(\"LayoutDOM\",o(309).LayoutDOM),e(\"Panel\",o(313).Panel),e(\"Row\",o(314).Row),e(\"Spacer\",o(315).Spacer),e(\"Tabs\",o(316).Tabs),e(\"WidgetBox\",o(319).WidgetBox)},\n", - " function _(e,n,s,t,c){var i;t();const o=e(309);class r extends o.LayoutDOMView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.children.change,(()=>this.rebuild()))}get child_models(){return this.model.children}}s.BoxView=r,r.__name__=\"BoxView\";class a extends o.LayoutDOM{constructor(e){super(e)}}s.Box=a,i=a,a.__name__=\"Box\",i.define((({Number:e,Array:n,Ref:s})=>({children:[n(s(o.LayoutDOM)),[]],spacing:[e,0]})))},\n", - " function _(t,i,e,s,o){var l;s();const n=t(53),h=t(20),a=t(43),r=t(19),_=t(8),c=t(22),u=t(121),d=t(113),p=t(226),m=t(207),g=t(44),w=t(235);class f extends p.DOMView{constructor(){super(...arguments),this._offset_parent=null,this._viewport={}}get is_layout_root(){return this.is_root||!(this.parent instanceof f)}get base_font_size(){const t=getComputedStyle(this.el).fontSize,i=(0,u.parse_css_font_size)(t);if(null!=i){const{value:t,unit:e}=i;if(\"px\"==e)return t}return null}initialize(){super.initialize(),this.el.style.position=this.is_layout_root?\"relative\":\"absolute\",this._child_views=new Map}async lazy_initialize(){await super.lazy_initialize(),await this.build_child_views()}remove(){for(const t of this.child_views)t.remove();this._child_views.clear(),super.remove()}connect_signals(){super.connect_signals(),this.is_layout_root&&(this._on_resize=()=>this.resize_layout(),window.addEventListener(\"resize\",this._on_resize),this._parent_observer=setInterval((()=>{const t=this.el.offsetParent;this._offset_parent!=t&&(this._offset_parent=t,null!=t&&(this.compute_viewport(),this.invalidate_layout()))}),250));const t=this.model.properties;this.on_change([t.width,t.height,t.min_width,t.min_height,t.max_width,t.max_height,t.margin,t.width_policy,t.height_policy,t.sizing_mode,t.aspect_ratio,t.visible],(()=>this.invalidate_layout())),this.on_change([t.background,t.css_classes],(()=>this.invalidate_render()))}disconnect_signals(){null!=this._parent_observer&&clearTimeout(this._parent_observer),null!=this._on_resize&&window.removeEventListener(\"resize\",this._on_resize),super.disconnect_signals()}css_classes(){return super.css_classes().concat(this.model.css_classes)}get child_views(){return this.child_models.map((t=>this._child_views.get(t)))}async build_child_views(){await(0,d.build_views)(this._child_views,this.child_models,{parent:this})}render(){super.render(),(0,a.empty)(this.el);const{background:t}=this.model;this.el.style.backgroundColor=null!=t?(0,c.color2css)(t):\"\",(0,a.classes)(this.el).clear().add(...this.css_classes());for(const t of this.child_views)this.el.appendChild(t.el),t.render()}update_layout(){for(const t of this.child_views)t.update_layout();this._update_layout()}update_position(){this.el.style.display=this.model.visible?\"block\":\"none\";const t=this.is_layout_root?this.layout.sizing.margin:void 0;(0,a.position)(this.el,this.layout.bbox,t);for(const t of this.child_views)t.update_position()}after_layout(){for(const t of this.child_views)t.after_layout();this._has_finished=!0}compute_viewport(){this._viewport=this._viewport_size()}renderTo(t){t.appendChild(this.el),this._offset_parent=this.el.offsetParent,this.compute_viewport(),this.build(),this.notify_finished()}build(){if(!this.is_layout_root)throw new Error(`${this.toString()} is not a root layout`);return this.render(),this.update_layout(),this.compute_layout(),this}async rebuild(){await this.build_child_views(),this.invalidate_render()}compute_layout(){const t=Date.now();this.layout.compute(this._viewport),this.update_position(),this.after_layout(),r.logger.debug(`layout computed in ${Date.now()-t} ms`)}resize_layout(){this.root.compute_viewport(),this.root.compute_layout()}invalidate_layout(){this.root.update_layout(),this.root.compute_layout()}invalidate_render(){this.render(),this.invalidate_layout()}has_finished(){if(!super.has_finished())return!1;for(const t of this.child_views)if(!t.has_finished())return!1;return!0}_width_policy(){return null!=this.model.width?\"fixed\":\"fit\"}_height_policy(){return null!=this.model.height?\"fixed\":\"fit\"}box_sizing(){let{width_policy:t,height_policy:i,aspect_ratio:e}=this.model;\"auto\"==t&&(t=this._width_policy()),\"auto\"==i&&(i=this._height_policy());const{sizing_mode:s}=this.model;if(null!=s)if(\"fixed\"==s)t=i=\"fixed\";else if(\"stretch_both\"==s)t=i=\"max\";else if(\"stretch_width\"==s)t=\"max\";else if(\"stretch_height\"==s)i=\"max\";else switch(null==e&&(e=\"auto\"),s){case\"scale_width\":t=\"max\",i=\"min\";break;case\"scale_height\":t=\"min\",i=\"max\";break;case\"scale_both\":t=\"max\",i=\"max\"}const o={width_policy:t,height_policy:i},{min_width:l,min_height:n}=this.model;null!=l&&(o.min_width=l),null!=n&&(o.min_height=n);const{width:h,height:a}=this.model;null!=h&&(o.width=h),null!=a&&(o.height=a);const{max_width:r,max_height:c}=this.model;null!=r&&(o.max_width=r),null!=c&&(o.max_height=c),\"auto\"==e&&null!=h&&null!=a?o.aspect=h/a:(0,_.isNumber)(e)&&(o.aspect=e);const{margin:u}=this.model;if(null!=u)if((0,_.isNumber)(u))o.margin={top:u,right:u,bottom:u,left:u};else if(2==u.length){const[t,i]=u;o.margin={top:t,right:i,bottom:t,left:i}}else{const[t,i,e,s]=u;o.margin={top:t,right:i,bottom:e,left:s}}o.visible=this.model.visible;const{align:d}=this.model;return(0,_.isArray)(d)?[o.halign,o.valign]=d:o.halign=o.valign=d,o}_viewport_size(){return(0,a.undisplayed)(this.el,(()=>{let t=this.el;for(;t=t.parentElement;){if(t.classList.contains(g.root))continue;if(t==document.body){const{margin:{left:t,right:i,top:e,bottom:s}}=(0,a.extents)(document.body);return{width:Math.ceil(document.documentElement.clientWidth-t-i),height:Math.ceil(document.documentElement.clientHeight-e-s)}}const{padding:{left:i,right:e,top:s,bottom:o}}=(0,a.extents)(t),{width:l,height:n}=t.getBoundingClientRect(),h=Math.ceil(l-i-e),r=Math.ceil(n-s-o);if(h>0||r>0)return{width:h>0?h:void 0,height:r>0?r:void 0}}return{}}))}export(t,i=!0){const e=\"png\"==t?\"canvas\":\"svg\",s=new w.CanvasLayer(e,i),{width:o,height:l}=this.layout.bbox;s.resize(o,l);for(const e of this.child_views){const o=e.export(t,i),{x:l,y:n}=e.layout.bbox;s.ctx.drawImage(o.canvas,l,n)}return s}serializable_state(){return Object.assign(Object.assign({},super.serializable_state()),{bbox:this.layout.bbox.box,children:this.child_views.map((t=>t.serializable_state()))})}}e.LayoutDOMView=f,f.__name__=\"LayoutDOMView\";class y extends n.Model{constructor(t){super(t)}}e.LayoutDOM=y,l=y,y.__name__=\"LayoutDOM\",l.define((t=>{const{Boolean:i,Number:e,String:s,Auto:o,Color:l,Array:n,Tuple:a,Or:r,Null:_,Nullable:c}=t,u=a(e,e),d=a(e,e,e,e);return{width:[c(e),null],height:[c(e),null],min_width:[c(e),null],min_height:[c(e),null],max_width:[c(e),null],max_height:[c(e),null],margin:[c(r(e,u,d)),[0,0,0,0]],width_policy:[r(m.SizingPolicy,o),\"auto\"],height_policy:[r(m.SizingPolicy,o),\"auto\"],aspect_ratio:[r(e,o,_),null],sizing_mode:[c(h.SizingMode),null],visible:[i,!0],disabled:[i,!1],align:[r(h.Align,a(h.Align,h.Align)),\"start\"],background:[c(l),null],css_classes:[n(s),[]]}}))},\n", - " function _(o,s,t,i,e){var n;i();const a=o(308),l=o(209);class u extends a.BoxView{_update_layout(){const o=this.child_views.map((o=>o.layout));this.layout=new l.Column(o),this.layout.rows=this.model.rows,this.layout.spacing=[this.model.spacing,0],this.layout.set_sizing(this.box_sizing())}}t.ColumnView=u,u.__name__=\"ColumnView\";class _ extends a.Box{constructor(o){super(o)}}t.Column=_,n=_,_.__name__=\"Column\",n.prototype.default_view=u,n.define((({Any:o})=>({rows:[o,\"auto\"]})))},\n", - " function _(s,o,t,i,e){var n;i();const l=s(309),a=s(209);class r extends l.LayoutDOMView{connect_signals(){super.connect_signals();const{children:s,rows:o,cols:t,spacing:i}=this.model.properties;this.on_change([s,o,t,i],(()=>this.rebuild()))}get child_models(){return this.model.children.map((([s])=>s))}_update_layout(){this.layout=new a.Grid,this.layout.rows=this.model.rows,this.layout.cols=this.model.cols,this.layout.spacing=this.model.spacing;for(const[s,o,t,i,e]of this.model.children){const n=this._child_views.get(s);this.layout.items.push({layout:n.layout,row:o,col:t,row_span:i,col_span:e})}this.layout.set_sizing(this.box_sizing())}}t.GridBoxView=r,r.__name__=\"GridBoxView\";class c extends l.LayoutDOM{constructor(s){super(s)}}t.GridBox=c,n=c,c.__name__=\"GridBox\",n.prototype.default_view=r,n.define((({Any:s,Int:o,Number:t,Tuple:i,Array:e,Ref:n,Or:a,Opt:r})=>({children:[e(i(n(l.LayoutDOM),o,o,r(o),r(o))),[]],rows:[s,\"auto\"],cols:[s,\"auto\"],spacing:[a(t,i(t,t)),0]})))},\n", - " function _(t,e,o,s,n){s();const _=t(309),i=t(207);class a extends _.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new i.ContentBox(this.el),this.layout.set_sizing(this.box_sizing())}}o.HTMLBoxView=a,a.__name__=\"HTMLBoxView\";class u extends _.LayoutDOM{constructor(t){super(t)}}o.HTMLBox=u,u.__name__=\"HTMLBox\"},\n", - " function _(e,n,l,a,o){var t;a();const s=e(53),c=e(309);class d extends s.Model{constructor(e){super(e)}}l.Panel=d,t=d,d.__name__=\"Panel\",t.define((({Boolean:e,String:n,Ref:l})=>({title:[n,\"\"],child:[l(c.LayoutDOM)],closable:[e,!1],disabled:[e,!1]})))},\n", - " function _(o,s,t,i,e){var a;i();const n=o(308),l=o(209);class _ extends n.BoxView{_update_layout(){const o=this.child_views.map((o=>o.layout));this.layout=new l.Row(o),this.layout.cols=this.model.cols,this.layout.spacing=[0,this.model.spacing],this.layout.set_sizing(this.box_sizing())}}t.RowView=_,_.__name__=\"RowView\";class c extends n.Box{constructor(o){super(o)}}t.Row=c,a=c,c.__name__=\"Row\",a.prototype.default_view=_,a.define((({Any:o})=>({cols:[o,\"auto\"]})))},\n", - " function _(e,t,a,s,_){var o;s();const i=e(309),n=e(207);class u extends i.LayoutDOMView{get child_models(){return[]}_update_layout(){this.layout=new n.LayoutItem,this.layout.set_sizing(this.box_sizing())}}a.SpacerView=u,u.__name__=\"SpacerView\";class c extends i.LayoutDOM{constructor(e){super(e)}}a.Spacer=c,o=c,c.__name__=\"Spacer\",o.prototype.default_view=u},\n", - " function _(e,t,s,i,l){i();const h=e(1);var a;const o=e(207),d=e(43),r=e(9),c=e(10),n=e(20),_=e(309),p=e(313),b=(0,h.__importStar)(e(317)),m=b,u=(0,h.__importStar)(e(318)),g=u,v=(0,h.__importStar)(e(229)),w=v;class f extends _.LayoutDOMView{constructor(){super(...arguments),this._scroll_index=0}connect_signals(){super.connect_signals(),this.connect(this.model.properties.tabs.change,(()=>this.rebuild())),this.connect(this.model.properties.active.change,(()=>this.on_active_change()))}styles(){return[...super.styles(),u.default,v.default,b.default]}get child_models(){return this.model.tabs.map((e=>e.child))}_update_layout(){const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,{scroll_el:s,headers_el:i}=this;this.header=new class extends o.ContentBox{_measure(e){const l=(0,d.size)(s),h=(0,d.children)(i).slice(0,3).map((e=>(0,d.size)(e))),{width:a,height:o}=super._measure(e);if(t){const t=l.width+(0,r.sum)(h.map((e=>e.width)));return{width:e.width!=1/0?e.width:t,height:o}}{const t=l.height+(0,r.sum)(h.map((e=>e.height)));return{width:a,height:e.height!=1/0?e.height:t}}}}(this.header_el),t?this.header.set_sizing({width_policy:\"fit\",height_policy:\"fixed\"}):this.header.set_sizing({width_policy:\"fixed\",height_policy:\"fit\"});let l=1,h=1;switch(e){case\"above\":l-=1;break;case\"below\":l+=1;break;case\"left\":h-=1;break;case\"right\":h+=1}const a={layout:this.header,row:l,col:h},c=this.child_views.map((e=>({layout:e.layout,row:1,col:1})));this.layout=new o.Grid([a,...c]),this.layout.set_sizing(this.box_sizing())}update_position(){super.update_position(),this.header_el.style.position=\"absolute\",(0,d.position)(this.header_el,this.header.bbox);const e=this.model.tabs_location,t=\"above\"==e||\"below\"==e,s=(0,d.size)(this.scroll_el),i=(0,d.scroll_size)(this.headers_el);if(t){const{width:e}=this.header.bbox;i.width>e?(this.wrapper_el.style.maxWidth=e-s.width+\"px\",(0,d.display)(this.scroll_el),this.do_scroll(this.model.active)):(this.wrapper_el.style.maxWidth=\"\",(0,d.undisplay)(this.scroll_el))}else{const{height:e}=this.header.bbox;i.height>e?(this.wrapper_el.style.maxHeight=e-s.height+\"px\",(0,d.display)(this.scroll_el),this.do_scroll(this.model.active)):(this.wrapper_el.style.maxHeight=\"\",(0,d.undisplay)(this.scroll_el))}const{child_views:l}=this;for(const e of l)(0,d.hide)(e.el);const h=l[this.model.active];null!=h&&(0,d.show)(h.el)}render(){super.render();const{active:e}=this.model,t=this.model.tabs.map(((t,s)=>{const i=(0,d.div)({class:[m.tab,s==e?m.active:null]},t.title);if(i.addEventListener(\"click\",(e=>{this.model.disabled||e.target==e.currentTarget&&this.change_active(s)})),t.closable){const e=(0,d.div)({class:m.close});e.addEventListener(\"click\",(e=>{if(e.target==e.currentTarget){this.model.tabs=(0,r.remove_at)(this.model.tabs,s);const e=this.model.tabs.length;this.model.active>e-1&&(this.model.active=e-1)}})),i.appendChild(e)}return(this.model.disabled||t.disabled)&&i.classList.add(m.disabled),i}));this.headers_el=(0,d.div)({class:[m.headers]},t),this.wrapper_el=(0,d.div)({class:m.headers_wrapper},this.headers_el),this.left_el=(0,d.div)({class:[g.btn,g.btn_default],disabled:\"\"},(0,d.div)({class:[w.caret,m.left]})),this.right_el=(0,d.div)({class:[g.btn,g.btn_default]},(0,d.div)({class:[w.caret,m.right]})),this.left_el.addEventListener(\"click\",(()=>this.do_scroll(\"left\"))),this.right_el.addEventListener(\"click\",(()=>this.do_scroll(\"right\"))),this.scroll_el=(0,d.div)({class:g.btn_group},this.left_el,this.right_el);const s=this.model.tabs_location;this.header_el=(0,d.div)({class:[m.tabs_header,m[s]]},this.scroll_el,this.wrapper_el),this.el.appendChild(this.header_el)}do_scroll(e){const t=this.model.tabs.length;\"left\"==e?this._scroll_index-=1:\"right\"==e?this._scroll_index+=1:this._scroll_index=e,this._scroll_index=(0,c.clamp)(this._scroll_index,0,t-1),0==this._scroll_index?this.left_el.setAttribute(\"disabled\",\"\"):this.left_el.removeAttribute(\"disabled\"),this._scroll_index==t-1?this.right_el.setAttribute(\"disabled\",\"\"):this.right_el.removeAttribute(\"disabled\");const s=(0,d.children)(this.headers_el).slice(0,this._scroll_index).map((e=>e.getBoundingClientRect())),i=this.model.tabs_location;if(\"above\"==i||\"below\"==i){const e=-(0,r.sum)(s.map((e=>e.width)));this.headers_el.style.left=`${e}px`}else{const e=-(0,r.sum)(s.map((e=>e.height)));this.headers_el.style.top=`${e}px`}}change_active(e){e!=this.model.active&&(this.model.active=e)}on_active_change(){const e=this.model.active,t=(0,d.children)(this.headers_el);for(const e of t)e.classList.remove(m.active);t[e].classList.add(m.active);const{child_views:s}=this;for(const e of s)(0,d.hide)(e.el);(0,d.show)(s[e].el)}}s.TabsView=f,f.__name__=\"TabsView\";class x extends _.LayoutDOM{constructor(e){super(e)}}s.Tabs=x,a=x,x.__name__=\"Tabs\",a.prototype.default_view=f,a.define((({Int:e,Array:t,Ref:s})=>({tabs:[t(s(p.Panel)),[]],tabs_location:[n.Location,\"above\"],active:[e,0]})))},\n", - " function _(e,r,b,o,t){o(),b.root=\"bk-root\",b.tabs_header=\"bk-tabs-header\",b.btn_group=\"bk-btn-group\",b.btn=\"bk-btn\",b.headers_wrapper=\"bk-headers-wrapper\",b.above=\"bk-above\",b.right=\"bk-right\",b.below=\"bk-below\",b.left=\"bk-left\",b.headers=\"bk-headers\",b.tab=\"bk-tab\",b.active=\"bk-active\",b.close=\"bk-close\",b.disabled=\"bk-disabled\",b.default='.bk-root .bk-tabs-header{display:flex;flex-wrap:nowrap;align-items:center;overflow:hidden;user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;}.bk-root .bk-tabs-header .bk-btn-group{height:auto;margin-right:5px;}.bk-root .bk-tabs-header .bk-btn-group > .bk-btn{flex-grow:0;height:auto;padding:4px 4px;}.bk-root .bk-tabs-header .bk-headers-wrapper{flex-grow:1;overflow:hidden;color:#666666;}.bk-root .bk-tabs-header.bk-above .bk-headers-wrapper{border-bottom:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-right .bk-headers-wrapper{border-left:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-below .bk-headers-wrapper{border-top:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-left .bk-headers-wrapper{border-right:1px solid #e6e6e6;}.bk-root .bk-tabs-header.bk-above,.bk-root .bk-tabs-header.bk-below{flex-direction:row;}.bk-root .bk-tabs-header.bk-above .bk-headers,.bk-root .bk-tabs-header.bk-below .bk-headers{flex-direction:row;}.bk-root .bk-tabs-header.bk-left,.bk-root .bk-tabs-header.bk-right{flex-direction:column;}.bk-root .bk-tabs-header.bk-left .bk-headers,.bk-root .bk-tabs-header.bk-right .bk-headers{flex-direction:column;}.bk-root .bk-tabs-header .bk-headers{position:relative;display:flex;flex-wrap:nowrap;align-items:center;}.bk-root .bk-tabs-header .bk-tab{padding:4px 8px;border:solid transparent;white-space:nowrap;cursor:pointer;}.bk-root .bk-tabs-header .bk-tab:hover{background-color:#f2f2f2;}.bk-root .bk-tabs-header .bk-tab.bk-active{color:#4d4d4d;background-color:white;border-color:#e6e6e6;}.bk-root .bk-tabs-header .bk-tab .bk-close{margin-left:10px;}.bk-root .bk-tabs-header .bk-tab.bk-disabled{cursor:not-allowed;pointer-events:none;opacity:0.65;}.bk-root .bk-tabs-header.bk-above .bk-tab{border-width:3px 1px 0px 1px;border-radius:4px 4px 0 0;}.bk-root .bk-tabs-header.bk-right .bk-tab{border-width:1px 3px 1px 0px;border-radius:0 4px 4px 0;}.bk-root .bk-tabs-header.bk-below .bk-tab{border-width:0px 1px 3px 1px;border-radius:0 0 4px 4px;}.bk-root .bk-tabs-header.bk-left .bk-tab{border-width:1px 0px 1px 3px;border-radius:4px 0 0 4px;}.bk-root .bk-close{display:inline-block;width:10px;height:10px;vertical-align:middle;background-image:url(\\'data:image/svg+xml;utf8, \\');}.bk-root .bk-close:hover{background-image:url(\\'data:image/svg+xml;utf8, \\');}'},\n", - " function _(o,b,r,t,e){t(),r.root=\"bk-root\",r.btn=\"bk-btn\",r.active=\"bk-active\",r.btn_default=\"bk-btn-default\",r.btn_primary=\"bk-btn-primary\",r.btn_success=\"bk-btn-success\",r.btn_warning=\"bk-btn-warning\",r.btn_danger=\"bk-btn-danger\",r.btn_light=\"bk-btn-light\",r.btn_group=\"bk-btn-group\",r.vertical=\"bk-vertical\",r.horizontal=\"bk-horizontal\",r.dropdown_toggle=\"bk-dropdown-toggle\",r.default=\".bk-root .bk-btn{height:100%;display:inline-block;text-align:center;vertical-align:middle;white-space:nowrap;cursor:pointer;padding:6px 12px;font-size:12px;border:1px solid transparent;border-radius:4px;outline:0;user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;}.bk-root .bk-btn:hover,.bk-root .bk-btn:focus{text-decoration:none;}.bk-root .bk-btn:active,.bk-root .bk-btn.bk-active{background-image:none;box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);}.bk-root .bk-btn[disabled]{cursor:not-allowed;pointer-events:none;opacity:0.65;box-shadow:none;}.bk-root .bk-btn-default{color:#333;background-color:#fff;border-color:#ccc;}.bk-root .bk-btn-default:hover{background-color:#f5f5f5;border-color:#b8b8b8;}.bk-root .bk-btn-default.bk-active{background-color:#ebebeb;border-color:#adadad;}.bk-root .bk-btn-default[disabled],.bk-root .bk-btn-default[disabled]:hover,.bk-root .bk-btn-default[disabled]:focus,.bk-root .bk-btn-default[disabled]:active,.bk-root .bk-btn-default[disabled].bk-active{background-color:#e6e6e6;border-color:#ccc;}.bk-root .bk-btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd;}.bk-root .bk-btn-primary:hover{background-color:#3681c1;border-color:#2c699e;}.bk-root .bk-btn-primary.bk-active{background-color:#3276b1;border-color:#285e8e;}.bk-root .bk-btn-primary[disabled],.bk-root .bk-btn-primary[disabled]:hover,.bk-root .bk-btn-primary[disabled]:focus,.bk-root .bk-btn-primary[disabled]:active,.bk-root .bk-btn-primary[disabled].bk-active{background-color:#506f89;border-color:#357ebd;}.bk-root .bk-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c;}.bk-root .bk-btn-success:hover{background-color:#4eb24e;border-color:#409240;}.bk-root .bk-btn-success.bk-active{background-color:#47a447;border-color:#398439;}.bk-root .bk-btn-success[disabled],.bk-root .bk-btn-success[disabled]:hover,.bk-root .bk-btn-success[disabled]:focus,.bk-root .bk-btn-success[disabled]:active,.bk-root .bk-btn-success[disabled].bk-active{background-color:#667b66;border-color:#4cae4c;}.bk-root .bk-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236;}.bk-root .bk-btn-warning:hover{background-color:#eea43b;border-color:#e89014;}.bk-root .bk-btn-warning.bk-active{background-color:#ed9c28;border-color:#d58512;}.bk-root .bk-btn-warning[disabled],.bk-root .bk-btn-warning[disabled]:hover,.bk-root .bk-btn-warning[disabled]:focus,.bk-root .bk-btn-warning[disabled]:active,.bk-root .bk-btn-warning[disabled].bk-active{background-color:#c89143;border-color:#eea236;}.bk-root .bk-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a;}.bk-root .bk-btn-danger:hover{background-color:#d5433e;border-color:#bd2d29;}.bk-root .bk-btn-danger.bk-active{background-color:#d2322d;border-color:#ac2925;}.bk-root .bk-btn-danger[disabled],.bk-root .bk-btn-danger[disabled]:hover,.bk-root .bk-btn-danger[disabled]:focus,.bk-root .bk-btn-danger[disabled]:active,.bk-root .bk-btn-danger[disabled].bk-active{background-color:#a55350;border-color:#d43f3a;}.bk-root .bk-btn-light{color:#333;background-color:#fff;border-color:#ccc;border-color:transparent;}.bk-root .bk-btn-light:hover{background-color:#f5f5f5;border-color:#b8b8b8;}.bk-root .bk-btn-light.bk-active{background-color:#ebebeb;border-color:#adadad;}.bk-root .bk-btn-light[disabled],.bk-root .bk-btn-light[disabled]:hover,.bk-root .bk-btn-light[disabled]:focus,.bk-root .bk-btn-light[disabled]:active,.bk-root .bk-btn-light[disabled].bk-active{background-color:#e6e6e6;border-color:#ccc;}.bk-root .bk-btn-group{height:100%;display:flex;flex-wrap:nowrap;align-items:center;}.bk-root .bk-btn-group:not(.bk-vertical),.bk-root .bk-btn-group.bk-horizontal{flex-direction:row;}.bk-root .bk-btn-group.bk-vertical{flex-direction:column;}.bk-root .bk-btn-group > .bk-btn{flex-grow:1;}.bk-root .bk-btn-group:not(.bk-vertical) > .bk-btn + .bk-btn{margin-left:-1px;}.bk-root .bk-btn-group.bk-vertical > .bk-btn + .bk-btn{margin-top:-1px;}.bk-root .bk-btn-group:not(.bk-vertical) > .bk-btn:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;}.bk-root .bk-btn-group.bk-vertical > .bk-btn:first-child:not(:last-child){border-bottom-left-radius:0;border-bottom-right-radius:0;}.bk-root .bk-btn-group:not(.bk-vertical) > .bk-btn:not(:first-child):last-child{border-bottom-left-radius:0;border-top-left-radius:0;}.bk-root .bk-btn-group.bk-vertical > .bk-btn:not(:first-child):last-child{border-top-left-radius:0;border-top-right-radius:0;}.bk-root .bk-btn-group > .bk-btn:not(:first-child):not(:last-child){border-radius:0;}.bk-root .bk-btn-group.bk-vertical > .bk-btn{width:100%;}.bk-root .bk-btn-group .bk-dropdown-toggle{flex:0 0 0;padding:6px 6px;}\"},\n", - " function _(e,t,o,n,_){var i;n();const s=e(310);class d extends s.ColumnView{}o.WidgetBoxView=d,d.__name__=\"WidgetBoxView\";class a extends s.Column{constructor(e){super(e)}}o.WidgetBox=a,i=a,a.__name__=\"WidgetBox\",i.prototype.default_view=d},\n", - " function _(t,a,i,e,M){e();var T=t(135);M(\"MathText\",T.MathText),M(\"Ascii\",T.Ascii),M(\"MathML\",T.MathML),M(\"TeX\",T.TeX),M(\"PlainText\",t(139).PlainText)},\n", - " function _(r,o,t,e,n){e(),n(\"CustomJSTransform\",r(322).CustomJSTransform),n(\"Dodge\",r(323).Dodge),n(\"Interpolator\",r(325).Interpolator),n(\"Jitter\",r(326).Jitter),n(\"LinearInterpolator\",r(327).LinearInterpolator),n(\"StepInterpolator\",r(328).StepInterpolator),n(\"Transform\",r(56).Transform)},\n", - " function _(r,t,s,n,e){var a;n();const u=r(56),o=r(13),m=r(34);class _ extends u.Transform{constructor(r){super(r)}get names(){return(0,o.keys)(this.args)}get values(){return(0,o.values)(this.args)}_make_transform(r,t){return new Function(...this.names,r,(0,m.use_strict)(t))}get scalar_transform(){return this._make_transform(\"x\",this.func)}get vector_transform(){return this._make_transform(\"xs\",this.v_func)}compute(r){return this.scalar_transform(...this.values,r)}v_compute(r){return this.vector_transform(...this.values,r)}}s.CustomJSTransform=_,a=_,_.__name__=\"CustomJSTransform\",a.define((({Unknown:r,String:t,Dict:s})=>({args:[s(r),{}],func:[t,\"\"],v_func:[t,\"\"]})))},\n", - " function _(e,n,r,o,s){var t;o();const u=e(324);class a extends u.RangeTransform{constructor(e){super(e)}_compute(e){return e+this.value}}r.Dodge=a,t=a,a.__name__=\"Dodge\",t.define((({Number:e})=>({value:[e,0]})))},\n", - " function _(e,n,t,r,a){var s;r();const c=e(56),o=e(57),i=e(67),u=e(24),h=e(8),l=e(11);class g extends c.Transform{constructor(e){super(e)}v_compute(e){let n;this.range instanceof i.FactorRange?n=this.range.v_synthetic(e):(0,h.isArrayableOf)(e,h.isNumber)?n=e:(0,l.unreachable)();const t=new((0,u.infer_type)(n))(n.length);for(let e=0;e({range:[n(e(o.Range)),null]})))},\n", - " function _(t,e,r,n,s){var o;n();const i=t(56),a=t(70),h=t(24),l=t(9),d=t(8);class c extends i.Transform{constructor(t){super(t),this._sorted_dirty=!0}connect_signals(){super.connect_signals(),this.connect(this.change,(()=>this._sorted_dirty=!0))}v_compute(t){const e=new((0,h.infer_type)(t))(t.length);for(let r=0;ro*(e[t]-e[r]))),this._x_sorted=new((0,h.infer_type)(e))(n),this._y_sorted=new((0,h.infer_type)(r))(n);for(let t=0;t({x:[o(r,s(e))],y:[o(r,s(e))],data:[i(n(a.ColumnarDataSource)),null],clip:[t,!0]})))},\n", - " function _(t,s,e,i,r){i();const n=t(1);var o;const a=t(324),u=t(67),h=t(20),c=t(8),m=t(12),f=(0,n.__importStar)(t(10)),_=t(11);class p extends a.RangeTransform{constructor(t){super(t)}v_compute(t){var s;let e;this.range instanceof u.FactorRange?e=this.range.v_synthetic(t):(0,c.isArrayableOf)(t,c.isNumber)?e=t:(0,_.unreachable)();const i=e.length;(null===(s=this.previous_offsets)||void 0===s?void 0:s.length)!=i&&(this.previous_offsets=new Array(i),this.previous_offsets=(0,m.map)(this.previous_offsets,(()=>this._compute())));const r=this.previous_offsets;return(0,m.map)(e,((t,s)=>r[s]+t))}_compute(){switch(this.distribution){case\"uniform\":return this.mean+(f.random()-.5)*this.width;case\"normal\":return f.rnorm(this.mean,this.width)}}}e.Jitter=p,o=p,p.__name__=\"Jitter\",o.define((({Number:t})=>({mean:[t,0],width:[t,1],distribution:[h.Distribution,\"uniform\"]})))},\n", - " function _(t,s,_,r,e){r();const i=t(9),o=t(325);class n extends o.Interpolator{constructor(t){super(t)}compute(t){if(this.sort(!1),this.clip){if(tthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}if(t==this._x_sorted[0])return this._y_sorted[0];const s=(0,i.find_last_index)(this._x_sorted,(s=>sthis._x_sorted[this._x_sorted.length-1])return NaN}else{if(tthis._x_sorted[this._x_sorted.length-1])return this._y_sorted[this._y_sorted.length-1]}let e;switch(this.mode){case\"after\":e=(0,d.find_last_index)(this._x_sorted,(e=>t>=e));break;case\"before\":e=(0,d.find_index)(this._x_sorted,(e=>t<=e));break;case\"center\":{const s=(0,d.map)(this._x_sorted,(e=>Math.abs(e-t))),r=(0,d.min)(s);e=(0,d.find_index)(s,(t=>r===t));break}default:throw new Error(`unknown mode: ${this.mode}`)}return-1!=e?this._y_sorted[e]:NaN}}s.StepInterpolator=h,_=h,h.__name__=\"StepInterpolator\",_.define((()=>({mode:[n.StepMode,\"after\"]})))},\n", - " function _(p,o,t,a,n){a(),n(\"MapOptions\",p(330).MapOptions),n(\"GMapOptions\",p(330).GMapOptions),n(\"GMapPlot\",p(330).GMapPlot),n(\"Plot\",p(331).Plot)},\n", - " function _(e,t,n,o,a){var s,p,_;o();const i=e(331),r=e(53),l=e(58),c=e(336);a(\"GMapPlotView\",c.GMapPlotView);class d extends r.Model{constructor(e){super(e)}}n.MapOptions=d,s=d,d.__name__=\"MapOptions\",s.define((({Int:e,Number:t})=>({lat:[t],lng:[t],zoom:[e,12]})));class u extends d{constructor(e){super(e)}}n.GMapOptions=u,p=u,u.__name__=\"GMapOptions\",p.define((({Boolean:e,Int:t,String:n})=>({map_type:[n,\"roadmap\"],scale_control:[e,!1],styles:[n],tilt:[t,45]})));class M extends i.Plot{constructor(e){super(e),this.use_map=!0}}n.GMapPlot=M,_=M,M.__name__=\"GMapPlot\",_.prototype.default_view=c.GMapPlotView,_.define((({String:e,Ref:t})=>({map_options:[t(u)],api_key:[e],api_version:[e,\"3.43\"]}))),_.override({x_range:()=>new l.Range1d,y_range:()=>new l.Range1d})},\n", - " function _(e,t,r,n,i){n();const o=e(1);var a;const s=(0,o.__importStar)(e(48)),l=(0,o.__importStar)(e(18)),_=e(15),c=e(20),h=e(9),d=e(13),u=e(8),g=e(309),p=e(128),f=e(306),b=e(40),w=e(118),y=e(59),m=e(221),x=e(57),v=e(55),A=e(75),S=e(41),R=e(176),D=e(175),L=e(63),P=e(332);i(\"PlotView\",P.PlotView);class k extends g.LayoutDOM{constructor(e){super(e),this.use_map=!1}_doc_attached(){super._doc_attached(),this._push_changes([[this.properties.inner_height,null,this.inner_height],[this.properties.inner_width,null,this.inner_width]])}initialize(){super.initialize(),this.reset=new _.Signal0(this,\"reset\");for(const e of(0,d.values)(this.extra_x_ranges).concat(this.x_range)){let t=e.plots;(0,u.isArray)(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}for(const e of(0,d.values)(this.extra_y_ranges).concat(this.y_range)){let t=e.plots;(0,u.isArray)(t)&&(t=t.concat(this),e.setv({plots:t},{silent:!0}))}}add_layout(e,t=\"center\"){const r=this.properties[t].get_value();this.setv({[t]:[...r,e]})}remove_layout(e){const t=t=>{(0,h.remove_by)(t,(t=>t==e))};t(this.left),t(this.right),t(this.above),t(this.below),t(this.center)}get data_renderers(){return this.renderers.filter((e=>e instanceof R.DataRenderer))}add_renderers(...e){this.renderers=this.renderers.concat(e)}add_glyph(e,t=new A.ColumnDataSource,r={}){const n=new D.GlyphRenderer(Object.assign(Object.assign({},r),{data_source:t,glyph:e}));return this.add_renderers(n),n}add_tools(...e){this.toolbar.tools=this.toolbar.tools.concat(e)}get panels(){return[...this.side_panels,...this.center]}get side_panels(){const{above:e,below:t,left:r,right:n}=this;return(0,h.concat)([e,t,r,n])}}r.Plot=k,a=k,k.__name__=\"Plot\",a.prototype.default_view=P.PlotView,a.mixins([[\"outline_\",s.Line],[\"background_\",s.Fill],[\"border_\",s.Fill]]),a.define((({Boolean:e,Number:t,String:r,Array:n,Dict:i,Or:o,Ref:a,Null:s,Nullable:_})=>({toolbar:[a(m.Toolbar),()=>new m.Toolbar],toolbar_location:[_(c.Location),\"right\"],toolbar_sticky:[e,!0],plot_width:[l.Alias(\"width\")],plot_height:[l.Alias(\"height\")],frame_width:[_(t),null],frame_height:[_(t),null],title:[o(a(w.Title),r,s),\"\",{convert:e=>(0,u.isString)(e)?new w.Title({text:e}):e}],title_location:[_(c.Location),\"above\"],above:[n(o(a(b.Annotation),a(p.Axis))),[]],below:[n(o(a(b.Annotation),a(p.Axis))),[]],left:[n(o(a(b.Annotation),a(p.Axis))),[]],right:[n(o(a(b.Annotation),a(p.Axis))),[]],center:[n(o(a(b.Annotation),a(f.Grid))),[]],renderers:[n(a(S.Renderer)),[]],x_range:[a(x.Range),()=>new L.DataRange1d],y_range:[a(x.Range),()=>new L.DataRange1d],x_scale:[a(v.Scale),()=>new y.LinearScale],y_scale:[a(v.Scale),()=>new y.LinearScale],extra_x_ranges:[i(a(x.Range)),{}],extra_y_ranges:[i(a(x.Range)),{}],extra_x_scales:[i(a(v.Scale)),{}],extra_y_scales:[i(a(v.Scale)),{}],lod_factor:[t,10],lod_interval:[t,300],lod_threshold:[_(t),2e3],lod_timeout:[t,500],hidpi:[e,!0],output_backend:[c.OutputBackend,\"canvas\"],min_border:[_(t),5],min_border_top:[_(t),null],min_border_left:[_(t),null],min_border_bottom:[_(t),null],min_border_right:[_(t),null],inner_width:[t,0],inner_height:[t,0],outer_width:[t,0],outer_height:[t,0],match_aspect:[e,!1],aspect_scale:[t,1],reset_policy:[c.ResetPolicy,\"standard\"]}))),a.override({width:600,height:600,outline_line_color:\"#e5e5e5\",border_fill_color:\"#ffffff\",background_fill_color:\"#ffffff\"})},\n", - " function _(e,t,i,s,a){s();const n=e(1),o=e(126),l=e(249),r=e(309),_=e(40),h=e(118),d=e(128),u=e(220),c=e(251),p=e(113),v=e(45),g=e(19),b=e(251),m=e(333),y=e(8),w=e(9),f=e(235),x=e(208),z=e(211),k=e(209),q=e(123),M=e(65),R=e(334),V=e(335),S=e(28);class O extends r.LayoutDOMView{constructor(){super(...arguments),this._outer_bbox=new M.BBox,this._inner_bbox=new M.BBox,this._needs_paint=!0,this._needs_layout=!1,this._invalidated_painters=new Set,this._invalidate_all=!0,this._needs_notify=!1}get canvas(){return this.canvas_view}get state(){return this._state_manager}set invalidate_dataranges(e){this._range_manager.invalidate_dataranges=e}renderer_view(e){const t=this.renderer_views.get(e);if(null==t)for(const[,t]of this.renderer_views){const i=t.renderer_view(e);if(null!=i)return i}return t}get is_paused(){return null!=this._is_paused&&0!==this._is_paused}get child_models(){return[]}pause(){null==this._is_paused?this._is_paused=1:this._is_paused+=1}unpause(e=!1){if(null==this._is_paused)throw new Error(\"wasn't paused\");this._is_paused-=1,0!=this._is_paused||e||this.request_paint(\"everything\")}notify_finished_after_paint(){this._needs_notify=!0}request_render(){this.request_paint(\"everything\")}request_paint(e){this.invalidate_painters(e),this.schedule_paint()}invalidate_painters(e){if(\"everything\"==e)this._invalidate_all=!0;else if((0,y.isArray)(e))for(const t of e)this._invalidated_painters.add(t);else this._invalidated_painters.add(e)}schedule_paint(){if(!this.is_paused){const e=this.throttled_paint();this._ready=this._ready.then((()=>e))}}request_layout(){this._needs_layout=!0,this.request_paint(\"everything\")}reset(){\"standard\"==this.model.reset_policy&&(this.state.clear(),this.reset_range(),this.reset_selection()),this.model.trigger_event(new c.Reset)}remove(){(0,p.remove_views)(this.renderer_views),(0,p.remove_views)(this.tool_views),this.canvas_view.remove(),super.remove()}render(){super.render(),this.el.appendChild(this.canvas_view.el),this.canvas_view.render()}initialize(){this.pause(),super.initialize(),this.lod_started=!1,this.visuals=new v.Visuals(this),this._initial_state={selection:new Map,dimensions:{width:0,height:0}},this.visibility_callbacks=[],this.renderer_views=new Map,this.tool_views=new Map,this.frame=new o.CartesianFrame(this.model.x_scale,this.model.y_scale,this.model.x_range,this.model.y_range,this.model.extra_x_ranges,this.model.extra_y_ranges,this.model.extra_x_scales,this.model.extra_y_scales),this._range_manager=new R.RangeManager(this),this._state_manager=new V.StateManager(this,this._initial_state),this.throttled_paint=(0,m.throttle)((()=>this.repaint()),1e3/60);const{title_location:e,title:t}=this.model;null!=e&&null!=t&&(this._title=t instanceof h.Title?t:new h.Title({text:t}));const{toolbar_location:i,toolbar:s}=this.model;null!=i&&null!=s&&(this._toolbar=new u.ToolbarPanel({toolbar:s}),s.toolbar_location=i)}async lazy_initialize(){await super.lazy_initialize();const{hidpi:e,output_backend:t}=this.model,i=new l.Canvas({hidpi:e,output_backend:t});this.canvas_view=await(0,p.build_view)(i,{parent:this}),this.canvas_view.plot_views=[this],await this.build_renderer_views(),await this.build_tool_views(),this._range_manager.update_dataranges(),this.unpause(!0),g.logger.debug(\"PlotView initialized\")}_width_policy(){return null==this.model.frame_width?super._width_policy():\"min\"}_height_policy(){return null==this.model.frame_height?super._height_policy():\"min\"}_update_layout(){var e,t,i,s,a;this.layout=new z.BorderLayout,this.layout.set_sizing(this.box_sizing());const n=(0,w.copy)(this.model.above),o=(0,w.copy)(this.model.below),l=(0,w.copy)(this.model.left),r=(0,w.copy)(this.model.right),d=e=>{switch(e){case\"above\":return n;case\"below\":return o;case\"left\":return l;case\"right\":return r}},{title_location:c,title:p}=this.model;null!=c&&null!=p&&d(c).push(this._title);const{toolbar_location:v,toolbar:g}=this.model;if(null!=v&&null!=g){const e=d(v);let t=!0;if(this.model.toolbar_sticky)for(let i=0;i{var i;const s=this.renderer_view(t);return s.panel=new q.Panel(e),null===(i=s.update_layout)||void 0===i||i.call(s),s.layout},m=(e,t)=>{const i=\"above\"==e||\"below\"==e,s=[];for(const a of t)if((0,y.isArray)(a)){const t=a.map((t=>{const s=b(e,t);if(t instanceof u.ToolbarPanel){const e=i?\"width_policy\":\"height_policy\";s.set_sizing(Object.assign(Object.assign({},s.sizing),{[e]:\"min\"}))}return s}));let n;i?(n=new k.Row(t),n.set_sizing({width_policy:\"max\",height_policy:\"min\"})):(n=new k.Column(t),n.set_sizing({width_policy:\"min\",height_policy:\"max\"})),n.absolute=!0,s.push(n)}else s.push(b(e,a));return s},f=null!==(e=this.model.min_border)&&void 0!==e?e:0;this.layout.min_border={left:null!==(t=this.model.min_border_left)&&void 0!==t?t:f,top:null!==(i=this.model.min_border_top)&&void 0!==i?i:f,right:null!==(s=this.model.min_border_right)&&void 0!==s?s:f,bottom:null!==(a=this.model.min_border_bottom)&&void 0!==a?a:f};const M=new x.NodeLayout,R=new x.VStack,V=new x.VStack,S=new x.HStack,O=new x.HStack;M.absolute=!0,R.absolute=!0,V.absolute=!0,S.absolute=!0,O.absolute=!0,M.children=this.model.center.filter((e=>e instanceof _.Annotation)).map((e=>{var t;const i=this.renderer_view(e);return null===(t=i.update_layout)||void 0===t||t.call(i),i.layout})).filter((e=>null!=e));const{frame_width:P,frame_height:j}=this.model;M.set_sizing(Object.assign(Object.assign({},null!=P?{width_policy:\"fixed\",width:P}:{width_policy:\"fit\"}),null!=j?{height_policy:\"fixed\",height:j}:{height_policy:\"fit\"})),M.on_resize((e=>this.frame.set_geometry(e))),R.children=(0,w.reversed)(m(\"above\",n)),V.children=m(\"below\",o),S.children=(0,w.reversed)(m(\"left\",l)),O.children=m(\"right\",r),R.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),V.set_sizing({width_policy:\"fit\",height_policy:\"min\"}),S.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),O.set_sizing({width_policy:\"min\",height_policy:\"fit\"}),this.layout.center_panel=M,this.layout.top_panel=R,this.layout.bottom_panel=V,this.layout.left_panel=S,this.layout.right_panel=O}get axis_views(){const e=[];for(const[,t]of this.renderer_views)t instanceof d.AxisView&&e.push(t);return e}set_toolbar_visibility(e){for(const t of this.visibility_callbacks)t(e)}update_range(e,t){this.pause(),this._range_manager.update(e,t),this.unpause()}reset_range(){this.update_range(null),this.trigger_ranges_update_event()}trigger_ranges_update_event(){const{x_range:e,y_range:t}=this.model;this.model.trigger_event(new b.RangesUpdate(e.start,e.end,t.start,t.end))}get_selection(){const e=new Map;for(const t of this.model.data_renderers){const{selected:i}=t.selection_manager.source;e.set(t,i)}return e}update_selection(e){for(const t of this.model.data_renderers){const i=t.selection_manager.source;if(null!=e){const s=e.get(t);null!=s&&i.selected.update(s,!0)}else i.selection_manager.clear()}}reset_selection(){this.update_selection(null)}_invalidate_layout(){(()=>{var e;for(const t of this.model.side_panels){const i=this.renderer_views.get(t);if(null===(e=i.layout)||void 0===e?void 0:e.has_size_changed())return this.invalidate_painters(i),!0}return!1})()&&this.root.compute_layout()}get_renderer_views(){return this.computed_renderers.map((e=>this.renderer_views.get(e)))}*_compute_renderers(){const{above:e,below:t,left:i,right:s,center:a,renderers:n}=this.model;yield*n,yield*e,yield*t,yield*i,yield*s,yield*a,null!=this._title&&(yield this._title),null!=this._toolbar&&(yield this._toolbar);for(const e of this.model.toolbar.tools)null!=e.overlay&&(yield e.overlay),yield*e.synthetic_renderers}async build_renderer_views(){this.computed_renderers=[...this._compute_renderers()],await(0,p.build_views)(this.renderer_views,this.computed_renderers,{parent:this})}async build_tool_views(){const e=this.model.toolbar.tools;(await(0,p.build_views)(this.tool_views,e,{parent:this})).map((e=>this.canvas_view.ui_event_bus.register_tool(e)))}connect_signals(){super.connect_signals();const{x_ranges:e,y_ranges:t}=this.frame;for(const[,t]of e)this.connect(t.change,(()=>{this._needs_layout=!0,this.request_paint(\"everything\")}));for(const[,e]of t)this.connect(e.change,(()=>{this._needs_layout=!0,this.request_paint(\"everything\")}));const{above:i,below:s,left:a,right:n,center:o,renderers:l}=this.model.properties;this.on_change([i,s,a,n,o,l],(async()=>await this.build_renderer_views())),this.connect(this.model.toolbar.properties.tools.change,(async()=>{await this.build_renderer_views(),await this.build_tool_views()})),this.connect(this.model.change,(()=>this.request_paint(\"everything\"))),this.connect(this.model.reset,(()=>this.reset()))}has_finished(){if(!super.has_finished())return!1;if(this.model.visible)for(const[,e]of this.renderer_views)if(!e.has_finished())return!1;return!0}after_layout(){var e;super.after_layout();for(const[,t]of this.renderer_views)t instanceof _.AnnotationView&&(null===(e=t.after_layout)||void 0===e||e.call(t));if(this._needs_layout=!1,this.model.setv({inner_width:Math.round(this.frame.bbox.width),inner_height:Math.round(this.frame.bbox.height),outer_width:Math.round(this.layout.bbox.width),outer_height:Math.round(this.layout.bbox.height)},{no_change:!0}),!1!==this.model.match_aspect&&(this.pause(),this._range_manager.update_dataranges(),this.unpause(!0)),!this._outer_bbox.equals(this.layout.bbox)){const{width:e,height:t}=this.layout.bbox;this.canvas_view.resize(e,t),this._outer_bbox=this.layout.bbox,this._invalidate_all=!0,this._needs_paint=!0}const{inner_bbox:t}=this.layout;this._inner_bbox.equals(t)||(this._inner_bbox=t,this._needs_paint=!0),this._needs_paint&&this.paint()}repaint(){this._needs_layout&&this._invalidate_layout(),this.paint()}paint(){this.is_paused||(this.model.visible&&(g.logger.trace(`${this.toString()}.paint()`),this._actual_paint()),this._needs_notify&&(this._needs_notify=!1,this.notify_finished()))}_actual_paint(){var e;const{document:t}=this.model;if(null!=t){const e=t.interactive_duration();e>=0&&e{t.interactive_duration()>this.model.lod_timeout&&t.interactive_stop(),this.request_paint(\"everything\")}),this.model.lod_timeout):t.interactive_stop()}this._range_manager.invalidate_dataranges&&(this._range_manager.update_dataranges(),this._invalidate_layout());let i=!1,s=!1;if(this._invalidate_all)i=!0,s=!0;else for(const e of this._invalidated_painters){const{level:t}=e.model;if(\"overlay\"!=t?i=!0:s=!0,i&&s)break}this._invalidated_painters.clear(),this._invalidate_all=!1;const a=[this.frame.bbox.left,this.frame.bbox.top,this.frame.bbox.width,this.frame.bbox.height],{primary:n,overlays:o}=this.canvas_view;i&&(n.prepare(),this.canvas_view.prepare_webgl(a),this._map_hook(n.ctx,a),this._paint_empty(n.ctx,a),this._paint_outline(n.ctx,a),this._paint_levels(n.ctx,\"image\",a,!0),this._paint_levels(n.ctx,\"underlay\",a,!0),this._paint_levels(n.ctx,\"glyph\",a,!0),this._paint_levels(n.ctx,\"guide\",a,!1),this._paint_levels(n.ctx,\"annotation\",a,!1),n.finish()),(s||S.settings.wireframe)&&(o.prepare(),this._paint_levels(o.ctx,\"overlay\",a,!1),S.settings.wireframe&&this._paint_layout(o.ctx,this.layout),o.finish()),null==this._initial_state.range&&(this._initial_state.range=null!==(e=this._range_manager.compute_initial())&&void 0!==e?e:void 0),this._needs_paint=!1}_paint_levels(e,t,i,s){for(const a of this.computed_renderers){if(a.level!=t)continue;const n=this.renderer_views.get(a);e.save(),(s||n.needs_clip)&&(e.beginPath(),e.rect(...i),e.clip()),n.render(),e.restore(),n.has_webgl&&n.needs_webgl_blit&&this.canvas_view.blit_webgl(e)}}_paint_layout(e,t){const{x:i,y:s,width:a,height:n}=t.bbox;e.strokeStyle=\"blue\",e.strokeRect(i,s,a,n);for(const a of t)e.save(),t.absolute||e.translate(i,s),this._paint_layout(e,a),e.restore()}_map_hook(e,t){}_paint_empty(e,t){const[i,s,a,n]=[0,0,this.layout.bbox.width,this.layout.bbox.height],[o,l,r,_]=t;this.visuals.border_fill.doit&&(this.visuals.border_fill.set_value(e),e.fillRect(i,s,a,n),e.clearRect(o,l,r,_)),this.visuals.background_fill.doit&&(this.visuals.background_fill.set_value(e),e.fillRect(o,l,r,_))}_paint_outline(e,t){if(this.visuals.outline_line.doit){e.save(),this.visuals.outline_line.set_value(e);let[i,s,a,n]=t;i+a==this.layout.bbox.width&&(a-=1),s+n==this.layout.bbox.height&&(n-=1),e.strokeRect(i,s,a,n),e.restore()}}to_blob(){return this.canvas_view.to_blob()}export(e,t=!0){const i=\"png\"==e?\"canvas\":\"svg\",s=new f.CanvasLayer(i,t),{width:a,height:n}=this.layout.bbox;s.resize(a,n);const{canvas:o}=this.canvas_view.compose();return s.ctx.drawImage(o,0,0),s}serializable_state(){const e=super.serializable_state(),{children:t}=e,i=(0,n.__rest)(e,[\"children\"]),s=this.get_renderer_views().map((e=>e.serializable_state())).filter((e=>null!=e.bbox));return Object.assign(Object.assign({},i),{children:[...null!=t?t:[],...s]})}}i.PlotView=O,O.__name__=\"PlotView\"},\n", - " function _(t,n,e,o,u){o(),e.throttle=function(t,n){let e=null,o=0,u=!1;return function(){return new Promise(((r,i)=>{const l=function(){o=Date.now(),e=null,u=!1;try{t(),r()}catch(t){i(t)}},a=Date.now(),c=n-(a-o);c<=0&&!u?(null!=e&&clearTimeout(e),u=!0,requestAnimationFrame(l)):e||u?r():e=setTimeout((()=>requestAnimationFrame(l)),c)}))}}},\n", - " function _(t,n,e,a,s){a();const o=t(63),r=t(19);class l{constructor(t){this.parent=t,this.invalidate_dataranges=!0}get frame(){return this.parent.frame}update(t,n){const{x_ranges:e,y_ranges:a}=this.frame;if(null==t){for(const[,t]of e)t.reset();for(const[,t]of a)t.reset();this.update_dataranges()}else{const s=[];for(const[n,a]of e)s.push([a,t.xrs.get(n)]);for(const[n,e]of a)s.push([e,t.yrs.get(n)]);(null==n?void 0:n.scrolling)&&this._update_ranges_together(s),this._update_ranges_individually(s,n)}}reset(){this.update(null)}_update_dataranges(t){const n=new Map,e=new Map;let a=!1;for(const[,n]of t.x_ranges)n instanceof o.DataRange1d&&\"log\"==n.scale_hint&&(a=!0);for(const[,n]of t.y_ranges)n instanceof o.DataRange1d&&\"log\"==n.scale_hint&&(a=!0);for(const t of this.parent.model.data_renderers){const s=this.parent.renderer_view(t);if(null==s)continue;const o=s.glyph_view.bounds();if(null!=o&&n.set(t,o),a){const n=s.glyph_view.log_bounds();null!=n&&e.set(t,n)}}let s=!1,l=!1;const i=t.x_target.span,d=t.y_target.span;let u;!1!==this.parent.model.match_aspect&&0!=i&&0!=d&&(u=1/this.parent.model.aspect_scale*(i/d));for(const[,a]of t.x_ranges){if(a instanceof o.DataRange1d){const t=\"log\"==a.scale_hint?e:n;a.update(t,0,this.parent.model,u),a.follow&&(s=!0)}null!=a.bounds&&(l=!0)}for(const[,a]of t.y_ranges){if(a instanceof o.DataRange1d){const t=\"log\"==a.scale_hint?e:n;a.update(t,1,this.parent.model,u),a.follow&&(s=!0)}null!=a.bounds&&(l=!0)}if(s&&l){r.logger.warn(\"Follow enabled so bounds are unset.\");for(const[,n]of t.x_ranges)n.bounds=null;for(const[,n]of t.y_ranges)n.bounds=null}}update_dataranges(){this._update_dataranges(this.frame);for(const t of this.parent.model.renderers){const{coordinates:n}=t;null!=n&&this._update_dataranges(n)}null!=this.compute_initial()&&(this.invalidate_dataranges=!1)}compute_initial(){let t=!0;const{x_ranges:n,y_ranges:e}=this.frame,a=new Map,s=new Map;for(const[e,s]of n){const{start:n,end:o}=s;if(null==n||null==o||isNaN(n+o)){t=!1;break}a.set(e,{start:n,end:o})}if(t)for(const[n,a]of e){const{start:e,end:o}=a;if(null==e||null==o||isNaN(e+o)){t=!1;break}s.set(n,{start:e,end:o})}return t?{xrs:a,yrs:s}:(r.logger.warn(\"could not set initial ranges\"),null)}_update_ranges_together(t){let n=1;for(const[e,a]of t)n=Math.min(n,this._get_weight_to_constrain_interval(e,a));if(n<1)for(const[e,a]of t)a.start=n*a.start+(1-n)*e.start,a.end=n*a.end+(1-n)*e.end}_update_ranges_individually(t,n){const e=!!(null==n?void 0:n.panning),a=!!(null==n?void 0:n.scrolling);let s=!1;for(const[n,o]of t){if(!a){const t=this._get_weight_to_constrain_interval(n,o);t<1&&(o.start=t*o.start+(1-t)*n.start,o.end=t*o.end+(1-t)*n.end)}if(null!=n.bounds&&\"auto\"!=n.bounds){const[t,r]=n.bounds,l=Math.abs(o.end-o.start);n.is_reversed?(null!=t&&t>=o.end&&(s=!0,o.end=t,(e||a)&&(o.start=t+l)),null!=r&&r<=o.start&&(s=!0,o.start=r,(e||a)&&(o.end=r-l))):(null!=t&&t>=o.start&&(s=!0,o.start=t,(e||a)&&(o.end=t+l)),null!=r&&r<=o.end&&(s=!0,o.end=r,(e||a)&&(o.start=r-l)))}}if(!(a&&s&&(null==n?void 0:n.maintain_focus)))for(const[n,e]of t)n.have_updated_interactively=!0,n.start==e.start&&n.end==e.end||n.setv(e)}_get_weight_to_constrain_interval(t,n){const{min_interval:e}=t;let{max_interval:a}=t;if(null!=t.bounds&&\"auto\"!=t.bounds){const[n,e]=t.bounds;if(null!=n&&null!=e){const t=Math.abs(e-n);a=null!=a?Math.min(a,t):t}}let s=1;if(null!=e||null!=a){const o=Math.abs(t.end-t.start),r=Math.abs(n.end-n.start);null!=e&&e>0&&r0&&r>a&&(s=(a-o)/(r-o)),s=Math.max(0,Math.min(1,s))}return s}}e.RangeManager=l,l.__name__=\"RangeManager\"},\n", - " function _(t,i,s,e,n){e();const h=t(15);class a{constructor(t,i){this.parent=t,this.initial_state=i,this.changed=new h.Signal0(this.parent,\"state_changed\"),this.history=[],this.index=-1}_do_state_change(t){const i=null!=this.history[t]?this.history[t].state:this.initial_state;return null!=i.range&&this.parent.update_range(i.range),null!=i.selection&&this.parent.update_selection(i.selection),i}push(t,i){const{history:s,index:e}=this,n=null!=s[e]?s[e].state:{},h=Object.assign(Object.assign(Object.assign({},this.initial_state),n),i);this.history=this.history.slice(0,this.index+1),this.history.push({type:t,state:h}),this.index=this.history.length-1,this.changed.emit()}clear(){this.history=[],this.index=-1,this.changed.emit()}undo(){if(this.can_undo){this.index-=1;const t=this._do_state_change(this.index);return this.changed.emit(),t}return null}redo(){if(this.can_redo){this.index+=1;const t=this._do_state_change(this.index);return this.changed.emit(),t}return null}get can_undo(){return this.index>=0}get can_redo(){return this.indexm.emit();const s=encodeURIComponent,o=document.createElement(\"script\");o.type=\"text/javascript\",o.src=`https://maps.googleapis.com/maps/api/js?v=${s(e)}&key=${s(t)}&callback=_bokeh_gmaps_callback`,document.body.appendChild(o)}(t,e)}m.connect((()=>this.request_paint(\"everything\")))}this.unpause()}remove(){(0,p.remove)(this.map_el),super.remove()}update_range(t,e){var s,o;if(null==t)this.map.setCenter({lat:this.initial_lat,lng:this.initial_lng}),this.map.setOptions({zoom:this.initial_zoom}),super.update_range(null,e);else if(null!=t.sdx||null!=t.sdy)this.map.panBy(null!==(s=t.sdx)&&void 0!==s?s:0,null!==(o=t.sdy)&&void 0!==o?o:0),super.update_range(t,e);else if(null!=t.factor){if(10!==this.zoom_count)return void(this.zoom_count+=1);this.zoom_count=0,this.pause(),super.update_range(t,e);const s=t.factor<0?-1:1,o=this.map.getZoom();if(null!=o){const t=o+s;if(t>=2){this.map.setZoom(t);const[e,s]=this._get_projected_bounds();s-e<0&&this.map.setZoom(o)}}this.unpause()}this._set_bokeh_ranges()}_build_map(){const{maps:t}=google;this.map_types={satellite:t.MapTypeId.SATELLITE,terrain:t.MapTypeId.TERRAIN,roadmap:t.MapTypeId.ROADMAP,hybrid:t.MapTypeId.HYBRID};const e=this.model.map_options,s={center:new t.LatLng(e.lat,e.lng),zoom:e.zoom,disableDefaultUI:!0,mapTypeId:this.map_types[e.map_type],scaleControl:e.scale_control,tilt:e.tilt};null!=e.styles&&(s.styles=JSON.parse(e.styles)),this.map_el=(0,p.div)({style:{position:\"absolute\"}}),this.canvas_view.add_underlay(this.map_el),this.map=new t.Map(this.map_el,s),t.event.addListener(this.map,\"idle\",(()=>this._set_bokeh_ranges())),t.event.addListener(this.map,\"bounds_changed\",(()=>this._set_bokeh_ranges())),t.event.addListenerOnce(this.map,\"tilesloaded\",(()=>this._render_finished())),this.connect(this.model.properties.map_options.change,(()=>this._update_options())),this.connect(this.model.map_options.properties.styles.change,(()=>this._update_styles())),this.connect(this.model.map_options.properties.lat.change,(()=>this._update_center(\"lat\"))),this.connect(this.model.map_options.properties.lng.change,(()=>this._update_center(\"lng\"))),this.connect(this.model.map_options.properties.zoom.change,(()=>this._update_zoom())),this.connect(this.model.map_options.properties.map_type.change,(()=>this._update_map_type())),this.connect(this.model.map_options.properties.scale_control.change,(()=>this._update_scale_control())),this.connect(this.model.map_options.properties.tilt.change,(()=>this._update_tilt()))}_render_finished(){this._tiles_loaded=!0,this.notify_finished()}has_finished(){return super.has_finished()&&!0===this._tiles_loaded}_get_latlon_bounds(){const t=this.map.getBounds(),e=t.getNorthEast(),s=t.getSouthWest();return[s.lng(),e.lng(),s.lat(),e.lat()]}_get_projected_bounds(){const[t,e,s,o]=this._get_latlon_bounds(),[i,a]=l.wgs84_mercator.compute(t,s),[n,p]=l.wgs84_mercator.compute(e,o);return[i,n,a,p]}_set_bokeh_ranges(){const[t,e,s,o]=this._get_projected_bounds();this.frame.x_range.setv({start:t,end:e}),this.frame.y_range.setv({start:s,end:o})}_update_center(t){var e;const s=null===(e=this.map.getCenter())||void 0===e?void 0:e.toJSON();null!=s&&(s[t]=this.model.map_options[t],this.map.setCenter(s),this._set_bokeh_ranges())}_update_map_type(){this.map.setOptions({mapTypeId:this.map_types[this.model.map_options.map_type]})}_update_scale_control(){this.map.setOptions({scaleControl:this.model.map_options.scale_control})}_update_tilt(){this.map.setOptions({tilt:this.model.map_options.tilt})}_update_options(){this._update_styles(),this._update_center(\"lat\"),this._update_center(\"lng\"),this._update_zoom(),this._update_map_type()}_update_styles(){this.map.setOptions({styles:JSON.parse(this.model.map_options.styles)})}_update_zoom(){this.map.setOptions({zoom:this.model.map_options.zoom}),this._set_bokeh_ranges()}_map_hook(t,e){if(null==this.map&&\"undefined\"!=typeof google&&null!=google.maps&&this._build_map(),null!=this.map_el){const[t,s,o,i]=e;this.map_el.style.top=`${s}px`,this.map_el.style.left=`${t}px`,this.map_el.style.width=`${o}px`,this.map_el.style.height=`${i}px`}}_paint_empty(t,e){const s=this.layout.bbox.width,o=this.layout.bbox.height,[i,a,n,p]=e;t.clearRect(0,0,s,o),t.beginPath(),t.moveTo(0,0),t.lineTo(0,o),t.lineTo(s,o),t.lineTo(s,0),t.lineTo(0,0),t.moveTo(i,a),t.lineTo(i+n,a),t.lineTo(i+n,a+p),t.lineTo(i,a+p),t.lineTo(i,a),t.closePath(),null!=this.model.border_fill_color&&(t.fillStyle=(0,_.color2css)(this.model.border_fill_color),t.fill())}}s.GMapPlotView=d,d.__name__=\"GMapPlotView\"},\n", - " function _(t,_,n,o,r){o();(0,t(1).__exportStar)(t(132),n)},\n", - " function _(e,r,d,n,R){n(),R(\"GlyphRenderer\",e(175).GlyphRenderer),R(\"GraphRenderer\",e(339).GraphRenderer),R(\"GuideRenderer\",e(129).GuideRenderer);var G=e(41);R(\"Renderer\",G.Renderer),R(\"RendererGroup\",G.RendererGroup)},\n", - " function _(e,r,i,n,t){var o;n();const s=e(176),d=e(175),a=e(303),p=e(302),l=e(113),_=e(178),h=e(283),y=e(286);class c extends s.DataRendererView{get glyph_view(){return this.node_view.glyph}async lazy_initialize(){await super.lazy_initialize(),this.apply_coordinates();const{parent:e}=this,{edge_renderer:r,node_renderer:i}=this.model;this.edge_view=await(0,l.build_view)(r,{parent:e}),this.node_view=await(0,l.build_view)(i,{parent:e})}connect_signals(){super.connect_signals(),this.connect(this.model.layout_provider.change,(()=>{this.apply_coordinates(),this.edge_view.set_data(),this.node_view.set_data(),this.request_render()}))}apply_coordinates(){const{edge_renderer:e,node_renderer:r}=this.model;if(!(e.glyph instanceof h.MultiLine||e.glyph instanceof y.Patches))throw new Error(`${this}.edge_renderer.glyph must be a MultiLine glyph`);if(!(r.glyph instanceof _.XYGlyph))throw new Error(`${this}.node_renderer.glyph must be a XYGlyph glyph`);const i=this.model.layout_provider.edge_coordinates,n=this.model.layout_provider.node_coordinates;e.glyph.properties.xs.internal=!0,e.glyph.properties.ys.internal=!0,r.glyph.properties.x.internal=!0,r.glyph.properties.y.internal=!0,e.glyph.xs={expr:i.x},e.glyph.ys={expr:i.y},r.glyph.x={expr:n.x},r.glyph.y={expr:n.y}}remove(){this.edge_view.remove(),this.node_view.remove(),super.remove()}_render(){this.edge_view.render(),this.node_view.render()}renderer_view(e){if(e instanceof d.GlyphRenderer){if(e==this.edge_view.model)return this.edge_view;if(e==this.node_view.model)return this.node_view}return super.renderer_view(e)}}i.GraphRendererView=c,c.__name__=\"GraphRendererView\";class g extends s.DataRenderer{constructor(e){super(e)}get_selection_manager(){return this.node_renderer.data_source.selection_manager}}i.GraphRenderer=g,o=g,g.__name__=\"GraphRenderer\",o.prototype.default_view=c,o.define((({Ref:e})=>({layout_provider:[e(a.LayoutProvider)],node_renderer:[e(d.GlyphRenderer)],edge_renderer:[e(d.GlyphRenderer)],selection_policy:[e(p.GraphHitTestPolicy),()=>new p.NodesOnly],inspection_policy:[e(p.GraphHitTestPolicy),()=>new p.NodesOnly]})))},\n", - " function _(e,t,n,o,c){o();(0,e(1).__exportStar)(e(74),n),c(\"Selection\",e(72).Selection)},\n", - " function _(a,e,S,o,r){o(),r(\"ServerSentDataSource\",a(342).ServerSentDataSource),r(\"AjaxDataSource\",a(344).AjaxDataSource),r(\"ColumnDataSource\",a(75).ColumnDataSource),r(\"ColumnarDataSource\",a(70).ColumnarDataSource),r(\"CDSView\",a(190).CDSView),r(\"DataSource\",a(71).DataSource),r(\"GeoJSONDataSource\",a(345).GeoJSONDataSource),r(\"WebDataSource\",a(343).WebDataSource)},\n", - " function _(e,t,i,a,s){a();const n=e(343);class r extends n.WebDataSource{constructor(e){super(e),this.initialized=!1}setup(){if(!this.initialized){this.initialized=!0;new EventSource(this.data_url).onmessage=e=>{var t;this.load_data(JSON.parse(e.data),this.mode,null!==(t=this.max_size)&&void 0!==t?t:void 0)}}}}i.ServerSentDataSource=r,r.__name__=\"ServerSentDataSource\"},\n", - " function _(e,t,a,n,r){var s;n();const l=e(75),o=e(20);class c extends l.ColumnDataSource{constructor(e){super(e)}get_column(e){const t=this.data[e];return null!=t?t:[]}get_length(){var e;return null!==(e=super.get_length())&&void 0!==e?e:0}initialize(){super.initialize(),this.setup()}load_data(e,t,a){const{adapter:n}=this;let r;switch(r=null!=n?n.execute(this,{response:e}):e,t){case\"replace\":this.data=r;break;case\"append\":{const e=this.data;for(const t of this.columns()){const n=Array.from(e[t]),s=Array.from(r[t]),l=n.concat(s);r[t]=null!=a?l.slice(-a):l}this.data=r;break}}}}a.WebDataSource=c,s=c,c.__name__=\"WebDataSource\",s.define((({Any:e,Int:t,String:a,Nullable:n})=>({max_size:[n(t),null],mode:[o.UpdateMode,\"replace\"],adapter:[n(e),null],data_url:[a]})))},\n", - " function _(t,e,i,s,a){var n;s();const r=t(343),o=t(20),l=t(19),d=t(13);class h extends r.WebDataSource{constructor(t){super(t),this.interval=null,this.initialized=!1}destroy(){null!=this.interval&&clearInterval(this.interval),super.destroy()}setup(){if(!this.initialized&&(this.initialized=!0,this.get_data(this.mode),null!=this.polling_interval)){const t=()=>this.get_data(this.mode,this.max_size,this.if_modified);this.interval=setInterval(t,this.polling_interval)}}get_data(t,e=null,i=!1){const s=this.prepare_request();s.addEventListener(\"load\",(()=>this.do_load(s,t,null!=e?e:void 0))),s.addEventListener(\"error\",(()=>this.do_error(s))),s.send()}prepare_request(){const t=new XMLHttpRequest;t.open(this.method,this.data_url,!0),t.withCredentials=!1,t.setRequestHeader(\"Content-Type\",this.content_type);const e=this.http_headers;for(const[i,s]of(0,d.entries)(e))t.setRequestHeader(i,s);return t}do_load(t,e,i){if(200===t.status){const s=JSON.parse(t.responseText);this.load_data(s,e,i)}}do_error(t){l.logger.error(`Failed to fetch JSON from ${this.data_url} with code ${t.status}`)}}i.AjaxDataSource=h,n=h,h.__name__=\"AjaxDataSource\",n.define((({Boolean:t,Int:e,String:i,Dict:s,Nullable:a})=>({polling_interval:[a(e),null],content_type:[i,\"application/json\"],http_headers:[s(i),{}],method:[o.HTTPMethod,\"POST\"],if_modified:[t,!1]})))},\n", - " function _(e,t,o,r,n){var s;r();const a=e(70),i=e(19),l=e(9),c=e(13);function _(e){return null!=e?e:NaN}const{hasOwnProperty:g}=Object.prototype;class u extends a.ColumnarDataSource{constructor(e){super(e)}initialize(){super.initialize(),this._update_data()}connect_signals(){super.connect_signals(),this.connect(this.properties.geojson.change,(()=>this._update_data()))}_update_data(){this.data=this.geojson_to_column_data()}_get_new_list_array(e){return(0,l.range)(0,e).map((e=>[]))}_get_new_nan_array(e){return(0,l.range)(0,e).map((e=>NaN))}_add_properties(e,t,o,r){var n;const s=null!==(n=e.properties)&&void 0!==n?n:{};for(const[e,n]of(0,c.entries)(s))g.call(t,e)||(t[e]=this._get_new_nan_array(r)),t[e][o]=_(n)}_add_geometry(e,t,o){function r(e,t){return e.concat([[NaN,NaN,NaN]]).concat(t)}switch(e.type){case\"Point\":{const[r,n,s]=e.coordinates;t.x[o]=r,t.y[o]=n,t.z[o]=_(s);break}case\"LineString\":{const{coordinates:r}=e;for(let e=0;e1&&i.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\");const r=e.coordinates[0];for(let e=0;e1&&i.logger.warn(\"Bokeh does not support Polygons with holes in, only exterior ring used.\"),n.push(t[0]);const s=n.reduce(r);for(let e=0;e({geojson:[e]}))),s.internal((({Dict:e,Arrayable:t})=>({data:[e(t),{}]})))},\n", - " function _(e,r,T,o,S){o(),S(\"BBoxTileSource\",e(347).BBoxTileSource),S(\"MercatorTileSource\",e(348).MercatorTileSource),S(\"QUADKEYTileSource\",e(351).QUADKEYTileSource),S(\"TileRenderer\",e(352).TileRenderer),S(\"TileSource\",e(349).TileSource),S(\"TMSTileSource\",e(355).TMSTileSource),S(\"WMTSTileSource\",e(353).WMTSTileSource)},\n", - " function _(e,t,r,o,l){var i;o();const n=e(348);class s extends n.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars);let l,i,n,s;return this.use_latlon?[i,s,l,n]=this.get_tile_geographic_bounds(e,t,r):[i,s,l,n]=this.get_tile_meter_bounds(e,t,r),o.replace(\"{XMIN}\",i.toString()).replace(\"{YMIN}\",s.toString()).replace(\"{XMAX}\",l.toString()).replace(\"{YMAX}\",n.toString())}}r.BBoxTileSource=s,i=s,s.__name__=\"BBoxTileSource\",i.define((({Boolean:e})=>({use_latlon:[e,!1]})))},\n", - " function _(t,e,i,_,s){var r;_();const o=t(349),n=t(9),l=t(350);class u extends o.TileSource{constructor(t){super(t)}initialize(){super.initialize(),this._resolutions=(0,n.range)(this.min_zoom,this.max_zoom+1).map((t=>this.get_resolution(t)))}_computed_initial_resolution(){return null!=this.initial_resolution?this.initial_resolution:2*Math.PI*6378137/this.tile_size}is_valid_tile(t,e,i){return!(!this.wrap_around&&(t<0||t>=2**i))&&!(e<0||e>=2**i)}parent_by_tile_xyz(t,e,i){const _=this.tile_xyz_to_quadkey(t,e,i),s=_.substring(0,_.length-1);return this.quadkey_to_tile_xyz(s)}get_resolution(t){return this._computed_initial_resolution()/2**t}get_resolution_by_extent(t,e,i){return[(t[2]-t[0])/i,(t[3]-t[1])/e]}get_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s);let o=0;for(const t of this._resolutions){if(r>t){if(0==o)return 0;if(o>0)return o-1}o+=1}return o-1}get_closest_level_by_extent(t,e,i){const _=(t[2]-t[0])/i,s=(t[3]-t[1])/e,r=Math.max(_,s),o=this._resolutions.reduce((function(t,e){return Math.abs(e-r)e?(u=o-s,a*=t):(u*=e,a=n-r)}const h=(u-(o-s))/2,c=(a-(n-r))/2;return[s-h,r-c,o+h,n+c]}tms_to_wmts(t,e,i){return[t,2**i-1-e,i]}wmts_to_tms(t,e,i){return[t,2**i-1-e,i]}pixels_to_meters(t,e,i){const _=this.get_resolution(i);return[t*_-this.x_origin_offset,e*_-this.y_origin_offset]}meters_to_pixels(t,e,i){const _=this.get_resolution(i);return[(t+this.x_origin_offset)/_,(e+this.y_origin_offset)/_]}pixels_to_tile(t,e){let i=Math.ceil(t/this.tile_size);i=0===i?i:i-1;return[i,Math.max(Math.ceil(e/this.tile_size)-1,0)]}pixels_to_raster(t,e,i){return[t,(this.tile_size<=l;t--)for(let i=n;i<=u;i++)this.is_valid_tile(i,t,e)&&h.push([i,t,e,this.get_tile_meter_bounds(i,t,e)]);return this.sort_tiles_from_center(h,[n,l,u,a]),h}quadkey_to_tile_xyz(t){let e=0,i=0;const _=t.length;for(let s=_;s>0;s--){const r=1<0;s--){const i=1<0;)if(s=s.substring(0,s.length-1),[t,e,i]=this.quadkey_to_tile_xyz(s),[t,e,i]=this.denormalize_xyz(t,e,i,_),this.tiles.has(this.tile_xyz_to_key(t,e,i)))return[t,e,i];return[0,0,0]}normalize_xyz(t,e,i){if(this.wrap_around){const _=2**i;return[(t%_+_)%_,e,i]}return[t,e,i]}denormalize_xyz(t,e,i,_){return[t+_*2**i,e,i]}denormalize_meters(t,e,i,_){return[t+2*_*Math.PI*6378137,e]}calculate_world_x_by_tile_xyz(t,e,i){return Math.floor(t/2**i)}}i.MercatorTileSource=u,r=u,u.__name__=\"MercatorTileSource\",r.define((({Boolean:t})=>({snap_to_zoom:[t,!1],wrap_around:[t,!0]}))),r.override({x_origin_offset:20037508.34,y_origin_offset:20037508.34,initial_resolution:156543.03392804097})},\n", - " function _(e,t,r,i,n){var l;i();const a=e(53),s=e(13);class c extends a.Model{constructor(e){super(e)}initialize(){super.initialize(),this.tiles=new Map,this._normalize_case()}connect_signals(){super.connect_signals(),this.connect(this.change,(()=>this._clear_cache()))}string_lookup_replace(e,t){let r=e;for(const[e,i]of(0,s.entries)(t))r=r.replace(`{${e}}`,i);return r}_normalize_case(){const e=this.url.replace(\"{x}\",\"{X}\").replace(\"{y}\",\"{Y}\").replace(\"{z}\",\"{Z}\").replace(\"{q}\",\"{Q}\").replace(\"{xmin}\",\"{XMIN}\").replace(\"{ymin}\",\"{YMIN}\").replace(\"{xmax}\",\"{XMAX}\").replace(\"{ymax}\",\"{YMAX}\");this.url=e}_clear_cache(){this.tiles=new Map}tile_xyz_to_key(e,t,r){return`${e}:${t}:${r}`}key_to_tile_xyz(e){const[t,r,i]=e.split(\":\").map((e=>parseInt(e)));return[t,r,i]}sort_tiles_from_center(e,t){const[r,i,n,l]=t,a=(n-r)/2+r,s=(l-i)/2+i;e.sort((function(e,t){return Math.sqrt((a-e[0])**2+(s-e[1])**2)-Math.sqrt((a-t[0])**2+(s-t[1])**2)}))}get_image_url(e,t,r){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",t.toString()).replace(\"{Z}\",r.toString())}}r.TileSource=c,l=c,c.__name__=\"TileSource\",l.define((({Number:e,String:t,Dict:r,Nullable:i})=>({url:[t,\"\"],tile_size:[e,256],max_zoom:[e,30],min_zoom:[e,0],extra_url_vars:[r(t),{}],attribution:[t,\"\"],x_origin_offset:[e],y_origin_offset:[e],initial_resolution:[i(e),null]})))},\n", - " function _(t,e,r,n,o){n();const c=t(78);function _(t,e){return c.wgs84_mercator.compute(t,e)}function g(t,e){return c.wgs84_mercator.invert(t,e)}r.geographic_to_meters=_,r.meters_to_geographic=g,r.geographic_extent_to_meters=function(t){const[e,r,n,o]=t,[c,g]=_(e,r),[i,u]=_(n,o);return[c,g,i,u]},r.meters_extent_to_geographic=function(t){const[e,r,n,o]=t,[c,_]=g(e,r),[i,u]=g(n,o);return[c,_,i,u]}},\n", - " function _(e,t,r,s,_){s();const o=e(348);class c extends o.MercatorTileSource{constructor(e){super(e)}get_image_url(e,t,r){const s=this.string_lookup_replace(this.url,this.extra_url_vars),[_,o,c]=this.tms_to_wmts(e,t,r),i=this.tile_xyz_to_quadkey(_,o,c);return s.replace(\"{Q}\",i)}}r.QUADKEYTileSource=c,c.__name__=\"QUADKEYTileSource\"},\n", - " function _(t,e,i,s,_){s();const n=t(1);var a;const o=t(349),r=t(353),h=t(41),l=t(58),d=t(43),m=t(136),c=t(9),u=t(8),p=(0,n.__importStar)(t(354));class g extends h.RendererView{initialize(){this._tiles=[],super.initialize()}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.request_render())),this.connect(this.model.tile_source.change,(()=>this.request_render()))}remove(){null!=this.attribution_el&&(0,d.removeElement)(this.attribution_el),super.remove()}styles(){return[...super.styles(),p.default]}get_extent(){return[this.x_range.start,this.y_range.start,this.x_range.end,this.y_range.end]}get map_plot(){return this.plot_model}get map_canvas(){return this.layer.ctx}get map_frame(){return this.plot_view.frame}get x_range(){return this.map_plot.x_range}get y_range(){return this.map_plot.y_range}_set_data(){this.extent=this.get_extent(),this._last_height=void 0,this._last_width=void 0}_update_attribution(){null!=this.attribution_el&&(0,d.removeElement)(this.attribution_el);const{attribution:t}=this.model.tile_source;if((0,u.isString)(t)&&t.length>0){const{layout:e,frame:i}=this.plot_view,s=e.bbox.width-i.bbox.right,_=e.bbox.height-i.bbox.bottom,n=i.bbox.width;this.attribution_el=(0,d.div)({class:p.tile_attribution,style:{position:\"absolute\",right:`${s}px`,bottom:`${_}px`,\"max-width\":n-4+\"px\",padding:\"2px\",\"background-color\":\"rgba(255,255,255,0.5)\",\"font-size\":\"9px\",\"line-height\":\"1.05\",\"white-space\":\"nowrap\",overflow:\"hidden\",\"text-overflow\":\"ellipsis\"}}),this.plot_view.canvas_view.add_event(this.attribution_el),this.attribution_el.innerHTML=t,this.attribution_el.title=this.attribution_el.textContent.replace(/\\s*\\n\\s*/g,\" \")}}_map_data(){this.initial_extent=this.get_extent();const t=this.model.tile_source.get_level_by_extent(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width),e=this.model.tile_source.snap_to_zoom_level(this.initial_extent,this.map_frame.bbox.height,this.map_frame.bbox.width,t);this.x_range.start=e[0],this.y_range.start=e[1],this.x_range.end=e[2],this.y_range.end=e[3],this.x_range instanceof l.Range1d&&(this.x_range.reset_start=e[0],this.x_range.reset_end=e[2]),this.y_range instanceof l.Range1d&&(this.y_range.reset_start=e[1],this.y_range.reset_end=e[3]),this._update_attribution()}_create_tile(t,e,i,s,_=!1){const n=this.model.tile_source.tile_xyz_to_quadkey(t,e,i),a=this.model.tile_source.tile_xyz_to_key(t,e,i);if(this.model.tile_source.tiles.has(a))return;const[o,r,h]=this.model.tile_source.normalize_xyz(t,e,i),l=this.model.tile_source.get_image_url(o,r,h),d={img:void 0,tile_coords:[t,e,i],normalized_coords:[o,r,h],quadkey:n,cache_key:a,bounds:s,loaded:!1,finished:!1,x_coord:s[0],y_coord:s[3]};this.model.tile_source.tiles.set(a,d),this._tiles.push(d),new m.ImageLoader(l,{loaded:t=>{Object.assign(d,{img:t,loaded:!0}),_?(d.finished=!0,this.notify_finished()):this.request_render()},failed(){d.finished=!0}})}_enforce_aspect_ratio(){if(this._last_height!==this.map_frame.bbox.height||this._last_width!==this.map_frame.bbox.width){const t=this.get_extent(),e=this.model.tile_source.get_level_by_extent(t,this.map_frame.bbox.height,this.map_frame.bbox.width),i=this.model.tile_source.snap_to_zoom_level(t,this.map_frame.bbox.height,this.map_frame.bbox.width,e);this.x_range.setv({start:i[0],end:i[2]}),this.y_range.setv({start:i[1],end:i[3]}),this.extent=i,this._last_height=this.map_frame.bbox.height,this._last_width=this.map_frame.bbox.width}}has_finished(){if(!super.has_finished())return!1;if(0==this._tiles.length)return!1;for(const t of this._tiles)if(!t.finished)return!1;return!0}_render(){null==this.map_initialized&&(this._set_data(),this._map_data(),this.map_initialized=!0),this._enforce_aspect_ratio(),this._update(),null!=this.prefetch_timer&&clearTimeout(this.prefetch_timer),this.prefetch_timer=setTimeout(this._prefetch_tiles.bind(this),500),this.has_finished()&&this.notify_finished()}_draw_tile(t){const e=this.model.tile_source.tiles.get(t);if(null!=e&&e.loaded){const[[t],[i]]=this.coordinates.map_to_screen([e.bounds[0]],[e.bounds[3]]),[[s],[_]]=this.coordinates.map_to_screen([e.bounds[2]],[e.bounds[1]]),n=s-t,a=_-i,o=t,r=i,h=this.map_canvas.getImageSmoothingEnabled();this.map_canvas.setImageSmoothingEnabled(this.model.smoothing),this.map_canvas.drawImage(e.img,o,r,n,a),this.map_canvas.setImageSmoothingEnabled(h),e.finished=!0}}_set_rect(){const t=this.plot_model.outline_line_width,e=this.map_frame.bbox.left+t/2,i=this.map_frame.bbox.top+t/2,s=this.map_frame.bbox.width-t,_=this.map_frame.bbox.height-t;this.map_canvas.rect(e,i,s,_),this.map_canvas.clip()}_render_tiles(t){this.map_canvas.save(),this._set_rect(),this.map_canvas.globalAlpha=this.model.alpha;for(const e of t)this._draw_tile(e);this.map_canvas.restore()}_prefetch_tiles(){const{tile_source:t}=this.model,e=this.get_extent(),i=this.map_frame.bbox.height,s=this.map_frame.bbox.width,_=this.model.tile_source.get_level_by_extent(e,i,s),n=this.model.tile_source.get_tiles_by_extent(e,_);for(let e=0,i=Math.min(10,n.length);ei&&(s=this.extent,o=i,r=!0),r&&(this.x_range.setv({start:s[0],end:s[2]}),this.y_range.setv({start:s[1],end:s[3]})),this.extent=s;const h=t.get_tiles_by_extent(s,o),l=[],d=[],m=[],u=[];for(const e of h){const[i,s,n]=e,a=t.tile_xyz_to_key(i,s,n),o=t.tiles.get(a);if(null!=o&&o.loaded)d.push(a);else if(this.model.render_parents){const[e,a,o]=t.get_closest_parent_by_tile_xyz(i,s,n),r=t.tile_xyz_to_key(e,a,o),h=t.tiles.get(r);if(null!=h&&h.loaded&&!(0,c.includes)(m,r)&&m.push(r),_){const e=t.children_by_tile_xyz(i,s,n);for(const[i,s,_]of e){const e=t.tile_xyz_to_key(i,s,_);t.tiles.has(e)&&u.push(e)}}}null==o&&l.push(e)}this._render_tiles(m),this._render_tiles(u),this._render_tiles(d),null!=this.render_timer&&clearTimeout(this.render_timer),this.render_timer=setTimeout((()=>this._fetch_tiles(l)),65)}}i.TileRendererView=g,g.__name__=\"TileRendererView\";class b extends h.Renderer{constructor(t){super(t)}}i.TileRenderer=b,a=b,b.__name__=\"TileRenderer\",a.prototype.default_view=g,a.define((({Boolean:t,Number:e,Ref:i})=>({alpha:[e,1],smoothing:[t,!0],tile_source:[i(o.TileSource),()=>new r.WMTSTileSource],render_parents:[t,!0]}))),a.override({level:\"image\"})},\n", - " function _(t,e,r,o,s){o();const c=t(348);class i extends c.MercatorTileSource{constructor(t){super(t)}get_image_url(t,e,r){const o=this.string_lookup_replace(this.url,this.extra_url_vars),[s,c,i]=this.tms_to_wmts(t,e,r);return o.replace(\"{X}\",s.toString()).replace(\"{Y}\",c.toString()).replace(\"{Z}\",i.toString())}}r.WMTSTileSource=i,i.__name__=\"WMTSTileSource\"},\n", - " function _(t,o,i,b,r){b(),i.root=\"bk-root\",i.tile_attribution=\"bk-tile-attribution\",i.default=\".bk-root .bk-tile-attribution a{color:black;}\"},\n", - " function _(e,r,t,c,o){c();const i=e(348);class l extends i.MercatorTileSource{constructor(e){super(e)}get_image_url(e,r,t){return this.string_lookup_replace(this.url,this.extra_url_vars).replace(\"{X}\",e.toString()).replace(\"{Y}\",r.toString()).replace(\"{Z}\",t.toString())}}t.TMSTileSource=l,l.__name__=\"TMSTileSource\"},\n", - " function _(e,t,u,a,r){a(),r(\"CanvasTexture\",e(357).CanvasTexture),r(\"ImageURLTexture\",e(359).ImageURLTexture),r(\"Texture\",e(358).Texture)},\n", - " function _(t,e,n,c,s){var r;c();const o=t(358),a=t(34);class u extends o.Texture{constructor(t){super(t)}get func(){const t=(0,a.use_strict)(this.code);return new Function(\"ctx\",\"color\",\"scale\",\"weight\",t)}get_pattern(t,e,n){const c=document.createElement(\"canvas\");c.width=e,c.height=e;const s=c.getContext(\"2d\");return this.func.call(this,s,t,e,n),c}}n.CanvasTexture=u,r=u,u.__name__=\"CanvasTexture\",r.define((({String:t})=>({code:[t]})))},\n", - " function _(e,t,n,r,o){var i;r();const s=e(53),u=e(20);class c extends s.Model{constructor(e){super(e)}}n.Texture=c,i=c,c.__name__=\"Texture\",i.define((()=>({repetition:[u.TextureRepetition,\"repeat\"]})))},\n", - " function _(e,t,i,r,n){var a;r();const s=e(358),o=e(136);class u extends s.Texture{constructor(e){super(e)}initialize(){super.initialize(),this._loader=new o.ImageLoader(this.url)}get_pattern(e,t,i){const{_loader:r}=this;return this._loader.finished?r.image:r.promise}}i.ImageURLTexture=u,a=u,u.__name__=\"ImageURLTexture\",a.define((({String:e})=>({url:[e]})))},\n", - " function _(o,l,T,e,t){e(),t(\"ActionTool\",o(238).ActionTool),t(\"CustomAction\",o(361).CustomAction),t(\"HelpTool\",o(239).HelpTool),t(\"RedoTool\",o(362).RedoTool),t(\"ResetTool\",o(363).ResetTool),t(\"SaveTool\",o(364).SaveTool),t(\"UndoTool\",o(365).UndoTool),t(\"ZoomInTool\",o(366).ZoomInTool),t(\"ZoomOutTool\",o(369).ZoomOutTool),t(\"ButtonTool\",o(224).ButtonTool),t(\"EditTool\",o(370).EditTool),t(\"BoxEditTool\",o(371).BoxEditTool),t(\"FreehandDrawTool\",o(372).FreehandDrawTool),t(\"PointDrawTool\",o(373).PointDrawTool),t(\"PolyDrawTool\",o(374).PolyDrawTool),t(\"PolyTool\",o(375).PolyTool),t(\"PolyEditTool\",o(376).PolyEditTool),t(\"BoxSelectTool\",o(377).BoxSelectTool),t(\"BoxZoomTool\",o(379).BoxZoomTool),t(\"GestureTool\",o(223).GestureTool),t(\"LassoSelectTool\",o(380).LassoSelectTool),t(\"LineEditTool\",o(382).LineEditTool),t(\"PanTool\",o(384).PanTool),t(\"PolySelectTool\",o(381).PolySelectTool),t(\"RangeTool\",o(385).RangeTool),t(\"SelectTool\",o(378).SelectTool),t(\"TapTool\",o(386).TapTool),t(\"WheelPanTool\",o(387).WheelPanTool),t(\"WheelZoomTool\",o(388).WheelZoomTool),t(\"CrosshairTool\",o(389).CrosshairTool),t(\"CustomJSHover\",o(390).CustomJSHover),t(\"HoverTool\",o(391).HoverTool),t(\"InspectTool\",o(232).InspectTool),t(\"Tool\",o(222).Tool),t(\"ToolProxy\",o(394).ToolProxy),t(\"Toolbar\",o(221).Toolbar),t(\"ToolbarBase\",o(233).ToolbarBase),t(\"ProxyToolbar\",o(395).ProxyToolbar),t(\"ToolbarBox\",o(395).ToolbarBox)},\n", - " function _(t,o,e,s,n){var c;s();const i=t(238);class u extends i.ActionToolButtonView{css_classes(){return super.css_classes().concat(\"bk-toolbar-button-custom-action\")}}e.CustomActionButtonView=u,u.__name__=\"CustomActionButtonView\";class l extends i.ActionToolView{doit(){var t;null===(t=this.model.callback)||void 0===t||t.execute(this.model)}}e.CustomActionView=l,l.__name__=\"CustomActionView\";class a extends i.ActionTool{constructor(t){super(t),this.tool_name=\"Custom Action\",this.button_view=u}}e.CustomAction=a,c=a,a.__name__=\"CustomAction\",c.prototype.default_view=l,c.define((({Any:t,String:o,Nullable:e})=>({callback:[e(t)],icon:[o]}))),c.override({description:\"Perform a Custom Action\"})},\n", - " function _(e,o,t,i,s){var n;i();const l=e(238),_=e(228);class d extends l.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state.changed,(()=>this.model.disabled=!this.plot_view.state.can_redo))}doit(){const e=this.plot_view.state.redo();null!=(null==e?void 0:e.range)&&this.plot_view.trigger_ranges_update_event()}}t.RedoToolView=d,d.__name__=\"RedoToolView\";class a extends l.ActionTool{constructor(e){super(e),this.tool_name=\"Redo\",this.icon=_.tool_icon_redo}}t.RedoTool=a,n=a,a.__name__=\"RedoTool\",n.prototype.default_view=d,n.override({disabled:!0}),n.register_alias(\"redo\",(()=>new a))},\n", - " function _(e,o,t,s,i){var _;s();const n=e(238),l=e(228);class c extends n.ActionToolView{doit(){this.plot_view.reset()}}t.ResetToolView=c,c.__name__=\"ResetToolView\";class r extends n.ActionTool{constructor(e){super(e),this.tool_name=\"Reset\",this.icon=l.tool_icon_reset}}t.ResetTool=r,_=r,r.__name__=\"ResetTool\",_.prototype.default_view=c,_.register_alias(\"reset\",(()=>new r))},\n", - " function _(e,o,t,a,i){var s;a();const c=e(238),n=e(228);class l extends c.ActionToolView{async copy(){const e=await this.plot_view.to_blob(),o=new ClipboardItem({[e.type]:Promise.resolve(e)});await navigator.clipboard.write([o])}async save(e){const o=await this.plot_view.to_blob(),t=document.createElement(\"a\");t.href=URL.createObjectURL(o),t.download=e,t.target=\"_blank\",t.dispatchEvent(new MouseEvent(\"click\"))}doit(e=\"save\"){switch(e){case\"save\":this.save(\"bokeh_plot\");break;case\"copy\":this.copy()}}}t.SaveToolView=l,l.__name__=\"SaveToolView\";class r extends c.ActionTool{constructor(e){super(e),this.tool_name=\"Save\",this.icon=n.tool_icon_save}get menu(){return[{icon:\"bk-tool-icon-copy-to-clipboard\",tooltip:\"Copy image to clipboard\",if:()=>\"undefined\"!=typeof ClipboardItem,handler:()=>{this.do.emit(\"copy\")}}]}}t.SaveTool=r,s=r,r.__name__=\"SaveTool\",s.prototype.default_view=l,s.register_alias(\"save\",(()=>new r))},\n", - " function _(o,e,t,n,i){var s;n();const l=o(238),_=o(228);class d extends l.ActionToolView{connect_signals(){super.connect_signals(),this.connect(this.plot_view.state.changed,(()=>this.model.disabled=!this.plot_view.state.can_undo))}doit(){const o=this.plot_view.state.undo();null!=(null==o?void 0:o.range)&&this.plot_view.trigger_ranges_update_event()}}t.UndoToolView=d,d.__name__=\"UndoToolView\";class a extends l.ActionTool{constructor(o){super(o),this.tool_name=\"Undo\",this.icon=_.tool_icon_undo}}t.UndoTool=a,s=a,a.__name__=\"UndoTool\",s.prototype.default_view=d,s.override({disabled:!0}),s.register_alias(\"undo\",(()=>new a))},\n", - " function _(o,n,e,i,s){var t;i();const _=o(367),m=o(228);class a extends _.ZoomBaseToolView{}e.ZoomInToolView=a,a.__name__=\"ZoomInToolView\";class l extends _.ZoomBaseTool{constructor(o){super(o),this.sign=1,this.tool_name=\"Zoom In\",this.icon=m.tool_icon_zoom_in}}e.ZoomInTool=l,t=l,l.__name__=\"ZoomInTool\",t.prototype.default_view=a,t.register_alias(\"zoom_in\",(()=>new l({dimensions:\"both\"}))),t.register_alias(\"xzoom_in\",(()=>new l({dimensions:\"width\"}))),t.register_alias(\"yzoom_in\",(()=>new l({dimensions:\"height\"})))},\n", - " function _(o,t,e,i,s){var n;i();const a=o(238),_=o(20),l=o(368);class m extends a.ActionToolView{doit(){var o;const t=this.plot_view.frame,e=this.model.dimensions,i=\"width\"==e||\"both\"==e,s=\"height\"==e||\"both\"==e,n=(0,l.scale_range)(t,this.model.sign*this.model.factor,i,s);this.plot_view.state.push(\"zoom_out\",{range:n}),this.plot_view.update_range(n,{scrolling:!0,maintain_focus:this.model.maintain_focus}),null===(o=this.model.document)||void 0===o||o.interactive_start(this.plot_model),this.plot_view.trigger_ranges_update_event()}}e.ZoomBaseToolView=m,m.__name__=\"ZoomBaseToolView\";class h extends a.ActionTool{constructor(o){super(o),this.maintain_focus=!0}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}e.ZoomBaseTool=h,n=h,h.__name__=\"ZoomBaseTool\",n.define((({Percent:o})=>({factor:[o,.1],dimensions:[_.Dimensions,\"both\"]})))},\n", - " function _(n,t,o,r,s){r();const c=n(10);function e(n,t,o){const[r,s]=[n.start,n.end],c=null!=o?o:(s+r)/2;return[r-(r-c)*t,s-(s-c)*t]}function a(n,[t,o]){const r=new Map;for(const[s,c]of n){const[n,e]=c.r_invert(t,o);r.set(s,{start:n,end:e})}return r}o.scale_highlow=e,o.get_info=a,o.scale_range=function(n,t,o=!0,r=!0,s){t=(0,c.clamp)(t,-.9,.9);const l=o?t:0,[u,i]=e(n.bbox.h_range,l,null!=s?s.x:void 0),_=a(n.x_scales,[u,i]),f=r?t:0,[g,x]=e(n.bbox.v_range,f,null!=s?s.y:void 0);return{xrs:_,yrs:a(n.y_scales,[g,x]),factor:t}}},\n", - " function _(o,e,t,i,s){var n;i();const _=o(367),a=o(228);class m extends _.ZoomBaseToolView{}t.ZoomOutToolView=m,m.__name__=\"ZoomOutToolView\";class l extends _.ZoomBaseTool{constructor(o){super(o),this.sign=-1,this.tool_name=\"Zoom Out\",this.icon=a.tool_icon_zoom_out}}t.ZoomOutTool=l,n=l,l.__name__=\"ZoomOutTool\",n.prototype.default_view=m,n.define((({Boolean:o})=>({maintain_focus:[o,!0]}))),n.register_alias(\"zoom_out\",(()=>new l({dimensions:\"both\"}))),n.register_alias(\"xzoom_out\",(()=>new l({dimensions:\"width\"}))),n.register_alias(\"yzoom_out\",(()=>new l({dimensions:\"height\"})))},\n", - " function _(e,t,s,o,n){var r;o();const i=e(9),c=e(8),a=e(11),_=e(175),l=e(223);class d extends l.GestureToolView{constructor(){super(...arguments),this._mouse_in_frame=!0}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?\"append\":!t&&s?\"intersect\":t&&s?\"subtract\":void(0,a.unreachable)():\"replace\"}_move_enter(e){this._mouse_in_frame=!0}_move_exit(e){this._mouse_in_frame=!1}_map_drag(e,t,s){if(!this.plot_view.frame.bbox.contains(e,t))return null;const o=this.plot_view.renderer_view(s);if(null==o)return null;return[o.coordinates.x_scale.invert(e),o.coordinates.y_scale.invert(t)]}_delete_selected(e){const t=e.data_source,s=t.selected.indices;s.sort();for(const e of t.columns()){const o=t.get_array(e);for(let e=0;e({custom_icon:[n(t),null],empty_value:[e],renderers:[s(o(_.GlyphRenderer)),[]]})))},\n", - " function _(e,t,s,i,_){var o;i();const n=e(43),a=e(20),d=e(370),l=e(228);class r extends d.EditToolView{_tap(e){null==this._draw_basepoint&&null==this._basepoint&&this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)if(e.keyCode===n.Keys.Backspace)this._delete_selected(t);else if(e.keyCode==n.Keys.Esc){t.data_source.selection_manager.clear()}}_set_extent([e,t],[s,i],_,o=!1){const n=this.model.renderers[0],a=this.plot_view.renderer_view(n);if(null==a)return;const d=n.glyph,l=n.data_source,[r,h]=a.coordinates.x_scale.r_invert(e,t),[p,u]=a.coordinates.y_scale.r_invert(s,i),[c,m]=[(r+h)/2,(p+u)/2],[f,b]=[h-r,u-p],[y,x]=[d.x.field,d.y.field],[w,v]=[d.width.field,d.height.field];if(_)this._pop_glyphs(l,this.model.num_objects),y&&l.get_array(y).push(c),x&&l.get_array(x).push(m),w&&l.get_array(w).push(f),v&&l.get_array(v).push(b),this._pad_empty_columns(l,[y,x,w,v]);else{const e=l.data[y].length-1;y&&(l.data[y][e]=c),x&&(l.data[x][e]=m),w&&(l.data[w][e]=f),v&&(l.data[v][e]=b)}this._emit_cds_changes(l,!0,!1,o)}_update_box(e,t=!1,s=!1){if(null==this._draw_basepoint)return;const i=[e.sx,e.sy],_=this.plot_view.frame,o=this.model.dimensions,n=this.model._get_dim_limits(this._draw_basepoint,i,_,o);if(null!=n){const[e,i]=n;this._set_extent(e,i,t,s)}}_doubletap(e){this.model.active&&(null!=this._draw_basepoint?(this._update_box(e,!1,!0),this._draw_basepoint=null):(this._draw_basepoint=[e.sx,e.sy],this._select_event(e,\"append\",this.model.renderers),this._update_box(e,!0,!1)))}_move(e){this._update_box(e,!1,!1)}_pan_start(e){if(e.shiftKey){if(null!=this._draw_basepoint)return;this._draw_basepoint=[e.sx,e.sy],this._update_box(e,!0,!1)}else{if(null!=this._basepoint)return;this._select_event(e,\"append\",this.model.renderers),this._basepoint=[e.sx,e.sy]}}_pan(e,t=!1,s=!1){if(e.shiftKey){if(null==this._draw_basepoint)return;this._update_box(e,t,s)}else{if(null==this._basepoint)return;this._drag_points(e,this.model.renderers)}}_pan_end(e){if(this._pan(e,!1,!0),e.shiftKey)this._draw_basepoint=null;else{this._basepoint=null;for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0)}}}s.BoxEditToolView=r,r.__name__=\"BoxEditToolView\";class h extends d.EditTool{constructor(e){super(e),this.tool_name=\"Box Edit Tool\",this.icon=l.tool_icon_box_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=1}}s.BoxEditTool=h,o=h,h.__name__=\"BoxEditTool\",o.prototype.default_view=r,o.define((({Int:e})=>({dimensions:[a.Dimensions,\"both\"],num_objects:[e,0]})))},\n", - " function _(e,t,a,s,r){var _;s();const d=e(43),o=e(8),n=e(370),i=e(228);class l extends n.EditToolView{_draw(e,t,a=!1){if(!this.model.active)return;const s=this.model.renderers[0],r=this._map_drag(e.sx,e.sy,s);if(null==r)return;const[_,d]=r,n=s.data_source,i=s.glyph,[l,h]=[i.xs.field,i.ys.field];if(\"new\"==t)this._pop_glyphs(n,this.model.num_objects),l&&n.get_array(l).push([_]),h&&n.get_array(h).push([d]),this._pad_empty_columns(n,[l,h]);else if(\"add\"==t){if(l){const e=n.data[l].length-1;let t=n.get_array(l)[e];(0,o.isArray)(t)||(t=Array.from(t),n.data[l][e]=t),t.push(_)}if(h){const e=n.data[h].length-1;let t=n.get_array(h)[e];(0,o.isArray)(t)||(t=Array.from(t),n.data[h][e]=t),t.push(d)}}this._emit_cds_changes(n,!0,!0,a)}_pan_start(e){this._draw(e,\"new\")}_pan(e){this._draw(e,\"add\")}_pan_end(e){this._draw(e,\"add\",!0)}_tap(e){this._select_event(e,this._select_mode(e),this.model.renderers)}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===d.Keys.Esc?t.data_source.selection_manager.clear():e.keyCode===d.Keys.Backspace&&this._delete_selected(t)}}a.FreehandDrawToolView=l,l.__name__=\"FreehandDrawToolView\";class h extends n.EditTool{constructor(e){super(e),this.tool_name=\"Freehand Draw Tool\",this.icon=i.tool_icon_freehand_draw,this.event_type=[\"pan\",\"tap\"],this.default_order=3}}a.FreehandDrawTool=h,_=h,h.__name__=\"FreehandDrawTool\",_.prototype.default_view=l,_.define((({Int:e})=>({num_objects:[e,0]}))),_.register_alias(\"freehand_draw\",(()=>new h))},\n", - " function _(e,t,s,o,a){var i;o();const n=e(43),_=e(370),r=e(228);class d extends _.EditToolView{_tap(e){if(this._select_event(e,this._select_mode(e),this.model.renderers).length||!this.model.add)return;const t=this.model.renderers[0],s=this._map_drag(e.sx,e.sy,t);if(null==s)return;const o=t.glyph,a=t.data_source,[i,n]=[o.x.field,o.y.field],[_,r]=s;this._pop_glyphs(a,this.model.num_objects),i&&a.get_array(i).push(_),n&&a.get_array(n).push(r),this._pad_empty_columns(a,[i,n]),a.change.emit(),a.data=a.data,a.properties.data.change.emit()}_keyup(e){if(this.model.active&&this._mouse_in_frame)for(const t of this.model.renderers)e.keyCode===n.Keys.Backspace?this._delete_selected(t):e.keyCode==n.Keys.Esc&&t.data_source.selection_manager.clear()}_pan_start(e){this.model.drag&&(this._select_event(e,\"append\",this.model.renderers),this._basepoint=[e.sx,e.sy])}_pan(e){this.model.drag&&null!=this._basepoint&&this._drag_points(e,this.model.renderers)}_pan_end(e){if(this.model.drag){this._pan(e);for(const e of this.model.renderers)this._emit_cds_changes(e.data_source,!1,!0,!0);this._basepoint=null}}}s.PointDrawToolView=d,d.__name__=\"PointDrawToolView\";class l extends _.EditTool{constructor(e){super(e),this.tool_name=\"Point Draw Tool\",this.icon=r.tool_icon_point_draw,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=2}}s.PointDrawTool=l,i=l,l.__name__=\"PointDrawTool\",i.prototype.default_view=d,i.define((({Boolean:e,Int:t})=>({add:[e,!0],drag:[e,!0],num_objects:[t,0]})))},\n", - " function _(e,t,s,i,a){var r;i();const o=e(43),n=e(8),d=e(375),_=e(228);class h extends d.PolyToolView{constructor(){super(...arguments),this._drawing=!1,this._initialized=!1}_tap(e){this._drawing?this._draw(e,\"add\",!0):this._select_event(e,this._select_mode(e),this.model.renderers)}_draw(e,t,s=!1){const i=this.model.renderers[0],a=this._map_drag(e.sx,e.sy,i);if(this._initialized||this.activate(),null==a)return;const[r,o]=this._snap_to_vertex(e,...a),d=i.data_source,_=i.glyph,[h,l]=[_.xs.field,_.ys.field];if(\"new\"==t)this._pop_glyphs(d,this.model.num_objects),h&&d.get_array(h).push([r,r]),l&&d.get_array(l).push([o,o]),this._pad_empty_columns(d,[h,l]);else if(\"edit\"==t){if(h){const e=d.data[h][d.data[h].length-1];e[e.length-1]=r}if(l){const e=d.data[l][d.data[l].length-1];e[e.length-1]=o}}else if(\"add\"==t){if(h){const e=d.data[h].length-1;let t=d.get_array(h)[e];const s=t[t.length-1];t[t.length-1]=r,(0,n.isArray)(t)||(t=Array.from(t),d.data[h][e]=t),t.push(s)}if(l){const e=d.data[l].length-1;let t=d.get_array(l)[e];const s=t[t.length-1];t[t.length-1]=o,(0,n.isArray)(t)||(t=Array.from(t),d.data[l][e]=t),t.push(s)}}this._emit_cds_changes(d,!0,!1,s)}_show_vertices(){if(!this.model.active)return;const e=[],t=[];for(let s=0;sthis._show_vertices()))}this._initialized=!0}}deactivate(){this._drawing&&(this._remove(),this._drawing=!1),this.model.vertex_renderer&&this._hide_vertices()}}s.PolyDrawToolView=h,h.__name__=\"PolyDrawToolView\";class l extends d.PolyTool{constructor(e){super(e),this.tool_name=\"Polygon Draw Tool\",this.icon=_.tool_icon_poly_draw,this.event_type=[\"pan\",\"tap\",\"move\"],this.default_order=3}}s.PolyDrawTool=l,r=l,l.__name__=\"PolyDrawTool\",r.prototype.default_view=h,r.define((({Boolean:e,Int:t})=>({drag:[e,!0],num_objects:[t,0]})))},\n", - " function _(e,r,t,s,o){var _;s();const d=e(8),i=e(370);class l extends i.EditToolView{_set_vertices(e,r){const t=this.model.vertex_renderer.glyph,s=this.model.vertex_renderer.data_source,[o,_]=[t.x.field,t.y.field];o&&((0,d.isArray)(e)?s.data[o]=e:t.x={value:e}),_&&((0,d.isArray)(r)?s.data[_]=r:t.y={value:r}),this._emit_cds_changes(s,!0,!0,!1)}_hide_vertices(){this._set_vertices([],[])}_snap_to_vertex(e,r,t){if(this.model.vertex_renderer){const s=this._select_event(e,\"replace\",[this.model.vertex_renderer]),o=this.model.vertex_renderer.data_source,_=this.model.vertex_renderer.glyph,[d,i]=[_.x.field,_.y.field];if(s.length){const e=o.selected.indices[0];d&&(r=o.data[d][e]),i&&(t=o.data[i][e]),o.selection_manager.clear()}}return[r,t]}}t.PolyToolView=l,l.__name__=\"PolyToolView\";class n extends i.EditTool{constructor(e){super(e)}}t.PolyTool=n,_=n,n.__name__=\"PolyTool\",_.define((({AnyRef:e})=>({vertex_renderer:[e()]})))},\n", - " function _(e,t,s,r,i){var _;r();const d=e(43),n=e(8),l=e(375),a=e(228);class c extends l.PolyToolView{constructor(){super(...arguments),this._drawing=!1,this._cur_index=null}_doubletap(e){if(!this.model.active)return;const t=this._map_drag(e.sx,e.sy,this.model.vertex_renderer);if(null==t)return;const[s,r]=t,i=this._select_event(e,\"replace\",[this.model.vertex_renderer]),_=this.model.vertex_renderer.data_source,d=this.model.vertex_renderer.glyph,[n,l]=[d.x.field,d.y.field];if(i.length&&null!=this._selected_renderer){const e=_.selected.indices[0];this._drawing?(this._drawing=!1,_.selection_manager.clear()):(_.selected.indices=[e+1],n&&_.get_array(n).splice(e+1,0,s),l&&_.get_array(l).splice(e+1,0,r),this._drawing=!0),_.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}else this._show_vertices(e)}_show_vertices(e){if(!this.model.active)return;const t=this.model.renderers[0],s=()=>this._update_vertices(t),r=null==t?void 0:t.data_source,i=this._select_event(e,\"replace\",this.model.renderers);if(!i.length)return this._set_vertices([],[]),this._selected_renderer=null,this._drawing=!1,this._cur_index=null,void(null!=r&&r.disconnect(r.properties.data.change,s));null!=r&&r.connect(r.properties.data.change,s),this._cur_index=i[0].data_source.selected.indices[0],this._update_vertices(i[0])}_update_vertices(e){const t=e.glyph,s=e.data_source,r=this._cur_index,[i,_]=[t.xs.field,t.ys.field];if(this._drawing)return;if(null==r&&(i||_))return;let d,l;i&&null!=r?(d=s.data[i][r],(0,n.isArray)(d)||(s.data[i][r]=d=Array.from(d))):d=t.xs.value,_&&null!=r?(l=s.data[_][r],(0,n.isArray)(l)||(s.data[_][r]=l=Array.from(l))):l=t.ys.value,this._selected_renderer=e,this._set_vertices(d,l)}_move(e){if(this._drawing&&null!=this._selected_renderer){const t=this.model.vertex_renderer,s=t.data_source,r=t.glyph,i=this._map_drag(e.sx,e.sy,t);if(null==i)return;let[_,d]=i;const n=s.selected.indices;[_,d]=this._snap_to_vertex(e,_,d),s.selected.indices=n;const[l,a]=[r.x.field,r.y.field],c=n[0];l&&(s.data[l][c]=_),a&&(s.data[a][c]=d),s.change.emit(),this._selected_renderer.data_source.change.emit()}}_tap(e){const t=this.model.vertex_renderer,s=this._map_drag(e.sx,e.sy,t);if(null==s)return;if(this._drawing&&this._selected_renderer){let[r,i]=s;const _=t.data_source,d=t.glyph,[n,l]=[d.x.field,d.y.field],a=_.selected.indices;[r,i]=this._snap_to_vertex(e,r,i);const c=a[0];if(_.selected.indices=[c+1],n){const e=_.get_array(n),t=e[c];e[c]=r,e.splice(c+1,0,t)}if(l){const e=_.get_array(l),t=e[c];e[c]=i,e.splice(c+1,0,t)}return _.change.emit(),void this._emit_cds_changes(this._selected_renderer.data_source,!0,!1,!0)}const r=this._select_mode(e);this._select_event(e,r,[t]),this._select_event(e,r,this.model.renderers)}_remove_vertex(){if(!this._drawing||!this._selected_renderer)return;const e=this.model.vertex_renderer,t=e.data_source,s=e.glyph,r=t.selected.indices[0],[i,_]=[s.x.field,s.y.field];i&&t.get_array(i).splice(r,1),_&&t.get_array(_).splice(r,1),t.change.emit(),this._emit_cds_changes(this._selected_renderer.data_source)}_pan_start(e){this._select_event(e,\"append\",[this.model.vertex_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.vertex_renderer]),this._emit_cds_changes(this.model.vertex_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}_keyup(e){if(!this.model.active||!this._mouse_in_frame)return;let t;t=this._selected_renderer?[this.model.vertex_renderer]:this.model.renderers;for(const s of t)e.keyCode===d.Keys.Backspace?(this._delete_selected(s),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source)):e.keyCode==d.Keys.Esc&&(this._drawing?(this._remove_vertex(),this._drawing=!1):this._selected_renderer&&this._hide_vertices(),s.data_source.selection_manager.clear())}deactivate(){this._selected_renderer&&(this._drawing&&(this._remove_vertex(),this._drawing=!1),this._hide_vertices())}}s.PolyEditToolView=c,c.__name__=\"PolyEditToolView\";class o extends l.PolyTool{constructor(e){super(e),this.tool_name=\"Poly Edit Tool\",this.icon=a.tool_icon_poly_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}}s.PolyEditTool=o,_=o,o.__name__=\"PolyEditTool\",_.prototype.default_view=c},\n", - " function _(e,t,o,s,i){var l;s();const n=e(378),_=e(116),c=e(20),r=e(228);class a extends n.SelectToolView{_compute_limits(e){const t=this.plot_view.frame,o=this.model.dimensions;let s=this._base_point;if(\"center\"==this.model.origin){const[t,o]=s,[i,l]=e;s=[t-(i-t),o-(l-o)]}return this.model._get_dim_limits(s,e,t,o)}_pan_start(e){const{sx:t,sy:o}=e;this._base_point=[t,o]}_pan(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this.model.overlay.update({left:i[0],right:i[1],top:l[0],bottom:l[1]}),this.model.select_every_mousemove&&this._do_select(i,l,!1,this._select_mode(e))}_pan_end(e){const{sx:t,sy:o}=e,s=[t,o],[i,l]=this._compute_limits(s);this._do_select(i,l,!0,this._select_mode(e)),this.model.overlay.update({left:null,right:null,top:null,bottom:null}),this._base_point=null,this.plot_view.state.push(\"box_select\",{selection:this.plot_view.get_selection()})}_do_select([e,t],[o,s],i,l=\"replace\"){const n={type:\"rect\",sx0:e,sx1:t,sy0:o,sy1:s};this._select(n,i,l)}}o.BoxSelectToolView=a,a.__name__=\"BoxSelectToolView\";const h=()=>new _.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class m extends n.SelectTool{constructor(e){super(e),this.tool_name=\"Box Select\",this.icon=r.tool_icon_box_select,this.event_type=\"pan\",this.default_order=30}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}o.BoxSelectTool=m,l=m,m.__name__=\"BoxSelectTool\",l.prototype.default_view=a,l.define((({Boolean:e,Ref:t})=>({dimensions:[c.Dimensions,\"both\"],select_every_mousemove:[e,!1],overlay:[t(_.BoxAnnotation),h],origin:[c.BoxOrigin,\"corner\"]}))),l.register_alias(\"box_select\",(()=>new m)),l.register_alias(\"xbox_select\",(()=>new m({dimensions:\"width\"}))),l.register_alias(\"ybox_select\",(()=>new m({dimensions:\"height\"})))},\n", - " function _(e,t,s,n,r){var o;n();const c=e(223),i=e(175),a=e(339),l=e(176),d=e(66),_=e(20),h=e(43),p=e(251),u=e(15),m=e(11);class v extends c.GestureToolView{connect_signals(){super.connect_signals(),this.model.clear.connect((()=>this._clear()))}get computed_renderers(){const{renderers:e,names:t}=this.model,s=this.plot_model.data_renderers;return(0,d.compute_renderers)(e,s,t)}_computed_renderers_by_data_source(){var e;const t=new Map;for(const s of this.computed_renderers){let n;if(s instanceof i.GlyphRenderer)n=s.data_source;else{if(!(s instanceof a.GraphRenderer))continue;n=s.node_renderer.data_source}const r=null!==(e=t.get(n))&&void 0!==e?e:[];t.set(n,[...r,s])}return t}_select_mode(e){const{shiftKey:t,ctrlKey:s}=e;return t||s?t&&!s?\"append\":!t&&s?\"intersect\":t&&s?\"subtract\":void(0,m.unreachable)():this.model.mode}_keyup(e){e.keyCode==h.Keys.Esc&&this._clear()}_clear(){for(const e of this.computed_renderers)e.get_selection_manager().clear();const e=this.computed_renderers.map((e=>this.plot_view.renderer_view(e)));this.plot_view.request_paint(e)}_select(e,t,s){const n=this._computed_renderers_by_data_source();for(const[,r]of n){const n=r[0].get_selection_manager(),o=[];for(const e of r){const t=this.plot_view.renderer_view(e);null!=t&&o.push(t)}n.select(o,e,t,s)}null!=this.model.callback&&this._emit_callback(e),this._emit_selection_event(e,t)}_emit_selection_event(e,t=!0){const{x_scale:s,y_scale:n}=this.plot_view.frame;let r;switch(e.type){case\"point\":{const{sx:t,sy:o}=e,c=s.invert(t),i=n.invert(o);r=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"span\":{const{sx:t,sy:o}=e,c=s.invert(t),i=n.invert(o);r=Object.assign(Object.assign({},e),{x:c,y:i});break}case\"rect\":{const{sx0:t,sx1:o,sy0:c,sy1:i}=e,[a,l]=s.r_invert(t,o),[d,_]=n.r_invert(c,i);r=Object.assign(Object.assign({},e),{x0:a,y0:d,x1:l,y1:_});break}case\"poly\":{const{sx:t,sy:o}=e,c=s.v_invert(t),i=n.v_invert(o);r=Object.assign(Object.assign({},e),{x:c,y:i});break}}this.plot_model.trigger_event(new p.SelectionGeometry(r,t))}}s.SelectToolView=v,v.__name__=\"SelectToolView\";class b extends c.GestureTool{constructor(e){super(e)}initialize(){super.initialize(),this.clear=new u.Signal0(this,\"clear\")}get menu(){return[{icon:\"bk-tool-icon-replace-mode\",tooltip:\"Replace the current selection\",active:()=>\"replace\"==this.mode,handler:()=>{this.mode=\"replace\",this.active=!0}},{icon:\"bk-tool-icon-append-mode\",tooltip:\"Append to the current selection (Shift)\",active:()=>\"append\"==this.mode,handler:()=>{this.mode=\"append\",this.active=!0}},{icon:\"bk-tool-icon-intersect-mode\",tooltip:\"Intersect with the current selection (Ctrl)\",active:()=>\"intersect\"==this.mode,handler:()=>{this.mode=\"intersect\",this.active=!0}},{icon:\"bk-tool-icon-subtract-mode\",tooltip:\"Subtract from the current selection (Shift+Ctrl)\",active:()=>\"subtract\"==this.mode,handler:()=>{this.mode=\"subtract\",this.active=!0}},null,{icon:\"bk-tool-icon-clear-selection\",tooltip:\"Clear the current selection (Esc)\",handler:()=>{this.clear.emit()}}]}}s.SelectTool=b,o=b,b.__name__=\"SelectTool\",o.define((({String:e,Array:t,Ref:s,Or:n,Auto:r})=>({renderers:[n(t(s(l.DataRenderer)),r),\"auto\"],names:[t(e),[]],mode:[_.SelectionMode,\"replace\"]})))},\n", - " function _(t,o,e,s,i){var n;s();const _=t(223),a=t(116),l=t(20),r=t(228);class h extends _.GestureToolView{_match_aspect(t,o,e){const s=e.bbox.aspect,i=e.bbox.h_range.end,n=e.bbox.h_range.start,_=e.bbox.v_range.end,a=e.bbox.v_range.start;let l=Math.abs(t[0]-o[0]),r=Math.abs(t[1]-o[1]);const h=0==r?0:l/r,[c]=h>=s?[1,h/s]:[s/h,1];let m,p,d,b;return t[0]<=o[0]?(m=t[0],p=t[0]+l*c,p>i&&(p=i)):(p=t[0],m=t[0]-l*c,m_&&(d=_)):(d=t[1],b=t[1]-l/s,bnew a.BoxAnnotation({level:\"overlay\",top_units:\"screen\",left_units:\"screen\",bottom_units:\"screen\",right_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class m extends _.GestureTool{constructor(t){super(t),this.tool_name=\"Box Zoom\",this.icon=r.tool_icon_box_zoom,this.event_type=\"pan\",this.default_order=20}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}e.BoxZoomTool=m,n=m,m.__name__=\"BoxZoomTool\",n.prototype.default_view=h,n.define((({Boolean:t,Ref:o})=>({dimensions:[l.Dimensions,\"both\"],overlay:[o(a.BoxAnnotation),c],match_aspect:[t,!1],origin:[l.BoxOrigin,\"corner\"]}))),n.register_alias(\"box_zoom\",(()=>new m({dimensions:\"both\"}))),n.register_alias(\"xbox_zoom\",(()=>new m({dimensions:\"width\"}))),n.register_alias(\"ybox_zoom\",(()=>new m({dimensions:\"height\"})))},\n", - " function _(s,e,t,o,_){var l;o();const i=s(378),a=s(217),c=s(381),n=s(43),h=s(228);class r extends i.SelectToolView{constructor(){super(...arguments),this.sxs=[],this.sys=[]}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>this._active_change()))}_active_change(){this.model.active||this._clear_overlay()}_keyup(s){s.keyCode==n.Keys.Enter&&this._clear_overlay()}_pan_start(s){this.sxs=[],this.sys=[];const{sx:e,sy:t}=s;this._append_overlay(e,t)}_pan(s){const[e,t]=this.plot_view.frame.bbox.clip(s.sx,s.sy);this._append_overlay(e,t),this.model.select_every_mousemove&&this._do_select(this.sxs,this.sys,!1,this._select_mode(s))}_pan_end(s){const{sxs:e,sys:t}=this;this._clear_overlay(),this._do_select(e,t,!0,this._select_mode(s)),this.plot_view.state.push(\"lasso_select\",{selection:this.plot_view.get_selection()})}_append_overlay(s,e){const{sxs:t,sys:o}=this;t.push(s),o.push(e),this.model.overlay.update({xs:t,ys:o})}_clear_overlay(){this.sxs=[],this.sys=[],this.model.overlay.update({xs:this.sxs,ys:this.sys})}_do_select(s,e,t,o){const _={type:\"poly\",sx:s,sy:e};this._select(_,t,o)}}t.LassoSelectToolView=r,r.__name__=\"LassoSelectToolView\";class y extends i.SelectTool{constructor(s){super(s),this.tool_name=\"Lasso Select\",this.icon=h.tool_icon_lasso_select,this.event_type=\"pan\",this.default_order=12}}t.LassoSelectTool=y,l=y,y.__name__=\"LassoSelectTool\",l.prototype.default_view=r,l.define((({Boolean:s,Ref:e})=>({select_every_mousemove:[s,!0],overlay:[e(a.PolyAnnotation),c.DEFAULT_POLY_OVERLAY]}))),l.register_alias(\"lasso_select\",(()=>new y))},\n", - " function _(e,t,s,l,o){var i;l();const a=e(378),_=e(217),c=e(43),n=e(9),h=e(228);class y extends a.SelectToolView{initialize(){super.initialize(),this.data={sx:[],sy:[]}}connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>this._active_change()))}_active_change(){this.model.active||this._clear_data()}_keyup(e){e.keyCode==c.Keys.Enter&&this._clear_data()}_doubletap(e){this._do_select(this.data.sx,this.data.sy,!0,this._select_mode(e)),this.plot_view.state.push(\"poly_select\",{selection:this.plot_view.get_selection()}),this._clear_data()}_clear_data(){this.data={sx:[],sy:[]},this.model.overlay.update({xs:[],ys:[]})}_tap(e){const{sx:t,sy:s}=e;this.plot_view.frame.bbox.contains(t,s)&&(this.data.sx.push(t),this.data.sy.push(s),this.model.overlay.update({xs:(0,n.copy)(this.data.sx),ys:(0,n.copy)(this.data.sy)}))}_do_select(e,t,s,l){const o={type:\"poly\",sx:e,sy:t};this._select(o,s,l)}}s.PolySelectToolView=y,y.__name__=\"PolySelectToolView\";s.DEFAULT_POLY_OVERLAY=()=>new _.PolyAnnotation({level:\"overlay\",xs_units:\"screen\",ys_units:\"screen\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:2,line_dash:[4,4]});class d extends a.SelectTool{constructor(e){super(e),this.tool_name=\"Poly Select\",this.icon=h.tool_icon_polygon_select,this.event_type=\"tap\",this.default_order=11}}s.PolySelectTool=d,i=d,d.__name__=\"PolySelectTool\",i.prototype.default_view=y,i.define((({Ref:e})=>({overlay:[e(_.PolyAnnotation),s.DEFAULT_POLY_OVERLAY]}))),i.register_alias(\"poly_select\",(()=>new d))},\n", - " function _(e,t,s,i,r){var n;i();const _=e(20),d=e(383),o=e(228);class l extends d.LineToolView{constructor(){super(...arguments),this._drawing=!1}_doubletap(e){if(!this.model.active)return;const t=this.model.renderers;for(const s of t){1==this._select_event(e,\"replace\",[s]).length&&(this._selected_renderer=s)}this._show_intersections(),this._update_line_cds()}_show_intersections(){if(!this.model.active)return;if(null==this._selected_renderer)return;if(!this.model.renderers.length)return this._set_intersection([],[]),this._selected_renderer=null,void(this._drawing=!1);const e=this._selected_renderer.data_source,t=this._selected_renderer.glyph,[s,i]=[t.x.field,t.y.field],r=e.get_array(s),n=e.get_array(i);this._set_intersection(r,n)}_tap(e){const t=this.model.intersection_renderer;if(null==this._map_drag(e.sx,e.sy,t))return;if(this._drawing&&this._selected_renderer){const s=this._select_mode(e);if(0==this._select_event(e,s,[t]).length)return}const s=this._select_mode(e);this._select_event(e,s,[t]),this._select_event(e,s,this.model.renderers)}_update_line_cds(){if(null==this._selected_renderer)return;const e=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[s,i]=[e.x.field,e.y.field];if(s&&i){const e=t.data[s],r=t.data[i];this._selected_renderer.data_source.data[s]=e,this._selected_renderer.data_source.data[i]=r}this._emit_cds_changes(this._selected_renderer.data_source,!0,!0,!1)}_pan_start(e){this._select_event(e,\"append\",[this.model.intersection_renderer]),this._basepoint=[e.sx,e.sy]}_pan(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer],this.model.dimensions),this._selected_renderer&&this._selected_renderer.data_source.change.emit())}_pan_end(e){null!=this._basepoint&&(this._drag_points(e,[this.model.intersection_renderer]),this._emit_cds_changes(this.model.intersection_renderer.data_source,!1,!0,!0),this._selected_renderer&&this._emit_cds_changes(this._selected_renderer.data_source),this._basepoint=null)}activate(){this._drawing=!0}deactivate(){this._selected_renderer&&(this._drawing&&(this._drawing=!1),this._hide_intersections())}}s.LineEditToolView=l,l.__name__=\"LineEditToolView\";class h extends d.LineTool{constructor(e){super(e),this.tool_name=\"Line Edit Tool\",this.icon=o.tool_icon_line_edit,this.event_type=[\"tap\",\"pan\",\"move\"],this.default_order=4}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}s.LineEditTool=h,n=h,h.__name__=\"LineEditTool\",n.prototype.default_view=l,n.define((()=>({dimensions:[_.Dimensions,\"both\"]})))},\n", - " function _(e,i,n,t,s){var o;t();const r=e(8),_=e(370);class d extends _.EditToolView{_set_intersection(e,i){const n=this.model.intersection_renderer.glyph,t=this.model.intersection_renderer.data_source,[s,o]=[n.x.field,n.y.field];s&&((0,r.isArray)(e)?t.data[s]=e:n.x={value:e}),o&&((0,r.isArray)(i)?t.data[o]=i:n.y={value:i}),this._emit_cds_changes(t,!0,!0,!1)}_hide_intersections(){this._set_intersection([],[])}}n.LineToolView=d,d.__name__=\"LineToolView\";class a extends _.EditTool{constructor(e){super(e)}}n.LineTool=a,o=a,a.__name__=\"LineTool\",o.define((({AnyRef:e})=>({intersection_renderer:[e()]})))},\n", - " function _(t,s,n,e,i){e();const o=t(1);var a;const _=t(223),l=t(20),r=(0,o.__importStar)(t(228));function h(t,s,n){const e=new Map;for(const[i,o]of t){const[t,a]=o.r_invert(s,n);e.set(i,{start:t,end:a})}return e}n.update_ranges=h;class d extends _.GestureToolView{_pan_start(t){var s;this.last_dx=0,this.last_dy=0;const{sx:n,sy:e}=t,i=this.plot_view.frame.bbox;if(!i.contains(n,e)){const t=i.h_range,s=i.v_range;(nt.end)&&(this.v_axis_only=!0),(es.end)&&(this.h_axis_only=!0)}null===(s=this.model.document)||void 0===s||s.interactive_start(this.plot_model)}_pan(t){var s;this._update(t.deltaX,t.deltaY),null===(s=this.model.document)||void 0===s||s.interactive_start(this.plot_model)}_pan_end(t){this.h_axis_only=!1,this.v_axis_only=!1,null!=this.pan_info&&this.plot_view.state.push(\"pan\",{range:this.pan_info}),this.plot_view.trigger_ranges_update_event()}_update(t,s){const n=this.plot_view.frame,e=t-this.last_dx,i=s-this.last_dy,o=n.bbox.h_range,a=o.start-e,_=o.end-e,l=n.bbox.v_range,r=l.start-i,d=l.end-i,p=this.model.dimensions;let c,u,m,v,x,g;\"width\"!=p&&\"both\"!=p||this.v_axis_only?(c=o.start,u=o.end,m=0):(c=a,u=_,m=-e),\"height\"!=p&&\"both\"!=p||this.h_axis_only?(v=l.start,x=l.end,g=0):(v=r,x=d,g=-i),this.last_dx=t,this.last_dy=s;const{x_scales:w,y_scales:y}=n,f=h(w,c,u),b=h(y,v,x);this.pan_info={xrs:f,yrs:b,sdx:m,sdy:g},this.plot_view.update_range(this.pan_info,{panning:!0})}}n.PanToolView=d,d.__name__=\"PanToolView\";class p extends _.GestureTool{constructor(t){super(t),this.tool_name=\"Pan\",this.event_type=\"pan\",this.default_order=10}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}n.PanTool=p,a=p,p.__name__=\"PanTool\",a.prototype.default_view=d,a.define((()=>({dimensions:[l.Dimensions,\"both\",{on_update(t,s){switch(t){case\"both\":s.icon=r.tool_icon_pan;break;case\"width\":s.icon=r.tool_icon_xpan;break;case\"height\":s.icon=r.tool_icon_ypan}}}]}))),a.register_alias(\"pan\",(()=>new p({dimensions:\"both\"}))),a.register_alias(\"xpan\",(()=>new p({dimensions:\"width\"}))),a.register_alias(\"ypan\",(()=>new p({dimensions:\"height\"})))},\n", - " function _(e,t,i,s,n){var l;s();const a=e(116),r=e(58),o=e(19),_=e(223),h=e(228);function d(e){switch(e){case 1:return 2;case 2:return 1;case 4:return 5;case 5:return 4;default:return e}}function u(e,t,i,s){if(null==t)return!1;const n=i.compute(t);return Math.abs(e-n)n.right)&&(l=!1)}if(null!=n.bottom&&null!=n.top){const e=s.invert(t);(en.top)&&(l=!1)}return l}function g(e,t,i){let s=0;return e>=i.start&&e<=i.end&&(s+=1),t>=i.start&&t<=i.end&&(s+=1),s}function y(e,t,i,s){const n=t.compute(e),l=t.invert(n+i);return l>=s.start&&l<=s.end?l:e}function f(e,t,i){return e>t.start?(t.end=e,i):(t.end=t.start,t.start=e,d(i))}function v(e,t,i){return e=o&&(e.start=a,e.end=r)}i.flip_side=d,i.is_near=u,i.is_inside=c,i.sides_inside=g,i.compute_value=y,i.update_range_end_side=f,i.update_range_start_side=v,i.update_range=m;class p extends _.GestureToolView{initialize(){super.initialize(),this.side=0,this.model.update_overlay_from_ranges()}connect_signals(){super.connect_signals(),null!=this.model.x_range&&this.connect(this.model.x_range.change,(()=>this.model.update_overlay_from_ranges())),null!=this.model.y_range&&this.connect(this.model.y_range.change,(()=>this.model.update_overlay_from_ranges()))}_pan_start(e){this.last_dx=0,this.last_dy=0;const t=this.model.x_range,i=this.model.y_range,{frame:s}=this.plot_view,n=s.x_scale,l=s.y_scale,r=this.model.overlay,{left:o,right:_,top:h,bottom:d}=r,g=this.model.overlay.line_width+a.EDGE_TOLERANCE;null!=t&&this.model.x_interaction&&(u(e.sx,o,n,g)?this.side=1:u(e.sx,_,n,g)?this.side=2:c(e.sx,e.sy,n,l,r)&&(this.side=3)),null!=i&&this.model.y_interaction&&(0==this.side&&u(e.sy,d,l,g)&&(this.side=4),0==this.side&&u(e.sy,h,l,g)?this.side=5:c(e.sx,e.sy,n,l,this.model.overlay)&&(3==this.side?this.side=7:this.side=6))}_pan(e){const t=this.plot_view.frame,i=e.deltaX-this.last_dx,s=e.deltaY-this.last_dy,n=this.model.x_range,l=this.model.y_range,a=t.x_scale,r=t.y_scale;if(null!=n)if(3==this.side||7==this.side)m(n,a,i,t.x_range);else if(1==this.side){const e=y(n.start,a,i,t.x_range);this.side=v(e,n,this.side)}else if(2==this.side){const e=y(n.end,a,i,t.x_range);this.side=f(e,n,this.side)}if(null!=l)if(6==this.side||7==this.side)m(l,r,s,t.y_range);else if(4==this.side){const e=y(l.start,r,s,t.y_range);this.side=v(e,l,this.side)}else if(5==this.side){const e=y(l.end,r,s,t.y_range);this.side=f(e,l,this.side)}this.last_dx=e.deltaX,this.last_dy=e.deltaY}_pan_end(e){this.side=0,this.plot_view.trigger_ranges_update_event()}}i.RangeToolView=p,p.__name__=\"RangeToolView\";const x=()=>new a.BoxAnnotation({level:\"overlay\",fill_color:\"lightgrey\",fill_alpha:.5,line_color:\"black\",line_alpha:1,line_width:.5,line_dash:[2,2]});class w extends _.GestureTool{constructor(e){super(e),this.tool_name=\"Range Tool\",this.icon=h.tool_icon_range,this.event_type=\"pan\",this.default_order=1}initialize(){super.initialize(),this.overlay.in_cursor=\"grab\",this.overlay.ew_cursor=null!=this.x_range&&this.x_interaction?\"ew-resize\":null,this.overlay.ns_cursor=null!=this.y_range&&this.y_interaction?\"ns-resize\":null}update_overlay_from_ranges(){null==this.x_range&&null==this.y_range&&(this.overlay.left=null,this.overlay.right=null,this.overlay.bottom=null,this.overlay.top=null,o.logger.warn(\"RangeTool not configured with any Ranges.\")),null==this.x_range?(this.overlay.left=null,this.overlay.right=null):(this.overlay.left=this.x_range.start,this.overlay.right=this.x_range.end),null==this.y_range?(this.overlay.bottom=null,this.overlay.top=null):(this.overlay.bottom=this.y_range.start,this.overlay.top=this.y_range.end)}}i.RangeTool=w,l=w,w.__name__=\"RangeTool\",l.prototype.default_view=p,l.define((({Boolean:e,Ref:t,Nullable:i})=>({x_range:[i(t(r.Range1d)),null],x_interaction:[e,!0],y_range:[i(t(r.Range1d)),null],y_interaction:[e,!0],overlay:[t(a.BoxAnnotation),x]})))},\n", - " function _(e,t,s,o,i){var l;o();const a=e(378),n=e(20),c=e(228);class _ extends a.SelectToolView{_tap(e){\"tap\"==this.model.gesture&&this._handle_tap(e)}_doubletap(e){\"doubletap\"==this.model.gesture&&this._handle_tap(e)}_handle_tap(e){const{sx:t,sy:s}=e,o={type:\"point\",sx:t,sy:s};this._select(o,!0,this._select_mode(e))}_select(e,t,s){const{callback:o}=this.model;if(\"select\"==this.model.behavior){const i=this._computed_renderers_by_data_source();for(const[,l]of i){const i=l[0].get_selection_manager(),a=l.map((e=>this.plot_view.renderer_view(e))).filter((e=>null!=e));if(i.select(a,e,t,s)&&null!=o){const t=a[0].coordinates.x_scale.invert(e.sx),s=a[0].coordinates.y_scale.invert(e.sy),l={geometries:Object.assign(Object.assign({},e),{x:t,y:s}),source:i.source};o.execute(this.model,l)}}this._emit_selection_event(e),this.plot_view.state.push(\"tap\",{selection:this.plot_view.get_selection()})}else for(const t of this.computed_renderers){const s=this.plot_view.renderer_view(t);if(null==s)continue;const i=t.get_selection_manager();if(i.inspect(s,e)&&null!=o){const t=s.coordinates.x_scale.invert(e.sx),l=s.coordinates.y_scale.invert(e.sy),a={geometries:Object.assign(Object.assign({},e),{x:t,y:l}),source:i.source};o.execute(this.model,a)}}}}s.TapToolView=_,_.__name__=\"TapToolView\";class r extends a.SelectTool{constructor(e){super(e),this.tool_name=\"Tap\",this.icon=c.tool_icon_tap_select,this.event_type=\"tap\",this.default_order=10}}s.TapTool=r,l=r,r.__name__=\"TapTool\",l.prototype.default_view=_,l.define((({Any:e,Enum:t,Nullable:s})=>({behavior:[n.TapBehavior,\"select\"],gesture:[t(\"tap\",\"doubletap\"),\"tap\"],callback:[s(e)]}))),l.register_alias(\"click\",(()=>new r({behavior:\"inspect\"}))),l.register_alias(\"tap\",(()=>new r)),l.register_alias(\"doubletap\",(()=>new r({gesture:\"doubletap\"})))},\n", - " function _(e,t,s,n,i){var a;n();const o=e(223),l=e(20),_=e(228),r=e(384);class h extends o.GestureToolView{_scroll(e){let t=this.model.speed*e.delta;t>.9?t=.9:t<-.9&&(t=-.9),this._update_ranges(t)}_update_ranges(e){var t;const{frame:s}=this.plot_view,n=s.bbox.h_range,i=s.bbox.v_range,[a,o]=[n.start,n.end],[l,_]=[i.start,i.end];let h,d,p,c;switch(this.model.dimension){case\"height\":{const t=Math.abs(_-l);h=a,d=o,p=l-t*e,c=_-t*e;break}case\"width\":{const t=Math.abs(o-a);h=a-t*e,d=o-t*e,p=l,c=_;break}}const{x_scales:g,y_scales:u}=s,w={xrs:(0,r.update_ranges)(g,h,d),yrs:(0,r.update_ranges)(u,p,c),factor:e};this.plot_view.state.push(\"wheel_pan\",{range:w}),this.plot_view.update_range(w,{scrolling:!0}),null===(t=this.model.document)||void 0===t||t.interactive_start(this.plot_model,(()=>this.plot_view.trigger_ranges_update_event()))}}s.WheelPanToolView=h,h.__name__=\"WheelPanToolView\";class d extends o.GestureTool{constructor(e){super(e),this.tool_name=\"Wheel Pan\",this.icon=_.tool_icon_wheel_pan,this.event_type=\"scroll\",this.default_order=12}get tooltip(){return this._get_dim_tooltip(this.dimension)}}s.WheelPanTool=d,a=d,d.__name__=\"WheelPanTool\",a.prototype.default_view=h,a.define((()=>({dimension:[l.Dimension,\"width\"]}))),a.internal((({Number:e})=>({speed:[e,.001]}))),a.register_alias(\"xwheel_pan\",(()=>new d({dimension:\"width\"}))),a.register_alias(\"ywheel_pan\",(()=>new d({dimension:\"height\"})))},\n", - " function _(e,o,t,s,i){var n;s();const l=e(223),_=e(368),h=e(20),a=e(27),r=e(228);class m extends l.GestureToolView{_pinch(e){const{sx:o,sy:t,scale:s,ctrlKey:i,shiftKey:n}=e;let l;l=s>=1?20*(s-1):-20/s,this._scroll({type:\"wheel\",sx:o,sy:t,delta:l,ctrlKey:i,shiftKey:n})}_scroll(e){var o;const{frame:t}=this.plot_view,s=t.bbox.h_range,i=t.bbox.v_range,{sx:n,sy:l}=e,h=this.model.dimensions,a=(\"width\"==h||\"both\"==h)&&s.startthis.plot_view.trigger_ranges_update_event()))}}t.WheelZoomToolView=m,m.__name__=\"WheelZoomToolView\";class d extends l.GestureTool{constructor(e){super(e),this.tool_name=\"Wheel Zoom\",this.icon=r.tool_icon_wheel_zoom,this.event_type=a.is_mobile?\"pinch\":\"scroll\",this.default_order=10}get tooltip(){return this._get_dim_tooltip(this.dimensions)}}t.WheelZoomTool=d,n=d,d.__name__=\"WheelZoomTool\",n.prototype.default_view=m,n.define((({Boolean:e,Number:o})=>({dimensions:[h.Dimensions,\"both\"],maintain_focus:[e,!0],zoom_on_axis:[e,!0],speed:[o,1/600]}))),n.register_alias(\"wheel_zoom\",(()=>new d({dimensions:\"both\"}))),n.register_alias(\"xwheel_zoom\",(()=>new d({dimensions:\"width\"}))),n.register_alias(\"ywheel_zoom\",(()=>new d({dimensions:\"height\"})))},\n", - " function _(i,e,s,t,o){var n;t();const l=i(232),a=i(219),h=i(20),r=i(13),_=i(228);class c extends l.InspectToolView{_move(i){if(!this.model.active)return;const{sx:e,sy:s}=i;this.plot_view.frame.bbox.contains(e,s)?this._update_spans(e,s):this._update_spans(null,null)}_move_exit(i){this._update_spans(null,null)}_update_spans(i,e){const s=this.model.dimensions;\"width\"!=s&&\"both\"!=s||(this.model.spans.width.location=e),\"height\"!=s&&\"both\"!=s||(this.model.spans.height.location=i)}}s.CrosshairToolView=c,c.__name__=\"CrosshairToolView\";class p extends l.InspectTool{constructor(i){super(i),this.tool_name=\"Crosshair\",this.icon=_.tool_icon_crosshair}get tooltip(){return this._get_dim_tooltip(this.dimensions)}get synthetic_renderers(){return(0,r.values)(this.spans)}}s.CrosshairTool=p,n=p,p.__name__=\"CrosshairTool\",(()=>{function i(i,e){return new a.Span({for_hover:!0,dimension:e,location_units:\"screen\",level:\"overlay\",line_color:i.line_color,line_width:i.line_width,line_alpha:i.line_alpha})}n.prototype.default_view=c,n.define((({Alpha:i,Number:e,Color:s})=>({dimensions:[h.Dimensions,\"both\"],line_color:[s,\"black\"],line_width:[e,1],line_alpha:[i,1]}))),n.internal((({Struct:e,Ref:s})=>({spans:[e({width:s(a.Span),height:s(a.Span)}),e=>({width:i(e,\"width\"),height:i(e,\"height\")})]}))),n.register_alias(\"crosshair\",(()=>new p))})()},\n", - " function _(e,s,t,r,n){var o;r();const a=e(53),u=e(13),c=e(34);class i extends a.Model{constructor(e){super(e)}get values(){return(0,u.values)(this.args)}_make_code(e,s,t,r){return new Function(...(0,u.keys)(this.args),e,s,t,(0,c.use_strict)(r))}format(e,s,t){return this._make_code(\"value\",\"format\",\"special_vars\",this.code)(...this.values,e,s,t)}}t.CustomJSHover=i,o=i,i.__name__=\"CustomJSHover\",o.define((({Unknown:e,String:s,Dict:t})=>({args:[t(e),{}],code:[s,\"\"]})))},\n", - " function _(e,t,n,s,o){s();const i=e(1);var r;const l=e(232),a=e(390),c=e(241),_=e(175),d=e(339),p=e(176),h=e(177),u=e(283),m=(0,i.__importStar)(e(185)),y=e(152),f=e(43),v=e(22),x=e(13),w=e(234),g=e(8),b=e(113),k=e(20),C=e(228),S=e(15),T=e(66),$=(0,i.__importStar)(e(242)),R=e(392);function M(e,t,n,s,o,i){const r={x:o[e],y:i[e]},l={x:o[e+1],y:i[e+1]};let a,c;if(\"span\"==t.type)\"h\"==t.direction?(a=Math.abs(r.x-n),c=Math.abs(l.x-n)):(a=Math.abs(r.y-s),c=Math.abs(l.y-s));else{const e={x:n,y:s};a=m.dist_2_pts(r,e),c=m.dist_2_pts(l,e)}return adelete this._template_el)),this.on_change([e,t,n],(async()=>await this._update_ttmodels()))}async _update_ttmodels(){const{_ttmodels:e,computed_renderers:t}=this;e.clear();const{tooltips:n}=this.model;if(null!=n)for(const t of this.computed_renderers){const s=new c.Tooltip({custom:(0,g.isString)(n)||(0,g.isFunction)(n),attachment:this.model.attachment,show_arrow:this.model.show_arrow});t instanceof _.GlyphRenderer?e.set(t,s):t instanceof d.GraphRenderer&&(e.set(t.node_renderer,s),e.set(t.edge_renderer,s))}const s=await(0,b.build_views)(this._ttviews,[...e.values()],{parent:this.plot_view});for(const e of s)e.render();const o=[...function*(){for(const e of t)e instanceof _.GlyphRenderer?yield e:e instanceof d.GraphRenderer&&(yield e.node_renderer,yield e.edge_renderer)}()],i=this._slots.get(this._update);if(null!=i){const e=new Set(o.map((e=>e.data_source)));S.Signal.disconnect_receiver(this,i,e)}for(const e of o)this.connect(e.data_source.inspect,this._update)}get computed_renderers(){const{renderers:e,names:t}=this.model,n=this.plot_model.data_renderers;return(0,T.compute_renderers)(e,n,t)}get ttmodels(){return this._ttmodels}_clear(){this._inspect(1/0,1/0);for(const[,e]of this.ttmodels)e.clear()}_move(e){if(!this.model.active)return;const{sx:t,sy:n}=e;this.plot_view.frame.bbox.contains(t,n)?this._inspect(t,n):this._clear()}_move_exit(){this._clear()}_inspect(e,t){let n;if(\"mouse\"==this.model.mode)n={type:\"point\",sx:e,sy:t};else{n={type:\"span\",direction:\"vline\"==this.model.mode?\"h\":\"v\",sx:e,sy:t}}for(const e of this.computed_renderers){const t=e.get_selection_manager(),s=this.plot_view.renderer_view(e);null!=s&&t.inspect(s,n)}this._emit_callback(n)}_update([e,{geometry:t}]){var n,s;if(!this.model.active)return;if(\"point\"!=t.type&&\"span\"!=t.type)return;if(!(e instanceof _.GlyphRenderer))return;if(\"ignore\"==this.model.muted_policy&&e.muted)return;const o=this.ttmodels.get(e);if(null==o)return;const i=e.get_selection_manager(),r=i.inspectors.get(e),l=e.view.convert_selection_to_subset(r);if(r.is_empty())return void o.clear();const a=i.source,c=this.plot_view.renderer_view(e);if(null==c)return;const{sx:d,sy:p}=t,m=c.coordinates.x_scale,y=c.coordinates.y_scale,v=m.invert(d),w=y.invert(p),{glyph:g}=c,b=[];if(g instanceof h.LineView)for(const n of l.line_indices){let s,o,i=g._x[n+1],r=g._y[n+1],c=n;switch(this.model.line_policy){case\"interp\":[i,r]=g.get_interpolation_hit(n,t),s=m.compute(i),o=y.compute(r);break;case\"prev\":[[s,o],c]=G(g.sx,g.sy,n);break;case\"next\":[[s,o],c]=G(g.sx,g.sy,n+1);break;case\"nearest\":[[s,o],c]=M(n,t,d,p,g.sx,g.sy),i=g._x[c],r=g._y[c];break;default:[s,o]=[d,p]}const _={index:c,x:v,y:w,sx:d,sy:p,data_x:i,data_y:r,rx:s,ry:o,indices:l.line_indices,name:e.name};b.push([s,o,this._render_tooltips(a,c,_)])}for(const t of r.image_indices){const n={index:t.index,x:v,y:w,sx:d,sy:p,name:e.name},s=this._render_tooltips(a,t,n);b.push([d,p,s])}for(const o of l.indices)if(g instanceof u.MultiLineView&&!(0,x.isEmpty)(l.multiline_indices))for(const n of l.multiline_indices[o.toString()]){let s,i,r,c=g._xs.get(o)[n],h=g._ys.get(o)[n],u=n;switch(this.model.line_policy){case\"interp\":[c,h]=g.get_interpolation_hit(o,n,t),s=m.compute(c),i=y.compute(h);break;case\"prev\":[[s,i],u]=G(g.sxs.get(o),g.sys.get(o),n);break;case\"next\":[[s,i],u]=G(g.sxs.get(o),g.sys.get(o),n+1);break;case\"nearest\":[[s,i],u]=M(n,t,d,p,g.sxs.get(o),g.sys.get(o)),c=g._xs.get(o)[u],h=g._ys.get(o)[u];break;default:throw new Error(\"shouldn't have happened\")}r=e instanceof _.GlyphRenderer?e.view.convert_indices_from_subset([o])[0]:o;const f={index:r,x:v,y:w,sx:d,sy:p,data_x:c,data_y:h,segment_index:u,indices:l.multiline_indices,name:e.name};b.push([s,i,this._render_tooltips(a,r,f)])}else{const t=null===(n=g._x)||void 0===n?void 0:n[o],i=null===(s=g._y)||void 0===s?void 0:s[o];let r,c,h;if(\"snap_to_data\"==this.model.point_policy){let e=g.get_anchor_point(this.model.anchor,o,[d,p]);if(null==e&&(e=g.get_anchor_point(\"center\",o,[d,p]),null==e))continue;r=e.x,c=e.y}else[r,c]=[d,p];h=e instanceof _.GlyphRenderer?e.view.convert_indices_from_subset([o])[0]:o;const u={index:h,x:v,y:w,sx:d,sy:p,data_x:t,data_y:i,indices:l.indices,name:e.name};b.push([r,c,this._render_tooltips(a,h,u)])}if(0==b.length)o.clear();else{const{content:e}=o;(0,f.empty)(o.content);for(const[,,t]of b)null!=t&&e.appendChild(t);const[t,n]=b[b.length-1];o.setv({position:[t,n]},{check_eq:!1})}}_emit_callback(e){const{callback:t}=this.model;if(null!=t)for(const n of this.computed_renderers){if(!(n instanceof _.GlyphRenderer))continue;const s=this.plot_view.renderer_view(n);if(null==s)continue;const{x_scale:o,y_scale:i}=s.coordinates,r=o.invert(e.sx),l=i.invert(e.sy),a=n.data_source.inspected;t.execute(this.model,{geometry:Object.assign({x:r,y:l},e),renderer:n,index:a})}}_create_template(e){const t=(0,f.div)({style:{display:\"table\",borderSpacing:\"2px\"}});for(const[n]of e){const e=(0,f.div)({style:{display:\"table-row\"}});t.appendChild(e);const s=(0,f.div)({style:{display:\"table-cell\"},class:$.tooltip_row_label},0!=n.length?`${n}: `:\"\");e.appendChild(s);const o=(0,f.span)();o.dataset.value=\"\";const i=(0,f.span)({class:$.tooltip_color_block},\" \");i.dataset.swatch=\"\",(0,f.undisplay)(i);const r=(0,f.div)({style:{display:\"table-cell\"},class:$.tooltip_row_value},o,i);e.appendChild(r)}return t}_render_template(e,t,n,s,o){const i=e.cloneNode(!0),r=i.querySelectorAll(\"[data-value]\"),l=i.querySelectorAll(\"[data-swatch]\"),a=/\\$color(\\[.*\\])?:(\\w*)/,c=/\\$swatch:(\\w*)/;for(const[[,e],i]of(0,w.enumerate)(t)){const t=e.match(c),_=e.match(a);if(null!=t||null!=_){if(null!=t){const[,e]=t,o=n.get_column(e);if(null==o)r[i].textContent=`${e} unknown`;else{const e=(0,g.isNumber)(s)?o[s]:null;null!=e&&(l[i].style.backgroundColor=(0,v.color2css)(e),(0,f.display)(l[i]))}}if(null!=_){const[,e=\"\",t]=_,o=n.get_column(t);if(null==o){r[i].textContent=`${t} unknown`;continue}const a=e.indexOf(\"hex\")>=0,c=e.indexOf(\"swatch\")>=0,d=(0,g.isNumber)(s)?o[s]:null;if(null==d){r[i].textContent=\"(null)\";continue}r[i].textContent=a?(0,v.color2hex)(d):(0,v.color2css)(d),c&&(l[i].style.backgroundColor=(0,v.color2css)(d),(0,f.display)(l[i]))}}else{const t=(0,y.replace_placeholders)(e.replace(\"$~\",\"$data_\"),n,s,this.model.formatters,o);if((0,g.isString)(t))r[i].textContent=t;else for(const e of t)r[i].appendChild(e)}}return i}_render_tooltips(e,t,n){var s;const{tooltips:o}=this.model;if((0,g.isString)(o)){const s=(0,y.replace_placeholders)({html:o},e,t,this.model.formatters,n);return(0,f.div)(s)}if((0,g.isFunction)(o))return o(e,n);if(o instanceof R.Template)return this._template_view.update(e,t,n),this._template_view.el;if(null!=o){const i=null!==(s=this._template_el)&&void 0!==s?s:this._template_el=this._create_template(o);return this._render_template(i,o,e,t,n)}return null}}n.HoverToolView=z,z.__name__=\"HoverToolView\";class A extends l.InspectTool{constructor(e){super(e),this.tool_name=\"Hover\",this.icon=C.tool_icon_hover}}n.HoverTool=A,r=A,A.__name__=\"HoverTool\",r.prototype.default_view=z,r.define((({Any:e,Boolean:t,String:n,Array:s,Tuple:o,Dict:i,Or:r,Ref:l,Function:c,Auto:_,Nullable:d})=>({tooltips:[d(r(l(R.Template),n,s(o(n,n)),c())),[[\"index\",\"$index\"],[\"data (x, y)\",\"($x, $y)\"],[\"screen (x, y)\",\"($sx, $sy)\"]]],formatters:[i(r(l(a.CustomJSHover),y.FormatterType)),{}],renderers:[r(s(l(p.DataRenderer)),_),\"auto\"],names:[s(n),[]],mode:[k.HoverMode,\"mouse\"],muted_policy:[k.MutedPolicy,\"show\"],point_policy:[k.PointPolicy,\"snap_to_data\"],line_policy:[k.LinePolicy,\"nearest\"],show_arrow:[t,!0],anchor:[k.Anchor,\"center\"],attachment:[k.TooltipAttachment,\"horizontal\"],callback:[d(e)]}))),r.register_alias(\"hover\",(()=>new A))},\n", - " function _(e,t,s,n,a){n();const l=e(1);var i,_,o,r,c,d,p,u,m,w,f,h,x;const v=e(53),y=e(309),V=e(393);a(\"Styles\",V.Styles);const g=e(43),T=e(42),b=e(226),R=e(113),D=e(8),M=e(13),S=(0,l.__importStar)(e(242)),O=e(152);class C extends b.DOMView{}s.DOMNodeView=C,C.__name__=\"DOMNodeView\";class z extends v.Model{constructor(e){super(e)}}s.DOMNode=z,z.__name__=\"DOMNode\",z.__module__=\"bokeh.models.dom\";class P extends C{render(){super.render(),this.el.textContent=this.model.content}_createElement(){return document.createTextNode(\"\")}}s.TextView=P,P.__name__=\"TextView\";class A extends z{constructor(e){super(e)}}s.Text=A,i=A,A.__name__=\"Text\",i.prototype.default_view=P,i.define((({String:e})=>({content:[e,\"\"]})));class N extends C{}s.PlaceholderView=N,N.__name__=\"PlaceholderView\",N.tag_name=\"span\";class E extends z{constructor(e){super(e)}}s.Placeholder=E,_=E,E.__name__=\"Placeholder\",_.define((({})=>({})));class G extends N{update(e,t,s){this.el.textContent=t.toString()}}s.IndexView=G,G.__name__=\"IndexView\";class I extends E{constructor(e){super(e)}}s.Index=I,o=I,I.__name__=\"Index\",o.prototype.default_view=G,o.define((({})=>({})));class k extends N{update(e,t,s){const n=(0,O._get_column_value)(this.model.field,e,t),a=null==n?\"???\":`${n}`;this.el.textContent=a}}s.ValueRefView=k,k.__name__=\"ValueRefView\";class $ extends E{constructor(e){super(e)}}s.ValueRef=$,r=$,$.__name__=\"ValueRef\",r.prototype.default_view=k,r.define((({String:e})=>({field:[e]})));class B extends k{render(){super.render(),this.value_el=(0,g.span)(),this.swatch_el=(0,g.span)({class:S.tooltip_color_block},\" \"),this.el.appendChild(this.value_el),this.el.appendChild(this.swatch_el)}update(e,t,s){const n=(0,O._get_column_value)(this.model.field,e,t),a=null==n?\"???\":`${n}`;this.el.textContent=a}}s.ColorRefView=B,B.__name__=\"ColorRefView\";class L extends ${constructor(e){super(e)}}s.ColorRef=L,c=L,L.__name__=\"ColorRef\",c.prototype.default_view=B,c.define((({Boolean:e})=>({hex:[e,!0],swatch:[e,!0]})));class j extends C{constructor(){super(...arguments),this.child_views=new Map}async lazy_initialize(){await super.lazy_initialize();const e=this.model.children.filter((e=>e instanceof v.Model));await(0,R.build_views)(this.child_views,e,{parent:this})}render(){super.render();const{style:e}=this.model;if(null!=e)if(e instanceof V.Styles)for(const t of e){const e=t.get_value();if((0,D.isString)(e)){const s=t.attr.replace(/_/g,\"-\");this.el.style.hasOwnProperty(s)&&this.el.style.setProperty(s,e)}}else for(const[t,s]of(0,M.entries)(e)){const e=t.replace(/_/g,\"-\");this.el.style.hasOwnProperty(e)&&this.el.style.setProperty(e,s)}for(const e of this.model.children)if((0,D.isString)(e)){const t=document.createTextNode(e);this.el.appendChild(t)}else{this.child_views.get(e).renderTo(this.el)}}}s.DOMElementView=j,j.__name__=\"DOMElementView\";class q extends z{constructor(e){super(e)}}s.DOMElement=q,d=q,q.__name__=\"DOMElement\",d.define((({String:e,Array:t,Dict:s,Or:n,Nullable:a,Ref:l})=>({style:[a(n(l(V.Styles),s(e))),null],children:[t(n(e,l(z),l(y.LayoutDOM))),[]]})));class F extends T.View{}s.ActionView=F,F.__name__=\"ActionView\";class H extends v.Model{constructor(e){super(e)}}s.Action=H,p=H,H.__name__=\"Action\",H.__module__=\"bokeh.models.dom\",p.define((({})=>({})));class J extends j{constructor(){super(...arguments),this.action_views=new Map}async lazy_initialize(){await super.lazy_initialize(),await(0,R.build_views)(this.action_views,this.model.actions,{parent:this})}remove(){(0,R.remove_views)(this.action_views),super.remove()}update(e,t,s={}){!function n(a){for(const l of a.child_views.values())l instanceof N?l.update(e,t,s):l instanceof j&&n(l)}(this);for(const n of this.action_views.values())n.update(e,t,s)}}s.TemplateView=J,J.__name__=\"TemplateView\",J.tag_name=\"div\";class K extends q{}s.Template=K,u=K,K.__name__=\"Template\",u.prototype.default_view=J,u.define((({Array:e,Ref:t})=>({actions:[e(t(H)),[]]})));class Q extends j{}s.SpanView=Q,Q.__name__=\"SpanView\",Q.tag_name=\"span\";class U extends q{}s.Span=U,m=U,U.__name__=\"Span\",m.prototype.default_view=Q;class W extends j{}s.DivView=W,W.__name__=\"DivView\",W.tag_name=\"div\";class X extends q{}s.Div=X,w=X,X.__name__=\"Div\",w.prototype.default_view=W;class Y extends j{}s.TableView=Y,Y.__name__=\"TableView\",Y.tag_name=\"table\";class Z extends q{}s.Table=Z,f=Z,Z.__name__=\"Table\",f.prototype.default_view=Y;class ee extends j{}s.TableRowView=ee,ee.__name__=\"TableRowView\",ee.tag_name=\"tr\";class te extends q{}s.TableRow=te,h=te,te.__name__=\"TableRow\",h.prototype.default_view=ee;const se=e(41),ne=e(234);class ae extends F{update(e,t,s){for(const[e,s]of(0,ne.enumerate)(this.model.groups))e.visible=t==s}}s.ToggleGroupView=ae,ae.__name__=\"ToggleGroupView\";class le extends H{constructor(e){super(e)}}s.ToggleGroup=le,x=le,le.__name__=\"ToggleGroup\",x.prototype.default_view=ae,x.define((({Array:e,Ref:t})=>({groups:[e(t(se.RendererGroup)),[]]})))},\n", - " function _(l,n,u,_,e){var t;_();const o=l(53);class r extends o.Model{constructor(l){super(l)}}u.Styles=r,t=r,r.__name__=\"Styles\",r.__module__=\"bokeh.models.css\",t.define((({String:l,Nullable:n})=>({align_content:[n(l),null],align_items:[n(l),null],align_self:[n(l),null],alignment_baseline:[n(l),null],all:[n(l),null],animation:[n(l),null],animation_delay:[n(l),null],animation_direction:[n(l),null],animation_duration:[n(l),null],animation_fill_mode:[n(l),null],animation_iteration_count:[n(l),null],animation_name:[n(l),null],animation_play_state:[n(l),null],animation_timing_function:[n(l),null],backface_visibility:[n(l),null],background:[n(l),null],background_attachment:[n(l),null],background_clip:[n(l),null],background_color:[n(l),null],background_image:[n(l),null],background_origin:[n(l),null],background_position:[n(l),null],background_position_x:[n(l),null],background_position_y:[n(l),null],background_repeat:[n(l),null],background_size:[n(l),null],baseline_shift:[n(l),null],block_size:[n(l),null],border:[n(l),null],border_block_end:[n(l),null],border_block_end_color:[n(l),null],border_block_end_style:[n(l),null],border_block_end_width:[n(l),null],border_block_start:[n(l),null],border_block_start_color:[n(l),null],border_block_start_style:[n(l),null],border_block_start_width:[n(l),null],border_bottom:[n(l),null],border_bottom_color:[n(l),null],border_bottom_left_radius:[n(l),null],border_bottom_right_radius:[n(l),null],border_bottom_style:[n(l),null],border_bottom_width:[n(l),null],border_collapse:[n(l),null],border_color:[n(l),null],border_image:[n(l),null],border_image_outset:[n(l),null],border_image_repeat:[n(l),null],border_image_slice:[n(l),null],border_image_source:[n(l),null],border_image_width:[n(l),null],border_inline_end:[n(l),null],border_inline_end_color:[n(l),null],border_inline_end_style:[n(l),null],border_inline_end_width:[n(l),null],border_inline_start:[n(l),null],border_inline_start_color:[n(l),null],border_inline_start_style:[n(l),null],border_inline_start_width:[n(l),null],border_left:[n(l),null],border_left_color:[n(l),null],border_left_style:[n(l),null],border_left_width:[n(l),null],border_radius:[n(l),null],border_right:[n(l),null],border_right_color:[n(l),null],border_right_style:[n(l),null],border_right_width:[n(l),null],border_spacing:[n(l),null],border_style:[n(l),null],border_top:[n(l),null],border_top_color:[n(l),null],border_top_left_radius:[n(l),null],border_top_right_radius:[n(l),null],border_top_style:[n(l),null],border_top_width:[n(l),null],border_width:[n(l),null],bottom:[n(l),null],box_shadow:[n(l),null],box_sizing:[n(l),null],break_after:[n(l),null],break_before:[n(l),null],break_inside:[n(l),null],caption_side:[n(l),null],caret_color:[n(l),null],clear:[n(l),null],clip:[n(l),null],clip_path:[n(l),null],clip_rule:[n(l),null],color:[n(l),null],color_interpolation:[n(l),null],color_interpolation_filters:[n(l),null],column_count:[n(l),null],column_fill:[n(l),null],column_gap:[n(l),null],column_rule:[n(l),null],column_rule_color:[n(l),null],column_rule_style:[n(l),null],column_rule_width:[n(l),null],column_span:[n(l),null],column_width:[n(l),null],columns:[n(l),null],content:[n(l),null],counter_increment:[n(l),null],counter_reset:[n(l),null],css_float:[n(l),null],css_text:[n(l),null],cursor:[n(l),null],direction:[n(l),null],display:[n(l),null],dominant_baseline:[n(l),null],empty_cells:[n(l),null],fill:[n(l),null],fill_opacity:[n(l),null],fill_rule:[n(l),null],filter:[n(l),null],flex:[n(l),null],flex_basis:[n(l),null],flex_direction:[n(l),null],flex_flow:[n(l),null],flex_grow:[n(l),null],flex_shrink:[n(l),null],flex_wrap:[n(l),null],float:[n(l),null],flood_color:[n(l),null],flood_opacity:[n(l),null],font:[n(l),null],font_family:[n(l),null],font_feature_settings:[n(l),null],font_kerning:[n(l),null],font_size:[n(l),null],font_size_adjust:[n(l),null],font_stretch:[n(l),null],font_style:[n(l),null],font_synthesis:[n(l),null],font_variant:[n(l),null],font_variant_caps:[n(l),null],font_variant_east_asian:[n(l),null],font_variant_ligatures:[n(l),null],font_variant_numeric:[n(l),null],font_variant_position:[n(l),null],font_weight:[n(l),null],gap:[n(l),null],glyph_orientation_vertical:[n(l),null],grid:[n(l),null],grid_area:[n(l),null],grid_auto_columns:[n(l),null],grid_auto_flow:[n(l),null],grid_auto_rows:[n(l),null],grid_column:[n(l),null],grid_column_end:[n(l),null],grid_column_gap:[n(l),null],grid_column_start:[n(l),null],grid_gap:[n(l),null],grid_row:[n(l),null],grid_row_end:[n(l),null],grid_row_gap:[n(l),null],grid_row_start:[n(l),null],grid_template:[n(l),null],grid_template_areas:[n(l),null],grid_template_columns:[n(l),null],grid_template_rows:[n(l),null],height:[n(l),null],hyphens:[n(l),null],image_orientation:[n(l),null],image_rendering:[n(l),null],inline_size:[n(l),null],justify_content:[n(l),null],justify_items:[n(l),null],justify_self:[n(l),null],left:[n(l),null],letter_spacing:[n(l),null],lighting_color:[n(l),null],line_break:[n(l),null],line_height:[n(l),null],list_style:[n(l),null],list_style_image:[n(l),null],list_style_position:[n(l),null],list_style_type:[n(l),null],margin:[n(l),null],margin_block_end:[n(l),null],margin_block_start:[n(l),null],margin_bottom:[n(l),null],margin_inline_end:[n(l),null],margin_inline_start:[n(l),null],margin_left:[n(l),null],margin_right:[n(l),null],margin_top:[n(l),null],marker:[n(l),null],marker_end:[n(l),null],marker_mid:[n(l),null],marker_start:[n(l),null],mask:[n(l),null],mask_composite:[n(l),null],mask_image:[n(l),null],mask_position:[n(l),null],mask_repeat:[n(l),null],mask_size:[n(l),null],mask_type:[n(l),null],max_block_size:[n(l),null],max_height:[n(l),null],max_inline_size:[n(l),null],max_width:[n(l),null],min_block_size:[n(l),null],min_height:[n(l),null],min_inline_size:[n(l),null],min_width:[n(l),null],object_fit:[n(l),null],object_position:[n(l),null],opacity:[n(l),null],order:[n(l),null],orphans:[n(l),null],outline:[n(l),null],outline_color:[n(l),null],outline_offset:[n(l),null],outline_style:[n(l),null],outline_width:[n(l),null],overflow:[n(l),null],overflow_anchor:[n(l),null],overflow_wrap:[n(l),null],overflow_x:[n(l),null],overflow_y:[n(l),null],overscroll_behavior:[n(l),null],overscroll_behavior_block:[n(l),null],overscroll_behavior_inline:[n(l),null],overscroll_behavior_x:[n(l),null],overscroll_behavior_y:[n(l),null],padding:[n(l),null],padding_block_end:[n(l),null],padding_block_start:[n(l),null],padding_bottom:[n(l),null],padding_inline_end:[n(l),null],padding_inline_start:[n(l),null],padding_left:[n(l),null],padding_right:[n(l),null],padding_top:[n(l),null],page_break_after:[n(l),null],page_break_before:[n(l),null],page_break_inside:[n(l),null],paint_order:[n(l),null],perspective:[n(l),null],perspective_origin:[n(l),null],place_content:[n(l),null],place_items:[n(l),null],place_self:[n(l),null],pointer_events:[n(l),null],position:[n(l),null],quotes:[n(l),null],resize:[n(l),null],right:[n(l),null],rotate:[n(l),null],row_gap:[n(l),null],ruby_align:[n(l),null],ruby_position:[n(l),null],scale:[n(l),null],scroll_behavior:[n(l),null],shape_rendering:[n(l),null],stop_color:[n(l),null],stop_opacity:[n(l),null],stroke:[n(l),null],stroke_dasharray:[n(l),null],stroke_dashoffset:[n(l),null],stroke_linecap:[n(l),null],stroke_linejoin:[n(l),null],stroke_miterlimit:[n(l),null],stroke_opacity:[n(l),null],stroke_width:[n(l),null],tab_size:[n(l),null],table_layout:[n(l),null],text_align:[n(l),null],text_align_last:[n(l),null],text_anchor:[n(l),null],text_combine_upright:[n(l),null],text_decoration:[n(l),null],text_decoration_color:[n(l),null],text_decoration_line:[n(l),null],text_decoration_style:[n(l),null],text_emphasis:[n(l),null],text_emphasis_color:[n(l),null],text_emphasis_position:[n(l),null],text_emphasis_style:[n(l),null],text_indent:[n(l),null],text_justify:[n(l),null],text_orientation:[n(l),null],text_overflow:[n(l),null],text_rendering:[n(l),null],text_shadow:[n(l),null],text_transform:[n(l),null],text_underline_position:[n(l),null],top:[n(l),null],touch_action:[n(l),null],transform:[n(l),null],transform_box:[n(l),null],transform_origin:[n(l),null],transform_style:[n(l),null],transition:[n(l),null],transition_delay:[n(l),null],transition_duration:[n(l),null],transition_property:[n(l),null],transition_timing_function:[n(l),null],translate:[n(l),null],unicode_bidi:[n(l),null],user_select:[n(l),null],vertical_align:[n(l),null],visibility:[n(l),null],white_space:[n(l),null],widows:[n(l),null],width:[n(l),null],will_change:[n(l),null],word_break:[n(l),null],word_spacing:[n(l),null],word_wrap:[n(l),null],writing_mode:[n(l),null],z_index:[n(l),null]})))},\n", - " function _(t,o,e,n,s){var i;n();const l=t(15),c=t(53),r=t(224),a=t(232),u=t(234);class h extends c.Model{constructor(t){super(t)}get button_view(){return this.tools[0].button_view}get event_type(){return this.tools[0].event_type}get tooltip(){return this.tools[0].tooltip}get tool_name(){return this.tools[0].tool_name}get icon(){return this.tools[0].computed_icon}get computed_icon(){return this.icon}get toggleable(){const t=this.tools[0];return t instanceof a.InspectTool&&t.toggleable}initialize(){super.initialize(),this.do=new l.Signal0(this,\"do\")}connect_signals(){super.connect_signals(),this.connect(this.do,(()=>this.doit())),this.connect(this.properties.active.change,(()=>this.set_active()));for(const t of this.tools)this.connect(t.properties.active.change,(()=>{this.active=t.active}))}doit(){for(const t of this.tools)t.do.emit()}set_active(){for(const t of this.tools)t.active=this.active}get menu(){const{menu:t}=this.tools[0];if(null==t)return null;const o=[];for(const[e,n]of(0,u.enumerate)(t))if(null==e)o.push(null);else{const t=()=>{var t,o,e;for(const s of this.tools)null===(e=null===(o=null===(t=s.menu)||void 0===t?void 0:t[n])||void 0===o?void 0:o.handler)||void 0===e||e.call(o)};o.push(Object.assign(Object.assign({},e),{handler:t}))}return o}}e.ToolProxy=h,i=h,h.__name__=\"ToolProxy\",i.define((({Boolean:t,Array:o,Ref:e})=>({tools:[o(e(r.ButtonTool)),[]],active:[t,!1],disabled:[t,!1]})))},\n", - " function _(o,t,s,e,i){var n,r;e();const l=o(20),c=o(9),h=o(13),a=o(233),_=o(221),p=o(394),u=o(309),f=o(207);class y extends a.ToolbarBase{constructor(o){super(o)}initialize(){super.initialize(),this._merge_tools()}_merge_tools(){this._proxied_tools=[];const o={},t={},s={},e=[],i=[];for(const o of this.help)(0,c.includes)(i,o.redirect)||(e.push(o),i.push(o.redirect));this._proxied_tools.push(...e),this.help=e;for(const[o,t]of(0,h.entries)(this.gestures)){o in s||(s[o]={});for(const e of t.tools)e.type in s[o]||(s[o][e.type]=[]),s[o][e.type].push(e)}for(const t of this.inspectors)t.type in o||(o[t.type]=[]),o[t.type].push(t);for(const o of this.actions)o.type in t||(t[o.type]=[]),t[o.type].push(o);const n=(o,t=!1)=>{const s=new p.ToolProxy({tools:o,active:t});return this._proxied_tools.push(s),s};for(const o of(0,h.keys)(s)){const t=this.gestures[o];t.tools=[];for(const e of(0,h.keys)(s[o])){const i=s[o][e];if(i.length>0)if(\"multi\"==o)for(const o of i){const s=n([o]);t.tools.push(s),this.connect(s.properties.active.change,(()=>this._active_change(s)))}else{const o=n(i);t.tools.push(o),this.connect(o.properties.active.change,(()=>this._active_change(o)))}}}this.actions=[];for(const[o,s]of(0,h.entries)(t))if(\"CustomAction\"==o)for(const o of s)this.actions.push(n([o]));else s.length>0&&this.actions.push(n(s));this.inspectors=[];for(const t of(0,h.values)(o))t.length>0&&this.inspectors.push(n(t,!0));for(const[o,t]of(0,h.entries)(this.gestures))0!=t.tools.length&&(t.tools=(0,c.sort_by)(t.tools,(o=>o.default_order)),\"pinch\"!=o&&\"scroll\"!=o&&\"multi\"!=o&&(t.tools[0].active=!0))}}s.ProxyToolbar=y,n=y,y.__name__=\"ProxyToolbar\",n.define((({Array:o,Ref:t})=>({toolbars:[o(t(_.Toolbar)),[]]})));class d extends u.LayoutDOMView{initialize(){this.model.toolbar.toolbar_location=this.model.toolbar_location,super.initialize()}get child_models(){return[this.model.toolbar]}_update_layout(){this.layout=new f.ContentBox(this.child_views[0].el);const{toolbar:o}=this.model;o.horizontal?this.layout.set_sizing({width_policy:\"fit\",min_width:100,height_policy:\"fixed\"}):this.layout.set_sizing({width_policy:\"fixed\",height_policy:\"fit\",min_height:100})}after_layout(){super.after_layout();const o=this.child_views[0];o.layout.bbox=this.layout.bbox,o.render()}}s.ToolbarBoxView=d,d.__name__=\"ToolbarBoxView\";class b extends u.LayoutDOM{constructor(o){super(o)}}s.ToolbarBox=b,r=b,b.__name__=\"ToolbarBox\",r.prototype.default_view=d,r.define((({Ref:o})=>({toolbar:[o(a.ToolbarBase)],toolbar_location:[l.Location,\"right\"]})))},\n", - " function _(e,n,r,t,o){t();const s=e(1),u=e(53),c=(0,s.__importStar)(e(21)),a=e(8),l=e(13);r.resolve_defs=function(e,n){var r,t,o,s;function i(e){return null!=e.module?`${e.module}.${e.name}`:e.name}function f(e){if((0,a.isString)(e))switch(e){case\"Any\":return c.Any;case\"Unknown\":return c.Unknown;case\"Boolean\":return c.Boolean;case\"Number\":return c.Number;case\"Int\":return c.Int;case\"String\":return c.String;case\"Null\":return c.Null}else switch(e[0]){case\"Nullable\":{const[,n]=e;return c.Nullable(f(n))}case\"Or\":{const[,...n]=e;return c.Or(...n.map(f))}case\"Tuple\":{const[,n,...r]=e;return c.Tuple(f(n),...r.map(f))}case\"Array\":{const[,n]=e;return c.Array(f(n))}case\"Struct\":{const[,...n]=e,r=n.map((([e,n])=>[e,f(n)]));return c.Struct((0,l.to_object)(r))}case\"Dict\":{const[,n]=e;return c.Dict(f(n))}case\"Map\":{const[,n,r]=e;return c.Map(f(n),f(r))}case\"Enum\":{const[,...n]=e;return c.Enum(...n)}case\"Ref\":{const[,r]=e,t=n.get(i(r));if(null!=t)return c.Ref(t);throw new Error(`${i(r)} wasn't defined before referencing it`)}case\"AnyRef\":return c.AnyRef()}}for(const c of e){const e=(()=>{if(null==c.extends)return u.Model;{const e=n.get(i(c.extends));if(null!=e)return e;throw new Error(`base model ${i(c.extends)} of ${i(c)} is not defined`)}})(),a=((s=class extends e{}).__name__=c.name,s.__module__=c.module,s);for(const e of null!==(r=c.properties)&&void 0!==r?r:[]){const n=f(null!==(t=e.kind)&&void 0!==t?t:\"Unknown\");a.define({[e.name]:[n,e.default]})}for(const e of null!==(o=c.overrides)&&void 0!==o?o:[])a.override({[e.name]:e.default});n.register(a)}}},\n", - " function _(n,e,t,o,i){o();const d=n(5),c=n(226),s=n(113),a=n(43),l=n(398);t.index={},t.add_document_standalone=async function(n,e,o=[],i=!1){const u=new Map;async function f(i){let d;const f=n.roots().indexOf(i),r=o[f];null!=r?d=r:e.classList.contains(l.BOKEH_ROOT)?d=e:(d=(0,a.div)({class:l.BOKEH_ROOT}),e.appendChild(d));const w=await(0,s.build_view)(i,{parent:null});return w instanceof c.DOMView&&w.renderTo(d),u.set(i,w),t.index[i.id]=w,w}for(const e of n.roots())await f(e);return i&&(window.document.title=n.title()),n.on_change((n=>{n instanceof d.RootAddedEvent?f(n.model):n instanceof d.RootRemovedEvent?function(n){const e=u.get(n);null!=e&&(e.remove(),u.delete(n),delete t.index[n.id])}(n.model):i&&n instanceof d.TitleChangedEvent&&(window.document.title=n.title)})),[...u.values()]}},\n", - " function _(o,e,n,t,r){t();const l=o(43),d=o(44);function u(o){let e=document.getElementById(o);if(null==e)throw new Error(`Error rendering Bokeh model: could not find #${o} HTML tag`);if(!document.body.contains(e))throw new Error(`Error rendering Bokeh model: element #${o} must be under `);if(\"SCRIPT\"==e.tagName){const o=(0,l.div)({class:n.BOKEH_ROOT});(0,l.replaceWith)(e,o),e=o}return e}n.BOKEH_ROOT=d.root,n._resolve_element=function(o){const{elementid:e}=o;return null!=e?u(e):document.body},n._resolve_root_elements=function(o){const e=[];if(null!=o.root_ids&&null!=o.roots)for(const n of o.root_ids)e.push(u(o.roots[n]));return e}},\n", - " function _(n,o,t,s,e){s();const c=n(400),r=n(19),a=n(397);t._get_ws_url=function(n,o){let t,s=\"ws:\";return\"https:\"==window.location.protocol&&(s=\"wss:\"),null!=o?(t=document.createElement(\"a\"),t.href=o):t=window.location,null!=n?\"/\"==n&&(n=\"\"):n=t.pathname.replace(/\\/+$/,\"\"),`${s}//${t.host}${n}/ws`};const i={};t.add_document_from_session=async function(n,o,t,s=[],e=!1){const l=window.location.search.substr(1);let d;try{d=await function(n,o,t){const s=(0,c.parse_token)(o).session_id;n in i||(i[n]={});const e=i[n];return s in e||(e[s]=(0,c.pull_session)(n,o,t)),e[s]}(n,o,l)}catch(n){const t=(0,c.parse_token)(o).session_id;throw r.logger.error(`Failed to load Bokeh session ${t}: ${n}`),n}return(0,a.add_document_standalone)(d.document,t,s,e)}},\n", - " function _(e,s,n,t,o){t();const r=e(19),i=e(5),c=e(401),l=e(402),_=e(403);n.DEFAULT_SERVER_WEBSOCKET_URL=\"ws://localhost:5006/ws\",n.DEFAULT_TOKEN=\"eyJzZXNzaW9uX2lkIjogImRlZmF1bHQifQ\";let h=0;function a(e){let s=e.split(\".\")[0];const n=s.length%4;return 0!=n&&(s+=\"=\".repeat(4-n)),JSON.parse(atob(s.replace(/_/g,\"/\").replace(/-/g,\"+\")))}n.parse_token=a;class d{constructor(e=n.DEFAULT_SERVER_WEBSOCKET_URL,s=n.DEFAULT_TOKEN,t=null){this.url=e,this.token=s,this.args_string=t,this._number=h++,this.socket=null,this.session=null,this.closed_permanently=!1,this._current_handler=null,this._pending_replies=new Map,this._pending_messages=[],this._receiver=new l.Receiver,this.id=a(s).session_id.split(\".\")[0],r.logger.debug(`Creating websocket ${this._number} to '${this.url}' session '${this.id}'`)}async connect(){if(this.closed_permanently)throw new Error(\"Cannot connect() a closed ClientConnection\");if(null!=this.socket)throw new Error(\"Already connected\");this._current_handler=null,this._pending_replies.clear(),this._pending_messages=[];try{let e=`${this.url}`;return null!=this.args_string&&this.args_string.length>0&&(e+=`?${this.args_string}`),this.socket=new WebSocket(e,[\"bokeh\",this.token]),new Promise(((e,s)=>{this.socket.binaryType=\"arraybuffer\",this.socket.onopen=()=>this._on_open(e,s),this.socket.onmessage=e=>this._on_message(e),this.socket.onclose=e=>this._on_close(e,s),this.socket.onerror=()=>this._on_error(s)}))}catch(e){throw r.logger.error(`websocket creation failed to url: ${this.url}`),r.logger.error(` - ${e}`),e}}close(){this.closed_permanently||(r.logger.debug(`Permanently closing websocket connection ${this._number}`),this.closed_permanently=!0,null!=this.socket&&this.socket.close(1e3,`close method called on ClientConnection ${this._number}`),this.session._connection_closed())}_schedule_reconnect(e){setTimeout((()=>{this.closed_permanently||r.logger.info(`Websocket connection ${this._number} disconnected, will not attempt to reconnect`)}),e)}send(e){if(null==this.socket)throw new Error(`not connected so cannot send ${e}`);e.send(this.socket)}async send_with_reply(e){const s=await new Promise(((s,n)=>{this._pending_replies.set(e.msgid(),{resolve:s,reject:n}),this.send(e)}));if(\"ERROR\"===s.msgtype())throw new Error(`Error reply ${s.content.text}`);return s}async _pull_doc_json(){const e=c.Message.create(\"PULL-DOC-REQ\",{}),s=await this.send_with_reply(e);if(!(\"doc\"in s.content))throw new Error(\"No 'doc' field in PULL-DOC-REPLY\");return s.content.doc}async _repull_session_doc(e,s){var n;r.logger.debug(this.session?\"Repulling session\":\"Pulling session for first time\");try{const n=await this._pull_doc_json();if(null==this.session)if(this.closed_permanently)r.logger.debug(\"Got new document after connection was already closed\"),s(new Error(\"The connection has been closed\"));else{const s=i.Document.from_json(n),t=i.Document._compute_patch_since_json(n,s);if(t.events.length>0){r.logger.debug(`Sending ${t.events.length} changes from model construction back to server`);const e=c.Message.create(\"PATCH-DOC\",{},t);this.send(e)}this.session=new _.ClientSession(this,s,this.id);for(const e of this._pending_messages)this.session.handle(e);this._pending_messages=[],r.logger.debug(\"Created a new session from new pulled doc\"),e(this.session)}else this.session.document.replace_with_json(n),r.logger.debug(\"Updated existing session with new pulled doc\")}catch(e){null===(n=console.trace)||void 0===n||n.call(console,e),r.logger.error(`Failed to repull session ${e}`),s(e instanceof Error?e:`${e}`)}}_on_open(e,s){r.logger.info(`Websocket connection ${this._number} is now open`),this._current_handler=n=>{this._awaiting_ack_handler(n,e,s)}}_on_message(e){null==this._current_handler&&r.logger.error(\"Got a message with no current handler set\");try{this._receiver.consume(e.data)}catch(e){this._close_bad_protocol(`${e}`)}const s=this._receiver.message;if(null!=s){const e=s.problem();null!=e&&this._close_bad_protocol(e),this._current_handler(s)}}_on_close(e,s){r.logger.info(`Lost websocket ${this._number} connection, ${e.code} (${e.reason})`),this.socket=null,this._pending_replies.forEach((e=>e.reject(\"Disconnected\"))),this._pending_replies.clear(),this.closed_permanently||this._schedule_reconnect(2e3),s(new Error(`Lost websocket connection, ${e.code} (${e.reason})`))}_on_error(e){r.logger.debug(`Websocket error on socket ${this._number}`);const s=\"Could not open websocket\";r.logger.error(`Failed to connect to Bokeh server: ${s}`),e(new Error(s))}_close_bad_protocol(e){r.logger.error(`Closing connection: ${e}`),null!=this.socket&&this.socket.close(1002,e)}_awaiting_ack_handler(e,s,n){\"ACK\"===e.msgtype()?(this._current_handler=e=>this._steady_state_handler(e),this._repull_session_doc(s,n)):this._close_bad_protocol(\"First message was not an ACK\")}_steady_state_handler(e){const s=e.reqid(),n=this._pending_replies.get(s);n?(this._pending_replies.delete(s),n.resolve(e)):this.session?this.session.handle(e):\"PATCH-DOC\"!=e.msgtype()&&this._pending_messages.push(e)}}n.ClientConnection=d,d.__name__=\"ClientConnection\",n.pull_session=function(e,s,n){return new d(e,s,n).connect()}},\n", - " function _(e,s,t,r,n){r();const i=e(34);class a{constructor(e,s,t){this.header=e,this.metadata=s,this.content=t,this.buffers=new Map}static assemble(e,s,t){const r=JSON.parse(e),n=JSON.parse(s),i=JSON.parse(t);return new a(r,n,i)}assemble_buffer(e,s){const t=null!=this.header.num_buffers?this.header.num_buffers:0;if(t<=this.buffers.size)throw new Error(`too many buffers received, expecting ${t}`);const{id:r}=JSON.parse(e);this.buffers.set(r,s)}static create(e,s,t={}){const r=a.create_header(e);return new a(r,s,t)}static create_header(e){return{msgid:(0,i.uniqueId)(),msgtype:e}}complete(){return null!=this.header&&null!=this.metadata&&null!=this.content&&(null==this.header.num_buffers||this.buffers.size==this.header.num_buffers)}send(e){if((null!=this.header.num_buffers?this.header.num_buffers:0)>0)throw new Error(\"BokehJS only supports receiving buffers, not sending\");const s=JSON.stringify(this.header),t=JSON.stringify(this.metadata),r=JSON.stringify(this.content);e.send(s),e.send(t),e.send(r)}msgid(){return this.header.msgid}msgtype(){return this.header.msgtype}reqid(){return this.header.reqid}problem(){return\"msgid\"in this.header?\"msgtype\"in this.header?null:\"No msgtype in header\":\"No msgid in header\"}}t.Message=a,a.__name__=\"Message\"},\n", - " function _(e,t,s,_,r){_();const i=e(401),h=e(8);class a{constructor(){this.message=null,this._partial=null,this._fragments=[],this._buf_header=null,this._current_consumer=this._HEADER}consume(e){this._current_consumer(e)}_HEADER(e){this._assume_text(e),this.message=null,this._partial=null,this._fragments=[e],this._buf_header=null,this._current_consumer=this._METADATA}_METADATA(e){this._assume_text(e),this._fragments.push(e),this._current_consumer=this._CONTENT}_CONTENT(e){this._assume_text(e),this._fragments.push(e);const[t,s,_]=this._fragments.slice(0,3);this._partial=i.Message.assemble(t,s,_),this._check_complete()}_BUFFER_HEADER(e){this._assume_text(e),this._buf_header=e,this._current_consumer=this._BUFFER_PAYLOAD}_BUFFER_PAYLOAD(e){this._assume_binary(e),this._partial.assemble_buffer(this._buf_header,e),this._check_complete()}_assume_text(e){if(!(0,h.isString)(e))throw new Error(\"Expected text fragment but received binary fragment\")}_assume_binary(e){if(!(e instanceof ArrayBuffer))throw new Error(\"Expected binary fragment but received text fragment\")}_check_complete(){this._partial.complete()?(this.message=this._partial,this._current_consumer=this._HEADER):this._current_consumer=this._BUFFER_HEADER}}s.Receiver=a,a.__name__=\"Receiver\"},\n", - " function _(e,t,n,s,o){s();const c=e(5),i=e(401),_=e(19);class r{constructor(e,t,n){this._connection=e,this.document=t,this.id=n,this._document_listener=e=>{this._document_changed(e)},this.document.on_change(this._document_listener,!0)}handle(e){const t=e.msgtype();\"PATCH-DOC\"===t?this._handle_patch(e):\"OK\"===t?this._handle_ok(e):\"ERROR\"===t?this._handle_error(e):_.logger.debug(`Doing nothing with message ${e.msgtype()}`)}close(){this._connection.close()}_connection_closed(){this.document.remove_on_change(this._document_listener)}async request_server_info(){const e=i.Message.create(\"SERVER-INFO-REQ\",{});return(await this._connection.send_with_reply(e)).content}async force_roundtrip(){await this.request_server_info()}_document_changed(e){if(e.setter_id===this.id)return;const t=e instanceof c.DocumentEventBatch?e.events:[e],n=this.document.create_json_patch(t),s=i.Message.create(\"PATCH-DOC\",{},n);this._connection.send(s)}_handle_patch(e){this.document.apply_json_patch(e.content,e.buffers,this.id)}_handle_ok(e){_.logger.trace(`Unhandled OK reply to ${e.reqid()}`)}_handle_error(e){_.logger.error(`Unhandled ERROR reply to ${e.reqid()}: ${e.content.text}`)}}n.ClientSession=r,r.__name__=\"ClientSession\"},\n", - " function _(e,o,t,n,r){n();const s=e(1),l=e(5),i=e(402),a=e(19),c=e(43),g=e(13),f=e(397),u=e(398),m=(0,s.__importDefault)(e(44)),p=(0,s.__importDefault)(e(240)),d=(0,s.__importDefault)(e(405));function _(e,o){o.buffers.length>0?e.consume(o.buffers[0].buffer):e.consume(o.content.data);const t=e.message;null!=t&&this.apply_json_patch(t.content,t.buffers)}function b(e,o){if(\"undefined\"!=typeof Jupyter&&null!=Jupyter.notebook.kernel){a.logger.info(`Registering Jupyter comms for target ${e}`);const t=Jupyter.notebook.kernel.comm_manager;try{t.register_target(e,(t=>{a.logger.info(`Registering Jupyter comms for target ${e}`);const n=new i.Receiver;t.on_msg(_.bind(o,n))}))}catch(e){a.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(o.roots()[0].id in t.kernels){a.logger.info(`Registering JupyterLab comms for target ${e}`);const n=t.kernels[o.roots()[0].id];try{n.registerCommTarget(e,(t=>{a.logger.info(`Registering JupyterLab comms for target ${e}`);const n=new i.Receiver;t.onMsg=_.bind(o,n)}))}catch(e){a.logger.warn(`Jupyter comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else if(\"undefined\"!=typeof google&&null!=google.colab.kernel){a.logger.info(`Registering Google Colab comms for target ${e}`);const t=google.colab.kernel.comms;try{t.registerTarget(e,(async t=>{var n,r,l;a.logger.info(`Registering Google Colab comms for target ${e}`);const c=new i.Receiver;try{for(var g,f=(0,s.__asyncValues)(t.messages);!(g=await f.next()).done;){const e=g.value,t={data:e.data},n=[];for(const o of null!==(l=e.buffers)&&void 0!==l?l:[])n.push(new DataView(o));const r={content:t,buffers:n};_.bind(o)(c,r)}}catch(e){n={error:e}}finally{try{g&&!g.done&&(r=f.return)&&await r.call(f)}finally{if(n)throw n.error}}}))}catch(e){a.logger.warn(`Google Colab comms failed to register. push_notebook() will not function. (exception reported: ${e})`)}}else console.warn(\"Jupyter notebooks comms not available. push_notebook() will not function. If running JupyterLab ensure the latest @bokeh/jupyter_bokeh extension is installed. In an exported notebook this warning is expected.\")}c.stylesheet.append(m.default),c.stylesheet.append(p.default),c.stylesheet.append(d.default),t.kernels={},t.embed_items_notebook=function(e,o){if(1!=(0,g.size)(e))throw new Error(\"embed_items_notebook expects exactly one document in docs_json\");const t=l.Document.from_json((0,g.values)(e)[0]);for(const e of o){null!=e.notebook_comms_target&&b(e.notebook_comms_target,t);const o=(0,u._resolve_element)(e),n=(0,u._resolve_root_elements)(e);(0,f.add_document_standalone)(t,o,n)}}},\n", - " function _(t,o,r,e,d){e(),r.root=\"bk-root\",r.tooltip=\"bk-tooltip\",r.default=\".rendered_html .bk-root .bk-tooltip table,.rendered_html .bk-root .bk-tooltip tr,.rendered_html .bk-root .bk-tooltip th,.rendered_html .bk-root .bk-tooltip td{border:none;padding:1px;}\"},\n", - " function _(t,_,o,r,n){r();const a=t(1);(0,a.__exportStar)(t(401),o),(0,a.__exportStar)(t(402),o)},\n", - " function _(e,t,n,s,o){function l(){const e=document.getElementsByTagName(\"body\")[0],t=document.getElementsByClassName(\"bokeh-test-div\");1==t.length&&(e.removeChild(t[0]),delete t[0]);const n=document.createElement(\"div\");n.classList.add(\"bokeh-test-div\"),n.style.display=\"none\",e.insertBefore(n,e.firstChild)}s(),n.results={},n.init=function(){l()},n.record0=function(e,t){n.results[e]=t},n.record=function(e,t){n.results[e]=t,l()},n.count=function(e){null==n.results[e]&&(n.results[e]=0),n.results[e]+=1,l()}},\n", - " function _(e,t,o,n,l){n(),o.safely=function(e,t=!1){try{return e()}catch(e){if(function(e){const t=document.createElement(\"div\");t.style.backgroundColor=\"#f2dede\",t.style.border=\"1px solid #a94442\",t.style.borderRadius=\"4px\",t.style.display=\"inline-block\",t.style.fontFamily=\"sans-serif\",t.style.marginTop=\"5px\",t.style.minWidth=\"200px\",t.style.padding=\"5px 5px 5px 10px\",t.classList.add(\"bokeh-error-box-into-flames\");const o=document.createElement(\"span\");o.style.backgroundColor=\"#a94442\",o.style.borderRadius=\"0px 4px 0px 0px\",o.style.color=\"white\",o.style.cursor=\"pointer\",o.style.cssFloat=\"right\",o.style.fontSize=\"0.8em\",o.style.margin=\"-6px -6px 0px 0px\",o.style.padding=\"2px 5px 4px 5px\",o.title=\"close\",o.setAttribute(\"aria-label\",\"close\"),o.appendChild(document.createTextNode(\"x\")),o.addEventListener(\"click\",(()=>s.removeChild(t)));const n=document.createElement(\"h3\");n.style.color=\"#a94442\",n.style.margin=\"8px 0px 0px 0px\",n.style.padding=\"0px\",n.appendChild(document.createTextNode(\"Bokeh Error\"));const l=document.createElement(\"pre\");l.style.whiteSpace=\"unset\",l.style.overflowX=\"auto\",l.appendChild(document.createTextNode(e)),t.appendChild(o),t.appendChild(n),t.appendChild(l);const s=document.getElementsByTagName(\"body\")[0];s.insertBefore(t,s.firstChild)}(e instanceof Error&&e.stack?e.stack:`${e}`),t)return;throw e}}},\n", - " ], 0, {\"main\":0,\"tslib\":1,\"index\":2,\"version\":3,\"embed/index\":4,\"document/index\":5,\"document/document\":6,\"base\":7,\"core/util/types\":8,\"core/util/array\":9,\"core/util/math\":10,\"core/util/assert\":11,\"core/util/arrayable\":12,\"core/util/object\":13,\"core/has_props\":14,\"core/signaling\":15,\"core/util/defer\":16,\"core/util/refs\":17,\"core/properties\":18,\"core/logging\":19,\"core/enums\":20,\"core/kinds\":21,\"core/util/color\":22,\"core/util/svg_colors\":23,\"core/types\":24,\"core/util/bitset\":25,\"core/util/eq\":26,\"core/util/platform\":27,\"core/settings\":28,\"core/util/ndarray\":29,\"core/serializer\":30,\"core/util/serialization\":31,\"core/util/buffer\":32,\"core/uniforms\":33,\"core/util/string\":34,\"document/events\":35,\"core/util/pretty\":36,\"core/util/cloneable\":37,\"models/index\":38,\"models/annotations/index\":39,\"models/annotations/annotation\":40,\"models/renderers/renderer\":41,\"core/view\":42,\"core/dom\":43,\"styles/root.css\":44,\"core/visuals/index\":45,\"core/visuals/line\":46,\"core/visuals/visual\":47,\"core/property_mixins\":48,\"core/visuals/fill\":49,\"core/visuals/text\":50,\"core/visuals/hatch\":51,\"core/visuals/patterns\":52,\"model\":53,\"models/canvas/coordinates\":54,\"models/scales/scale\":55,\"models/transforms/transform\":56,\"models/ranges/range\":57,\"models/ranges/range1d\":58,\"models/scales/linear_scale\":59,\"models/scales/continuous_scale\":60,\"models/scales/log_scale\":61,\"models/scales/categorical_scale\":62,\"models/ranges/data_range1d\":63,\"models/ranges/data_range\":64,\"core/util/bbox\":65,\"models/util\":66,\"models/ranges/factor_range\":67,\"models/annotations/arrow\":68,\"models/annotations/data_annotation\":69,\"models/sources/columnar_data_source\":70,\"models/sources/data_source\":71,\"models/selections/selection\":72,\"core/selection_manager\":73,\"models/selections/interaction_policy\":74,\"models/sources/column_data_source\":75,\"core/util/typed_array\":76,\"core/util/set\":77,\"core/util/projections\":78,\"models/annotations/arrow_head\":112,\"core/build_views\":113,\"models/annotations/band\":114,\"models/annotations/upper_lower\":115,\"models/annotations/box_annotation\":116,\"models/annotations/color_bar\":117,\"models/annotations/title\":118,\"models/annotations/text_annotation\":119,\"core/graphics\":120,\"core/util/text\":121,\"core/util/affine\":122,\"core/layout/side_panel\":123,\"core/layout/types\":124,\"core/layout/layoutable\":125,\"models/canvas/cartesian_frame\":126,\"models/axes/index\":127,\"models/axes/axis\":128,\"models/renderers/guide_renderer\":129,\"models/tickers/ticker\":130,\"models/formatters/tick_formatter\":131,\"models/policies/labeling\":132,\"models/text/base_text\":133,\"models/text/utils\":134,\"models/text/math_text\":135,\"core/util/image\":136,\"models/text/providers\":137,\"core/util/modules\":138,\"models/text/plain_text\":139,\"models/axes/categorical_axis\":140,\"models/tickers/categorical_ticker\":141,\"models/formatters/categorical_tick_formatter\":142,\"models/axes/continuous_axis\":143,\"models/axes/datetime_axis\":144,\"models/axes/linear_axis\":145,\"models/formatters/basic_tick_formatter\":146,\"models/tickers/basic_ticker\":147,\"models/tickers/adaptive_ticker\":148,\"models/tickers/continuous_ticker\":149,\"models/formatters/datetime_tick_formatter\":150,\"core/util/templating\":152,\"models/tickers/datetime_ticker\":155,\"models/tickers/composite_ticker\":156,\"models/tickers/days_ticker\":157,\"models/tickers/single_interval_ticker\":158,\"models/tickers/util\":159,\"models/tickers/months_ticker\":160,\"models/tickers/years_ticker\":161,\"models/axes/log_axis\":162,\"models/formatters/log_tick_formatter\":163,\"models/tickers/log_ticker\":164,\"models/axes/mercator_axis\":165,\"models/formatters/mercator_tick_formatter\":166,\"models/tickers/mercator_ticker\":167,\"models/tickers/index\":168,\"models/tickers/fixed_ticker\":169,\"models/tickers/binned_ticker\":170,\"models/mappers/scanning_color_mapper\":171,\"models/mappers/continuous_color_mapper\":172,\"models/mappers/color_mapper\":173,\"models/mappers/mapper\":174,\"models/renderers/glyph_renderer\":175,\"models/renderers/data_renderer\":176,\"models/glyphs/line\":177,\"models/glyphs/xy_glyph\":178,\"models/glyphs/glyph\":179,\"core/util/ragged_array\":180,\"core/util/spatial\":181,\"models/glyphs/utils\":184,\"core/hittest\":185,\"models/glyphs/patch\":186,\"models/glyphs/harea\":187,\"models/glyphs/area\":188,\"models/glyphs/varea\":189,\"models/sources/cds_view\":190,\"models/filters/filter\":191,\"models/formatters/index\":192,\"models/formatters/func_tick_formatter\":193,\"models/formatters/numeral_tick_formatter\":194,\"models/formatters/printf_tick_formatter\":195,\"models/mappers/index\":196,\"models/mappers/categorical_color_mapper\":197,\"models/mappers/categorical_mapper\":198,\"models/mappers/categorical_marker_mapper\":199,\"models/mappers/categorical_pattern_mapper\":200,\"models/mappers/linear_color_mapper\":201,\"models/mappers/log_color_mapper\":202,\"models/mappers/eqhist_color_mapper\":203,\"models/scales/index\":204,\"models/scales/linear_interpolation_scale\":205,\"models/ranges/index\":206,\"core/layout/index\":207,\"core/layout/alignments\":208,\"core/layout/grid\":209,\"core/layout/html\":210,\"core/layout/border\":211,\"models/annotations/label\":212,\"models/annotations/label_set\":213,\"models/annotations/legend\":214,\"models/annotations/legend_item\":215,\"core/vectorization\":216,\"models/annotations/poly_annotation\":217,\"models/annotations/slope\":218,\"models/annotations/span\":219,\"models/annotations/toolbar_panel\":220,\"models/tools/toolbar\":221,\"models/tools/tool\":222,\"models/tools/gestures/gesture_tool\":223,\"models/tools/button_tool\":224,\"core/dom_view\":226,\"styles/toolbar.css\":227,\"styles/icons.css\":228,\"styles/menus.css\":229,\"core/util/menus\":230,\"models/tools/on_off_button\":231,\"models/tools/inspectors/inspect_tool\":232,\"models/tools/toolbar_base\":233,\"core/util/iterator\":234,\"core/util/canvas\":235,\"core/util/svg\":236,\"core/util/random\":237,\"models/tools/actions/action_tool\":238,\"models/tools/actions/help_tool\":239,\"styles/logo.css\":240,\"models/annotations/tooltip\":241,\"styles/tooltips.css\":242,\"models/annotations/whisker\":243,\"models/callbacks/index\":244,\"models/callbacks/customjs\":245,\"models/callbacks/callback\":246,\"models/callbacks/open_url\":247,\"models/canvas/index\":248,\"models/canvas/canvas\":249,\"core/ui_events\":250,\"core/bokeh_events\":251,\"core/util/wheel\":252,\"models/expressions/index\":253,\"models/expressions/expression\":254,\"models/expressions/customjs_expr\":255,\"models/expressions/stack\":256,\"models/expressions/cumsum\":257,\"models/expressions/minimum\":258,\"models/expressions/maximum\":259,\"models/expressions/coordinate_transform\":260,\"models/expressions/polar\":261,\"models/filters/index\":262,\"models/filters/boolean_filter\":263,\"models/filters/customjs_filter\":264,\"models/filters/group_filter\":265,\"models/filters/index_filter\":266,\"models/glyphs/index\":267,\"models/glyphs/annular_wedge\":268,\"models/glyphs/annulus\":269,\"models/glyphs/arc\":270,\"models/glyphs/bezier\":271,\"models/glyphs/circle\":272,\"models/glyphs/ellipse\":273,\"models/glyphs/ellipse_oval\":274,\"models/glyphs/center_rotatable\":275,\"models/glyphs/hbar\":276,\"models/glyphs/box\":277,\"models/glyphs/hex_tile\":278,\"models/glyphs/image\":279,\"models/glyphs/image_base\":280,\"models/glyphs/image_rgba\":281,\"models/glyphs/image_url\":282,\"models/glyphs/multi_line\":283,\"models/glyphs/multi_polygons\":284,\"models/glyphs/oval\":285,\"models/glyphs/patches\":286,\"models/glyphs/quad\":287,\"models/glyphs/quadratic\":288,\"models/glyphs/ray\":289,\"models/glyphs/rect\":290,\"models/glyphs/scatter\":291,\"models/glyphs/marker\":292,\"models/glyphs/defs\":293,\"models/glyphs/segment\":294,\"models/glyphs/spline\":295,\"core/util/interpolation\":296,\"models/glyphs/step\":297,\"models/glyphs/text\":298,\"models/glyphs/vbar\":299,\"models/glyphs/wedge\":300,\"models/graphs/index\":301,\"models/graphs/graph_hit_test_policy\":302,\"models/graphs/layout_provider\":303,\"models/graphs/static_layout_provider\":304,\"models/grids/index\":305,\"models/grids/grid\":306,\"models/layouts/index\":307,\"models/layouts/box\":308,\"models/layouts/layout_dom\":309,\"models/layouts/column\":310,\"models/layouts/grid_box\":311,\"models/layouts/html_box\":312,\"models/layouts/panel\":313,\"models/layouts/row\":314,\"models/layouts/spacer\":315,\"models/layouts/tabs\":316,\"styles/tabs.css\":317,\"styles/buttons.css\":318,\"models/layouts/widget_box\":319,\"models/text/index\":320,\"models/transforms/index\":321,\"models/transforms/customjs_transform\":322,\"models/transforms/dodge\":323,\"models/transforms/range_transform\":324,\"models/transforms/interpolator\":325,\"models/transforms/jitter\":326,\"models/transforms/linear_interpolator\":327,\"models/transforms/step_interpolator\":328,\"models/plots/index\":329,\"models/plots/gmap_plot\":330,\"models/plots/plot\":331,\"models/plots/plot_canvas\":332,\"core/util/throttle\":333,\"models/plots/range_manager\":334,\"models/plots/state_manager\":335,\"models/plots/gmap_plot_canvas\":336,\"models/policies/index\":337,\"models/renderers/index\":338,\"models/renderers/graph_renderer\":339,\"models/selections/index\":340,\"models/sources/index\":341,\"models/sources/server_sent_data_source\":342,\"models/sources/web_data_source\":343,\"models/sources/ajax_data_source\":344,\"models/sources/geojson_data_source\":345,\"models/tiles/index\":346,\"models/tiles/bbox_tile_source\":347,\"models/tiles/mercator_tile_source\":348,\"models/tiles/tile_source\":349,\"models/tiles/tile_utils\":350,\"models/tiles/quadkey_tile_source\":351,\"models/tiles/tile_renderer\":352,\"models/tiles/wmts_tile_source\":353,\"styles/tiles.css\":354,\"models/tiles/tms_tile_source\":355,\"models/textures/index\":356,\"models/textures/canvas_texture\":357,\"models/textures/texture\":358,\"models/textures/image_url_texture\":359,\"models/tools/index\":360,\"models/tools/actions/custom_action\":361,\"models/tools/actions/redo_tool\":362,\"models/tools/actions/reset_tool\":363,\"models/tools/actions/save_tool\":364,\"models/tools/actions/undo_tool\":365,\"models/tools/actions/zoom_in_tool\":366,\"models/tools/actions/zoom_base_tool\":367,\"core/util/zoom\":368,\"models/tools/actions/zoom_out_tool\":369,\"models/tools/edit/edit_tool\":370,\"models/tools/edit/box_edit_tool\":371,\"models/tools/edit/freehand_draw_tool\":372,\"models/tools/edit/point_draw_tool\":373,\"models/tools/edit/poly_draw_tool\":374,\"models/tools/edit/poly_tool\":375,\"models/tools/edit/poly_edit_tool\":376,\"models/tools/gestures/box_select_tool\":377,\"models/tools/gestures/select_tool\":378,\"models/tools/gestures/box_zoom_tool\":379,\"models/tools/gestures/lasso_select_tool\":380,\"models/tools/gestures/poly_select_tool\":381,\"models/tools/edit/line_edit_tool\":382,\"models/tools/edit/line_tool\":383,\"models/tools/gestures/pan_tool\":384,\"models/tools/gestures/range_tool\":385,\"models/tools/gestures/tap_tool\":386,\"models/tools/gestures/wheel_pan_tool\":387,\"models/tools/gestures/wheel_zoom_tool\":388,\"models/tools/inspectors/crosshair_tool\":389,\"models/tools/inspectors/customjs_hover\":390,\"models/tools/inspectors/hover_tool\":391,\"models/dom/index\":392,\"models/dom/styles\":393,\"models/tools/tool_proxy\":394,\"models/tools/toolbar_box\":395,\"document/defs\":396,\"embed/standalone\":397,\"embed/dom\":398,\"embed/server\":399,\"client/connection\":400,\"protocol/message\":401,\"protocol/receiver\":402,\"client/session\":403,\"embed/notebook\":404,\"styles/notebook.css\":405,\"protocol/index\":406,\"testing\":407,\"safely\":408}, {});});\n", - "\n", - " /* END bokeh.min.js */\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " /* BEGIN bokeh-gl.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2021, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " factory(root[\"Bokeh\"], \"2.4.2\");\n", - " })(this, function(Bokeh, version) {\n", - " let define;\n", - " return (function(modules, entry, aliases, externals) {\n", - " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", - " if (bokeh != null) {\n", - " return bokeh.register_plugin(modules, entry, aliases);\n", - " } else {\n", - " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", - " }\n", - " })\n", - " ({\n", - " 409: function _(n,c,f,i,o){i(),n(410)},\n", - " 410: function _(t,_,r,e,o){e();const g=t(1);\n", - " /*\n", - " Copyright notice: many of the awesome techniques and GLSL code contained in\n", - " this module are based on work by Nicolas Rougier as part of the Glumpy and\n", - " Vispy projects. The algorithms are published in\n", - " http://jcgt.org/published/0003/04/01/ and http://jcgt.org/published/0002/02/08/\n", - " \n", - " Other locations where we work with GL, or prepare for GL-rendering:\n", - " - canvas.ts\n", - " - plot.ts\n", - " - glyph.ts\n", - " - glyph_renderer.ts\n", - " */o(\"get_regl\",t(411).get_regl),(0,g.__exportStar)(t(421),r),(0,g.__exportStar)(t(425),r),(0,g.__exportStar)(t(426),r)},\n", - " 411: function _(t,i,e,_,a){_();const r=t(1),o=(0,r.__importDefault)(t(412)),n=t(413),s=(0,r.__importDefault)(t(415)),l=(0,r.__importDefault)(t(416)),p=(0,r.__importDefault)(t(417)),c=(0,r.__importDefault)(t(418)),h=(0,r.__importDefault)(t(419)),u=(0,r.__importDefault)(t(420));let f;e.get_regl=function(t){return null==f&&(f=new g(t)),f};class g{constructor(t){try{this._regl=(0,o.default)({gl:t,extensions:[\"ANGLE_instanced_arrays\",\"EXT_blend_minmax\"]}),this._regl_available=!0,this._line_geometry=this._regl.buffer({usage:\"static\",type:\"float\",data:[[-2,0],[-1,-1],[1,-1],[2,0],[1,1],[-1,1]]}),this._line_triangles=this._regl.elements({usage:\"static\",primitive:\"triangles\",data:[[0,1,5],[1,2,5],[5,2,4],[2,3,4]]})}catch(t){this._regl_available=!1}}buffer(t){return this._regl.buffer(t)}clear(t,i){this._viewport={x:0,y:0,width:t,height:i},this._regl.clear({color:[0,0,0,0]})}get has_webgl(){return this._regl_available}get scissor(){return this._scissor}set_scissor(t,i,e,_){this._scissor={x:t,y:i,width:e,height:_}}get viewport(){return this._viewport}dashed_line(){return null==this._dashed_line&&(this._dashed_line=function(t,i,e){const _={vert:`#define DASHED\\n\\n${s.default}`,frag:`#define DASHED\\n\\n${l.default}`,attributes:{a_position:{buffer:i,divisor:0},a_point_prev:(t,i)=>i.points.to_attribute_config(),a_point_start:(t,i)=>i.points.to_attribute_config(2*Float32Array.BYTES_PER_ELEMENT),a_point_end:(t,i)=>i.points.to_attribute_config(4*Float32Array.BYTES_PER_ELEMENT),a_point_next:(t,i)=>i.points.to_attribute_config(6*Float32Array.BYTES_PER_ELEMENT),a_length_so_far:(t,i)=>i.length_so_far.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_line_color:t.prop(\"line_color\"),u_linewidth:t.prop(\"linewidth\"),u_miter_limit:t.prop(\"miter_limit\"),u_line_join:t.prop(\"line_join\"),u_line_cap:t.prop(\"line_cap\"),u_dash_tex:t.prop(\"dash_tex\"),u_dash_tex_info:t.prop(\"dash_tex_info\"),u_dash_scale:t.prop(\"dash_scale\"),u_dash_offset:t.prop(\"dash_offset\")},elements:e,instances:t.prop(\"nsegments\"),blend:{enable:!0,equation:\"max\",func:{srcRGB:1,srcAlpha:1,dstRGB:1,dstAlpha:1}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(_)}(this._regl,this._line_geometry,this._line_triangles)),this._dashed_line}get_dash(t){return null==this._dash_cache&&(this._dash_cache=new n.DashCache(this._regl)),this._dash_cache.get(t)}marker(t){null==this._marker_map&&(this._marker_map=new Map);let i=this._marker_map.get(t);return null==i&&(i=function(t,i){const e={vert:p.default,frag:`#define USE_${i.toUpperCase()}\\n\\n${c.default}`,attributes:{a_position:{buffer:t.buffer([[-.5,-.5],[-.5,.5],[.5,.5],[.5,-.5]]),divisor:0},a_center:(t,i)=>i.center.to_attribute_config(),a_size:(t,i)=>i.size.to_attribute_config(),a_angle:(t,i)=>i.angle.to_attribute_config(),a_linewidth:(t,i)=>i.linewidth.to_attribute_config(),a_line_color:(t,i)=>i.line_color.to_attribute_config(),a_fill_color:(t,i)=>i.fill_color.to_attribute_config(),a_show:(t,i)=>i.show.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\")},count:4,primitive:\"triangle fan\",instances:t.prop(\"nmarkers\"),blend:{enable:!0,func:{srcRGB:\"one\",srcAlpha:\"one\",dstRGB:\"one minus src alpha\",dstAlpha:\"one minus src alpha\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(e)}(this._regl,t),this._marker_map.set(t,i)),i}rect_no_hatch(){return null==this._rect_no_hatch&&(this._rect_no_hatch=function(t){const i={vert:h.default,frag:u.default,attributes:{a_position:{buffer:t.buffer([[-.5,-.5],[-.5,.5],[.5,.5],[.5,-.5]]),divisor:0},a_center:(t,i)=>i.center.to_attribute_config(),a_width:(t,i)=>i.width.to_attribute_config(),a_height:(t,i)=>i.height.to_attribute_config(),a_angle:(t,i)=>i.angle.to_attribute_config(),a_linewidth:(t,i)=>i.linewidth.to_attribute_config(),a_line_color:(t,i)=>i.line_color.to_attribute_config(),a_fill_color:(t,i)=>i.fill_color.to_attribute_config(),a_line_join:(t,i)=>i.line_join.to_attribute_config(),a_show:(t,i)=>i.show.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\")},count:4,primitive:\"triangle fan\",instances:t.prop(\"nmarkers\"),blend:{enable:!0,func:{srcRGB:\"one\",srcAlpha:\"one\",dstRGB:\"one minus src alpha\",dstAlpha:\"one minus src alpha\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(i)}(this._regl)),this._rect_no_hatch}rect_hatch(){return null==this._rect_hatch&&(this._rect_hatch=function(t){const i={vert:`#define HATCH\\n\\n${h.default}`,frag:`#define HATCH\\n\\n${u.default}`,attributes:{a_position:{buffer:t.buffer([[-.5,-.5],[-.5,.5],[.5,.5],[.5,-.5]]),divisor:0},a_center:(t,i)=>i.center.to_attribute_config(),a_width:(t,i)=>i.width.to_attribute_config(),a_height:(t,i)=>i.height.to_attribute_config(),a_angle:(t,i)=>i.angle.to_attribute_config(),a_linewidth:(t,i)=>i.linewidth.to_attribute_config(),a_line_color:(t,i)=>i.line_color.to_attribute_config(),a_fill_color:(t,i)=>i.fill_color.to_attribute_config(),a_line_join:(t,i)=>i.line_join.to_attribute_config(),a_show:(t,i)=>i.show.to_attribute_config(),a_hatch_pattern:(t,i)=>i.hatch_pattern.to_attribute_config(),a_hatch_scale:(t,i)=>i.hatch_scale.to_attribute_config(),a_hatch_weight:(t,i)=>i.hatch_weight.to_attribute_config(),a_hatch_color:(t,i)=>i.hatch_color.to_attribute_config()},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\")},count:4,primitive:\"triangle fan\",instances:t.prop(\"nmarkers\"),blend:{enable:!0,func:{srcRGB:\"one\",srcAlpha:\"one\",dstRGB:\"one minus src alpha\",dstAlpha:\"one minus src alpha\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(i)}(this._regl)),this._rect_hatch}solid_line(){return null==this._solid_line&&(this._solid_line=function(t,i,e){const _={vert:s.default,frag:l.default,attributes:{a_position:{buffer:i,divisor:0},a_point_prev:(t,i)=>i.points.to_attribute_config(),a_point_start:(t,i)=>i.points.to_attribute_config(2*Float32Array.BYTES_PER_ELEMENT),a_point_end:(t,i)=>i.points.to_attribute_config(4*Float32Array.BYTES_PER_ELEMENT),a_point_next:(t,i)=>i.points.to_attribute_config(6*Float32Array.BYTES_PER_ELEMENT)},uniforms:{u_canvas_size:t.prop(\"canvas_size\"),u_pixel_ratio:t.prop(\"pixel_ratio\"),u_antialias:t.prop(\"antialias\"),u_line_color:t.prop(\"line_color\"),u_linewidth:t.prop(\"linewidth\"),u_miter_limit:t.prop(\"miter_limit\"),u_line_join:t.prop(\"line_join\"),u_line_cap:t.prop(\"line_cap\")},elements:e,instances:t.prop(\"nsegments\"),blend:{enable:!0,equation:\"max\",func:{srcRGB:1,srcAlpha:1,dstRGB:1,dstAlpha:1}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"scissor\")},viewport:t.prop(\"viewport\")};return t(_)}(this._regl,this._line_geometry,this._line_triangles)),this._solid_line}}e.ReglWrapper=g,g.__name__=\"ReglWrapper\"},\n", - " 412: function _(e,t,r,n,a){var i,o;i=this,o=function(){\"use strict\";var e=function(e){return e instanceof Uint8Array||e instanceof Uint16Array||e instanceof Uint32Array||e instanceof Int8Array||e instanceof Int16Array||e instanceof Int32Array||e instanceof Float32Array||e instanceof Float64Array||e instanceof Uint8ClampedArray},t=function(e,t){for(var r=Object.keys(t),n=0;n=0&&(0|e)===e||n(\"invalid parameter type, (\"+e+\")\"+i(t)+\". must be a nonnegative integer\")},oneOf:f,shaderError:function(e,t,n,i,o){if(!e.getShaderParameter(t,e.COMPILE_STATUS)){var f=e.getShaderInfoLog(t),u=i===e.FRAGMENT_SHADER?\"fragment\":\"vertex\";g(n,\"string\",u+\" shader source must be a string\",o);var c=h(n,o),l=function(e){var t=[];return e.split(\"\\n\").forEach((function(e){if(!(e.length<5)){var r=/^ERROR:\\s+(\\d+):(\\d+):\\s*(.*)$/.exec(e);r?t.push(new d(0|r[1],0|r[2],r[3].trim())):e.length>0&&t.push(new d(\"unknown\",0,e))}})),t}(f);!function(e,t){t.forEach((function(t){var r=e[t.file];if(r){var n=r.index[t.line];if(n)return n.errors.push(t),void(r.hasErrors=!0)}e.unknown.hasErrors=!0,e.unknown.lines[0].errors.push(t)}))}(c,l),Object.keys(c).forEach((function(e){var t=c[e];if(t.hasErrors){var n=[\"\"],a=[\"\"];i(\"file number \"+e+\": \"+t.name+\"\\n\",\"color:red;text-decoration:underline;font-weight:bold\"),t.lines.forEach((function(e){if(e.errors.length>0){i(s(e.number,4)+\"| \",\"background-color:yellow; font-weight:bold\"),i(e.line+r,\"color:red; background-color:yellow; font-weight:bold\");var t=0;e.errors.forEach((function(n){var a=n.message,o=/^\\s*'(.*)'\\s*:\\s*(.*)$/.exec(a);if(o){var f=o[1];a=o[2],\"assign\"===f&&(f=\"=\"),t=Math.max(e.line.indexOf(f,t),0)}else t=0;i(s(\"| \",6)),i(s(\"^^^\",t+3)+r,\"font-weight:bold\"),i(s(\"| \",6)),i(a+r,\"font-weight:bold\")})),i(s(\"| \",6)+r)}else i(s(e.number,4)+\"| \"),i(e.line+r,\"color:red\")})),\"undefined\"==typeof document||window.chrome?console.log(n.join(\"\")):(a[0]=n.join(\"%c\"),console.log.apply(console,a))}function i(e,t){n.push(e),a.push(t||\"\")}})),a.raise(\"Error compiling \"+u+\" shader, \"+c[0].name)}},linkError:function(e,t,n,i,o){if(!e.getProgramParameter(t,e.LINK_STATUS)){var f=e.getProgramInfoLog(t),u=h(n,o),s='Error linking program with vertex shader, \"'+h(i,o)[0].name+'\", and fragment shader \"'+u[0].name+'\"';\"undefined\"!=typeof document?console.log(\"%c\"+s+\"\\n%c\"+f,\"color:red;text-decoration:underline;font-weight:bold\",\"color:red\"):console.log(s+r+f),a.raise(s)}},callSite:p,saveCommandRef:b,saveDrawInfo:function(e,t,r,n){function a(e){return e?n.id(e):0}function i(e,t){Object.keys(t).forEach((function(t){e[n.id(t)]=!0}))}b(e),e._fragId=a(e.static.frag),e._vertId=a(e.static.vert);var o=e._uniformSet={};i(o,t.static),i(o,t.dynamic);var f=e._attributeSet={};i(f,r.static),i(f,r.dynamic),e._hasCount=\"count\"in e.static||\"count\"in e.dynamic||\"elements\"in e.static||\"elements\"in e.dynamic},framebufferFormat:function(e,t,r){e.texture?f(e.texture._texture.internalformat,t,\"unsupported texture format for attachment\"):f(e.renderbuffer._renderbuffer.format,r,\"unsupported renderbuffer format for attachment\")},guessCommand:m,texture2D:function(e,t,r){var n,i=t.width,o=t.height,f=t.channels;a(i>0&&i<=r.maxTextureSize&&o>0&&o<=r.maxTextureSize,\"invalid texture shape\"),e.wrapS===y&&e.wrapT===y||a(A(i)&&A(o),\"incompatible wrap mode for texture, both width and height must be power of 2\"),1===t.mipmask?1!==i&&1!==o&&a(9984!==e.minFilter&&9986!==e.minFilter&&9985!==e.minFilter&&9987!==e.minFilter,\"min filter requires mipmap\"):(a(A(i)&&A(o),\"texture must be a square power of 2 to support mipmapping\"),a(t.mipmask===(i<<1)-1,\"missing or incomplete mipmap data\")),5126===t.type&&(r.extensions.indexOf(\"oes_texture_float_linear\")<0&&a(9728===e.minFilter&&9728===e.magFilter,\"filter not supported, must enable oes_texture_float_linear\"),a(!e.genMipmaps,\"mipmap generation not supported with float textures\"));var u=t.images;for(n=0;n<16;++n)if(u[n]){var s=i>>n,c=o>>n;a(t.mipmask&1<0&&i<=n.maxTextureSize&&o>0&&o<=n.maxTextureSize,\"invalid texture shape\"),a(i===o,\"cube map must be square\"),a(t.wrapS===y&&t.wrapT===y,\"wrap mode not supported by cube map\");for(var u=0;u>l,p=o>>l;a(s.mipmask&1<1&&t===r&&('\"'===t||\"'\"===t))return['\"'+O(e.substr(1,e.length-2))+'\"'];var n=/\\[(false|true|null|\\d+|'[^']*'|\"[^\"]*\")\\]/.exec(e);if(n)return E(e.substr(0,n.index)).concat(E(n[1])).concat(E(e.substr(n.index+n[0].length)));var a=e.split(\".\");if(1===a.length)return['\"'+O(e)+'\"'];for(var i=[],o=0;o0,\"invalid pixel ratio\"))):_.raise(\"invalid arguments to regl\"),r&&(\"canvas\"===r.nodeName.toLowerCase()?a=r:n=r),!i){if(!a){_(\"undefined\"!=typeof document,\"must manually specify webgl context outside of DOM environments\");var h=function(e,r,n){var a,i=document.createElement(\"canvas\");function o(){var t=window.innerWidth,r=window.innerHeight;if(e!==document.body){var a=i.getBoundingClientRect();t=a.right-a.left,r=a.bottom-a.top}i.width=n*t,i.height=n*r}return t(i.style,{border:0,margin:0,padding:0,top:0,left:0,width:\"100%\",height:\"100%\"}),e.appendChild(i),e===document.body&&(i.style.position=\"absolute\",t(e.style,{margin:0,padding:0})),e!==document.body&&\"function\"==typeof ResizeObserver?(a=new ResizeObserver((function(){setTimeout(o)}))).observe(e):window.addEventListener(\"resize\",o,!1),o(),{canvas:i,onDestroy:function(){a?a.disconnect():window.removeEventListener(\"resize\",o),e.removeChild(i)}}}(n||document.body,0,l);if(!h)return null;a=h.canvas,p=h.onDestroy}void 0===u.premultipliedAlpha&&(u.premultipliedAlpha=!0),i=function(e,t){function r(r){try{return e.getContext(r,t)}catch(e){return null}}return r(\"webgl\")||r(\"experimental-webgl\")||r(\"webgl-experimental\")}(a,u)}return i?{gl:i,canvas:a,container:n,extensions:s,optionalExtensions:c,pixelRatio:l,profile:d,onDone:m,onDestroy:p}:(p(),m(\"webgl not supported, try upgrading your browser or graphics drivers http://get.webgl.org\"),null)}function V(e,t){for(var r=Array(e),n=0;n65535)<<4,t|=r=((e>>>=t)>255)<<3,t|=r=((e>>>=r)>15)<<2,(t|=r=((e>>>=r)>3)<<1)|(e>>>=r)>>1}function P(){var e=V(8,(function(){return[]}));function t(t){var r=function(e){for(var t=16;t<=1<<28;t*=16)if(e<=t)return t;return 0}(t),n=e[I(r)>>2];return n.length>0?n.pop():new ArrayBuffer(r)}function r(t){e[I(t.byteLength)>>2].push(t)}return{alloc:t,free:r,allocType:function(e,r){var n=null;switch(e){case 5120:n=new Int8Array(t(r),0,r);break;case 5121:n=new Uint8Array(t(r),0,r);break;case 5122:n=new Int16Array(t(2*r),0,r);break;case 5123:n=new Uint16Array(t(2*r),0,r);break;case 5124:n=new Int32Array(t(4*r),0,r);break;case 5125:n=new Uint32Array(t(4*r),0,r);break;case 5126:n=new Float32Array(t(4*r),0,r);break;default:return null}return n.length!==r?n.subarray(0,r):n},freeType:function(e){r(e.buffer)}}}var L=P();L.zero=P();var R=3553,M=6408,W=5126,U=36160;function G(t){return!!t&&\"object\"==typeof t&&Array.isArray(t.shape)&&Array.isArray(t.stride)&&\"number\"==typeof t.offset&&t.shape.length===t.stride.length&&(Array.isArray(t.data)||e(t.data))}var H=function(e){return Object.keys(e).map((function(t){return e[t]}))},N={shape:function(e){for(var t=[],r=e;r.length;r=r[0])t.push(r.length);return t},flatten:function(e,t,r,n){var a=1;if(t.length)for(var i=0;i>>31<<15,i=(n<<1>>>24)-127,o=n>>13&1023;if(i<-24)t[r]=a;else if(i<-14){var f=-14-i;t[r]=a+(o+1024>>f)}else t[r]=i>15?a+31744:a+(i+15<<10)+o}return t}function me(t){return Array.isArray(t)||e(t)}var pe=function(e){return!(e&e-1||!e)},he=3553,be=34067,ve=34069,ge=6408,ye=6406,xe=6407,we=6409,Ae=6410,_e=32855,ke=6402,Se=34041,Oe=35904,Ee=35906,Te=36193,De=33776,je=33777,Ce=33778,ze=33779,Fe=5121,Be=5123,Ve=5125,Ie=5126,Pe=33071,Le=9728,Re=9984,Me=9987,We=4352,Ue=33984,Ge=[Re,9986,9985,Me],He=[0,we,Ae,xe,ge],Ne={};function qe(e){return\"[object \"+e+\"]\"}Ne[6409]=Ne[6406]=Ne[6402]=1,Ne[34041]=Ne[6410]=2,Ne[6407]=Ne[35904]=3,Ne[6408]=Ne[35906]=4;var Qe=qe(\"HTMLCanvasElement\"),Ye=qe(\"OffscreenCanvas\"),Xe=qe(\"CanvasRenderingContext2D\"),$e=qe(\"ImageBitmap\"),Ke=qe(\"HTMLImageElement\"),Je=qe(\"HTMLVideoElement\"),Ze=Object.keys(Y).concat([Qe,Ye,Xe,$e,Ke,Je]),et=[];et[5121]=1,et[5126]=4,et[36193]=2,et[5123]=2,et[5125]=4;var tt=[];function rt(e){return Array.isArray(e)&&(0===e.length||\"number\"==typeof e[0])}function nt(e){return!!Array.isArray(e)&&!(0===e.length||!me(e[0]))}function at(e){return Object.prototype.toString.call(e)}function it(e){return at(e)===Qe}function ot(e){return at(e)===Ye}function ft(e){if(!e)return!1;var t=at(e);return Ze.indexOf(t)>=0||rt(e)||nt(e)||G(e)}function ut(e){return 0|Y[Object.prototype.toString.call(e)]}function st(e,t){return L.allocType(e.type===Te?Ie:e.type,t)}function ct(e,t){e.type===Te?(e.data=de(t),L.freeType(t)):e.data=t}function lt(e,t,r,n,a,i){var o;if(o=void 0!==tt[e]?tt[e]:Ne[e]*et[t],i&&(o*=6),a){for(var f=0,u=r;u>=1;)f+=o*u*u,u/=2;return f}return o*r*n}function dt(r,n,a,i,o,f,u){var s={\"don't care\":We,\"dont care\":We,nice:4354,fast:4353},c={repeat:10497,clamp:Pe,mirror:33648},l={nearest:Le,linear:9729},d=t({mipmap:Me,\"nearest mipmap nearest\":Re,\"linear mipmap nearest\":9985,\"nearest mipmap linear\":9986,\"linear mipmap linear\":Me},l),m={none:0,browser:37444},p={uint8:Fe,rgba4:32819,rgb565:33635,\"rgb5 a1\":32820},h={alpha:ye,luminance:we,\"luminance alpha\":Ae,rgb:xe,rgba:ge,rgba4:32854,\"rgb5 a1\":_e,rgb565:36194},b={};n.ext_srgb&&(h.srgb=Oe,h.srgba=Ee),n.oes_texture_float&&(p.float32=p.float=Ie),n.oes_texture_half_float&&(p.float16=p[\"half float\"]=Te),n.webgl_depth_texture&&(t(h,{depth:ke,\"depth stencil\":Se}),t(p,{uint16:Be,uint32:Ve,\"depth stencil\":34042})),n.webgl_compressed_texture_s3tc&&t(b,{\"rgb s3tc dxt1\":De,\"rgba s3tc dxt1\":je,\"rgba s3tc dxt3\":Ce,\"rgba s3tc dxt5\":ze}),n.webgl_compressed_texture_atc&&t(b,{\"rgb atc\":35986,\"rgba atc explicit alpha\":35987,\"rgba atc interpolated alpha\":34798}),n.webgl_compressed_texture_pvrtc&&t(b,{\"rgb pvrtc 4bppv1\":35840,\"rgb pvrtc 2bppv1\":35841,\"rgba pvrtc 4bppv1\":35842,\"rgba pvrtc 2bppv1\":35843}),n.webgl_compressed_texture_etc1&&(b[\"rgb etc1\"]=36196);var v=Array.prototype.slice.call(r.getParameter(34467));Object.keys(b).forEach((function(e){var t=b[e];v.indexOf(t)>=0&&(h[e]=t)}));var g=Object.keys(h);a.textureFormats=g;var y=[];Object.keys(h).forEach((function(e){var t=h[e];y[t]=e}));var x=[];Object.keys(p).forEach((function(e){var t=p[e];x[t]=e}));var w=[];Object.keys(l).forEach((function(e){w[l[e]]=e}));var A=[];Object.keys(d).forEach((function(e){var t=d[e];A[t]=e}));var k=[];Object.keys(c).forEach((function(e){k[c[e]]=e}));var S=g.reduce((function(e,t){var r=h[t];return r===we||r===ye||r===we||r===Ae||r===ke||r===Se||n.ext_srgb&&(r===Oe||r===Ee)?e[r]=r:r===_e||t.indexOf(\"rgba\")>=0?e[r]=ge:e[r]=xe,e}),{});function O(){this.internalformat=ge,this.format=ge,this.type=Fe,this.compressed=!1,this.premultiplyAlpha=!1,this.flipY=!1,this.unpackAlignment=1,this.colorSpace=37444,this.width=0,this.height=0,this.channels=0}function E(e,t){e.internalformat=t.internalformat,e.format=t.format,e.type=t.type,e.compressed=t.compressed,e.premultiplyAlpha=t.premultiplyAlpha,e.flipY=t.flipY,e.unpackAlignment=t.unpackAlignment,e.colorSpace=t.colorSpace,e.width=t.width,e.height=t.height,e.channels=t.channels}function T(e,t){if(\"object\"==typeof t&&t){if(\"premultiplyAlpha\"in t&&(_.type(t.premultiplyAlpha,\"boolean\",\"invalid premultiplyAlpha\"),e.premultiplyAlpha=t.premultiplyAlpha),\"flipY\"in t&&(_.type(t.flipY,\"boolean\",\"invalid texture flip\"),e.flipY=t.flipY),\"alignment\"in t&&(_.oneOf(t.alignment,[1,2,4,8],\"invalid texture unpack alignment\"),e.unpackAlignment=t.alignment),\"colorSpace\"in t&&(_.parameter(t.colorSpace,m,\"invalid colorSpace\"),e.colorSpace=m[t.colorSpace]),\"type\"in t){var r=t.type;_(n.oes_texture_float||!(\"float\"===r||\"float32\"===r),\"you must enable the OES_texture_float extension in order to use floating point textures.\"),_(n.oes_texture_half_float||!(\"half float\"===r||\"float16\"===r),\"you must enable the OES_texture_half_float extension in order to use 16-bit floating point textures.\"),_(n.webgl_depth_texture||!(\"uint16\"===r||\"uint32\"===r||\"depth stencil\"===r),\"you must enable the WEBGL_depth_texture extension in order to use depth/stencil textures.\"),_.parameter(r,p,\"invalid texture type\"),e.type=p[r]}var i=e.width,o=e.height,f=e.channels,u=!1;\"shape\"in t?(_(Array.isArray(t.shape)&&t.shape.length>=2,\"shape must be an array\"),i=t.shape[0],o=t.shape[1],3===t.shape.length&&(f=t.shape[2],_(f>0&&f<=4,\"invalid number of channels\"),u=!0),_(i>=0&&i<=a.maxTextureSize,\"invalid width\"),_(o>=0&&o<=a.maxTextureSize,\"invalid height\")):(\"radius\"in t&&(i=o=t.radius,_(i>=0&&i<=a.maxTextureSize,\"invalid radius\")),\"width\"in t&&(i=t.width,_(i>=0&&i<=a.maxTextureSize,\"invalid width\")),\"height\"in t&&(o=t.height,_(o>=0&&o<=a.maxTextureSize,\"invalid height\")),\"channels\"in t&&(f=t.channels,_(f>0&&f<=4,\"invalid number of channels\"),u=!0)),e.width=0|i,e.height=0|o,e.channels=0|f;var s=!1;if(\"format\"in t){var c=t.format;_(n.webgl_depth_texture||!(\"depth\"===c||\"depth stencil\"===c),\"you must enable the WEBGL_depth_texture extension in order to use depth/stencil textures.\"),_.parameter(c,h,\"invalid texture format\");var l=e.internalformat=h[c];e.format=S[l],c in p&&(\"type\"in t||(e.type=p[c])),c in b&&(e.compressed=!0),s=!0}!u&&s?e.channels=Ne[e.format]:u&&!s?e.channels!==He[e.format]&&(e.format=e.internalformat=He[e.channels]):s&&u&&_(e.channels===Ne[e.format],\"number of channels inconsistent with specified format\")}}function D(e){r.pixelStorei(37440,e.flipY),r.pixelStorei(37441,e.premultiplyAlpha),r.pixelStorei(37443,e.colorSpace),r.pixelStorei(3317,e.unpackAlignment)}function j(){O.call(this),this.xOffset=0,this.yOffset=0,this.data=null,this.needsFree=!1,this.element=null,this.needsCopy=!1}function C(t,r){var n=null;if(ft(r)?n=r:r&&(_.type(r,\"object\",\"invalid pixel data type\"),T(t,r),\"x\"in r&&(t.xOffset=0|r.x),\"y\"in r&&(t.yOffset=0|r.y),ft(r.data)&&(n=r.data)),_(!t.compressed||n instanceof Uint8Array,\"compressed texture data must be stored in a uint8array\"),r.copy){_(!n,\"can not specify copy and data field for the same texture\");var i=o.viewportWidth,f=o.viewportHeight;t.width=t.width||i-t.xOffset,t.height=t.height||f-t.yOffset,t.needsCopy=!0,_(t.xOffset>=0&&t.xOffset=0&&t.yOffset0&&t.width<=i&&t.height>0&&t.height<=f,\"copy texture read out of bounds\")}else if(n){if(e(n))t.channels=t.channels||4,t.data=n,\"type\"in r||t.type!==Fe||(t.type=ut(n));else if(rt(n))t.channels=t.channels||4,function(e,t){var r=t.length;switch(e.type){case Fe:case Be:case Ve:case Ie:var n=L.allocType(e.type,r);n.set(t),e.data=n;break;case Te:e.data=de(t);break;default:_.raise(\"unsupported texture type, must specify a typed array\")}}(t,n),t.alignment=1,t.needsFree=!0;else if(G(n)){var u=n.data;Array.isArray(u)||t.type!==Fe||(t.type=ut(u));var s,c,l,d,m,p,h=n.shape,b=n.stride;3===h.length?(l=h[2],p=b[2]):(_(2===h.length,\"invalid ndarray pixel data, must be 2 or 3D\"),l=1,p=1),s=h[0],c=h[1],d=b[0],m=b[1],t.alignment=1,t.width=s,t.height=c,t.channels=l,t.format=t.internalformat=He[l],t.needsFree=!0,function(e,t,r,n,a,i){for(var o=e.width,f=e.height,u=e.channels,s=st(e,o*f*u),c=0,l=0;l=0,\"oes_texture_float extension not enabled\"):t.type===Te&&_(a.extensions.indexOf(\"oes_texture_half_float\")>=0,\"oes_texture_half_float extension not enabled\")}function z(e,t,n){var a=e.element,o=e.data,f=e.internalformat,u=e.format,s=e.type,c=e.width,l=e.height;D(e),a?r.texImage2D(t,n,u,u,s,a):e.compressed?r.compressedTexImage2D(t,n,f,c,l,0,o):e.needsCopy?(i(),r.copyTexImage2D(t,n,u,e.xOffset,e.yOffset,c,l,0)):r.texImage2D(t,n,u,c,l,0,u,s,o||null)}function F(e,t,n,a,o){var f=e.element,u=e.data,s=e.internalformat,c=e.format,l=e.type,d=e.width,m=e.height;D(e),f?r.texSubImage2D(t,o,n,a,c,l,f):e.compressed?r.compressedTexSubImage2D(t,o,n,a,s,d,m,u):e.needsCopy?(i(),r.copyTexSubImage2D(t,o,n,a,e.xOffset,e.yOffset,d,m)):r.texSubImage2D(t,o,n,a,d,m,c,l,u)}var B=[];function V(){return B.pop()||new j}function I(e){e.needsFree&&L.freeType(e.data),j.call(e),B.push(e)}function P(){O.call(this),this.genMipmaps=!1,this.mipmapHint=We,this.mipmask=0,this.images=Array(16)}function R(e,t,r){var n=e.images[0]=V();e.mipmask=1,n.width=e.width=t,n.height=e.height=r,n.channels=e.channels=4}function M(e,t){var r=null;if(ft(t))E(r=e.images[0]=V(),e),C(r,t),e.mipmask=1;else if(T(e,t),Array.isArray(t.mipmap))for(var n=t.mipmap,a=0;a>=a,r.height>>=a,C(r,n[a]),e.mipmask|=1<=0&&!(\"faces\"in t)&&(e.genMipmaps=!0)}if(\"mag\"in t){var n=t.mag;_.parameter(n,l),e.magFilter=l[n]}var i=e.wrapS,o=e.wrapT;if(\"wrap\"in t){var f=t.wrap;\"string\"==typeof f?(_.parameter(f,c),i=o=c[f]):Array.isArray(f)&&(_.parameter(f[0],c),_.parameter(f[1],c),i=c[f[0]],o=c[f[1]])}else{if(\"wrapS\"in t){var u=t.wrapS;_.parameter(u,c),i=c[u]}if(\"wrapT\"in t){var m=t.wrapT;_.parameter(m,c),o=c[m]}}if(e.wrapS=i,e.wrapT=o,\"anisotropic\"in t){var p=t.anisotropic;_(\"number\"==typeof p&&p>=1&&p<=a.maxAnisotropic,\"aniso samples must be between 1 and \"),e.anisotropic=t.anisotropic}if(\"mipmap\"in t){var h=!1;switch(typeof t.mipmap){case\"string\":_.parameter(t.mipmap,s,\"invalid mipmap hint\"),e.mipmapHint=s[t.mipmap],e.genMipmaps=!0,h=!0;break;case\"boolean\":h=e.genMipmaps=t.mipmap;break;case\"object\":_(Array.isArray(t.mipmap),\"invalid mipmap type\"),e.genMipmaps=!1,h=!0;break;default:_.raise(\"invalid mipmap type\")}h&&!(\"min\"in t)&&(e.minFilter=Re)}}function $(e,t){r.texParameteri(t,10241,e.minFilter),r.texParameteri(t,10240,e.magFilter),r.texParameteri(t,10242,e.wrapS),r.texParameteri(t,10243,e.wrapT),n.ext_texture_filter_anisotropic&&r.texParameteri(t,34046,e.anisotropic),e.genMipmaps&&(r.hint(33170,e.mipmapHint),r.generateMipmap(t))}var K=0,J={},Z=a.maxTextureUnits,ee=Array(Z).map((function(){return null}));function te(e){O.call(this),this.mipmask=0,this.internalformat=ge,this.id=K++,this.refCount=1,this.target=e,this.texture=r.createTexture(),this.unit=-1,this.bindCount=0,this.texInfo=new Y,u.profile&&(this.stats={size:0})}function re(e){r.activeTexture(Ue),r.bindTexture(e.target,e.texture)}function ne(){var e=ee[0];e?r.bindTexture(e.target,e.texture):r.bindTexture(he,null)}function ae(e){var t=e.texture;_(t,\"must not double destroy texture\");var n=e.unit,a=e.target;n>=0&&(r.activeTexture(Ue+n),r.bindTexture(a,null),ee[n]=null),r.deleteTexture(t),e.texture=null,e.params=null,e.pixels=null,e.refCount=0,delete J[e.id],f.textureCount--}return t(te.prototype,{bind:function(){var e=this;e.bindCount+=1;var t=e.unit;if(t<0){for(var n=0;n0)continue;a.unit=-1}ee[n]=e,t=n;break}t>=Z&&_.raise(\"insufficient number of texture units\"),u.profile&&f.maxTextureUnits>u)-o,s.height=s.height||(n.height>>u)-f,_(n.type===s.type&&n.format===s.format&&n.internalformat===s.internalformat,\"incompatible format for texture.subimage\"),_(o>=0&&f>=0&&o+s.width<=n.width&&f+s.height<=n.height,\"texture.subimage write out of bounds\"),_(n.mipmask&1<>f;++f){var s=a>>f,c=o>>f;if(!s||!c)break;r.texImage2D(he,f,n.format,s,c,0,n.format,n.type,null)}return ne(),u.profile&&(n.stats.size=lt(n.internalformat,n.type,a,o,!1,!1)),i},i._reglType=\"texture2d\",i._texture=n,u.profile&&(i.stats=n.stats),i.destroy=function(){n.decRef()},i},createCube:function(e,t,n,i,o,s){var c=new te(be);J[c.id]=c,f.cubeCount++;var l=new Array(6);function d(e,t,r,n,i,o){var f,s=c.texInfo;for(Y.call(s),f=0;f<6;++f)l[f]=q();if(\"number\"!=typeof e&&e)if(\"object\"==typeof e)if(t)M(l[0],e),M(l[1],t),M(l[2],r),M(l[3],n),M(l[4],i),M(l[5],o);else if(X(s,e),T(c,e),\"faces\"in e){var m=e.faces;for(_(Array.isArray(m)&&6===m.length,\"cube faces must be a length 6 array\"),f=0;f<6;++f)_(\"object\"==typeof m[f]&&!!m[f],\"invalid input for cube map face\"),E(l[f],c),M(l[f],m[f])}else for(f=0;f<6;++f)M(l[f],e);else _.raise(\"invalid arguments to cube map\");else{var p=0|e||1;for(f=0;f<6;++f)R(l[f],p,p)}for(E(c,l[0]),_.optional((function(){a.npotTextureCube||_(pe(c.width)&&pe(c.height),\"your browser does not support non power or two texture dimensions\")})),s.genMipmaps?c.mipmask=(l[0].width<<1)-1:c.mipmask=l[0].mipmask,_.textureCube(c,s,l,a),c.internalformat=l[0].internalformat,d.width=l[0].width,d.height=l[0].height,re(c),f=0;f<6;++f)W(l[f],ve+f);for($(s,be),ne(),u.profile&&(c.stats.size=lt(c.internalformat,c.type,d.width,d.height,s.genMipmaps,!0)),d.format=y[c.internalformat],d.type=x[c.type],d.mag=w[s.magFilter],d.min=A[s.minFilter],d.wrapS=k[s.wrapS],d.wrapT=k[s.wrapT],f=0;f<6;++f)Q(l[f]);return d}return d(e,t,n,i,o,s),d.subimage=function(e,t,r,n,a){_(!!t,\"must specify image data\"),_(\"number\"==typeof e&&e===(0|e)&&e>=0&&e<6,\"invalid face\");var i=0|r,o=0|n,f=0|a,u=V();return E(u,c),u.width=0,u.height=0,C(u,t),u.width=u.width||(c.width>>f)-i,u.height=u.height||(c.height>>f)-o,_(c.type===u.type&&c.format===u.format&&c.internalformat===u.internalformat,\"incompatible format for texture.subimage\"),_(i>=0&&o>=0&&i+u.width<=c.width&&o+u.height<=c.height,\"texture.subimage write out of bounds\"),_(c.mipmask&1<>a;++a)r.texImage2D(ve+n,a,c.format,t>>a,t>>a,0,c.format,c.type,null);return ne(),u.profile&&(c.stats.size=lt(c.internalformat,c.type,d.width,d.height,!1,!0)),d}},d._reglType=\"textureCube\",d._texture=c,u.profile&&(d.stats=c.stats),d.destroy=function(){c.decRef()},d},clear:function(){for(var e=0;e>t,e.height>>t,0,e.internalformat,e.type,null);else for(var n=0;n<6;++n)r.texImage2D(ve+n,t,e.internalformat,e.width>>t,e.height>>t,0,e.internalformat,e.type,null);$(e.texInfo,e.target)}))},refresh:function(){for(var e=0;e=0&&c=0&&l0&&d+c<=a.framebufferWidth,\"invalid width for read pixels\"),_(m>0&&m+l<=a.framebufferHeight,\"invalid height for read pixels\"),n();var h=d*m*4;return p||(s===Dt?p=new Uint8Array(h):s===jt&&(p=p||new Float32Array(h))),_.isTypedArray(p,\"data buffer for regl.read() must be a typedarray\"),_(p.byteLength>=h,\"data buffer for regl.read() too small\"),t.pixelStorei(3333,4),t.readPixels(c,l,d,m,6408,s,p),p}return function(e){return e&&\"framebuffer\"in e?function(e){var t;return r.setFBO({framebuffer:e.framebuffer},(function(){t=u(e)})),t}(e):u(e)}}function zt(e){return Array.prototype.slice.call(e)}function Ft(e){return zt(e).join(\"\")}var Bt=\"xyzw\".split(\"\"),Vt=\"dither\",It=\"blend.enable\",Pt=\"blend.color\",Lt=\"blend.equation\",Rt=\"blend.func\",Mt=\"depth.enable\",Wt=\"depth.func\",Ut=\"depth.range\",Gt=\"depth.mask\",Ht=\"colorMask\",Nt=\"cull.enable\",qt=\"cull.face\",Qt=\"frontFace\",Yt=\"lineWidth\",Xt=\"polygonOffset.enable\",$t=\"polygonOffset.offset\",Kt=\"sample.alpha\",Jt=\"sample.enable\",Zt=\"sample.coverage\",er=\"stencil.enable\",tr=\"stencil.mask\",rr=\"stencil.func\",nr=\"stencil.opFront\",ar=\"stencil.opBack\",ir=\"scissor.enable\",or=\"scissor.box\",fr=\"viewport\",ur=\"profile\",sr=\"framebuffer\",cr=\"vert\",lr=\"frag\",dr=\"elements\",mr=\"primitive\",pr=\"count\",hr=\"offset\",br=\"instances\",vr=\"vao\",gr=\"Width\",yr=\"Height\",xr=sr+gr,wr=sr+yr,Ar=\"drawingBufferWidth\",_r=\"drawingBufferHeight\",kr=[Rt,Lt,rr,nr,ar,Zt,fr,or,$t],Sr=34962,Or=34963,Er=5126,Tr=35664,Dr=35665,jr=35666,Cr=5124,zr=35667,Fr=35668,Br=35669,Vr=35670,Ir=35671,Pr=35672,Lr=35673,Rr=35674,Mr=35675,Wr=35676,Ur=35678,Gr=35680,Hr=1028,Nr=1029,qr=2305,Qr=7680,Yr={0:0,1:1,zero:0,one:1,\"src color\":768,\"one minus src color\":769,\"src alpha\":770,\"one minus src alpha\":771,\"dst color\":774,\"one minus dst color\":775,\"dst alpha\":772,\"one minus dst alpha\":773,\"constant color\":32769,\"one minus constant color\":32770,\"constant alpha\":32771,\"one minus constant alpha\":32772,\"src alpha saturate\":776},Xr=[\"constant color, constant alpha\",\"one minus constant color, constant alpha\",\"constant color, one minus constant alpha\",\"one minus constant color, one minus constant alpha\",\"constant alpha, constant color\",\"constant alpha, one minus constant color\",\"one minus constant alpha, constant color\",\"one minus constant alpha, one minus constant color\"],$r={never:512,less:513,\"<\":513,equal:514,\"=\":514,\"==\":514,\"===\":514,lequal:515,\"<=\":515,greater:516,\">\":516,notequal:517,\"!=\":517,\"!==\":517,gequal:518,\">=\":518,always:519},Kr={0:0,zero:0,keep:7680,replace:7681,increment:7682,decrement:7683,\"increment wrap\":34055,\"decrement wrap\":34056,invert:5386},Jr={frag:35632,vert:35633},Zr={cw:2304,ccw:qr};function en(t){return Array.isArray(t)||e(t)||G(t)}function tn(e){return e.sort((function(e,t){return e===fr?-1:t===fr?1:e=1,n>=2,t)}if(4===r){var a=e.data;return new rn(a.thisDep,a.contextDep,a.propDep,t)}if(5===r)return new rn(!1,!1,!1,t);if(6===r){for(var i=!1,o=!1,f=!1,u=0;u=1&&(o=!0),c>=2&&(f=!0)}else 4===s.type&&(i=i||s.data.thisDep,o=o||s.data.contextDep,f=f||s.data.propDep)}return new rn(i,o,f,t)}return new rn(3===r,2===r,1===r,t)}var fn=new rn(!1,!1,!1,(function(){}));function un(e,r,n,a,i,o,f,u,s,c,l,d,m,p,h){var b=c.Record,v={add:32774,subtract:32778,\"reverse subtract\":32779};n.ext_blend_minmax&&(v.min=32775,v.max=32776);var g=n.angle_instanced_arrays,y=n.webgl_draw_buffers,x=n.oes_vertex_array_object,w={dirty:!0,profile:h.profile},A={},k=[],S={},O={};function E(e){return e.replace(\".\",\"_\")}function T(e,t,r){var n=E(e);k.push(e),A[n]=w[n]=!!r,S[n]=t}function j(e,t,r){var n=E(e);k.push(e),Array.isArray(r)?(w[n]=r.slice(),A[n]=r.slice()):w[n]=A[n]=r,O[n]=t}T(Vt,3024),T(It,3042),j(Pt,\"blendColor\",[0,0,0,0]),j(Lt,\"blendEquationSeparate\",[32774,32774]),j(Rt,\"blendFuncSeparate\",[1,0,1,0]),T(Mt,2929,!0),j(Wt,\"depthFunc\",513),j(Ut,\"depthRange\",[0,1]),j(Gt,\"depthMask\",!0),j(Ht,Ht,[!0,!0,!0,!0]),T(Nt,2884),j(qt,\"cullFace\",Nr),j(Qt,Qt,qr),j(Yt,Yt,1),T(Xt,32823),j($t,\"polygonOffset\",[0,0]),T(Kt,32926),T(Jt,32928),j(Zt,\"sampleCoverage\",[1,!1]),T(er,2960),j(tr,\"stencilMask\",-1),j(rr,\"stencilFunc\",[519,0,-1]),j(nr,\"stencilOpSeparate\",[Hr,Qr,Qr,Qr]),j(ar,\"stencilOpSeparate\",[Nr,Qr,Qr,Qr]),T(ir,3089),j(or,\"scissor\",[0,0,e.drawingBufferWidth,e.drawingBufferHeight]),j(fr,fr,[0,0,e.drawingBufferWidth,e.drawingBufferHeight]);var C={gl:e,context:m,strings:r,next:A,current:w,draw:d,elements:o,buffer:i,shader:l,attributes:c.state,vao:c,uniforms:s,framebuffer:u,extensions:n,timer:p,isBufferArgs:en},z={primTypes:ie,compareFuncs:$r,blendFuncs:Yr,blendEquations:v,stencilOps:Kr,glTypes:X,orientationType:Zr};_.optional((function(){C.isArrayLike=me})),y&&(z.backBuffer=[Nr],z.drawBuffer=V(a.maxDrawbuffers,(function(e){return 0===e?[0]:V(e,(function(e){return 36064+e}))})));var F=0;function B(){var e=function(){var e=0,r=[],n=[];function a(){var r=[],n=[];return t((function(){r.push.apply(r,zt(arguments))}),{def:function(){var t=\"v\"+e++;return n.push(t),arguments.length>0&&(r.push(t,\"=\"),r.push.apply(r,zt(arguments)),r.push(\";\")),t},toString:function(){return Ft([n.length>0?\"var \"+n.join(\",\")+\";\":\"\",Ft(r)])}})}function i(){var e=a(),r=a(),n=e.toString,i=r.toString;function o(t,n){r(t,n,\"=\",e.def(t,n),\";\")}return t((function(){e.apply(e,zt(arguments))}),{def:e.def,entry:e,exit:r,save:o,set:function(t,r,n){o(t,r),e(t,r,\"=\",n,\";\")},toString:function(){return n()+i()}})}var o=a(),f={};return{global:o,link:function(t){for(var a=0;a=0,'unknown parameter \"'+t+'\"',d.commandStr)}))}t(m),t(p)}));var h=function(e,t){var r=e.static;if(\"string\"==typeof r[lr]&&\"string\"==typeof r[cr]){if(Object.keys(t.dynamic).length>0)return null;var n=t.static,a=Object.keys(n);if(a.length>0&&\"number\"==typeof n[a[0]]){for(var i=[],o=0;o=0,\"invalid \"+e,r.commandStr)):u=!1,\"height\"in i?(f=0|i.height,_.command(f>=0,\"invalid \"+e,r.commandStr)):u=!1,new rn(!u&&t&&t.thisDep,!u&&t&&t.contextDep,!u&&t&&t.propDep,(function(e,t){var r=e.shared.context,n=o;\"width\"in i||(n=t.def(r,\".\",xr,\"-\",s));var a=f;return\"height\"in i||(a=t.def(r,\".\",wr,\"-\",c)),[s,c,n,a]}))}if(e in a){var l=a[e],d=on(l,(function(t,r){var n=t.invoke(r,l);_.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e)}));var a=t.shared.context,i=r.def(n,\".x|0\"),o=r.def(n,\".y|0\"),f=r.def('\"width\" in ',n,\"?\",n,\".width|0:\",\"(\",a,\".\",xr,\"-\",i,\")\"),u=r.def('\"height\" in ',n,\"?\",n,\".height|0:\",\"(\",a,\".\",wr,\"-\",o,\")\");return _.optional((function(){t.assert(r,f+\">=0&&\"+u+\">=0\",\"invalid \"+e)})),[i,o,f,u]}));return t&&(d.thisDep=d.thisDep||t.thisDep,d.contextDep=d.contextDep||t.contextDep,d.propDep=d.propDep||t.propDep),d}return t?new rn(t.thisDep,t.contextDep,t.propDep,(function(e,t){var r=e.shared.context;return[0,0,t.def(r,\".\",xr),t.def(r,\".\",wr)]})):null}var o=i(fr);if(o){var f=o;o=new rn(o.thisDep,o.contextDep,o.propDep,(function(e,t){var r=f.append(e,t),n=e.shared.context;return t.set(n,\".viewportWidth\",r[2]),t.set(n,\".viewportHeight\",r[3]),r}))}return{viewport:o,scissor_box:i(or)}}(e,y,d),w=function(e,t){var r=e.static,n=e.dynamic,a={},i=!1,f=function(){if(vr in r){var e=r[vr];return null!==e&&null===c.getVAO(e)&&(e=c.createVAO(e)),i=!0,a.vao=e,an((function(t){var r=c.getVAO(e);return r?t.link(r):\"null\"}))}if(vr in n){i=!0;var t=n[vr];return on(t,(function(e,r){var n=e.invoke(r,t);return r.def(e.shared.vao+\".getVAO(\"+n+\")\")}))}return null}(),u=!1,s=function(){if(dr in r){var e=r[dr];if(a.elements=e,en(e)){var s=a.elements=o.create(e,!0);e=o.getElements(s),u=!0}else e&&(e=o.getElements(e),u=!0,_.command(e,\"invalid elements\",t.commandStr));var c=an((function(t,r){if(e){var n=t.link(e);return t.ELEMENTS=n,n}return t.ELEMENTS=null,null}));return c.value=e,c}if(dr in n){u=!0;var l=n[dr];return on(l,(function(e,t){var r=e.shared,n=r.isBufferArgs,a=r.elements,i=e.invoke(t,l),o=t.def(\"null\"),f=t.def(n,\"(\",i,\")\"),u=e.cond(f).then(o,\"=\",a,\".createStream(\",i,\");\").else(o,\"=\",a,\".getElements(\",i,\");\");return _.optional((function(){e.assert(u.else,\"!\"+i+\"||\"+o,\"invalid elements\")})),t.entry(u),t.exit(e.cond(f).then(a,\".destroyStream(\",o,\");\")),e.ELEMENTS=o,o}))}return i?new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.elements+\".getElements(\"+e.shared.vao+\".currentVAO.elements):null\")})):null}();function l(e,o){if(e in r){var s=0|r[e];return o?a.offset=s:a.instances=s,_.command(!o||s>=0,\"invalid \"+e,t.commandStr),an((function(e,t){return o&&(e.OFFSET=s),s}))}if(e in n){var c=n[e];return on(c,(function(t,r){var n=t.invoke(r,c);return o&&(t.OFFSET=n,_.optional((function(){t.assert(r,n+\">=0\",\"invalid \"+e)}))),n}))}if(o){if(u)return an((function(e,t){return e.OFFSET=0,0}));if(i)return new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.vao+\".currentVAO.offset:0\")}))}else if(i)return new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.vao+\".currentVAO.instances:-1\")}));return null}var d=l(hr,!0),m=function(){if(mr in r){var e=r[mr];return a.primitive=e,_.commandParameter(e,ie,\"invalid primitve\",t.commandStr),an((function(t,r){return ie[e]}))}if(mr in n){var o=n[mr];return on(o,(function(e,t){var r=e.constants.primTypes,n=e.invoke(t,o);return _.optional((function(){e.assert(t,n+\" in \"+r,\"invalid primitive, must be one of \"+Object.keys(ie))})),t.def(r,\"[\",n,\"]\")}))}return u?nn(s)?s.value?an((function(e,t){return t.def(e.ELEMENTS,\".primType\")})):an((function(){return 4})):new rn(s.thisDep,s.contextDep,s.propDep,(function(e,t){var r=e.ELEMENTS;return t.def(r,\"?\",r,\".primType:\",4)})):i?new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao+\".currentVAO?\"+e.shared.vao+\".currentVAO.primitive:4\")})):null}(),p=function(){if(pr in r){var e=0|r[pr];return a.count=e,_.command(\"number\"==typeof e&&e>=0,\"invalid vertex count\",t.commandStr),an((function(){return e}))}if(pr in n){var o=n[pr];return on(o,(function(e,t){var r=e.invoke(t,o);return _.optional((function(){e.assert(t,\"typeof \"+r+'===\"number\"&&'+r+\">=0&&\"+r+\"===(\"+r+\"|0)\",\"invalid vertex count\")})),r}))}if(u){if(nn(s)){if(s)return d?new rn(d.thisDep,d.contextDep,d.propDep,(function(e,t){var r=t.def(e.ELEMENTS,\".vertCount-\",e.OFFSET);return _.optional((function(){e.assert(t,r+\">=0\",\"invalid vertex offset/element buffer too small\")})),r})):an((function(e,t){return t.def(e.ELEMENTS,\".vertCount\")}));var c=an((function(){return-1}));return _.optional((function(){c.MISSING=!0})),c}var l=new rn(s.thisDep||d.thisDep,s.contextDep||d.contextDep,s.propDep||d.propDep,(function(e,t){var r=e.ELEMENTS;return e.OFFSET?t.def(r,\"?\",r,\".vertCount-\",e.OFFSET,\":-1\"):t.def(r,\"?\",r,\".vertCount:-1\")}));return _.optional((function(){l.DYNAMIC=!0})),l}if(i){var m=new rn(f.thisDep,f.contextDep,f.propDep,(function(e,t){return t.def(e.shared.vao,\".currentVAO?\",e.shared.vao,\".currentVAO.count:-1\")}));return m}return null}(),h=l(br,!1);return{elements:s,primitive:m,count:p,instances:h,offset:d,vao:f,vaoActive:i,elementsActive:u,static:a}}(e,d),A=function(e,t){var r=e.static,n=e.dynamic,i={};return k.forEach((function(e){var o=E(e);function f(t,a){if(e in r){var f=t(r[e]);i[o]=an((function(){return f}))}else if(e in n){var u=n[e];i[o]=on(u,(function(e,t){return a(e,t,e.invoke(t,u))}))}}switch(e){case Nt:case It:case Vt:case er:case Mt:case ir:case Xt:case Kt:case Jt:case Gt:return f((function(r){return _.commandType(r,\"boolean\",e,t.commandStr),r}),(function(t,r,n){return _.optional((function(){t.assert(r,\"typeof \"+n+'===\"boolean\"',\"invalid flag \"+e,t.commandStr)})),n}));case Wt:return f((function(r){return _.commandParameter(r,$r,\"invalid \"+e,t.commandStr),$r[r]}),(function(t,r,n){var a=t.constants.compareFuncs;return _.optional((function(){t.assert(r,n+\" in \"+a,\"invalid \"+e+\", must be one of \"+Object.keys($r))})),r.def(a,\"[\",n,\"]\")}));case Ut:return f((function(e){return _.command(me(e)&&2===e.length&&\"number\"==typeof e[0]&&\"number\"==typeof e[1]&&e[0]<=e[1],\"depth range is 2d array\",t.commandStr),e}),(function(e,t,r){return _.optional((function(){e.assert(t,e.shared.isArrayLike+\"(\"+r+\")&&\"+r+\".length===2&&typeof \"+r+'[0]===\"number\"&&typeof '+r+'[1]===\"number\"&&'+r+\"[0]<=\"+r+\"[1]\",\"depth range must be a 2d array\")})),[t.def(\"+\",r,\"[0]\"),t.def(\"+\",r,\"[1]\")]}));case Rt:return f((function(e){_.commandType(e,\"object\",\"blend.func\",t.commandStr);var r=\"srcRGB\"in e?e.srcRGB:e.src,n=\"srcAlpha\"in e?e.srcAlpha:e.src,a=\"dstRGB\"in e?e.dstRGB:e.dst,i=\"dstAlpha\"in e?e.dstAlpha:e.dst;return _.commandParameter(r,Yr,o+\".srcRGB\",t.commandStr),_.commandParameter(n,Yr,o+\".srcAlpha\",t.commandStr),_.commandParameter(a,Yr,o+\".dstRGB\",t.commandStr),_.commandParameter(i,Yr,o+\".dstAlpha\",t.commandStr),_.command(-1===Xr.indexOf(r+\", \"+a),\"unallowed blending combination (srcRGB, dstRGB) = (\"+r+\", \"+a+\")\",t.commandStr),[Yr[r],Yr[a],Yr[n],Yr[i]]}),(function(t,r,n){var a=t.constants.blendFuncs;function i(i,o){var f=r.def('\"',i,o,'\" in ',n,\"?\",n,\".\",i,o,\":\",n,\".\",i);return _.optional((function(){t.assert(r,f+\" in \"+a,\"invalid \"+e+\".\"+i+o+\", must be one of \"+Object.keys(Yr))})),f}_.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid blend func, must be an object\")}));var o=i(\"src\",\"RGB\"),f=i(\"dst\",\"RGB\");_.optional((function(){var e=t.constants.invalidBlendCombinations;t.assert(r,e+\".indexOf(\"+o+'+\", \"+'+f+\") === -1 \",\"unallowed blending combination for (srcRGB, dstRGB)\")}));var u=r.def(a,\"[\",o,\"]\"),s=r.def(a,\"[\",i(\"src\",\"Alpha\"),\"]\");return[u,r.def(a,\"[\",f,\"]\"),s,r.def(a,\"[\",i(\"dst\",\"Alpha\"),\"]\")]}));case Lt:return f((function(r){return\"string\"==typeof r?(_.commandParameter(r,v,\"invalid \"+e,t.commandStr),[v[r],v[r]]):\"object\"==typeof r?(_.commandParameter(r.rgb,v,e+\".rgb\",t.commandStr),_.commandParameter(r.alpha,v,e+\".alpha\",t.commandStr),[v[r.rgb],v[r.alpha]]):void _.commandRaise(\"invalid blend.equation\",t.commandStr)}),(function(t,r,n){var a=t.constants.blendEquations,i=r.def(),o=r.def(),f=t.cond(\"typeof \",n,'===\"string\"');return _.optional((function(){function r(e,r,n){t.assert(e,n+\" in \"+a,\"invalid \"+r+\", must be one of \"+Object.keys(v))}r(f.then,e,n),t.assert(f.else,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e),r(f.else,e+\".rgb\",n+\".rgb\"),r(f.else,e+\".alpha\",n+\".alpha\")})),f.then(i,\"=\",o,\"=\",a,\"[\",n,\"];\"),f.else(i,\"=\",a,\"[\",n,\".rgb];\",o,\"=\",a,\"[\",n,\".alpha];\"),r(f),[i,o]}));case Pt:return f((function(e){return _.command(me(e)&&4===e.length,\"blend.color must be a 4d array\",t.commandStr),V(4,(function(t){return+e[t]}))}),(function(e,t,r){return _.optional((function(){e.assert(t,e.shared.isArrayLike+\"(\"+r+\")&&\"+r+\".length===4\",\"blend.color must be a 4d array\")})),V(4,(function(e){return t.def(\"+\",r,\"[\",e,\"]\")}))}));case tr:return f((function(e){return _.commandType(e,\"number\",o,t.commandStr),0|e}),(function(e,t,r){return _.optional((function(){e.assert(t,\"typeof \"+r+'===\"number\"',\"invalid stencil.mask\")})),t.def(r,\"|0\")}));case rr:return f((function(r){_.commandType(r,\"object\",o,t.commandStr);var n=r.cmp||\"keep\",a=r.ref||0,i=\"mask\"in r?r.mask:-1;return _.commandParameter(n,$r,e+\".cmp\",t.commandStr),_.commandType(a,\"number\",e+\".ref\",t.commandStr),_.commandType(i,\"number\",e+\".mask\",t.commandStr),[$r[n],a,i]}),(function(e,t,r){var n=e.constants.compareFuncs;return _.optional((function(){function a(){e.assert(t,Array.prototype.join.call(arguments,\"\"),\"invalid stencil.func\")}a(r+\"&&typeof \",r,'===\"object\"'),a('!(\"cmp\" in ',r,\")||(\",r,\".cmp in \",n,\")\")})),[t.def('\"cmp\" in ',r,\"?\",n,\"[\",r,\".cmp]\",\":\",Qr),t.def(r,\".ref|0\"),t.def('\"mask\" in ',r,\"?\",r,\".mask|0:-1\")]}));case nr:case ar:return f((function(r){_.commandType(r,\"object\",o,t.commandStr);var n=r.fail||\"keep\",a=r.zfail||\"keep\",i=r.zpass||\"keep\";return _.commandParameter(n,Kr,e+\".fail\",t.commandStr),_.commandParameter(a,Kr,e+\".zfail\",t.commandStr),_.commandParameter(i,Kr,e+\".zpass\",t.commandStr),[e===ar?Nr:Hr,Kr[n],Kr[a],Kr[i]]}),(function(t,r,n){var a=t.constants.stencilOps;function i(i){return _.optional((function(){t.assert(r,'!(\"'+i+'\" in '+n+\")||(\"+n+\".\"+i+\" in \"+a+\")\",\"invalid \"+e+\".\"+i+\", must be one of \"+Object.keys(Kr))})),r.def('\"',i,'\" in ',n,\"?\",a,\"[\",n,\".\",i,\"]:\",Qr)}return _.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e)})),[e===ar?Nr:Hr,i(\"fail\"),i(\"zfail\"),i(\"zpass\")]}));case $t:return f((function(e){_.commandType(e,\"object\",o,t.commandStr);var r=0|e.factor,n=0|e.units;return _.commandType(r,\"number\",o+\".factor\",t.commandStr),_.commandType(n,\"number\",o+\".units\",t.commandStr),[r,n]}),(function(t,r,n){return _.optional((function(){t.assert(r,n+\"&&typeof \"+n+'===\"object\"',\"invalid \"+e)})),[r.def(n,\".factor|0\"),r.def(n,\".units|0\")]}));case qt:return f((function(e){var r=0;return\"front\"===e?r=Hr:\"back\"===e&&(r=Nr),_.command(!!r,o,t.commandStr),r}),(function(e,t,r){return _.optional((function(){e.assert(t,r+'===\"front\"||'+r+'===\"back\"',\"invalid cull.face\")})),t.def(r,'===\"front\"?',Hr,\":\",Nr)}));case Yt:return f((function(e){return _.command(\"number\"==typeof e&&e>=a.lineWidthDims[0]&&e<=a.lineWidthDims[1],\"invalid line width, must be a positive number between \"+a.lineWidthDims[0]+\" and \"+a.lineWidthDims[1],t.commandStr),e}),(function(e,t,r){return _.optional((function(){e.assert(t,\"typeof \"+r+'===\"number\"&&'+r+\">=\"+a.lineWidthDims[0]+\"&&\"+r+\"<=\"+a.lineWidthDims[1],\"invalid line width\")})),r}));case Qt:return f((function(e){return _.commandParameter(e,Zr,o,t.commandStr),Zr[e]}),(function(e,t,r){return _.optional((function(){e.assert(t,r+'===\"cw\"||'+r+'===\"ccw\"',\"invalid frontFace, must be one of cw,ccw\")})),t.def(r+'===\"cw\"?2304:'+qr)}));case Ht:return f((function(e){return _.command(me(e)&&4===e.length,\"color.mask must be length 4 array\",t.commandStr),e.map((function(e){return!!e}))}),(function(e,t,r){return _.optional((function(){e.assert(t,e.shared.isArrayLike+\"(\"+r+\")&&\"+r+\".length===4\",\"invalid color.mask\")})),V(4,(function(e){return\"!!\"+r+\"[\"+e+\"]\"}))}));case Zt:return f((function(e){_.command(\"object\"==typeof e&&e,o,t.commandStr);var r=\"value\"in e?e.value:1,n=!!e.invert;return _.command(\"number\"==typeof r&&r>=0&&r<=1,\"sample.coverage.value must be a number between 0 and 1\",t.commandStr),[r,n]}),(function(e,t,r){return _.optional((function(){e.assert(t,r+\"&&typeof \"+r+'===\"object\"',\"invalid sample.coverage\")})),[t.def('\"value\" in ',r,\"?+\",r,\".value:1\"),t.def(\"!!\",r,\".invert\")]}))}})),i}(e,d),S=function(e,t,n){var a=e.static,i=e.dynamic;function o(e){if(e in a){var t=r.id(a[e]);_.optional((function(){l.shader(Jr[e],t,_.guessCommand())}));var n=an((function(){return t}));return n.id=t,n}if(e in i){var o=i[e];return on(o,(function(t,r){var n=t.invoke(r,o),a=r.def(t.shared.strings,\".id(\",n,\")\");return _.optional((function(){r(t.shared.shader,\".shader(\",Jr[e],\",\",a,\",\",t.command,\");\")})),a}))}return null}var f,u=o(lr),s=o(cr),c=null;return nn(u)&&nn(s)?(c=l.program(s.id,u.id,null,n),f=an((function(e,t){return e.link(c)}))):f=new rn(u&&u.thisDep||s&&s.thisDep,u&&u.contextDep||s&&s.contextDep,u&&u.propDep||s&&s.propDep,(function(e,t){var r,n=e.shared.shader;r=u?u.append(e,t):t.def(n,\".\",lr);var a=n+\".program(\"+(s?s.append(e,t):t.def(n,\".\",cr))+\",\"+r;return _.optional((function(){a+=\",\"+e.command})),t.def(a+\")\")})),{frag:u,vert:s,progVar:f,program:c}}(e,0,h);function O(e){var t=x[e];t&&(A[e]=t)}O(fr),O(E(or));var T=Object.keys(A).length>0,D={framebuffer:y,draw:w,shader:S,state:A,dirty:T,scopeVAO:null,drawVAO:null,useVAO:!1,attributes:{}};if(D.profile=function(e){var t,r=e.static,n=e.dynamic;if(ur in r){var a=!!r[ur];(t=an((function(e,t){return a}))).enable=a}else if(ur in n){var i=n[ur];t=on(i,(function(e,t){return e.invoke(t,i)}))}return t}(e),D.uniforms=function(e,t){var r=e.static,n=e.dynamic,a={};return Object.keys(r).forEach((function(e){var n,i=r[e];if(\"number\"==typeof i||\"boolean\"==typeof i)n=an((function(){return i}));else if(\"function\"==typeof i){var o=i._reglType;\"texture2d\"===o||\"textureCube\"===o?n=an((function(e){return e.link(i)})):\"framebuffer\"===o||\"framebufferCube\"===o?(_.command(i.color.length>0,'missing color attachment for framebuffer sent to uniform \"'+e+'\"',t.commandStr),n=an((function(e){return e.link(i.color[0])}))):_.commandRaise('invalid data for uniform \"'+e+'\"',t.commandStr)}else me(i)?n=an((function(t){return t.global.def(\"[\",V(i.length,(function(r){return _.command(\"number\"==typeof i[r]||\"boolean\"==typeof i[r],\"invalid uniform \"+e,t.commandStr),i[r]})),\"]\")})):_.commandRaise('invalid or missing data for uniform \"'+e+'\"',t.commandStr);n.value=i,a[e]=n})),Object.keys(n).forEach((function(e){var t=n[e];a[e]=on(t,(function(e,r){return e.invoke(r,t)}))})),a}(f,d),D.drawVAO=D.scopeVAO=w.vao,!D.drawVAO&&S.program&&!h&&n.angle_instanced_arrays&&w.static.elements){var j=!0,C=S.program.attributes.map((function(e){var r=t.static[e];return j=j&&!!r,r}));if(j&&C.length>0){var z=c.getVAO(c.createVAO({attributes:C,elements:w.static.elements}));D.drawVAO=new rn(null,null,null,(function(e,t){return e.link(z)})),D.useVAO=!0}}return h?D.useVAO=!0:D.attributes=function(e,t){var n=e.static,a=e.dynamic,o={};return Object.keys(n).forEach((function(e){var a=n[e],f=r.id(e),u=new b;if(en(a))u.state=1,u.buffer=i.getBuffer(i.create(a,Sr,!1,!0)),u.type=0;else{var s=i.getBuffer(a);if(s)u.state=1,u.buffer=s,u.type=0;else if(_.command(\"object\"==typeof a&&a,\"invalid data for attribute \"+e,t.commandStr),\"constant\"in a){var c=a.constant;u.buffer=\"null\",u.state=2,\"number\"==typeof c?u.x=c:(_.command(me(c)&&c.length>0&&c.length<=4,\"invalid constant for attribute \"+e,t.commandStr),Bt.forEach((function(e,t){t=0,'invalid offset for attribute \"'+e+'\"',t.commandStr);var d=0|a.stride;_.command(d>=0&&d<256,'invalid stride for attribute \"'+e+'\", must be integer betweeen [0, 255]',t.commandStr);var m=0|a.size;_.command(!(\"size\"in a)||m>0&&m<=4,'invalid size for attribute \"'+e+'\", must be 1,2,3,4',t.commandStr);var p=!!a.normalized,h=0;\"type\"in a&&(_.commandParameter(a.type,X,\"invalid type for attribute \"+e,t.commandStr),h=X[a.type]);var v=0|a.divisor;_.optional((function(){\"divisor\"in a&&(_.command(0===v||g,'cannot specify divisor for attribute \"'+e+'\", instancing not supported',t.commandStr),_.command(v>=0,'invalid divisor for attribute \"'+e+'\"',t.commandStr));var r=t.commandStr,n=[\"buffer\",\"offset\",\"divisor\",\"normalized\",\"type\",\"size\",\"stride\"];Object.keys(a).forEach((function(t){_.command(n.indexOf(t)>=0,'unknown parameter \"'+t+'\" for attribute pointer \"'+e+'\" (valid parameters are '+n+\")\",r)}))})),u.buffer=s,u.state=1,u.size=m,u.normalized=p,u.type=h||s.dtype,u.offset=l,u.stride=d,u.divisor=v}}o[e]=an((function(e,t){var r=e.attribCache;if(f in r)return r[f];var n={isStream:!1};return Object.keys(u).forEach((function(e){n[e]=u[e]})),u.buffer&&(n.buffer=e.link(u.buffer),n.type=n.type||n.buffer+\".dtype\"),r[f]=n,n}))})),Object.keys(a).forEach((function(e){var t=a[e];o[e]=on(t,(function(r,n){var a=r.invoke(n,t),i=r.shared,o=r.constants,f=i.isBufferArgs,u=i.buffer;_.optional((function(){r.assert(n,a+\"&&(typeof \"+a+'===\"object\"||typeof '+a+'===\"function\")&&('+f+\"(\"+a+\")||\"+u+\".getBuffer(\"+a+\")||\"+u+\".getBuffer(\"+a+\".buffer)||\"+f+\"(\"+a+'.buffer)||(\"constant\" in '+a+\"&&(typeof \"+a+'.constant===\"number\"||'+i.isArrayLike+\"(\"+a+\".constant))))\",'invalid dynamic attribute \"'+e+'\"')}));var s={isStream:n.def(!1)},c=new b;c.state=1,Object.keys(c).forEach((function(e){s[e]=n.def(\"\"+c[e])}));var l=s.buffer,d=s.type;function m(e){n(s[e],\"=\",a,\".\",e,\"|0;\")}return n(\"if(\",f,\"(\",a,\")){\",s.isStream,\"=true;\",l,\"=\",u,\".createStream(\",Sr,\",\",a,\");\",d,\"=\",l,\".dtype;\",\"}else{\",l,\"=\",u,\".getBuffer(\",a,\");\",\"if(\",l,\"){\",d,\"=\",l,\".dtype;\",'}else if(\"constant\" in ',a,\"){\",s.state,\"=\",2,\";\",\"if(typeof \"+a+'.constant === \"number\"){',s[Bt[0]],\"=\",a,\".constant;\",Bt.slice(1).map((function(e){return s[e]})).join(\"=\"),\"=0;\",\"}else{\",Bt.map((function(e,t){return s[e]+\"=\"+a+\".constant.length>\"+t+\"?\"+a+\".constant[\"+t+\"]:0;\"})).join(\"\"),\"}}else{\",\"if(\",f,\"(\",a,\".buffer)){\",l,\"=\",u,\".createStream(\",Sr,\",\",a,\".buffer);\",\"}else{\",l,\"=\",u,\".getBuffer(\",a,\".buffer);\",\"}\",d,'=\"type\" in ',a,\"?\",o.glTypes,\"[\",a,\".type]:\",l,\".dtype;\",s.normalized,\"=!!\",a,\".normalized;\"),m(\"size\"),m(\"offset\"),m(\"stride\"),m(\"divisor\"),n(\"}}\"),n.exit(\"if(\",s.isStream,\"){\",u,\".destroyStream(\",l,\");\",\"}\"),s}))})),o}(t,d),D.context=function(e){var t=e.static,r=e.dynamic,n={};return Object.keys(t).forEach((function(e){var r=t[e];n[e]=an((function(e,t){return\"number\"==typeof r||\"boolean\"==typeof r?\"\"+r:e.link(r)}))})),Object.keys(r).forEach((function(e){var t=r[e];n[e]=on(t,(function(e,r){return e.invoke(r,t)}))})),n}(s),D}function P(e,t,r){var n=e.shared.context,a=e.scope();Object.keys(r).forEach((function(i){t.save(n,\".\"+i);var o=r[i].append(e,t);Array.isArray(o)?a(n,\".\",i,\"=[\",o.join(),\"];\"):a(n,\".\",i,\"=\",o,\";\")})),t(a)}function L(e,t,r,n){var a,i=e.shared,o=i.gl,f=i.framebuffer;y&&(a=t.def(i.extensions,\".webgl_draw_buffers\"));var u,s=e.constants,c=s.drawBuffer,l=s.backBuffer;u=r?r.append(e,t):t.def(f,\".next\"),n||t(\"if(\",u,\"!==\",f,\".cur){\"),t(\"if(\",u,\"){\",o,\".bindFramebuffer(\",36160,\",\",u,\".framebuffer);\"),y&&t(a,\".drawBuffersWEBGL(\",c,\"[\",u,\".colorAttachments.length]);\"),t(\"}else{\",o,\".bindFramebuffer(\",36160,\",null);\"),y&&t(a,\".drawBuffersWEBGL(\",l,\");\"),t(\"}\",f,\".cur=\",u,\";\"),n||t(\"}\")}function R(e,t,r){var n=e.shared,a=n.gl,i=e.current,o=e.next,f=n.current,u=n.next,s=e.cond(f,\".dirty\");k.forEach((function(t){var n,c,l=E(t);if(!(l in r.state))if(l in o){n=o[l],c=i[l];var d=V(w[l].length,(function(e){return s.def(n,\"[\",e,\"]\")}));s(e.cond(d.map((function(e,t){return e+\"!==\"+c+\"[\"+t+\"]\"})).join(\"||\")).then(a,\".\",O[l],\"(\",d,\");\",d.map((function(e,t){return c+\"[\"+t+\"]=\"+e})).join(\";\"),\";\"))}else{n=s.def(u,\".\",l);var m=e.cond(n,\"!==\",f,\".\",l);s(m),l in S?m(e.cond(n).then(a,\".enable(\",S[l],\");\").else(a,\".disable(\",S[l],\");\"),f,\".\",l,\"=\",n,\";\"):m(a,\".\",O[l],\"(\",n,\");\",f,\".\",l,\"=\",n,\";\")}})),0===Object.keys(r.state).length&&s(f,\".dirty=false;\"),t(s)}function M(e,t,r,n){var a=e.shared,i=e.current,o=a.current,f=a.gl;tn(Object.keys(r)).forEach((function(a){var u=r[a];if(!n||n(u)){var s=u.append(e,t);if(S[a]){var c=S[a];nn(u)?t(f,s?\".enable(\":\".disable(\",c,\");\"):t(e.cond(s).then(f,\".enable(\",c,\");\").else(f,\".disable(\",c,\");\")),t(o,\".\",a,\"=\",s,\";\")}else if(me(s)){var l=i[a];t(f,\".\",O[a],\"(\",s,\");\",s.map((function(e,t){return l+\"[\"+t+\"]=\"+e})).join(\";\"),\";\")}else t(f,\".\",O[a],\"(\",s,\");\",o,\".\",a,\"=\",s,\";\")}}))}function W(e,t){g&&(e.instancing=t.def(e.shared.extensions,\".angle_instanced_arrays\"))}function U(e,t,r,n,a){var i,o,f,u=e.shared,s=e.stats,c=u.current,l=u.timer,d=r.profile;function m(){return\"undefined\"==typeof performance?\"Date.now()\":\"performance.now()\"}function h(e){e(i=t.def(),\"=\",m(),\";\"),\"string\"==typeof a?e(s,\".count+=\",a,\";\"):e(s,\".count++;\"),p&&(n?e(o=t.def(),\"=\",l,\".getNumPendingQueries();\"):e(l,\".beginQuery(\",s,\");\"))}function b(e){e(s,\".cpuTime+=\",m(),\"-\",i,\";\"),p&&(n?e(l,\".pushScopeStats(\",o,\",\",l,\".getNumPendingQueries(),\",s,\");\"):e(l,\".endQuery();\"))}function v(e){var r=t.def(c,\".profile\");t(c,\".profile=\",e,\";\"),t.exit(c,\".profile=\",r,\";\")}if(d){if(nn(d))return void(d.enable?(h(t),b(t.exit),v(\"true\")):v(\"false\"));v(f=d.append(e,t))}else f=t.def(c,\".profile\");var g=e.block();h(g),t(\"if(\",f,\"){\",g,\"}\");var y=e.block();b(y),t.exit(\"if(\",f,\"){\",y,\"}\")}function G(e,t,r,n,a){var i=e.shared;n.forEach((function(n){var o,f=n.name,u=r.attributes[f];if(u){if(!a(u))return;o=u.append(e,t)}else{if(!a(fn))return;var s=e.scopeAttrib(f);_.optional((function(){e.assert(t,s+\".state\",\"missing attribute \"+f)})),o={},Object.keys(new b).forEach((function(e){o[e]=t.def(s,\".\",e)}))}!function(r,n,a){var o=i.gl,f=t.def(r,\".location\"),u=t.def(i.attributes,\"[\",f,\"]\"),s=a.state,c=a.buffer,l=[a.x,a.y,a.z,a.w],d=[\"buffer\",\"normalized\",\"offset\",\"stride\"];function m(){t(\"if(!\",u,\".buffer){\",o,\".enableVertexAttribArray(\",f,\");}\");var r,i=a.type;if(r=a.size?t.def(a.size,\"||\",n):n,t(\"if(\",u,\".type!==\",i,\"||\",u,\".size!==\",r,\"||\",d.map((function(e){return u+\".\"+e+\"!==\"+a[e]})).join(\"||\"),\"){\",o,\".bindBuffer(\",Sr,\",\",c,\".buffer);\",o,\".vertexAttribPointer(\",[f,r,i,a.normalized,a.stride,a.offset],\");\",u,\".type=\",i,\";\",u,\".size=\",r,\";\",d.map((function(e){return u+\".\"+e+\"=\"+a[e]+\";\"})).join(\"\"),\"}\"),g){var s=a.divisor;t(\"if(\",u,\".divisor!==\",s,\"){\",e.instancing,\".vertexAttribDivisorANGLE(\",[f,s],\");\",u,\".divisor=\",s,\";}\")}}function p(){t(\"if(\",u,\".buffer){\",o,\".disableVertexAttribArray(\",f,\");\",u,\".buffer=null;\",\"}if(\",Bt.map((function(e,t){return u+\".\"+e+\"!==\"+l[t]})).join(\"||\"),\"){\",o,\".vertexAttrib4f(\",f,\",\",l,\");\",Bt.map((function(e,t){return u+\".\"+e+\"=\"+l[t]+\";\"})).join(\"\"),\"}\")}1===s?m():2===s?p():(t(\"if(\",s,\"===\",1,\"){\"),m(),t(\"}else{\"),p(),t(\"}\"))}(e.link(n),function(e){switch(e){case Tr:case zr:case Ir:return 2;case Dr:case Fr:case Pr:return 3;case jr:case Br:case Lr:return 4;default:return 1}}(n.info.type),o)}))}function H(e,t,n,a,i,o){for(var f,u=e.shared,s=u.gl,c={},l=0;l1){if(!b)continue;var v=m.replace(\"[0]\",\"\");if(c[v])continue;c[v]=1}var g,y=e.link(d)+\".location\";if(b){if(!i(b))continue;if(nn(b)){var x=b.value;if(_.command(null!=x,'missing uniform \"'+m+'\"',e.commandStr),p===Ur||p===Gr){_.command(\"function\"==typeof x&&(p===Ur&&(\"texture2d\"===x._reglType||\"framebuffer\"===x._reglType)||p===Gr&&(\"textureCube\"===x._reglType||\"framebufferCube\"===x._reglType)),\"invalid texture for uniform \"+m,e.commandStr);var w=e.link(x._texture||x.color[0]._texture);t(s,\".uniform1i(\",y,\",\",w+\".bind());\"),t.exit(w,\".unbind();\")}else if(p===Rr||p===Mr||p===Wr){_.optional((function(){_.command(me(x),\"invalid matrix for uniform \"+m,e.commandStr),_.command(p===Rr&&4===x.length||p===Mr&&9===x.length||p===Wr&&16===x.length,\"invalid length for matrix uniform \"+m,e.commandStr)}));var A=e.global.def(\"new Float32Array([\"+Array.prototype.slice.call(x)+\"])\"),k=2;p===Mr?k=3:p===Wr&&(k=4),t(s,\".uniformMatrix\",k,\"fv(\",y,\",false,\",A,\");\")}else{switch(p){case Er:1===h?_.commandType(x,\"number\",\"uniform \"+m,e.commandStr):_.command(me(x)&&x.length===h,\"uniform \"+m,e.commandStr),f=\"1f\";break;case Tr:_.command(me(x)&&x.length&&x.length%2==0&&x.length<=2*h,\"uniform \"+m,e.commandStr),f=\"2f\";break;case Dr:_.command(me(x)&&x.length&&x.length%3==0&&x.length<=3*h,\"uniform \"+m,e.commandStr),f=\"3f\";break;case jr:_.command(me(x)&&x.length&&x.length%4==0&&x.length<=4*h,\"uniform \"+m,e.commandStr),f=\"4f\";break;case Vr:1===h?_.commandType(x,\"boolean\",\"uniform \"+m,e.commandStr):_.command(me(x)&&x.length===h,\"uniform \"+m,e.commandStr),f=\"1i\";break;case Cr:1===h?_.commandType(x,\"number\",\"uniform \"+m,e.commandStr):_.command(me(x)&&x.length===h,\"uniform \"+m,e.commandStr),f=\"1i\";break;case Ir:case zr:_.command(me(x)&&x.length&&x.length%2==0&&x.length<=2*h,\"uniform \"+m,e.commandStr),f=\"2i\";break;case Pr:case Fr:_.command(me(x)&&x.length&&x.length%3==0&&x.length<=3*h,\"uniform \"+m,e.commandStr),f=\"3i\";break;case Lr:case Br:_.command(me(x)&&x.length&&x.length%4==0&&x.length<=4*h,\"uniform \"+m,e.commandStr),f=\"4i\"}h>1?(f+=\"v\",x=e.global.def(\"[\"+Array.prototype.slice.call(x)+\"]\")):x=me(x)?Array.prototype.slice.call(x):x,t(s,\".uniform\",f,\"(\",y,\",\",x,\");\")}continue}g=b.append(e,t)}else{if(!i(fn))continue;g=t.def(u.uniforms,\"[\",r.id(m),\"]\")}p===Ur?(_(!Array.isArray(g),\"must specify a scalar prop for textures\"),t(\"if(\",g,\"&&\",g,'._reglType===\"framebuffer\"){',g,\"=\",g,\".color[0];\",\"}\")):p===Gr&&(_(!Array.isArray(g),\"must specify a scalar prop for cube maps\"),t(\"if(\",g,\"&&\",g,'._reglType===\"framebufferCube\"){',g,\"=\",g,\".color[0];\",\"}\")),_.optional((function(){function r(r,n){e.assert(t,r,'bad data or missing for uniform \"'+m+'\". '+n)}function n(e,t){1===t&&_(!Array.isArray(g),\"must not specify an array type for uniform\"),r(\"Array.isArray(\"+g+\") && typeof \"+g+'[0]===\" '+e+'\" || typeof '+g+'===\"'+e+'\"',\"invalid type, expected \"+e)}function a(t,n,a){Array.isArray(g)?_(g.length&&g.length%t==0&&g.length<=t*a,\"must have length of \"+(1===a?\"\":\"n * \")+t):r(u.isArrayLike+\"(\"+g+\")&&\"+g+\".length && \"+g+\".length % \"+t+\" === 0 && \"+g+\".length<=\"+t*a,\"invalid vector, should have length of \"+(1===a?\"\":\"n * \")+t,e.commandStr)}function i(t){_(!Array.isArray(g),\"must not specify a value type\"),r(\"typeof \"+g+'===\"function\"&&'+g+'._reglType===\"texture'+(3553===t?\"2d\":\"Cube\")+'\"',\"invalid texture type\",e.commandStr)}switch(p){case Cr:n(\"number\",h);break;case zr:a(2,0,h);break;case Fr:a(3,0,h);break;case Br:a(4,0,h);break;case Er:n(\"number\",h);break;case Tr:a(2,0,h);break;case Dr:a(3,0,h);break;case jr:a(4,0,h);break;case Vr:n(\"boolean\",h);break;case Ir:a(2,0,h);break;case Pr:a(3,0,h);break;case Lr:case Rr:a(4,0,h);break;case Mr:a(9,0,h);break;case Wr:a(16,0,h);break;case Ur:i(3553);break;case Gr:i(34067)}}));var S=1;switch(p){case Ur:case Gr:var O=t.def(g,\"._texture\");t(s,\".uniform1i(\",y,\",\",O,\".bind());\"),t.exit(O,\".unbind();\");continue;case Cr:case Vr:f=\"1i\";break;case zr:case Ir:f=\"2i\",S=2;break;case Fr:case Pr:f=\"3i\",S=3;break;case Br:case Lr:f=\"4i\",S=4;break;case Er:f=\"1f\";break;case Tr:f=\"2f\",S=2;break;case Dr:f=\"3f\",S=3;break;case jr:f=\"4f\",S=4;break;case Rr:f=\"Matrix2fv\";break;case Mr:f=\"Matrix3fv\";break;case Wr:f=\"Matrix4fv\"}if(-1===f.indexOf(\"Matrix\")&&h>1&&(f+=\"v\",S=1),\"M\"===f.charAt(0)){t(s,\".uniform\",f,\"(\",y,\",\");var E=Math.pow(p-Rr+2,2),T=e.global.def(\"new Float32Array(\",E,\")\");Array.isArray(g)?t(\"false,(\",V(E,(function(e){return T+\"[\"+e+\"]=\"+g[e]})),\",\",T,\")\"):t(\"false,(Array.isArray(\",g,\")||\",g,\" instanceof Float32Array)?\",g,\":(\",V(E,(function(e){return T+\"[\"+e+\"]=\"+g+\"[\"+e+\"]\"})),\",\",T,\")\"),t(\");\")}else if(S>1){for(var D=[],j=[],C=0;C=0\",\"missing vertex count\")}))):(a=u.def(o,\".\",pr),_.optional((function(){e.assert(u,a+\">=0\",\"missing vertex count\")}))),a}();if(\"number\"==typeof p){if(0===p)return}else r(\"if(\",p,\"){\"),r.exit(\"}\");g&&(c=s(br),l=e.instancing);var h=u+\".type\",b=f.elements&&nn(f.elements)&&!f.vaoActive;function v(){function e(){r(l,\".drawElementsInstancedANGLE(\",[d,p,h,m+\"<<((\"+h+\"-5121)>>1)\",c],\");\")}function t(){r(l,\".drawArraysInstancedANGLE(\",[d,m,p,c],\");\")}u&&\"null\"!==u?b?e():(r(\"if(\",u,\"){\"),e(),r(\"}else{\"),t(),r(\"}\")):t()}function y(){function e(){r(i+\".drawElements(\"+[d,p,h,m+\"<<((\"+h+\"-5121)>>1)\"]+\");\")}function t(){r(i+\".drawArrays(\"+[d,m,p]+\");\")}u&&\"null\"!==u?b?e():(r(\"if(\",u,\"){\"),e(),r(\"}else{\"),t(),r(\"}\")):t()}g&&(\"number\"!=typeof c||c>=0)?\"string\"==typeof c?(r(\"if(\",c,\">0){\"),v(),r(\"}else if(\",c,\"<0){\"),y(),r(\"}\")):v():y()}function q(e,t,r,n,a){var i=B(),o=i.proc(\"body\",a);return _.optional((function(){i.commandStr=t.commandStr,i.command=i.link(t.commandStr)})),g&&(i.instancing=o.def(i.shared.extensions,\".angle_instanced_arrays\")),e(i,o,r,n),i.compile().body}function Q(e,t,r,n){W(e,t),r.useVAO?r.drawVAO?t(e.shared.vao,\".setVAO(\",r.drawVAO.append(e,t),\");\"):t(e.shared.vao,\".setVAO(\",e.shared.vao,\".targetVAO);\"):(t(e.shared.vao,\".setVAO(null);\"),G(e,t,r,n.attributes,(function(){return!0}))),H(e,t,r,n.uniforms,(function(){return!0}),!1),N(e,t,t,r)}function Y(e,t,r,n){function a(){return!0}e.batchId=\"a1\",W(e,t),G(e,t,r,n.attributes,a),H(e,t,r,n.uniforms,a,!1),N(e,t,t,r)}function $(e,t,r,n){W(e,t);var a=r.contextDep,i=t.def(),o=t.def();e.shared.props=o,e.batchId=i;var f=e.scope(),u=e.scope();function s(e){return e.contextDep&&a||e.propDep}function c(e){return!s(e)}if(t(f.entry,\"for(\",i,\"=0;\",i,\"<\",\"a1\",\";++\",i,\"){\",o,\"=\",\"a0\",\"[\",i,\"];\",u,\"}\",f.exit),r.needsContext&&P(e,u,r.context),r.needsFramebuffer&&L(e,u,r.framebuffer),M(e,u,r.state,s),r.profile&&s(r.profile)&&U(e,u,r,!1,!0),n)r.useVAO?r.drawVAO?s(r.drawVAO)?u(e.shared.vao,\".setVAO(\",r.drawVAO.append(e,u),\");\"):f(e.shared.vao,\".setVAO(\",r.drawVAO.append(e,f),\");\"):f(e.shared.vao,\".setVAO(\",e.shared.vao,\".targetVAO);\"):(f(e.shared.vao,\".setVAO(null);\"),G(e,f,r,n.attributes,c),G(e,u,r,n.attributes,s)),H(e,f,r,n.uniforms,c,!1),H(e,u,r,n.uniforms,s,!0),N(e,f,u,r);else{var l=e.global.def(\"{}\"),d=r.shader.progVar.append(e,u),m=u.def(d,\".id\"),p=u.def(l,\"[\",m,\"]\");u(e.shared.gl,\".useProgram(\",d,\".program);\",\"if(!\",p,\"){\",p,\"=\",l,\"[\",m,\"]=\",e.link((function(t){return q(Y,e,r,t,2)})),\"(\",d,\");}\",p,\".call(this,a0[\",i,\"],\",i,\");\")}}function K(e,t,r){var n=t.static[r];if(n&&function(e){if(\"object\"==typeof e&&!me(e)){for(var t=Object.keys(e),r=0;r0&&r(e.shared.current,\".dirty=true;\"),e.shared.vao&&r(e.shared.vao,\".setVAO(null);\")}(f,u),function(e,t){var n=e.proc(\"scope\",3);e.batchId=\"a2\";var a=e.shared,i=a.current;function o(r){var i=t.shader[r];i&&n.set(a.shader,\".\"+r,i.append(e,n))}P(e,n,t.context),t.framebuffer&&t.framebuffer.append(e,n),tn(Object.keys(t.state)).forEach((function(r){var i=t.state[r].append(e,n);me(i)?i.forEach((function(t,a){n.set(e.next[r],\"[\"+a+\"]\",t)})):n.set(a.next,\".\"+r,i)})),U(e,n,t,!0,!0),[dr,hr,pr,br,mr].forEach((function(r){var i=t.draw[r];i&&n.set(a.draw,\".\"+r,\"\"+i.append(e,n))})),Object.keys(t.uniforms).forEach((function(i){var o=t.uniforms[i].append(e,n);Array.isArray(o)&&(o=\"[\"+o.join()+\"]\"),n.set(a.uniforms,\"[\"+r.id(i)+\"]\",o)})),Object.keys(t.attributes).forEach((function(r){var a=t.attributes[r].append(e,n),i=e.scopeAttrib(r);Object.keys(new b).forEach((function(e){n.set(i,\".\"+e,a[e])}))})),t.scopeVAO&&n.set(a.vao,\".targetVAO\",t.scopeVAO.append(e,n)),o(cr),o(lr),Object.keys(t.state).length>0&&(n(i,\".dirty=true;\"),n.exit(i,\".dirty=true;\")),n(\"a1(\",e.shared.context,\",a0,\",e.batchId,\");\")}(f,u),function(e,t){var r=e.proc(\"batch\",2);e.batchId=\"0\",W(e,r);var n=!1,a=!0;Object.keys(t.context).forEach((function(e){n=n||t.context[e].propDep})),n||(P(e,r,t.context),a=!1);var i=t.framebuffer,o=!1;function f(e){return e.contextDep&&n||e.propDep}i?(i.propDep?n=o=!0:i.contextDep&&n&&(o=!0),o||L(e,r,i)):L(e,r,null),t.state.viewport&&t.state.viewport.propDep&&(n=!0),R(e,r,t),M(e,r,t.state,(function(e){return!f(e)})),t.profile&&f(t.profile)||U(e,r,t,!1,\"a1\"),t.contextDep=n,t.needsContext=a,t.needsFramebuffer=o;var u=t.shader.progVar;if(u.contextDep&&n||u.propDep)$(e,r,t,null);else{var s=u.append(e,r);if(r(e.shared.gl,\".useProgram(\",s,\".program);\"),t.shader.program)$(e,r,t,t.shader.program);else{r(e.shared.vao,\".setVAO(null);\");var c=e.global.def(\"{}\"),l=r.def(s,\".id\"),d=r.def(c,\"[\",l,\"]\");r(e.cond(d).then(d,\".call(this,a0,a1);\").else(d,\"=\",c,\"[\",l,\"]=\",e.link((function(r){return q($,e,t,r,2)})),\"(\",s,\");\",d,\".call(this,a0,a1);\"))}}Object.keys(t.state).length>0&&r(e.shared.current,\".dirty=true;\"),e.shared.vao&&r(e.shared.vao,\".setVAO(null);\")}(f,u),t(f.compile(),{destroy:function(){u.shader.program.destroy()}})}}}var sn=function(e,t){if(!t.ext_disjoint_timer_query)return null;var r=[];function n(e){r.push(e)}var a=[];function i(){this.startQueryIndex=-1,this.endQueryIndex=-1,this.sum=0,this.stats=null}var o=[];function f(e){o.push(e)}var u=[];function s(e,t,r){var n=o.pop()||new i;n.startQueryIndex=e,n.endQueryIndex=t,n.sum=0,n.stats=r,u.push(n)}var c=[],l=[];return{beginQuery:function(e){var n=r.pop()||t.ext_disjoint_timer_query.createQueryEXT();t.ext_disjoint_timer_query.beginQueryEXT(35007,n),a.push(n),s(a.length-1,a.length,e)},endQuery:function(){t.ext_disjoint_timer_query.endQueryEXT(35007)},pushScopeStats:s,update:function(){var e,r,i=a.length;if(0!==i){l.length=Math.max(l.length,i+1),c.length=Math.max(c.length,i+1),c[0]=0,l[0]=0;var o=0;for(e=0,r=0;r0)if(Array.isArray(r[0])){f=J(r);for(var c=1,l=1;l0)if(\"number\"==typeof t[0]){var i=L.allocType(d.dtype,t.length);ne(i,t),p(i,a),L.freeType(i)}else if(Array.isArray(t[0])||e(t[0])){n=J(t);var o=K(t,n,d.dtype);p(o,a),L.freeType(o)}else _.raise(\"invalid buffer data\")}else if(G(t)){n=t.shape;var f=t.stride,u=0,s=0,c=0,l=0;1===n.length?(u=n[0],s=1,c=f[0],l=0):2===n.length?(u=n[0],s=n[1],c=f[0],l=f[1]):_.raise(\"invalid shape\");var h=Array.isArray(t.data)?d.dtype:re(t.data),b=L.allocType(h,u*s);ae(b,t.data,u,s,c,l,t.offset),p(b,a),L.freeType(b)}else _.raise(\"invalid data for buffer subdata\");return m},n.profile&&(m.stats=d.stats),m.destroy=function(){l(d)},m},createStream:function(e,t){var r=u.pop();return r||(r=new f(e)),r.bind(),c(r,t,35040,0,1,!1),r},destroyStream:function(e){u.push(e)},clear:function(){H(o).forEach(l),u.forEach(l)},getBuffer:function(e){return e&&e._buffer instanceof f?e._buffer:null},restore:function(){H(o).forEach((function(e){e.buffer=t.createBuffer(),t.bindBuffer(e.type,e.buffer),t.bufferData(e.type,e.persistentData||e.byteLength,e.usage)}))},_initBuffer:c}}(a,l,n,(function(e){return A.destroyBuffer(e)})),w=function(t,r,n,a){var i={},o=0,f={uint8:oe,uint16:fe};function u(e){this.id=o++,i[this.id]=this,this.buffer=e,this.primType=4,this.vertCount=0,this.type=0}r.oes_element_index_uint&&(f.uint32=ue),u.prototype.bind=function(){this.buffer.bind()};var s=[];function c(a,i,o,f,u,s,c){var l;if(a.buffer.bind(),i){var d=c;c||e(i)&&(!G(i)||e(i.data))||(d=r.oes_element_index_uint?ue:fe),n._initBuffer(a.buffer,i,o,d,3)}else t.bufferData(se,s,o),a.buffer.dtype=l||oe,a.buffer.usage=o,a.buffer.dimension=3,a.buffer.byteLength=s;if(l=c,!c){switch(a.buffer.dtype){case oe:case 5120:l=oe;break;case fe:case 5122:l=fe;break;case ue:case 5124:l=ue;break;default:_.raise(\"unsupported type for element array\")}a.buffer.dtype=l}a.type=l,_(l!==ue||!!r.oes_element_index_uint,\"32 bit element buffers not supported, enable oes_element_index_uint first\");var m=u;m<0&&(m=a.buffer.byteLength,l===fe?m>>=1:l===ue&&(m>>=2)),a.vertCount=m;var p=f;if(f<0){p=4;var h=a.buffer.dimension;1===h&&(p=0),2===h&&(p=1),3===h&&(p=4)}a.primType=p}function l(e){a.elementsCount--,_(null!==e.buffer,\"must not double destroy elements\"),delete i[e.id],e.buffer.destroy(),e.buffer=null}return{create:function(t,r){var i=n.create(null,se,!0),o=new u(i._buffer);function s(t){if(t)if(\"number\"==typeof t)i(t),o.primType=4,o.vertCount=0|t,o.type=oe;else{var r=null,n=35044,a=-1,u=-1,l=0,d=0;Array.isArray(t)||e(t)||G(t)?r=t:(_.type(t,\"object\",\"invalid arguments for elements\"),\"data\"in t&&(r=t.data,_(Array.isArray(r)||e(r)||G(r),\"invalid data for element buffer\")),\"usage\"in t&&(_.parameter(t.usage,$,\"invalid element buffer usage\"),n=$[t.usage]),\"primitive\"in t&&(_.parameter(t.primitive,ie,\"invalid element buffer primitive\"),a=ie[t.primitive]),\"count\"in t&&(_(\"number\"==typeof t.count&&t.count>=0,\"invalid vertex count for elements\"),u=0|t.count),\"type\"in t&&(_.parameter(t.type,f,\"invalid buffer type\"),d=f[t.type]),\"length\"in t?l=0|t.length:(l=u,d===fe||5122===d?l*=2:d!==ue&&5124!==d||(l*=4))),c(o,r,n,a,u,l,d)}else i(),o.primType=4,o.vertCount=0,o.type=oe;return s}return a.elementsCount++,s(t),s._reglType=\"elements\",s._elements=o,s.subdata=function(e,t){return i.subdata(e,t),s},s.destroy=function(){l(o)},s},createStream:function(e){var t=s.pop();return t||(t=new u(n.create(null,se,!0,!1)._buffer)),c(t,e,35040,-1,-1,0,0),t},destroyStream:function(e){s.push(e)},getElements:function(e){return\"function\"==typeof e&&e._elements instanceof u?e._elements:null},clear:function(){H(i).forEach(l)}}}(a,d,x,l),A=function(t,r,n,a,i,o,f){for(var u=n.maxAttributes,s=new Array(u),c=0;c{for(var e=Object.keys(t),r=0;r=0,'invalid option for vao: \"'+e[r]+'\" valid options are '+Et)})),_(Array.isArray(a),\"attributes must be an array\")}_(a.length0,\"must specify at least one attribute\");var c={},l=n.attributes;l.length=a.length;for(var d=0;d=b.byteLength?m.subdata(b):(m.destroy(),n.buffers[d]=null)),n.buffers[d]||(m=n.buffers[d]=i.create(p,34962,!1,!0)),h.buffer=i.getBuffer(m),h.size=0|h.buffer.dimension,h.normalized=!1,h.type=h.buffer.dtype,h.offset=0,h.stride=0,h.divisor=0,h.state=1,c[d]=1):i.getBuffer(p)?(h.buffer=i.getBuffer(p),h.size=0|h.buffer.dimension,h.normalized=!1,h.type=h.buffer.dtype,h.offset=0,h.stride=0,h.divisor=0,h.state=1):i.getBuffer(p.buffer)?(h.buffer=i.getBuffer(p.buffer),h.size=0|(+p.size||h.buffer.dimension),h.normalized=!!p.normalized||!1,\"type\"in p?(_.parameter(p.type,X,\"invalid buffer type\"),h.type=X[p.type]):h.type=h.buffer.dtype,h.offset=0|(p.offset||0),h.stride=0|(p.stride||0),h.divisor=0|(p.divisor||0),h.state=1,_(h.size>=1&&h.size<=4,\"size must be between 1 and 4\"),_(h.offset>=0,\"invalid offset\"),_(h.stride>=0&&h.stride<=255,\"stride must be between 0 and 255\"),_(h.divisor>=0,\"divisor must be positive\"),_(!h.divisor||!!r.angle_instanced_arrays,\"ANGLE_instanced_arrays must be enabled to use divisor\")):\"x\"in p?(_(d>0,\"first attribute must not be a constant\"),h.x=+p.x||0,h.y=+p.y||0,h.z=+p.z||0,h.w=+p.w||0,h.state=2):_(!1,\"invalid attribute spec for location \"+d)}for(var v=0;v1)for(var v=0;v1&&(y=y.replace(\"[0]\",\"\")),u(b,new f(y,r.id(y),e.getUniformLocation(m,y),c))}var x=e.getProgramParameter(m,35721);a.profile&&(t.stats.attributesCount=x);var w=t.attributes;for(o=0;oe&&(e=t.stats.uniformsCount)})),e},n.getMaxAttributesCount=function(){var e=0;return l.forEach((function(t){t.stats.attributesCount>e&&(e=t.stats.attributesCount)})),e}),{clear:function(){var t=e.deleteShader.bind(e);H(i).forEach(t),i={},H(o).forEach(t),o={},l.forEach((function(t){e.deleteProgram(t.program)})),l.length=0,c={},n.shaderCount=0},program:function(r,a,f,u){_.command(r>=0,\"missing vertex shader\",f),_.command(a>=0,\"missing fragment shader\",f);var s=c[a];s||(s=c[a]={});var d=s[r];if(d&&(d.refCount++,!u))return d;var h=new m(a,r);return n.shaderCount++,p(h,f,u),d||(s[r]=h),l.push(h),t(h,{destroy:function(){if(h.refCount--,h.refCount<=0){e.deleteProgram(h.program);var t=l.indexOf(h);l.splice(t,1),n.shaderCount--}s[h.vertId].refCount<=0&&(e.deleteShader(o[h.vertId]),delete o[h.vertId],delete c[h.fragId][h.vertId]),Object.keys(c[h.fragId]).length||(e.deleteShader(i[h.fragId]),delete i[h.fragId],delete c[h.fragId])}})},restore:function(){i={},o={};for(var e=0;e=2,\"invalid renderbuffer shape\"),f=0|m[0],u=0|m[1]}else\"radius\"in d&&(f=u=0|d.radius),\"width\"in d&&(f=0|d.width),\"height\"in d&&(u=0|d.height);\"format\"in d&&(_.parameter(d.format,i,\"invalid renderbuffer format\"),s=i[d.format])}else\"number\"==typeof t?(f=0|t,u=\"number\"==typeof n?0|n:f):t?_.raise(\"invalid arguments to renderbuffer constructor\"):f=u=1;if(_(f>0&&u>0&&f<=r.maxRenderbufferSize&&u<=r.maxRenderbufferSize,\"invalid renderbuffer size\"),f!==c.width||u!==c.height||s!==c.format)return l.width=c.width=f,l.height=c.height=u,c.format=s,e.bindRenderbuffer(mt,c.renderbuffer),e.renderbufferStorage(mt,s,f,u),_(0===e.getError(),\"invalid render buffer format\"),a.profile&&(c.stats.size=bt(c.format,c.width,c.height)),l.format=o[c.format],l}return u[c.id]=c,n.renderbufferCount++,l(t,f),l.resize=function(t,n){var i=0|t,o=0|n||i;return i===c.width&&o===c.height||(_(i>0&&o>0&&i<=r.maxRenderbufferSize&&o<=r.maxRenderbufferSize,\"invalid renderbuffer size\"),l.width=c.width=i,l.height=c.height=o,e.bindRenderbuffer(mt,c.renderbuffer),e.renderbufferStorage(mt,c.format,i,o),_(0===e.getError(),\"invalid render buffer format\"),a.profile&&(c.stats.size=bt(c.format,c.width,c.height))),l},l._reglType=\"renderbuffer\",l._renderbuffer=c,a.profile&&(l.stats=c.stats),l.destroy=function(){c.decRef()},l},clear:function(){H(u).forEach(c)},restore:function(){H(u).forEach((function(t){t.renderbuffer=e.createRenderbuffer(),e.bindRenderbuffer(mt,t.renderbuffer),e.renderbufferStorage(mt,t.format,t.width,t.height)})),e.bindRenderbuffer(mt,null)}}}(a,d,y,l,n),E=function(e,r,n,a,i,o){var f={cur:null,next:null,dirty:!1,setFBO:null},u=[\"rgba\"],s=[\"rgba4\",\"rgb565\",\"rgb5 a1\"];r.ext_srgb&&s.push(\"srgba\"),r.ext_color_buffer_half_float&&s.push(\"rgba16f\",\"rgb16f\"),r.webgl_color_buffer_float&&s.push(\"rgba32f\");var c=[\"uint8\"];function l(e,t,r){this.target=e,this.texture=t,this.renderbuffer=r;var n=0,a=0;t?(n=t.width,a=t.height):r&&(n=r.width,a=r.height),this.width=n,this.height=a}function d(e){e&&(e.texture&&e.texture._texture.decRef(),e.renderbuffer&&e.renderbuffer._renderbuffer.decRef())}function m(e,t,r){if(e)if(e.texture){var n=e.texture._texture,a=Math.max(1,n.width),i=Math.max(1,n.height);_(a===t&&i===r,\"inconsistent width/height for supplied texture\"),n.refCount+=1}else{var o=e.renderbuffer._renderbuffer;_(o.width===t&&o.height===r,\"inconsistent width/height for renderbuffer\"),o.refCount+=1}}function p(t,r){r&&(r.texture?e.framebufferTexture2D(vt,t,r.target,r.texture._texture.texture,0):e.framebufferRenderbuffer(vt,t,gt,r.renderbuffer._renderbuffer.renderbuffer))}function h(e){var t=yt,r=null,n=null,a=e;\"object\"==typeof e&&(a=e.data,\"target\"in e&&(t=0|e.target)),_.type(a,\"function\",\"invalid attachment data\");var i=a._reglType;return\"texture2d\"===i?(r=a,_(t===yt)):\"textureCube\"===i?(r=a,_(t>=xt&&t<34075,\"invalid cube map target\")):\"renderbuffer\"===i?(n=a,t=gt):_.raise(\"invalid regl object for attachment\"),new l(t,r,n)}function b(e,t,r,n,o){if(r){var f=a.create2D({width:e,height:t,format:n,type:o});return f._texture.refCount=0,new l(yt,f,null)}var u=i.create({width:e,height:t,format:n});return u._renderbuffer.refCount=0,new l(gt,null,u)}function v(e){return e&&(e.texture||e.renderbuffer)}function g(e,t,r){e&&(e.texture?e.texture.resize(t,r):e.renderbuffer&&e.renderbuffer.resize(t,r),e.width=t,e.height=r)}r.oes_texture_half_float&&c.push(\"half float\",\"float16\"),r.oes_texture_float&&c.push(\"float\",\"float32\");var y=0,x={};function w(){this.id=y++,x[this.id]=this,this.framebuffer=e.createFramebuffer(),this.width=0,this.height=0,this.colorAttachments=[],this.depthAttachment=null,this.stencilAttachment=null,this.depthStencilAttachment=null}function A(e){e.colorAttachments.forEach(d),d(e.depthAttachment),d(e.stencilAttachment),d(e.depthStencilAttachment)}function k(t){var r=t.framebuffer;_(r,\"must not double destroy framebuffer\"),e.deleteFramebuffer(r),t.framebuffer=null,o.framebufferCount--,delete x[t.id]}function S(t){var r;e.bindFramebuffer(vt,t.framebuffer);var a=t.colorAttachments;for(r=0;r=2,\"invalid shape for framebuffer\"),o=z[0],d=z[1]}else\"radius\"in C&&(o=d=C.radius),\"width\"in C&&(o=C.width),\"height\"in C&&(d=C.height);(\"color\"in C||\"colors\"in C)&&(y=C.color||C.colors,Array.isArray(y)&&_(1===y.length||r.webgl_draw_buffers,\"multiple render targets not supported\")),y||(\"colorCount\"in C&&(O=0|C.colorCount,_(O>0,\"invalid color buffer count\")),\"colorTexture\"in C&&(x=!!C.colorTexture,w=\"rgba4\"),\"colorType\"in C&&(k=C.colorType,x?(_(r.oes_texture_float||!(\"float\"===k||\"float32\"===k),\"you must enable OES_texture_float in order to use floating point framebuffer objects\"),_(r.oes_texture_half_float||!(\"half float\"===k||\"float16\"===k),\"you must enable OES_texture_half_float in order to use 16-bit floating point framebuffer objects\")):\"half float\"===k||\"float16\"===k?(_(r.ext_color_buffer_half_float,\"you must enable EXT_color_buffer_half_float to use 16-bit render buffers\"),w=\"rgba16f\"):\"float\"!==k&&\"float32\"!==k||(_(r.webgl_color_buffer_float,\"you must enable WEBGL_color_buffer_float in order to use 32-bit floating point renderbuffers\"),w=\"rgba32f\"),_.oneOf(k,c,\"invalid color type\")),\"colorFormat\"in C&&(w=C.colorFormat,u.indexOf(w)>=0?x=!0:s.indexOf(w)>=0?x=!1:_.optional((function(){x?_.oneOf(C.colorFormat,u,\"invalid color format for texture\"):_.oneOf(C.colorFormat,s,\"invalid color format for renderbuffer\")})))),(\"depthTexture\"in C||\"depthStencilTexture\"in C)&&(j=!(!C.depthTexture&&!C.depthStencilTexture),_(!j||r.webgl_depth_texture,\"webgl_depth_texture extension not supported\")),\"depth\"in C&&(\"boolean\"==typeof C.depth?p=C.depth:(E=C.depth,g=!1)),\"stencil\"in C&&(\"boolean\"==typeof C.stencil?g=C.stencil:(T=C.stencil,p=!1)),\"depthStencil\"in C&&(\"boolean\"==typeof C.depthStencil?p=g=C.depthStencil:(D=C.depthStencil,p=!1,g=!1))}else o=d=1;var F=null,B=null,V=null,I=null;if(Array.isArray(y))F=y.map(h);else if(y)F=[h(y)];else for(F=new Array(O),a=0;a=0||F[a].renderbuffer&&kt.indexOf(F[a].renderbuffer._renderbuffer.format)>=0,\"framebuffer color attachment \"+a+\" is invalid\"),F[a]&&F[a].texture){var L=At[F[a].texture._texture.format]*_t[F[a].texture._texture.type];null===P?P=L:_(P===L,\"all color attachments much have the same number of bits per pixel.\")}return m(B,o,d),_(!B||B.texture&&6402===B.texture._texture.format||B.renderbuffer&&33189===B.renderbuffer._renderbuffer.format,\"invalid depth attachment for framebuffer object\"),m(V,o,d),_(!V||V.renderbuffer&&36168===V.renderbuffer._renderbuffer.format,\"invalid stencil attachment for framebuffer object\"),m(I,o,d),_(!I||I.texture&&34041===I.texture._texture.format||I.renderbuffer&&34041===I.renderbuffer._renderbuffer.format,\"invalid depth-stencil attachment for framebuffer object\"),A(i),i.width=o,i.height=d,i.colorAttachments=F,i.depthAttachment=B,i.stencilAttachment=V,i.depthStencilAttachment=I,l.color=F.map(v),l.depth=v(B),l.stencil=v(V),l.depthStencil=v(I),l.width=i.width,l.height=i.height,S(i),l}return o.framebufferCount++,l(e,a),t(l,{resize:function(e,t){_(f.next!==i,\"can not resize a framebuffer which is currently in use\");var r=Math.max(0|e,1),n=Math.max(0|t||r,1);if(r===i.width&&n===i.height)return l;for(var a=i.colorAttachments,o=0;o=2,\"invalid shape for framebuffer\"),_(g[0]===g[1],\"cube framebuffer must be square\"),d=g[0]}else\"radius\"in v&&(d=0|v.radius),\"width\"in v?(d=0|v.width,\"height\"in v&&_(v.height===d,\"must be square\")):\"height\"in v&&(d=0|v.height);(\"color\"in v||\"colors\"in v)&&(m=v.color||v.colors,Array.isArray(m)&&_(1===m.length||r.webgl_draw_buffers,\"multiple render targets not supported\")),m||(\"colorCount\"in v&&(b=0|v.colorCount,_(b>0,\"invalid color buffer count\")),\"colorType\"in v&&(_.oneOf(v.colorType,c,\"invalid color type\"),h=v.colorType),\"colorFormat\"in v&&(p=v.colorFormat,_.oneOf(v.colorFormat,u,\"invalid color format for texture\"))),\"depth\"in v&&(l.depth=v.depth),\"stencil\"in v&&(l.stencil=v.stencil),\"depthStencil\"in v&&(l.depthStencil=v.depthStencil)}else d=1;if(m)if(Array.isArray(m))for(s=[],n=0;n0&&(l.depth=i[0].depth,l.stencil=i[0].stencil,l.depthStencil=i[0].depthStencil),i[n]?i[n](l):i[n]=O(l)}return t(o,{width:d,height:d,color:s})}return o(e),t(o,{faces:i,resize:function(e){var t,r=0|e;if(_(r>0&&r<=n.maxCubeMapSize,\"invalid radius for cube fbo\"),r===o.width)return o;var a=o.color;for(t=0;t=0;--e){var t=I[e];t&&t(v,null,0)}a.flush(),m&&m.update()}function ce(){!Q&&I.length>0&&(Q=j.next(Y))}function le(){Q&&(j.cancel(Y),Q=null)}function de(e){e.preventDefault(),o=!0,le(),P.forEach((function(e){e()}))}function me(e){a.getError(),o=!1,f.restore(),k.restore(),x.restore(),S.restore(),O.restore(),E.restore(),A.restore(),m&&m.restore(),T.procs.refresh(),ce(),N.forEach((function(e){e()}))}function pe(e){function r(e,t){var r={},n={};return Object.keys(e).forEach((function(a){var i=e[a];if(D.isDynamic(i))n[a]=D.unbox(i,a);else{if(t&&Array.isArray(i))for(var o=0;o0)return l.call(this,function(e){for(;m.length=0,\"cannot cancel a frame twice\"),I[t]=function e(){var t=dn(I,e);I[t]=I[I.length-1],I.length-=1,I.length<=0&&le()}}}}function ge(){var e=F.viewport,t=F.scissor_box;e[0]=e[1]=t[0]=t[1]=0,v.viewportWidth=v.framebufferWidth=v.drawingBufferWidth=e[2]=t[2]=a.drawingBufferWidth,v.viewportHeight=v.framebufferHeight=v.drawingBufferHeight=e[3]=t[3]=a.drawingBufferHeight}function ye(){v.tick+=1,v.time=we(),ge(),T.procs.poll()}function xe(){S.refresh(),ge(),T.procs.refresh(),m&&m.update()}function we(){return(C()-p)/1e3}xe();var Ae=t(pe,{clear:function(e){if(_(\"object\"==typeof e&&e,\"regl.clear() takes an object as input\"),\"framebuffer\"in e)if(e.framebuffer&&\"framebufferCube\"===e.framebuffer_reglType)for(var r=0;r<6;++r)he(t({framebuffer:e.framebuffer.faces[r]},e),be);else he(e,be);else be(0,e)},prop:D.define.bind(null,1),context:D.define.bind(null,2),this:D.define.bind(null,3),draw:pe({}),buffer:function(e){return x.create(e,34962,!1,!1)},elements:function(e){return w.create(e,!1)},texture:S.create2D,cube:S.createCube,renderbuffer:O.create,framebuffer:E.create,framebufferCube:E.createCube,vao:A.createVAO,attributes:i,frame:ve,on:function(e,t){var r;switch(_.type(t,\"function\",\"listener callback must be a function\"),e){case\"frame\":return ve(t);case\"lost\":r=P;break;case\"restore\":r=N;break;case\"destroy\":r=q;break;default:_.raise(\"invalid event, must be one of frame,lost,restore,destroy\")}return r.push(t),{cancel:function(){for(var e=0;e=0},read:z,destroy:function(){I.length=0,le(),V&&(V.removeEventListener(cn,de),V.removeEventListener(ln,me)),k.clear(),E.clear(),O.clear(),A.clear(),S.clear(),w.clear(),x.clear(),m&&m.clear(),q.forEach((function(e){e()}))},_gl:a,_refresh:xe,poll:function(){ye(),m&&m.update()},now:we,stats:l});return n.onDone(null,Ae),Ae}},\"object\"==typeof r&&void 0!==t?t.exports=o():\"function\"==typeof define&&define.amd?define(o):i.createREGL=o()},\n", - " 413: function _(t,e,s,a,r){a();const n=t(414),_=t(12);class o{constructor(t){this._regl=t,this._map=new Map}_create_texture(t){const e=t.length;let s=0;const a=[];let r=0,_=0;for(let n=0;nc[f+1]&&f++;const a=t[f],n=c[f]+.5*a;let o=.5*a-Math.abs(s-n);f%2==1&&(o=-o),m[e]=Math.round(255*(o-r)/(_-r))}return[[s,u,r,_],this._regl.texture({shape:[l,1,1],data:m,wrapS:\"repeat\",format:\"alpha\",type:\"uint8\",mag:\"linear\",min:\"linear\"})]}_get_key(t){return t.join(\",\")}_get_or_create(t){const e=this._get_key(t);let s=this._map.get(e);if(null==s){const a=(0,n.gcd)(t);if(a>1){t=(0,_.map)(t,(t=>t/a)),s=this._get_or_create(t);const[r,n,o]=s;s=[r,n,a],this._map.set(e,s)}else{const[r,n]=this._create_texture(t);s=[r,n,a],this._map.set(e,s)}}return s}get(t){return t.length%2==1&&(t=t.slice(0,-1)),this._get_or_create(t)}}s.DashCache=o,o.__name__=\"DashCache\"},\n", - " 414: function _(n,t,e,r,o){function u(n,t){let e,r;n>t?(e=n,r=t):(e=t,r=n);let o=e%r;for(;0!=o;)e=r,r=o,o=e%r;return r}r(),e.gcd=function(n){let t=n[0];for(let e=1;e u_miter_limit);\\n miter_too_large_end = (miter_factor_end > u_miter_limit);\\n }\\n\\n float sign_at_start = -sign(a_position.x); // +ve at segment start, -ve end.\\n vec2 point = sign_at_start > 0.0 ? a_point_start : a_point_end;\\n vec2 adjacent_point =\\n sign_at_start > 0.0 ? (has_start_cap ? a_point_start : a_point_prev)\\n : (has_end_cap ? a_point_end : a_point_next);\\n\\n if ( (has_start_cap && sign_at_start > 0.0) ||\\n (has_end_cap && sign_at_start < 0.0) ) {\\n // Cap.\\n xy = point - segment_right*(halfwidth*a_position.y);\\n if (cap_type == butt_cap)\\n xy -= sign_at_start*0.5*u_antialias*segment_along;\\n else\\n xy -= sign_at_start*halfwidth*segment_along;\\n }\\n else { // Join.\\n // +ve if turning to right, -ve if to left.\\n float turn_sign = sign_at_start > 0.0 ? turn_right_start : turn_right_end;\\n\\n vec2 adjacent_right = sign_at_start*normalize(right_vector(point - adjacent_point));\\n vec2 point_right = normalize(segment_right + adjacent_right);\\n float miter_factor = sign_at_start > 0.0 ? miter_factor_start : miter_factor_end;\\n bool miter_too_large = sign_at_start > 0.0 ? miter_too_large_start : miter_too_large_end;\\n\\n if (abs(a_position.x) > 1.5) {\\n // Outer point, meets prev/next segment.\\n float factor; // multiplied by halfwidth...\\n\\n if (join_type == bevel_join || (join_type == miter_join && miter_too_large))\\n factor = 1.0 / miter_factor; // cos_theta.\\n else if (join_type == round_join &&\\n miter_factor > min_miter_factor_round_join_mesh)\\n factor = 1.0;\\n else // miter, or round (small angle only).\\n factor = miter_factor;\\n\\n xy = point - point_right*(halfwidth*turn_sign*factor);\\n v_coords.y = turn_sign*halfwidth*factor / miter_factor;\\n }\\n else if (turn_sign*a_position.y < 0.0) {\\n // Inner point, meets prev/next segment.\\n float len = halfwidth*miter_factor;\\n float segment_len = v_segment_length;\\n float adjacent_len = distance(point, adjacent_point);\\n\\n if (len <= min(segment_len, adjacent_len))\\n // Normal behaviour.\\n xy = point - point_right*(len*a_position.y);\\n else\\n // For short wide line segments the inner point using the above\\n // calculation can be outside of the line. Here clipping it.\\n xy = point + segment_right*(halfwidth*turn_sign);\\n }\\n else {\\n // Point along outside edge.\\n xy = point - segment_right*(halfwidth*a_position.y);\\n if (join_type == round_join &&\\n miter_factor > min_miter_factor_round_join_mesh) {\\n xy = line_intersection(xy, segment_along,\\n point - turn_sign*point_right*halfwidth,\\n right_vector(point_right));\\n }\\n }\\n }\\n\\n vec2 pos = xy + 0.5; // Bokeh's offset.\\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(2.0*pos.x - 1.0, 1.0 - 2.0*pos.y, 0.0, 1.0);\\n\\n v_coords.x = dot(xy - a_point_start, segment_along);\\n v_flags = float(int(has_start_cap) +\\n 2*int(has_end_cap) +\\n 4*int(miter_too_large_start) +\\n 8*int(miter_too_large_end));\\n v_cos_theta_turn_right_start = cos_theta_start*turn_right_start;\\n v_cos_theta_turn_right_end = cos_theta_end*turn_right_end;\\n\\n#ifdef DASHED\\n v_length_so_far = a_length_so_far;\\n#endif\\n}\\n\"},\n", - " 416: function _(n,t,a,i,e){i();a.default=\"\\nprecision mediump float;\\n\\nconst int butt_cap = 0;\\nconst int round_cap = 1;\\nconst int square_cap = 2;\\n\\nconst int miter_join = 0;\\nconst int round_join = 1;\\nconst int bevel_join = 2;\\n\\nuniform float u_linewidth;\\nuniform float u_antialias;\\nuniform float u_line_join;\\nuniform float u_line_cap;\\nuniform vec4 u_line_color;\\n#ifdef DASHED\\nuniform sampler2D u_dash_tex;\\nuniform vec4 u_dash_tex_info;\\nuniform float u_dash_scale;\\nuniform float u_dash_offset;\\n#endif\\n\\nvarying float v_segment_length;\\nvarying vec2 v_coords;\\nvarying float v_flags;\\nvarying float v_cos_theta_turn_right_start;\\nvarying float v_cos_theta_turn_right_end;\\n#ifdef DASHED\\nvarying float v_length_so_far;\\n#endif\\n\\nfloat cross_z(in vec2 v0, in vec2 v1)\\n{\\n return v0.x*v1.y - v0.y*v1.x;\\n}\\n\\nfloat point_line_side(in vec2 point, in vec2 start, in vec2 end)\\n{\\n // +ve if point to right of line.\\n // Alternatively could do dot product with right_vector.\\n return cross_z(point - start, end - start);\\n}\\n\\nfloat point_line_distance(in vec2 point, in vec2 start, in vec2 end)\\n{\\n return point_line_side(point, start, end) / distance(start, end);\\n}\\n\\nvec2 right_vector(in vec2 v)\\n{\\n return vec2(v.y, -v.x);\\n}\\n\\nfloat bevel_join_distance(in float sign_start, in float halfwidth)\\n{\\n float cos_theta_turn_right = sign_start > 0.0 ? v_cos_theta_turn_right_start\\n : v_cos_theta_turn_right_end;\\n float cos_theta = abs(cos_theta_turn_right);\\n float turn_right = sign(cos_theta_turn_right);\\n float distance_along = sign_start > 0.0 ? 0.0 : v_segment_length;\\n\\n // In v_coords reference frame (x is along segment, y across).\\n vec2 line_start = vec2(distance_along, halfwidth*turn_right);\\n float sin_alpha = cos_theta;\\n float cos_alpha = sqrt(1.0 - sin_alpha*sin_alpha);\\n vec2 line_along = vec2(-sign_start*turn_right*sin_alpha, -cos_alpha);\\n\\n return halfwidth + sign_start*point_line_distance(\\n v_coords, line_start, line_start+line_along);\\n}\\n\\nfloat cap(in int cap_type, in float x, in float y)\\n{\\n // x is distance along segment in direction away from end of segment,\\n // y is distance across segment.\\n if (cap_type == butt_cap)\\n return max(0.5*u_linewidth - x, abs(y));\\n else if (cap_type == square_cap)\\n return max(-x, abs(y));\\n else // cap_type == round_cap\\n return distance(vec2(min(x, 0.0), y), vec2(0.0, 0.0));\\n}\\n\\nfloat distance_to_alpha(in float dist)\\n{\\n return 1.0 - smoothstep(0.5*(u_linewidth - u_antialias),\\n 0.5*(u_linewidth + u_antialias), dist);\\n}\\n\\n#ifdef DASHED\\nfloat dash_distance(in float x)\\n{\\n // x is in direction of v_coords.x, i.e. along segment.\\n float tex_length = u_dash_tex_info.x;\\n float tex_offset = u_dash_tex_info.y;\\n float tex_dist_min = u_dash_tex_info.z;\\n float tex_dist_max = u_dash_tex_info.w;\\n\\n // Apply offset.\\n x += v_length_so_far - u_dash_scale*tex_offset + u_dash_offset;\\n\\n // Interpolate within texture to obtain distance to dash.\\n float dist = texture2D(u_dash_tex,\\n vec2(x / (tex_length*u_dash_scale), 0.0)).a;\\n\\n // Scale distance within min and max limits.\\n dist = tex_dist_min + dist*(tex_dist_max - tex_dist_min);\\n\\n return u_dash_scale*dist;\\n}\\n\\nmat2 rotation_matrix(in float sign_start)\\n{\\n // Rotation matrix for v_coords from this segment to prev or next segment.\\n float cos_theta_turn_right = sign_start > 0.0 ? v_cos_theta_turn_right_start\\n : v_cos_theta_turn_right_end;\\n float cos_theta = abs(cos_theta_turn_right);\\n float turn_right = sign(cos_theta_turn_right);\\n\\n float sin_theta = sqrt(1.0 - cos_theta*cos_theta)*sign_start*turn_right;\\n float cos_2theta = 2.0*cos_theta*cos_theta - 1.0;\\n float sin_2theta = 2.0*sin_theta*cos_theta;\\n return mat2(cos_2theta, -sin_2theta, sin_2theta, cos_2theta);\\n}\\n#endif\\n\\nvoid main()\\n{\\n int join_type = int(u_line_join + 0.5);\\n int cap_type = int(u_line_cap + 0.5);\\n float halfwidth = 0.5*(u_linewidth + u_antialias);\\n\\n // Extract flags.\\n int flags = int(v_flags + 0.5);\\n bool miter_too_large_end = (flags / 8 > 0);\\n flags -= 8*int(miter_too_large_end);\\n bool miter_too_large_start = (flags / 4 > 0);\\n flags -= 4*int(miter_too_large_start);\\n bool has_end_cap = (flags / 2 > 0);\\n flags -= 2*int(has_end_cap);\\n bool has_start_cap = flags > 0;\\n\\n float dist = v_coords.y; // For straight segment, and miter join.\\n\\n if (v_coords.x <= 0.5*u_antialias) {\\n // At start of segment, either cap or join.\\n if (has_start_cap)\\n dist = cap(cap_type, v_coords.x, v_coords.y);\\n else if (join_type == round_join)\\n dist = distance(v_coords, vec2(0.0, 0.0));\\n else if (join_type == bevel_join ||\\n (join_type == miter_join && miter_too_large_start))\\n dist = max(abs(dist), bevel_join_distance(1.0, halfwidth));\\n // else a miter join which uses the default dist calculation.\\n }\\n else if (v_coords.x >= v_segment_length - 0.5*u_antialias) {\\n // At end of segment, either cap or join.\\n if (has_end_cap)\\n dist = cap(cap_type, v_segment_length - v_coords.x, v_coords.y);\\n else if (join_type == round_join)\\n dist = distance(v_coords, vec2(v_segment_length, 0));\\n else if ((join_type == bevel_join ||\\n (join_type == miter_join && miter_too_large_end)))\\n dist = max(abs(dist), bevel_join_distance(-1.0, halfwidth));\\n // else a miter join which uses the default dist calculation.\\n }\\n\\n float alpha = distance_to_alpha(abs(dist));\\n\\n#ifdef DASHED\\n if (u_dash_tex_info.x >= 0.0) {\\n // Dashes in straight segments (outside of joins) are easily calculated.\\n dist = dash_distance(v_coords.x);\\n\\n if (!has_start_cap && cap_type == butt_cap) {\\n if (v_coords.x < 0.5*u_antialias) {\\n // Outer of start join rendered solid color or not at all\\n // depending on whether corner point is in dash or gap, with\\n // antialiased ends.\\n dist = (dash_distance(0.0) > 0.0 ? 0.5*u_antialias - v_coords.x\\n : -0.5*u_linewidth);\\n\\n // Also consider antialiased end of dash just outside corner.\\n float end_dist = dash_distance(0.5*u_antialias) + v_coords.x -\\n 0.5*u_antialias;\\n dist = max(dist, end_dist);\\n }\\n\\n vec2 prev_coords = rotation_matrix(1.0)*v_coords;\\n\\n if (abs(prev_coords.y) < halfwidth &&\\n prev_coords.x < 0.5*u_antialias) {\\n // Extend dashes across from previous segment, with antialiased\\n // end.\\n float new_dist = dash_distance(min(prev_coords.x,\\n -0.5*u_antialias));\\n\\n if (prev_coords.x > -0.5*u_antialias)\\n new_dist -= prev_coords.x + 0.5*u_antialias;\\n\\n new_dist = min(new_dist, 0.5*u_linewidth - abs(prev_coords.y));\\n dist = max(dist, new_dist);\\n }\\n }\\n\\n if (!has_end_cap && cap_type == butt_cap) {\\n if (v_coords.x > v_segment_length - 0.5*u_antialias) {\\n // Similar for end join.\\n dist = (dash_distance(v_segment_length) > 0.0\\n ? v_coords.x - v_segment_length + 0.5*u_antialias\\n : -0.5*u_linewidth);\\n\\n float end_dist =\\n dash_distance(v_segment_length - 0.5*u_antialias) -\\n v_coords.x + v_segment_length - 0.5*u_antialias;\\n dist = max(dist, end_dist);\\n }\\n\\n vec2 next_coords =\\n rotation_matrix(-1.0)*(v_coords - vec2(v_segment_length, 0.0));\\n\\n if (abs(next_coords.y) < halfwidth &&\\n next_coords.x > -0.5*u_antialias) {\\n // Extend dashes across from next segment, with antialiased end.\\n float new_dist = dash_distance(v_segment_length +\\n max(next_coords.x, 0.5*u_antialias));\\n\\n if (next_coords.x < 0.5*u_antialias)\\n new_dist += next_coords.x - 0.5*u_antialias;\\n\\n new_dist = min(new_dist, 0.5*u_linewidth - abs(next_coords.y));\\n dist = max(dist, new_dist);\\n }\\n }\\n\\n dist = cap(cap_type, dist, v_coords.y);\\n\\n float dash_alpha = distance_to_alpha(dist);\\n alpha = min(alpha, dash_alpha);\\n }\\n#endif\\n\\n alpha = u_line_color.a*alpha;\\n gl_FragColor = vec4(u_line_color.rgb*alpha, alpha); // Premultiplied alpha.\\n}\\n\"},\n", - " 417: function _(n,i,o,a,t){a();o.default=\"\\nprecision mediump float;\\n\\nattribute vec2 a_position;\\nattribute vec2 a_center;\\nattribute float a_size;\\nattribute float a_angle; // in radians\\nattribute float a_linewidth;\\nattribute vec4 a_line_color;\\nattribute vec4 a_fill_color;\\nattribute float a_show;\\n\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size;\\nuniform float u_antialias;\\n\\nvarying float v_linewidth;\\nvarying float v_size;\\nvarying vec4 v_line_color;\\nvarying vec4 v_fill_color;\\nvarying vec2 v_coords;\\n\\nvoid main()\\n{\\n v_size = a_size;\\n v_linewidth = a_linewidth;\\n v_line_color = a_line_color;\\n v_fill_color = a_fill_color;\\n\\n if (a_show < 0.5) {\\n // Do not show this marker.\\n gl_Position = vec4(-2.0, -2.0, 0.0, 1.0);\\n return;\\n }\\n\\n float enclosing_size = v_size + 2.0*v_linewidth + 3.0*u_antialias;\\n\\n // Coordinates in rotated frame with respect to center of marker, used in\\n // distance functions in fragment shader.\\n v_coords = a_position*enclosing_size;\\n\\n float c = cos(-a_angle);\\n float s = sin(-a_angle);\\n mat2 rotation = mat2(c, -s, s, c);\\n\\n vec2 pos = a_center + rotation*v_coords;\\n pos += 0.5; // make up for Bokeh's offset\\n pos /= u_canvas_size / u_pixel_ratio; // in 0..1\\n gl_Position = vec4(2.0*pos.x - 1.0, 1.0 - 2.0*pos.y, 0.0, 1.0);\\n}\\n\"},\n", - " 418: function _(n,a,e,t,s){t();e.default=\"\\nprecision mediump float;\\n\\nconst float SQRT_2 = 1.4142135623730951;\\nconst float SQRT_3 = sqrt(3.0);\\nconst float PI = 3.14159265358979323846264;\\n\\nconst float IN_ANGLE = 0.6283185307179586; // PI/5. = 36 degrees (star of 5 pikes)\\n//const float OUT_ANGLE = PI/2. - IN_ANGLE; // External angle for regular stars\\nconst float COS_A = 0.8090169943749475; // cos(IN_ANGLE)\\nconst float SIN_A = 0.5877852522924731; // sin(IN_ANGLE)\\nconst float COS_B = 0.5877852522924731; // cos(OUT_ANGLE)\\nconst float SIN_B = 0.8090169943749475; // sin(OUT_ANGLE)\\n\\nuniform float u_antialias;\\n\\nvarying vec4 v_line_color;\\nvarying vec4 v_fill_color;\\nvarying float v_linewidth;\\nvarying float v_size;\\nvarying vec2 v_coords;\\n\\n#ifdef USE_ASTERISK\\n// asterisk\\nfloat marker(vec2 P, float size)\\n{\\n // Masks\\n float diamond = max(abs(SQRT_2 / 2.0 * (P.x - P.y)), abs(SQRT_2 / 2.0 * (P.x + P.y))) - size / 2.0;\\n float square = max(abs(P.x), abs(P.y)) - size / 2.0;\\n // Shapes\\n float X = min(abs(P.x - P.y), abs(P.x + P.y));\\n float cross = min(abs(P.x), abs(P.y));\\n // Result is union of masked shapes\\n float result = min(max(X, diamond), max(cross, square));\\n return max(result - v_linewidth/2.0 + u_antialias/2.0, 0.0);\\n}\\n#endif\\n\\n#ifdef USE_CIRCLE\\n// circle\\nfloat marker(vec2 P, float size)\\n{\\n return length(P) - size/2.0;\\n}\\n#endif\\n\\n#ifdef USE_DOT\\nfloat marker(vec2 P, float size)\\n{\\n return max(length(P) - size/8.0 - v_linewidth/15.0 + u_antialias, 0.0);\\n}\\n#endif\\n\\n#ifdef USE_CIRCLE_DOT\\nfloat marker(vec2 P, float size)\\n{\\n float circle = length(P) - size/2.0;\\n float dot_ = min(size/8.0 + v_linewidth/15.0 - u_antialias - length(P), 0.0);\\n return max(circle, dot_);\\n}\\n#endif\\n\\n#ifdef USE_SQUARE\\n// square\\nfloat marker(vec2 P, float size)\\n{\\n return max(abs(P.x), abs(P.y)) - size/2.0;\\n}\\n#endif\\n\\n#ifdef USE_SQUARE_DOT\\nfloat marker(vec2 P, float size)\\n{\\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\\n float dot_ = min(size/8.0 + v_linewidth/15.0 - u_antialias - length(P), 0.0);\\n return max(square, dot_);\\n}\\n#endif\\n\\n#ifdef USE_DIAMOND\\n// diamond\\nfloat marker(vec2 P, float size)\\n{\\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\\n return r1 / SQRT_2;\\n}\\n#endif\\n\\n#ifdef USE_DIAMOND_DOT\\nfloat marker(vec2 P, float size)\\n{\\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\\n float diamond = r1 / SQRT_2;\\n float dot_ = min(size/8.0 + v_linewidth/15.0 - u_antialias - length(P), 0.0);\\n return max(diamond, dot_);\\n}\\n#endif\\n\\n#ifdef USE_HEX\\n// hex\\nfloat marker(vec2 P, float size)\\n{\\n vec2 q = abs(P);\\n return max(q.y * 0.57735 + q.x - 1.0 * size/2.0, q.y - 0.866 * size/2.0);\\n}\\n#endif\\n\\n#ifdef USE_HEX_DOT\\nfloat marker(vec2 P, float size)\\n{\\n vec2 q = abs(P);\\n float hex = max(q.y * 0.57735 + q.x - 1.0 * size/2.0, q.y - 0.866 * size/2.0);\\n float dot_ = min(size/8.0 + v_linewidth/15.0 - u_antialias - length(P), 0.0);\\n return max(hex, dot_);\\n}\\n#endif\\n\\n#ifdef USE_STAR\\n// star\\n// https://iquilezles.org/www/articles/distfunctions2d/distfunctions2d.htm\\nfloat marker(vec2 P, float size)\\n{\\n float bn = mod(atan(P.x, -P.y), 2.0*IN_ANGLE) - IN_ANGLE;\\n P = length(P)*vec2(cos(bn), abs(sin(bn)));\\n P -= size*vec2(COS_A, SIN_A)/2.;\\n P += vec2(COS_B, SIN_B)*clamp(-(P.x*COS_B + P.y*SIN_B), 0.0, size*SIN_A/SIN_B/2.);\\n return length(P)*sign(P.x);\\n}\\n#endif\\n\\n#ifdef USE_STAR_DOT\\nfloat marker(vec2 P, float size)\\n{\\n float dot_ = min(size/8.0 + v_linewidth/15.0 - u_antialias - length(P), 0.0);\\n float bn = mod(atan(P.x, -P.y), 2.0*IN_ANGLE) - IN_ANGLE;\\n P = length(P)*vec2(cos(bn), abs(sin(bn)));\\n P -= size*vec2(COS_A, SIN_A)/2.;\\n P += vec2(COS_B, SIN_B)*clamp(-(P.x*COS_B + P.y*SIN_B), 0.0, size*SIN_A/SIN_B/2.);\\n float star = length(P)*sign(P.x);\\n return max(star, dot_);\\n}\\n#endif\\n\\n#ifdef USE_TRIANGLE\\n// triangle\\nfloat marker(vec2 P, float size)\\n{\\n P.y -= size * 0.3;\\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / 1.6;\\n float r2 = P.y;\\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\\n}\\n#endif\\n\\n#ifdef USE_TRIANGLE_DOT\\nfloat marker(vec2 P, float size)\\n{\\n float dot_ = min(size/8.0 + v_linewidth/15.0 - u_antialias - length(P), 0.0);\\n P.y -= size * 0.3;\\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / 1.6;\\n float r2 = P.y;\\n float triangle = max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\\n return max(triangle, dot_);\\n}\\n#endif\\n\\n#ifdef USE_INVERTED_TRIANGLE\\n// inverted_triangle\\nfloat marker(vec2 P, float size)\\n{\\n P.y += size * 0.3;\\n float x = SQRT_2 / 2.0 * (P.x * 1.7 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.7 + P.y);\\n float r1 = max(abs(x), abs(y)) - size / 1.6;\\n float r2 = - P.y;\\n return max(r1 / SQRT_2, r2); // Intersect diamond with rectangle\\n}\\n#endif\\n\\n#ifdef USE_CROSS\\n// cross\\nfloat marker(vec2 P, float size)\\n{\\n float square = max(abs(P.x), abs(P.y)) - size / 2.0;\\n float cross = min(abs(P.x), abs(P.y));\\n cross = max(cross - v_linewidth/2.0 + u_antialias/2.0, 0.0);\\n return max(square, cross);\\n}\\n#endif\\n\\n#ifdef USE_DASH\\nfloat marker(vec2 P, float size)\\n{\\n float square = max(abs(P.x), abs(P.y)) - size / 2.0;\\n float cross = abs(P.y);\\n cross = max(cross - v_linewidth/2.0 + u_antialias/2.0, 0.0);\\n return max(square, cross);\\n}\\n#endif\\n\\n#ifdef USE_CIRCLE_CROSS\\n// circle_cross\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float circle = length(P) - size/2.0;\\n float c1 = max(circle, s1);\\n float c2 = max(circle, s2);\\n float c3 = max(circle, s3);\\n float c4 = max(circle, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n#endif\\n\\n#ifdef USE_SQUARE_CROSS\\n// square_cross\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\\n float c1 = max(square, s1);\\n float c2 = max(square, s2);\\n float c3 = max(square, s3);\\n float c4 = max(square, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n#endif\\n\\n#ifdef USE_DIAMOND_CROSS\\n// diamond_cross\\nfloat marker(vec2 P, float size)\\n{\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(P.x - qs), abs(P.y - qs)) - qs;\\n float s2 = max(abs(P.x + qs), abs(P.y - qs)) - qs;\\n float s3 = max(abs(P.x - qs), abs(P.y + qs)) - qs;\\n float s4 = max(abs(P.x + qs), abs(P.y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float x = SQRT_2 / 2.0 * (P.x * 1.5 - P.y);\\n float y = SQRT_2 / 2.0 * (P.x * 1.5 + P.y);\\n float diamond = max(abs(x), abs(y)) - size / (2.0 * SQRT_2);\\n diamond /= SQRT_2;\\n float c1 = max(diamond, s1);\\n float c2 = max(diamond, s2);\\n float c3 = max(diamond, s3);\\n float c4 = max(diamond, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n#endif\\n\\n#ifdef USE_X\\n// x\\nfloat marker(vec2 P, float size)\\n{\\n float circle = length(P) - size / 2.0;\\n float X = min(abs(P.x - P.y), abs(P.x + P.y));\\n X = max(X - v_linewidth/2.0, 0.0);\\n return max(circle, X);\\n}\\n#endif\\n\\n#ifdef USE_Y\\nfloat marker(vec2 P, float size)\\n{\\n float circle = length(P) - size / 2.0;\\n\\n float dx = 1.0 / SQRT_3;\\n float dy = SQRT_2 / SQRT_3;\\n\\n // Sideways distance from the three spokes.\\n float d0 = abs(P.x);\\n float d1 = abs(dot(P, vec2(dx, dy)));\\n float d2 = abs(dot(P, vec2(dx, -dy)));\\n\\n // Clip each spoke to semicircle.\\n d0 = max(d0, -P.y);\\n d1 = max(d1, dot(P, vec2(-dy, dx)));\\n d2 = max(d2, dot(P, vec2(dy, dx)));\\n\\n float Y = min(min(d0, d1), d2);\\n Y = max(Y - v_linewidth/2.0 + u_antialias/2.0, 0.0);\\n return max(circle, Y);\\n}\\n#endif\\n\\n#ifdef USE_CIRCLE_X\\n// circle_x\\nfloat marker(vec2 P, float size)\\n{\\n float x = P.x - P.y;\\n float y = P.x + P.y;\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float circle = length(P) - size/2.0;\\n float c1 = max(circle, s1);\\n float c2 = max(circle, s2);\\n float c3 = max(circle, s3);\\n float c4 = max(circle, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n#endif\\n\\n#ifdef USE_CIRCLE_Y\\nfloat marker(vec2 P, float size)\\n{\\n float circle = length(P) - size/2.0;\\n\\n float dx = 1.0 / SQRT_3;\\n float dy = SQRT_2 / SQRT_3;\\n\\n // Sideways distance from the three spokes.\\n float d0 = abs(P.x);\\n float d1 = abs(dot(P, vec2(dx, dy)));\\n float d2 = abs(dot(P, vec2(dx, -dy)));\\n\\n // Clip each spoke to semicircle.\\n d0 = max(d0, -P.y);\\n d1 = max(d1, dot(P, vec2(-dy, dx)));\\n d2 = max(d2, dot(P, vec2(dy, dx)));\\n\\n float Y = min(min(d0, d1), d2);\\n Y = min(v_linewidth/2.0 - u_antialias/2.0 - Y, 0.0);\\n\\n return max(circle, Y);\\n}\\n#endif\\n\\n#ifdef USE_SQUARE_X\\n// square_x\\nfloat marker(vec2 P, float size)\\n{\\n float x = P.x - P.y;\\n float y = P.x + P.y;\\n // Define quadrants\\n float qs = size / 2.0; // quadrant size\\n float s1 = max(abs(x - qs), abs(y - qs)) - qs;\\n float s2 = max(abs(x + qs), abs(y - qs)) - qs;\\n float s3 = max(abs(x - qs), abs(y + qs)) - qs;\\n float s4 = max(abs(x + qs), abs(y + qs)) - qs;\\n // Intersect main shape with quadrants (to form cross)\\n float square = max(abs(P.x), abs(P.y)) - size/2.0;\\n float c1 = max(square, s1);\\n float c2 = max(square, s2);\\n float c3 = max(square, s3);\\n float c4 = max(square, s4);\\n // Union\\n return min(min(min(c1, c2), c3), c4);\\n}\\n#endif\\n\\n#ifdef USE_PLUS\\nfloat marker(vec2 P, float size)\\n{\\n vec2 size2 = vec2(size*0.5, size*0.2);\\n P = abs(P);\\n P = (P.y > P.x) ? P.yx : P.xy;\\n vec2 q = P - size2;\\n float k = max(q.y, q.x);\\n vec2 w = (k > 0.0) ? q : vec2(size2.y - P.x, -k);\\n return sign(k)*length(max(w, 0.0));\\n}\\n#endif\\n\\n#ifdef USE_SQUARE_PIN\\nfloat marker(vec2 P, float size)\\n{\\n float actual_size = size*1.2;\\n float radius = 0.75*actual_size; // Radius of curvature of edges.\\n float offset = actual_size/2.0 + sqrt(radius*radius - actual_size*actual_size/4.0);\\n vec2 centerx = vec2(offset, 0.0);\\n vec2 centery = vec2(0.0, offset);\\n\\n float right = length(P - centerx);\\n float left = length(P + centerx);\\n float up = length(P - centery);\\n float down = length(P + centery);\\n float pin = radius - min(min(right, left), min(up, down));\\n\\n float circle = length(P) - actual_size*0.6;\\n return max(circle, pin);\\n}\\n#endif\\n\\n#ifdef USE_TRIANGLE_PIN\\nfloat marker(vec2 P, float size)\\n{\\n float actual_size = size*1.2;\\n float radius = 1.2*actual_size; // Radius of curvature of edges.\\n\\n float angle = 2.0*PI / 3.0;\\n float c = cos(angle);\\n float s = sin(angle);\\n mat2 rotation = mat2(c, -s, s, c);\\n\\n // Half the length of straight triangle edge.\\n float half_edge = actual_size*SQRT_3/4.0;\\n // Distance from center of triangle to middle of straight edge.\\n float centre_middle_edge = 0.25*actual_size;\\n float offset = centre_middle_edge + sqrt(radius*radius - half_edge*half_edge);\\n // Centre of curvature.\\n vec2 center = vec2(0.0, offset);\\n\\n float dist0 = length(P - center);\\n P = rotation*P;\\n float dist1 = length(P - center);\\n P = rotation*P;\\n float dist2 = length(P - center);\\n float pin = radius - min(min(dist0, dist1), dist2);\\n\\n float circle = length(P) - actual_size / 2.0;\\n return max(circle, pin);\\n}\\n#endif\\n\\nvec4 outline(float distance, float linewidth, float antialias, vec4 line_color,\\n vec4 fill_color)\\n{\\n vec4 frag_color;\\n float t = min(linewidth/2.0 - antialias, 0.0); // Line half-width.\\n float signed_distance = distance;\\n float border_distance = abs(signed_distance) - t;\\n float alpha = border_distance/antialias;\\n alpha = exp(-alpha*alpha);\\n\\n // If line alpha is zero, it probably means no outline. To avoid a dark\\n // outline shining through due to antialiasing, we set the line color to the\\n // fill color.\\n float select = float(bool(line_color.a));\\n line_color.rgb = select*line_color.rgb + (1.0 - select)*fill_color.rgb;\\n // Similarly, if we want a transparent fill.\\n select = float(bool(fill_color.a));\\n fill_color.rgb = select*fill_color.rgb + (1.0 - select)*line_color.rgb;\\n\\n if (border_distance < 0.0)\\n frag_color = line_color;\\n else if (signed_distance < 0.0)\\n frag_color = mix(fill_color, line_color, sqrt(alpha));\\n else {\\n if (abs(signed_distance) < linewidth/2.0 + antialias)\\n frag_color = vec4(line_color.rgb, line_color.a*alpha);\\n else\\n discard;\\n }\\n return frag_color;\\n}\\n\\nvoid main()\\n{\\n float distance = marker(v_coords, v_size);\\n gl_FragColor = outline(\\n distance, v_linewidth, u_antialias, v_line_color, v_fill_color);\\n gl_FragColor.rgb *= gl_FragColor.a; // Premultiplied alpha.\\n}\\n\"},\n", - " 419: function _(n,t,a,i,e){i();a.default=\"\\nprecision mediump float;\\n\\nattribute vec2 a_position;\\nattribute vec2 a_center;\\nattribute float a_width;\\nattribute float a_height;\\nattribute float a_angle; // In radians\\nattribute float a_linewidth;\\nattribute vec4 a_line_color;\\nattribute vec4 a_fill_color;\\nattribute float a_line_join;\\nattribute float a_show;\\n#ifdef HATCH\\nattribute float a_hatch_pattern;\\nattribute float a_hatch_scale;\\nattribute float a_hatch_weight;\\nattribute vec4 a_hatch_color;\\n#endif\\n\\nuniform float u_pixel_ratio;\\nuniform vec2 u_canvas_size;\\nuniform float u_antialias;\\n\\nvarying float v_linewidth;\\nvarying vec2 v_size; // 2D size for rects compared to 1D for markers.\\nvarying vec4 v_line_color;\\nvarying vec4 v_fill_color;\\nvarying float v_line_join;\\nvarying vec2 v_coords;\\n#ifdef HATCH\\nvarying float v_hatch_pattern;\\nvarying float v_hatch_scale;\\nvarying float v_hatch_weight;\\nvarying vec4 v_hatch_color;\\nvarying vec2 v_hatch_coords;\\n#endif\\n\\nvoid main()\\n{\\n if (a_show < 0.5) {\\n // Do not show this rect.\\n gl_Position = vec4(-2.0, -2.0, 0.0, 1.0);\\n return;\\n }\\n\\n v_size = vec2(a_width, a_height);\\n v_linewidth = a_linewidth;\\n v_line_color = a_line_color;\\n v_fill_color = a_fill_color;\\n v_line_join = a_line_join;\\n\\n if (v_linewidth < 1.0) {\\n // Linewidth less than 1 is implemented as 1 but with reduced alpha.\\n v_line_color.a *= v_linewidth;\\n v_linewidth = 1.0;\\n }\\n\\n#ifdef HATCH\\n v_hatch_pattern = a_hatch_pattern;\\n v_hatch_scale = a_hatch_scale;\\n v_hatch_weight = a_hatch_weight;\\n v_hatch_color = a_hatch_color;\\n#endif\\n\\n vec2 enclosing_size = v_size + v_linewidth + u_antialias;\\n\\n // Coordinates in rotated frame with respect to center of marker, used for\\n // distance functions in fragment shader.\\n v_coords = a_position*enclosing_size;\\n\\n float c = cos(-a_angle);\\n float s = sin(-a_angle);\\n mat2 rotation = mat2(c, -s, s, c);\\n\\n vec2 pos = a_center + rotation*v_coords;\\n#ifdef HATCH\\n // Coordinates for hatching in unrotated frame of reference.\\n v_hatch_coords = pos - 0.5;\\n#endif\\n pos += 0.5; // Make up for Bokeh's offset.\\n pos /= u_canvas_size / u_pixel_ratio; // 0 to 1.\\n gl_Position = vec4(2.0*pos.x - 1.0, 1.0 - 2.0*pos.y, 0.0, 1.0);\\n}\\n\"},\n", - " 420: function _(n,a,t,o,r){o();t.default=\"\\nprecision mediump float;\\n\\nconst float SQRT2 = sqrt(2.0);\\nconst float INVSQRT2 = 1.0/SQRT2;\\nconst float PI = 3.14159265358979323846;\\n\\nconst int miter_join = 0;\\nconst int round_join = 1;\\nconst int bevel_join = 2;\\n#ifdef HATCH\\nconst int hatch_dot = 1;\\nconst int hatch_ring = 2;\\nconst int hatch_horizontal_line = 3;\\nconst int hatch_vertical_line = 4;\\nconst int hatch_cross = 5;\\nconst int hatch_horizontal_dash = 6;\\nconst int hatch_vertical_dash = 7;\\nconst int hatch_spiral = 8;\\nconst int hatch_right_diagonal_line = 9;\\nconst int hatch_left_diagonal_line = 10;\\nconst int hatch_diagonal_cross = 11;\\nconst int hatch_right_diagonal_dash = 12;\\nconst int hatch_left_diagonal_dash = 13;\\nconst int hatch_horizontal_wave = 14;\\nconst int hatch_vertical_wave = 15;\\nconst int hatch_criss_cross = 16;\\n#endif\\n\\nuniform float u_antialias;\\n\\nvarying float v_linewidth;\\nvarying vec2 v_size;\\nvarying vec4 v_line_color;\\nvarying vec4 v_fill_color;\\nvarying float v_line_join;\\nvarying vec2 v_coords;\\n#ifdef HATCH\\nvarying float v_hatch_pattern;\\nvarying float v_hatch_scale;\\nvarying float v_hatch_weight;\\nvarying vec4 v_hatch_color;\\nvarying vec2 v_hatch_coords;\\n#endif\\n\\n// Distance is zero on edge of marker, +ve outside and -ve inside.\\nfloat marker_distance(vec2 p, int line_join)\\n{\\n vec2 dist2 = abs(p) - v_size/2.0;\\n float dist = max(dist2.x, dist2.y);\\n\\n if (dist2.x > 0.0 && dist2.y > 0.0) {\\n // Outside of corner needs correct join, default is miter.\\n if (line_join == round_join)\\n dist = length(dist2);\\n else if (line_join == bevel_join) {\\n vec2 normal = vec2(INVSQRT2, INVSQRT2);\\n dist = dot(dist2, normal) + 0.5*v_linewidth*(1.0 - INVSQRT2);\\n }\\n }\\n\\n return dist;\\n}\\n\\n// Convert distance from edge of marker to fraction in range 0 to 1, depending\\n// on antialiasing width.\\nfloat distance_to_fraction(float dist)\\n{\\n return 1.0 - smoothstep(-0.5*u_antialias, 0.5*u_antialias, dist);\\n}\\n\\n// Return fraction from 0 (no fill color) to 1 (full fill color).\\nfloat fill_fraction(float dist)\\n{\\n return distance_to_fraction(dist);\\n}\\n\\n// Return fraction in range 0 (no line color) to 1 (full line color).\\nfloat line_fraction(float dist)\\n{\\n return distance_to_fraction(abs(dist) - 0.5*v_linewidth);\\n}\\n\\n// Return fraction (in range 0 to 1) of a color, with premultiplied alpha.\\nvec4 fractional_color(vec4 color, float fraction)\\n{\\n color.a *= fraction;\\n color.rgb *= color.a;\\n return color;\\n}\\n\\n// Blend colors that have premultiplied alpha.\\nvec4 blend_colors(vec4 src, vec4 dest)\\n{\\n return (1.0 - src.a)*dest + src;\\n}\\n\\n#ifdef HATCH\\n// Wrap coordinate(s) by removing integer part to give distance from center of\\n// repeat, in the range -0.5 to +0.5.\\nfloat wrap(float x)\\n{\\n return fract(x) - 0.5;\\n}\\n\\nvec2 wrap(vec2 xy)\\n{\\n return fract(xy) - 0.5;\\n}\\n\\n// Return fraction from 0 (no hatch color) to 1 (full hatch color).\\nfloat hatch_fraction(vec2 coords, int hatch_pattern)\\n{\\n float scale = v_hatch_scale; // Hatch repeat distance.\\n\\n // Coordinates and linewidth/halfwidth are scaled to hatch repeat distance.\\n coords = coords / scale;\\n float halfwidth = 0.5*v_hatch_weight / scale; // Half the hatch linewidth.\\n\\n // Default is to return fraction of zero, i.e. no pattern.\\n float dist = u_antialias;\\n\\n if (hatch_pattern == hatch_dot) {\\n const float dot_radius = 0.25;\\n dist = length(wrap(coords)) - dot_radius;\\n }\\n else if (hatch_pattern == hatch_ring) {\\n const float ring_radius = 0.25;\\n dist = abs(length(wrap(coords)) - ring_radius) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_horizontal_line) {\\n dist = abs(wrap(coords.y)) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_vertical_line) {\\n dist = abs(wrap(coords.x)) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_cross) {\\n dist = min(abs(wrap(coords.x)), abs(wrap(coords.y))) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_horizontal_dash) {\\n // Dashes have square caps.\\n const float halflength = 0.25;\\n dist = max(abs(wrap(coords.y)),\\n abs(wrap(coords.x) + 0.25) - halflength) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_vertical_dash) {\\n const float halflength = 0.25;\\n dist = max(abs(wrap(coords.x)),\\n abs(wrap(coords.y) + 0.25) - halflength) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_spiral) {\\n vec2 wrap2 = wrap(coords);\\n float angle = wrap(atan(wrap2.y, wrap2.x) / (2.0*PI));\\n // Canvas spiral radius increases by scale*pi/15 each rotation.\\n const float dr = PI/15.0;\\n float radius = length(wrap2);\\n // At any angle, spiral lines are equally spaced dr apart.\\n // Find distance to nearest of these lines.\\n float frac = fract((radius - dr*angle) / dr); // 0 to 1.\\n dist = dr*(abs(frac - 0.5));\\n dist = min(dist, radius) - halfwidth; // Consider center point also.\\n }\\n else if (hatch_pattern == hatch_right_diagonal_line) {\\n dist = abs(wrap(2.0*coords.x + coords.y))/sqrt(5.0) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_left_diagonal_line) {\\n dist = abs(wrap(2.0*coords.x - coords.y))/sqrt(5.0) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_diagonal_cross) {\\n coords = vec2(coords.x + coords.y + 0.5, coords.x - coords.y + 0.5);\\n dist = min(abs(wrap(coords.x)), abs(wrap(coords.y))) / SQRT2 - halfwidth;\\n }\\n else if (hatch_pattern == hatch_right_diagonal_dash) {\\n float across = coords.x + coords.y + 0.5;\\n dist = abs(wrap(across)) / SQRT2; // Distance to nearest solid line.\\n\\n across = floor(across); // Offset for dash.\\n float along = wrap(0.5*(coords.x - coords.y + across));\\n const float halflength = 0.25;\\n along = abs(along) - halflength; // Distance along line.\\n\\n dist = max(dist, along) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_left_diagonal_dash) {\\n float across = coords.x - coords.y + 0.5;\\n dist = abs(wrap(across)) / SQRT2; // Distance to nearest solid line.\\n\\n across = floor(across); // Offset for dash.\\n float along = wrap(0.5*(coords.x + coords.y + across));\\n const float halflength = 0.25;\\n along = abs(along) - halflength; // Distance along line.\\n\\n dist = max(dist, along) - halfwidth;\\n }\\n else if (hatch_pattern == hatch_horizontal_wave) {\\n float wrapx = wrap(coords.x);\\n float wrapy = wrap(coords.y - 0.25 + abs(wrapx));\\n dist = abs(wrapy) / SQRT2 - halfwidth;\\n }\\n else if (hatch_pattern == hatch_vertical_wave) {\\n float wrapy = wrap(coords.y);\\n float wrapx = wrap(coords.x - 0.25 + abs(wrapy));\\n dist = abs(wrapx) / SQRT2 - halfwidth;\\n }\\n else if (hatch_pattern == hatch_criss_cross) {\\n float plus = min(abs(wrap(coords.x)), abs(wrap(coords.y)));\\n\\n coords = vec2(coords.x + coords.y + 0.5, coords.x - coords.y + 0.5);\\n float X = min(abs(wrap(coords.x)), abs(wrap(coords.y))) / SQRT2;\\n\\n dist = min(plus, X) - halfwidth;\\n }\\n\\n return distance_to_fraction(dist*scale);\\n}\\n#endif\\n\\nvoid main()\\n{\\n int line_join = int(v_line_join + 0.5);\\n#ifdef HATCH\\n int hatch_pattern = int(v_hatch_pattern + 0.5);\\n#endif\\n\\n float dist = marker_distance(v_coords, line_join);\\n\\n float fill_frac = fill_fraction(dist);\\n vec4 color = fractional_color(v_fill_color, fill_frac);\\n\\n#ifdef HATCH\\n if (hatch_pattern > 0 && fill_frac > 0.0) {\\n float hatch_frac = hatch_fraction(v_hatch_coords, hatch_pattern);\\n vec4 hatch_color = fractional_color(v_hatch_color, hatch_frac*fill_frac);\\n color = blend_colors(hatch_color, color);\\n }\\n#endif\\n\\n float line_frac = line_fraction(dist);\\n if (line_frac > 0.0) {\\n vec4 line_color = fractional_color(v_line_color, line_frac);\\n color = blend_colors(line_color, color);\\n }\\n\\n gl_FragColor = color;\\n}\\n\"},\n", - " 421: function _(s,i,t,e,_){e();const h=s(422),l=s(22),a=s(46),n=s(423),o=s(424),r=-1e4;class p extends h.BaseGLGlyph{constructor(s,i){super(s,i),this.glyph=i,this._antialias=1.5,this._miter_limit=5}draw(s,i,t){const e=i.glglyph;this.visuals_changed&&(this._set_visuals(),this.visuals_changed=!1),e.data_changed&&(e._set_data(),e.data_changed=!1);const _=this.glyph.visuals.line,h=n.cap_lookup[_.line_cap.value],l=n.join_lookup[_.line_join.value];if(this._is_dashed()){const s={scissor:this.regl_wrapper.scissor,viewport:this.regl_wrapper.viewport,canvas_size:[t.width,t.height],pixel_ratio:t.pixel_ratio,line_color:this._color,linewidth:this._linewidth,antialias:this._antialias,miter_limit:this._miter_limit,points:e._points,nsegments:e._nsegments,line_join:l,line_cap:h,length_so_far:e._length_so_far,dash_tex:this._dash_tex,dash_tex_info:this._dash_tex_info,dash_scale:this._dash_scale,dash_offset:this._dash_offset};this.regl_wrapper.dashed_line()(s)}else{const s={scissor:this.regl_wrapper.scissor,viewport:this.regl_wrapper.viewport,canvas_size:[t.width,t.height],pixel_ratio:t.pixel_ratio,line_color:this._color,linewidth:this._linewidth,antialias:this._antialias,miter_limit:this._miter_limit,points:e._points,nsegments:e._nsegments,line_join:l,line_cap:h};this.regl_wrapper.solid_line()(s)}}_is_dashed(){return this._line_dash.length>0}_set_data(){const s=this.glyph.sx.length;this._nsegments=s-1,null==this._is_closed&&(this._is_closed=this.glyph.sx[0]==this.glyph.sx[s-1]&&this.glyph.sy[0]==this.glyph.sy[s-1]&&isFinite(this.glyph.sx[0])&&isFinite(this.glyph.sy[0])),null==this._points&&(this._points=new o.Float32Buffer(this.regl_wrapper));const i=this._points.get_sized_array(2*(s+2));for(let t=1;t-9e3&&i[2*e+4]>-9e3&&(t+=Math.sqrt((i[2*e+4]-i[2*e+2])**2+(i[2*e+5]-i[2*e+3])**2));this._length_so_far.update()}}_set_visuals(){const s=this.glyph.visuals.line,i=(0,l.color2rgba)(s.line_color.value,s.line_alpha.value);this._color=i.map((s=>s/255)),this._linewidth=s.line_width.value,this._linewidth<1&&(this._color[3]*=this._linewidth,this._linewidth=1),this._line_dash=(0,a.resolve_line_dash)(s.line_dash.value),1==this._line_dash.length&&this._line_dash.push(this._line_dash[0]),this._is_dashed()&&([this._dash_tex_info,this._dash_tex,this._dash_scale]=this.regl_wrapper.get_dash(this._line_dash),this._dash_offset=s.line_dash_offset.value)}}t.LineGL=p,p.__name__=\"LineGL\"},\n", - " 422: function _(e,t,s,i,h){i();class a{constructor(e,t){this.glyph=t,this.nvertices=0,this.size_changed=!1,this.data_changed=!1,this.visuals_changed=!1,this.regl_wrapper=e}set_data_changed(){const{data_size:e}=this.glyph;e!=this.nvertices&&(this.nvertices=e,this.size_changed=!0),this.data_changed=!0}set_visuals_changed(){this.visuals_changed=!0}render(e,t,s){if(0==t.length)return!0;const{width:i,height:h}=this.glyph.renderer.plot_view.canvas_view.webgl.canvas,a={pixel_ratio:this.glyph.renderer.plot_view.canvas_view.pixel_ratio,width:i,height:h};return this.draw(t,s,a),!0}}s.BaseGLGlyph=a,a.__name__=\"BaseGLGlyph\"},\n", - " 423: function _(a,o,i,n,l){n();const t=a(52);i.cap_lookup={butt:0,round:1,square:2},i.join_lookup={miter:0,round:1,bevel:2};const _={blank:0,dot:1,ring:2,horizontal_line:3,vertical_line:4,cross:5,horizontal_dash:6,vertical_dash:7,spiral:8,right_diagonal_line:9,left_diagonal_line:10,diagonal_cross:11,right_diagonal_dash:12,left_diagonal_dash:13,horizontal_wave:14,vertical_wave:15,criss_cross:16};i.hatch_pattern_to_index=function(a){var o,i;return null!==(i=_[null!==(o=t.hatch_aliases[a])&&void 0!==o?o:a])&&void 0!==i?i:0}},\n", - " 424: function _(r,t,a,e,s){e();const i=r(423),_=r(22);class n{constructor(r){this.regl_wrapper=r,this.is_scalar=!0}get_sized_array(r){return null!=this.array&&this.array.length==r||(this.array=this.new_array(r)),this.array}is_normalized(){return!1}get length(){return null!=this.array?this.array.length:0}set_from_array(r){const t=r.length,a=this.get_sized_array(t);for(let e=0;ethis.render()))}remove(){null!=this.icon_view&&this.icon_view.remove(),super.remove()}styles(){return[...super.styles(),d.default]}_render_button(...t){return(0,c.button)({type:\"button\",disabled:this.model.disabled,class:[h.btn,h[`btn_${this.model.button_type}`]]},...t)}render(){super.render(),this.button_el=this._render_button(this.model.label),this.button_el.addEventListener(\"click\",(()=>this.click())),null!=this.icon_view&&(\"\"!=this.model.label?(0,c.prepend)(this.button_el,this.icon_view.el,(0,c.nbsp)()):(0,c.prepend)(this.button_el,this.icon_view.el),this.icon_view.render()),this.group_el=(0,c.div)({class:h.btn_group},this.button_el),this.el.appendChild(this.group_el)}click(){}}n.AbstractButtonView=b,b.__name__=\"AbstractButtonView\";class p extends _.Control{constructor(t){super(t)}}n.AbstractButton=p,o=p,p.__name__=\"AbstractButton\",o.define((({String:t,Ref:e,Nullable:n})=>({label:[t,\"Button\"],icon:[n(e(a.AbstractIcon)),null],button_type:[r.ButtonType,\"default\"]})))},\n", - " 439: function _(t,e,o,s,n){s();const i=t(508),l=t(43);class c extends i.WidgetView{connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.disabled,(()=>{for(const t of this.controls())(0,l.toggle_attribute)(t,\"disabled\",this.model.disabled)}))}}o.ControlView=c,c.__name__=\"ControlView\";class r extends i.Widget{constructor(t){super(t)}}o.Control=r,r.__name__=\"Control\"},\n", - " 508: function _(i,e,t,n,o){var r;n();const s=i(312);class _ extends s.HTMLBoxView{get orientation(){return\"horizontal\"}get default_size(){return this.model.default_size}_width_policy(){return\"horizontal\"==this.orientation?super._width_policy():\"fixed\"}_height_policy(){return\"horizontal\"==this.orientation?\"fixed\":super._height_policy()}box_sizing(){const i=super.box_sizing();return\"horizontal\"==this.orientation?null==i.width&&(i.width=this.default_size):null==i.height&&(i.height=this.default_size),i}}t.WidgetView=_,_.__name__=\"WidgetView\";class h extends s.HTMLBox{constructor(i){super(i)}}t.Widget=h,r=h,h.__name__=\"Widget\",r.define((({Number:i})=>({default_size:[i,300]}))),r.override({margin:[5,5,5,5]})},\n", - " 441: function _(c,t,s,n,e){n();const o=c(53),_=c(226);class a extends _.DOMView{}s.AbstractIconView=a,a.__name__=\"AbstractIconView\";class r extends o.Model{constructor(c){super(c)}}s.AbstractIcon=r,r.__name__=\"AbstractIcon\"},\n", - " 442: function _(e,t,n,s,i){s();const h=e(1);var o;const _=e(443),u=e(43),r=e(10),c=(0,h.__importStar)(e(229)),a=c;class l extends _.TextInputView{constructor(){super(...arguments),this._open=!1,this._last_value=\"\",this._hover_index=0}styles(){return[...super.styles(),c.default]}render(){super.render(),this.input_el.addEventListener(\"keydown\",(e=>this._keydown(e))),this.input_el.addEventListener(\"keyup\",(e=>this._keyup(e))),this.menu=(0,u.div)({class:[a.menu,a.below]}),this.menu.addEventListener(\"click\",(e=>this._menu_click(e))),this.menu.addEventListener(\"mouseover\",(e=>this._menu_hover(e))),this.el.appendChild(this.menu),(0,u.undisplay)(this.menu)}change_input(){this._open&&this.menu.children.length>0?(this.model.value=this.menu.children[this._hover_index].textContent,this.input_el.focus(),this._hide_menu()):this.model.restrict||super.change_input()}_update_completions(e){(0,u.empty)(this.menu);for(const t of e){const e=(0,u.div)(t);this.menu.appendChild(e)}e.length>0&&this.menu.children[0].classList.add(a.active)}_show_menu(){if(!this._open){this._open=!0,this._hover_index=0,this._last_value=this.model.value,(0,u.display)(this.menu);const e=t=>{const{target:n}=t;n instanceof HTMLElement&&!this.el.contains(n)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,(0,u.undisplay)(this.menu))}_menu_click(e){e.target!=e.currentTarget&&e.target instanceof Element&&(this.model.value=e.target.textContent,this.input_el.focus(),this._hide_menu())}_menu_hover(e){if(e.target!=e.currentTarget&&e.target instanceof Element){let t=0;for(t=0;t0&&(this.menu.children[this._hover_index].classList.remove(a.active),this._hover_index=(0,r.clamp)(e,0,t-1),this.menu.children[this._hover_index].classList.add(a.active))}_keydown(e){}_keyup(e){switch(e.keyCode){case u.Keys.Enter:this.change_input();break;case u.Keys.Esc:this._hide_menu();break;case u.Keys.Up:this._bump_hover(this._hover_index-1);break;case u.Keys.Down:this._bump_hover(this._hover_index+1);break;default:{const e=this.input_el.value;if(e.lengthe:e=>e.toLowerCase();for(const n of this.model.completions)s(n).startsWith(s(e))&&t.push(n);this._update_completions(t),0==t.length?this._hide_menu():this._show_menu()}}}}n.AutocompleteInputView=l,l.__name__=\"AutocompleteInputView\";class d extends _.TextInput{constructor(e){super(e)}}n.AutocompleteInput=d,o=d,d.__name__=\"AutocompleteInput\",o.prototype.default_view=l,o.define((({Boolean:e,Int:t,String:n,Array:s})=>({completions:[s(n),[]],min_characters:[t,2],case_sensitive:[e,!0],restrict:[e,!0]})))},\n", - " 443: function _(t,e,n,p,_){p();const u=t(1);var i;const s=t(444),r=t(43),x=(0,u.__importStar)(t(446));class a extends s.TextLikeInputView{_render_input(){this.input_el=(0,r.input)({type:\"text\",class:x.input})}}n.TextInputView=a,a.__name__=\"TextInputView\";class c extends s.TextLikeInput{constructor(t){super(t)}}n.TextInput=c,i=c,c.__name__=\"TextInput\",i.prototype.default_view=a},\n", - " 444: function _(e,t,n,i,l){var s;i();const h=e(445);class a extends h.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,(()=>{var e;return this.input_el.name=null!==(e=this.model.name)&&void 0!==e?e:\"\"})),this.connect(this.model.properties.value.change,(()=>this.input_el.value=this.model.value)),this.connect(this.model.properties.value_input.change,(()=>this.input_el.value=this.model.value_input)),this.connect(this.model.properties.disabled.change,(()=>this.input_el.disabled=this.model.disabled)),this.connect(this.model.properties.placeholder.change,(()=>this.input_el.placeholder=this.model.placeholder)),this.connect(this.model.properties.max_length.change,(()=>{const{max_length:e}=this.model;null!=e?this.input_el.maxLength=e:this.input_el.removeAttribute(\"maxLength\")}))}render(){var e;super.render(),this._render_input();const{input_el:t}=this;t.name=null!==(e=this.model.name)&&void 0!==e?e:\"\",t.value=this.model.value,t.disabled=this.model.disabled,t.placeholder=this.model.placeholder,null!=this.model.max_length&&(t.maxLength=this.model.max_length),t.addEventListener(\"change\",(()=>this.change_input())),t.addEventListener(\"input\",(()=>this.change_input_value())),this.group_el.appendChild(t)}change_input(){this.model.value=this.input_el.value,super.change_input()}change_input_value(){this.model.value_input=this.input_el.value,super.change_input()}}n.TextLikeInputView=a,a.__name__=\"TextLikeInputView\";class u extends h.InputWidget{constructor(e){super(e)}}n.TextLikeInput=u,s=u,u.__name__=\"TextLikeInput\",s.define((({Int:e,String:t,Nullable:n})=>({value:[t,\"\"],value_input:[t,\"\"],placeholder:[t,\"\"],max_length:[n(e),null]})))},\n", - " 445: function _(e,t,n,s,l){s();const i=e(1);var o;const r=e(439),_=e(43),p=(0,i.__importStar)(e(446)),a=p;class c extends r.ControlView{*controls(){yield this.input_el}connect_signals(){super.connect_signals(),this.connect(this.model.properties.title.change,(()=>{this.label_el.textContent=this.model.title}))}styles(){return[...super.styles(),p.default]}render(){super.render();const{title:e}=this.model;this.label_el=(0,_.label)({style:{display:0==e.length?\"none\":\"\"}},e),this.group_el=(0,_.div)({class:a.input_group},this.label_el),this.el.appendChild(this.group_el)}change_input(){}}n.InputWidgetView=c,c.__name__=\"InputWidgetView\";class d extends r.Control{constructor(e){super(e)}}n.InputWidget=d,o=d,d.__name__=\"InputWidget\",o.define((({String:e})=>({title:[e,\"\"]})))},\n", - " 446: function _(o,p,t,n,i){n(),t.root=\"bk-root\",t.input=\"bk-input\",t.input_group=\"bk-input-group\",t.inline=\"bk-inline\",t.spin_wrapper=\"bk-spin-wrapper\",t.spin_btn=\"bk-spin-btn\",t.spin_btn_up=\"bk-spin-btn-up\",t.spin_btn_down=\"bk-spin-btn-down\",t.default='.bk-root .bk-input{display:inline-block;width:100%;flex-grow:1;min-height:31px;padding:0 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;}.bk-root .bk-input:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);}.bk-root .bk-input::placeholder,.bk-root .bk-input:-ms-input-placeholder,.bk-root .bk-input::-moz-placeholder,.bk-root .bk-input::-webkit-input-placeholder{color:#999;opacity:1;}.bk-root .bk-input[disabled]{cursor:not-allowed;background-color:#eee;opacity:1;}.bk-root select:not([multiple]).bk-input,.bk-root select:not([size]).bk-input{height:auto;appearance:none;-webkit-appearance:none;background-image:url(\\'data:image/svg+xml;utf8,\\');background-position:right 0.5em center;background-size:8px 6px;background-repeat:no-repeat;}.bk-root select[multiple].bk-input,.bk-root select[size].bk-input,.bk-root textarea.bk-input{height:auto;}.bk-root .bk-input-group{width:100%;height:100%;display:inline-flex;flex-wrap:nowrap;align-items:start;flex-direction:column;white-space:nowrap;}.bk-root .bk-input-group.bk-inline{flex-direction:row;}.bk-root .bk-input-group.bk-inline > *:not(:first-child){margin-left:5px;}.bk-root .bk-input-group input[type=\"checkbox\"] + span,.bk-root .bk-input-group input[type=\"radio\"] + span{position:relative;top:-2px;margin-left:3px;}.bk-root .bk-input-group > .bk-spin-wrapper{display:inherit;width:inherit;height:inherit;position:relative;overflow:hidden;padding:0;vertical-align:middle;}.bk-root .bk-input-group > .bk-spin-wrapper input{padding-right:20px;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn{position:absolute;display:block;height:50%;min-height:0;min-width:0;width:30px;padding:0;margin:0;right:0;border:none;background:none;cursor:pointer;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn:before{content:\"\";display:inline-block;transform:translateY(-50%);border-left:5px solid transparent;border-right:5px solid transparent;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up{top:0;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:before{border-bottom:5px solid black;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-up:disabled:before{border-bottom-color:grey;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down{bottom:0;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:before{border-top:5px solid black;}.bk-root .bk-input-group > .bk-spin-wrapper > .bk-spin-btn.bk-spin-btn-down:disabled:before{border-top-color:grey;}'},\n", - " 447: function _(t,e,n,o,c){var s;o();const u=t(438),r=t(251);class i extends u.AbstractButtonView{click(){this.model.trigger_event(new r.ButtonClick),super.click()}}n.ButtonView=i,i.__name__=\"ButtonView\";class _ extends u.AbstractButton{constructor(t){super(t)}}n.Button=_,s=_,_.__name__=\"Button\",s.prototype.default_view=i,s.override({label:\"Button\"})},\n", - " 448: function _(t,e,o,c,a){c();const s=t(1);var n;const i=t(449),r=t(43),u=(0,s.__importStar)(t(318));class _ extends i.ButtonGroupView{get active(){return new Set(this.model.active)}change_active(t){const{active:e}=this;e.has(t)?e.delete(t):e.add(t),this.model.active=[...e].sort()}_update_active(){const{active:t}=this;this._buttons.forEach(((e,o)=>{(0,r.classes)(e).toggle(u.active,t.has(o))}))}}o.CheckboxButtonGroupView=_,_.__name__=\"CheckboxButtonGroupView\";class h extends i.ButtonGroup{constructor(t){super(t)}}o.CheckboxButtonGroup=h,n=h,h.__name__=\"CheckboxButtonGroup\",n.prototype.default_view=_,n.define((({Int:t,Array:e})=>({active:[e(t),[]]})))},\n", - " 449: function _(t,e,n,s,i){s();const o=t(1);var r;const a=t(450),l=t(20),d=t(43),u=(0,o.__importStar)(t(318)),_=u;class c extends a.OrientedControlView{get default_size(){return\"horizontal\"==this.orientation?this.model.default_size:void 0}*controls(){yield*this._buttons}connect_signals(){super.connect_signals();const t=this.model.properties;this.on_change(t.button_type,(()=>this.render())),this.on_change(t.labels,(()=>this.render())),this.on_change(t.active,(()=>this._update_active()))}styles(){return[...super.styles(),u.default]}render(){super.render(),this._buttons=this.model.labels.map(((t,e)=>{const n=(0,d.div)({class:[_.btn,_[`btn_${this.model.button_type}`]],disabled:this.model.disabled},t);return n.addEventListener(\"click\",(()=>this.change_active(e))),n})),this._update_active();const t=\"horizontal\"==this.model.orientation?_.horizontal:_.vertical,e=(0,d.div)({class:[_.btn_group,t]},this._buttons);this.el.appendChild(e)}}n.ButtonGroupView=c,c.__name__=\"ButtonGroupView\";class h extends a.OrientedControl{constructor(t){super(t)}}n.ButtonGroup=h,r=h,h.__name__=\"ButtonGroup\",r.define((({String:t,Array:e})=>({labels:[e(t),[]],button_type:[l.ButtonType,\"default\"]})))},\n", - " 450: function _(n,t,e,o,r){var i;o();const a=n(439),l=n(20);class s extends a.ControlView{get orientation(){return this.model.orientation}}e.OrientedControlView=s,s.__name__=\"OrientedControlView\";class _ extends a.Control{constructor(n){super(n)}}e.OrientedControl=_,i=_,_.__name__=\"OrientedControl\",i.define((()=>({orientation:[l.Orientation,\"horizontal\"]})))},\n", - " 451: function _(e,t,n,i,s){i();const o=e(1);var a;const c=e(452),l=e(43),d=e(9),p=(0,o.__importStar)(e(446));class r extends c.InputGroupView{render(){super.render();const e=(0,l.div)({class:[p.input_group,this.model.inline?p.inline:null]});this.el.appendChild(e);const{active:t,labels:n}=this.model;this._inputs=[];for(let i=0;ithis.change_active(i))),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),(0,d.includes)(t,i)&&(s.checked=!0);const o=(0,l.label)(s,(0,l.span)(n[i]));e.appendChild(o)}}change_active(e){const t=new Set(this.model.active);t.has(e)?t.delete(e):t.add(e),this.model.active=[...t].sort()}}n.CheckboxGroupView=r,r.__name__=\"CheckboxGroupView\";class h extends c.InputGroup{constructor(e){super(e)}}n.CheckboxGroup=h,a=h,h.__name__=\"CheckboxGroup\",a.prototype.default_view=r,a.define((({Boolean:e,Int:t,String:n,Array:i})=>({active:[i(t),[]],labels:[i(n),[]],inline:[e,!1]})))},\n", - " 452: function _(n,t,e,s,o){s();const r=n(1),u=n(439),c=(0,r.__importDefault)(n(446));class _ extends u.ControlView{*controls(){yield*this._inputs}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.render()))}styles(){return[...super.styles(),c.default]}}e.InputGroupView=_,_.__name__=\"InputGroupView\";class i extends u.Control{constructor(n){super(n)}}e.InputGroup=i,i.__name__=\"InputGroup\"},\n", - " 453: function _(e,t,i,n,o){n();const s=e(1);var l;const r=e(445),c=e(43),a=e(22),d=(0,s.__importStar)(e(446));class h extends r.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.name.change,(()=>{var e;return this.input_el.name=null!==(e=this.model.name)&&void 0!==e?e:\"\"})),this.connect(this.model.properties.color.change,(()=>this.input_el.value=(0,a.color2hexrgb)(this.model.color))),this.connect(this.model.properties.disabled.change,(()=>this.input_el.disabled=this.model.disabled))}render(){super.render(),this.input_el=(0,c.input)({type:\"color\",class:d.input,name:this.model.name,value:this.model.color,disabled:this.model.disabled}),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.group_el.appendChild(this.input_el)}change_input(){this.model.color=this.input_el.value,super.change_input()}}i.ColorPickerView=h,h.__name__=\"ColorPickerView\";class p extends r.InputWidget{constructor(e){super(e)}}i.ColorPicker=p,l=p,p.__name__=\"ColorPicker\",l.prototype.default_view=h,l.define((({Color:e})=>({color:[e,\"#000000\"]})))},\n", - " 454: function _(e,t,i,n,s){n();const a=e(1);var l;const o=(0,a.__importDefault)(e(455)),d=e(445),r=e(43),c=e(20),u=e(8),h=(0,a.__importStar)(e(446)),_=(0,a.__importDefault)(e(456));function p(e){const t=[];for(const i of e)if((0,u.isString)(i))t.push(i);else{const[e,n]=i;t.push({from:e,to:n})}return t}class m extends d.InputWidgetView{connect_signals(){super.connect_signals();const{value:e,min_date:t,max_date:i,disabled_dates:n,enabled_dates:s,position:a,inline:l}=this.model.properties;this.connect(e.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.setDate(this.model.value)})),this.connect(t.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"minDate\",this.model.min_date)})),this.connect(i.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"maxDate\",this.model.max_date)})),this.connect(n.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"disable\",this.model.disabled_dates)})),this.connect(s.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"enable\",this.model.enabled_dates)})),this.connect(a.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"position\",this.model.position)})),this.connect(l.change,(()=>{var e;return null===(e=this._picker)||void 0===e?void 0:e.set(\"inline\",this.model.inline)}))}remove(){var e;null===(e=this._picker)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),_.default]}render(){var e,t;null==this._picker&&(super.render(),this.input_el=(0,r.input)({type:\"text\",class:h.input,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el),this._picker=(0,o.default)(this.input_el,{defaultDate:this.model.value,minDate:null!==(e=this.model.min_date)&&void 0!==e?e:void 0,maxDate:null!==(t=this.model.max_date)&&void 0!==t?t:void 0,inline:this.model.inline,position:this.model.position,disable:p(this.model.disabled_dates),enable:p(this.model.enabled_dates),onChange:(e,t,i)=>this._on_change(e,t,i)}))}_on_change(e,t,i){this.model.value=t,this.change_input()}}i.DatePickerView=m,m.__name__=\"DatePickerView\";class v extends d.InputWidget{constructor(e){super(e)}}i.DatePicker=v,l=v,v.__name__=\"DatePicker\",l.prototype.default_view=m,l.define((({Boolean:e,String:t,Array:i,Tuple:n,Or:s,Nullable:a})=>{const l=i(s(t,n(t,t)));return{value:[t],min_date:[a(t),null],max_date:[a(t),null],disabled_dates:[l,[]],enabled_dates:[l,[]],position:[c.CalendarPosition,\"auto\"],inline:[e,!1]}}))},\n", - " 455: function _(e,n,t,a,i){\n", - " /* flatpickr v4.6.6, @license MIT */var o,r;o=this,r=function(){\"use strict\";\n", - " /*! *****************************************************************************\n", - " Copyright (c) Microsoft Corporation.\n", - " \n", - " Permission to use, copy, modify, and/or distribute this software for any\n", - " purpose with or without fee is hereby granted.\n", - " \n", - " THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n", - " REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n", - " AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n", - " INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n", - " LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n", - " OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n", - " PERFORMANCE OF THIS SOFTWARE.\n", - " ***************************************************************************** */var e=function(){return e=Object.assign||function(e){for(var n,t=1,a=arguments.length;t\",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:\"auto\",positionElement:void 0,prevArrow:\"\",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},i={weekdays:{shorthand:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],longhand:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"]},months:{shorthand:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],longhand:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var n=e%100;if(n>3&&n<21)return\"th\";switch(n%10){case 1:return\"st\";case 2:return\"nd\";case 3:return\"rd\";default:return\"th\"}},rangeSeparator:\" to \",weekAbbreviation:\"Wk\",scrollTitle:\"Scroll to increment\",toggleTitle:\"Click to toggle\",amPM:[\"AM\",\"PM\"],yearAriaLabel:\"Year\",monthAriaLabel:\"Month\",hourAriaLabel:\"Hour\",minuteAriaLabel:\"Minute\",time_24hr:!1},o=function(e,n){return void 0===n&&(n=2),(\"000\"+e).slice(-1*n)},r=function(e){return!0===e?1:0};function l(e,n,t){var a;return void 0===t&&(t=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,t||e.apply(i,o)}),n),t&&!a&&e.apply(i,o)}}var c=function(e){return e instanceof Array?e:[e]};function d(e,n,t){if(!0===t)return e.classList.add(n);e.classList.remove(n)}function s(e,n,t){var a=window.document.createElement(e);return n=n||\"\",t=t||\"\",a.className=n,void 0!==t&&(a.textContent=t),a}function u(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function f(e,n){return n(e)?e:e.parentNode?f(e.parentNode,n):void 0}function m(e,n){var t=s(\"div\",\"numInputWrapper\"),a=s(\"input\",\"numInput \"+e),i=s(\"span\",\"arrowUp\"),o=s(\"span\",\"arrowDown\");if(-1===navigator.userAgent.indexOf(\"MSIE 9.0\")?a.type=\"number\":(a.type=\"text\",a.pattern=\"\\\\d*\"),void 0!==n)for(var r in n)a.setAttribute(r,n[r]);return t.appendChild(a),t.appendChild(i),t.appendChild(o),t}function g(e){try{return\"function\"==typeof e.composedPath?e.composedPath()[0]:e.target}catch(n){return e.target}}var p=function(){},h=function(e,n,t){return t.months[n?\"shorthand\":\"longhand\"][e]},v={D:p,F:function(e,n,t){e.setMonth(t.months.longhand.indexOf(n))},G:function(e,n){e.setHours(parseFloat(n))},H:function(e,n){e.setHours(parseFloat(n))},J:function(e,n){e.setDate(parseFloat(n))},K:function(e,n,t){e.setHours(e.getHours()%12+12*r(new RegExp(t.amPM[1],\"i\").test(n)))},M:function(e,n,t){e.setMonth(t.months.shorthand.indexOf(n))},S:function(e,n){e.setSeconds(parseFloat(n))},U:function(e,n){return new Date(1e3*parseFloat(n))},W:function(e,n,t){var a=parseInt(n),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+t.firstDayOfWeek),i},Y:function(e,n){e.setFullYear(parseFloat(n))},Z:function(e,n){return new Date(n)},d:function(e,n){e.setDate(parseFloat(n))},h:function(e,n){e.setHours(parseFloat(n))},i:function(e,n){e.setMinutes(parseFloat(n))},j:function(e,n){e.setDate(parseFloat(n))},l:p,m:function(e,n){e.setMonth(parseFloat(n)-1)},n:function(e,n){e.setMonth(parseFloat(n)-1)},s:function(e,n){e.setSeconds(parseFloat(n))},u:function(e,n){return new Date(parseFloat(n))},w:p,y:function(e,n){e.setFullYear(2e3+parseFloat(n))}},D={D:\"(\\\\w+)\",F:\"(\\\\w+)\",G:\"(\\\\d\\\\d|\\\\d)\",H:\"(\\\\d\\\\d|\\\\d)\",J:\"(\\\\d\\\\d|\\\\d)\\\\w+\",K:\"\",M:\"(\\\\w+)\",S:\"(\\\\d\\\\d|\\\\d)\",U:\"(.+)\",W:\"(\\\\d\\\\d|\\\\d)\",Y:\"(\\\\d{4})\",Z:\"(.+)\",d:\"(\\\\d\\\\d|\\\\d)\",h:\"(\\\\d\\\\d|\\\\d)\",i:\"(\\\\d\\\\d|\\\\d)\",j:\"(\\\\d\\\\d|\\\\d)\",l:\"(\\\\w+)\",m:\"(\\\\d\\\\d|\\\\d)\",n:\"(\\\\d\\\\d|\\\\d)\",s:\"(\\\\d\\\\d|\\\\d)\",u:\"(.+)\",w:\"(\\\\d\\\\d|\\\\d)\",y:\"(\\\\d{2})\"},w={Z:function(e){return e.toISOString()},D:function(e,n,t){return n.weekdays.shorthand[w.w(e,n,t)]},F:function(e,n,t){return h(w.n(e,n,t)-1,!1,n)},G:function(e,n,t){return o(w.h(e,n,t))},H:function(e){return o(e.getHours())},J:function(e,n){return void 0!==n.ordinal?e.getDate()+n.ordinal(e.getDate()):e.getDate()},K:function(e,n){return n.amPM[r(e.getHours()>11)]},M:function(e,n){return h(e.getMonth(),!0,n)},S:function(e){return o(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,n,t){return t.getWeek(e)},Y:function(e){return o(e.getFullYear(),4)},d:function(e){return o(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return o(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,n){return n.weekdays.longhand[e.getDay()]},m:function(e){return o(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},b=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o,l=e.isMobile,c=void 0!==l&&l;return function(e,n,a){var i=a||r;return void 0===t.formatDate||c?n.split(\"\").map((function(n,a,o){return w[n]&&\"\\\\\"!==o[a-1]?w[n](e,i,t):\"\\\\\"!==n?n:\"\"})).join(\"\"):t.formatDate(e,n,i)}},C=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o;return function(e,n,i,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if(\"string\"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if(\"string\"==typeof e){var s=n||(t||a).dateFormat,u=String(e).trim();if(\"today\"===u)l=new Date,i=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(t&&t.parseDate)l=t.parseDate(e,s);else{l=t&&t.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],g=0,p=0,h=\"\";gl&&(u=a===w.hourElement?u-l-r(!w.amPM):i,m&&H(void 0,1,w.hourElement)),w.amPM&&f&&(1===c?u+d===23:Math.abs(u-d)>c)&&(w.amPM.textContent=w.l10n.amPM[r(w.amPM.textContent===w.l10n.amPM[0])]),a.value=o(u)}}(e);var c=w._input.value;I(),be(),w._input.value!==c&&w._debouncedChange()}function I(){if(void 0!==w.hourElement&&void 0!==w.minuteElement){var e,n,t=(parseInt(w.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(w.minuteElement.value,10)||0)%60,i=void 0!==w.secondElement?(parseInt(w.secondElement.value,10)||0)%60:0;void 0!==w.amPM&&(e=t,n=w.amPM.textContent,t=e%12+12*r(n===w.l10n.amPM[1]));var o=void 0!==w.config.minTime||w.config.minDate&&w.minDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.minDate,!0);if(void 0!==w.config.maxTime||w.config.maxDate&&w.maxDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.maxDate,!0)){var l=void 0!==w.config.maxTime?w.config.maxTime:w.config.maxDate;(t=Math.min(t,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(o){var c=void 0!==w.config.minTime?w.config.minTime:w.config.minDate;(t=Math.max(t,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}O(t,a,i)}}function S(e){var n=e||w.latestSelectedDateObj;n&&O(n.getHours(),n.getMinutes(),n.getSeconds())}function _(){var e=w.config.defaultHour,n=w.config.defaultMinute,t=w.config.defaultSeconds;if(void 0!==w.config.minDate){var a=w.config.minDate.getHours(),i=w.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(n=Math.max(i,n)),e===a&&n===i&&(t=w.config.minDate.getSeconds())}if(void 0!==w.config.maxDate){var o=w.config.maxDate.getHours(),r=w.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(n=Math.min(r,n)),e===o&&n===r&&(t=w.config.maxDate.getSeconds())}return{hours:e,minutes:n,seconds:t}}function O(e,n,t){void 0!==w.latestSelectedDateObj&&w.latestSelectedDateObj.setHours(e%24,n,t||0,0),w.hourElement&&w.minuteElement&&!w.isMobile&&(w.hourElement.value=o(w.config.time_24hr?e:(12+e)%12+12*r(e%12==0)),w.minuteElement.value=o(n),void 0!==w.amPM&&(w.amPM.textContent=w.l10n.amPM[r(e>=12)]),void 0!==w.secondElement&&(w.secondElement.value=o(t)))}function F(e){var n=g(e),t=parseInt(n.value)+(e.delta||0);(t/1e3>1||\"Enter\"===e.key&&!/[^\\d]/.test(t.toString()))&&Q(t)}function N(e,n,t,a){return n instanceof Array?n.forEach((function(n){return N(e,n,t,a)})):e instanceof Array?e.forEach((function(e){return N(e,n,t,a)})):(e.addEventListener(n,t,a),void w._handlers.push({element:e,event:n,handler:t,options:a}))}function A(){pe(\"onChange\")}function P(e,n){var t=void 0!==e?w.parseDate(e):w.latestSelectedDateObj||(w.config.minDate&&w.config.minDate>w.now?w.config.minDate:w.config.maxDate&&w.config.maxDate=0&&M(e,w.selectedDates[1])<=0}(n)&&!ve(n)&&o.classList.add(\"inRange\"),w.weekNumbers&&1===w.config.showMonths&&\"prevMonthDay\"!==e&&t%7==1&&w.weekNumbers.insertAdjacentHTML(\"beforeend\",\"\"+w.config.getWeek(n)+\"\"),pe(\"onDayCreate\",o),o}function L(e){e.focus(),\"range\"===w.config.mode&&ae(e)}function W(e){for(var n=e>0?0:w.config.showMonths-1,t=e>0?w.config.showMonths:-1,a=n;a!=t;a+=e)for(var i=w.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf(\"hidden\")&&X(c.dateObj))return c}}function R(e,n){var t=ee(document.activeElement||document.body),a=void 0!==e?e:t?document.activeElement:void 0!==w.selectedDateElem&&ee(w.selectedDateElem)?w.selectedDateElem:void 0!==w.todayDateElem&&ee(w.todayDateElem)?w.todayDateElem:W(n>0?1:-1);void 0===a?w._input.focus():t?function(e,n){for(var t=-1===e.className.indexOf(\"Month\")?e.dateObj.getMonth():w.currentMonth,a=n>0?w.config.showMonths:-1,i=n>0?1:-1,o=t-w.currentMonth;o!=a;o+=i)for(var r=w.daysContainer.children[o],l=t-w.currentMonth===o?e.$i+n:n<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf(\"hidden\")&&X(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(n))return L(s)}w.changeMonth(i),R(W(i),0)}(a,n):L(a)}function B(e,n){for(var t=(new Date(e,n,1).getDay()-w.l10n.firstDayOfWeek+7)%7,a=w.utils.getDaysInMonth((n-1+12)%12,e),i=w.utils.getDaysInMonth(n,e),o=window.document.createDocumentFragment(),r=w.config.showMonths>1,l=r?\"prevMonthDay hidden\":\"prevMonthDay\",c=r?\"nextMonthDay hidden\":\"nextMonthDay\",d=a+1-t,u=0;d<=a;d++,u++)o.appendChild(j(l,new Date(e,n-1,d),d,u));for(d=1;d<=i;d++,u++)o.appendChild(j(\"\",new Date(e,n,d),d,u));for(var f=i+1;f<=42-t&&(1===w.config.showMonths||u%7!=0);f++,u++)o.appendChild(j(c,new Date(e,n+1,f%i),f,u));var m=s(\"div\",\"dayContainer\");return m.appendChild(o),m}function J(){if(void 0!==w.daysContainer){u(w.daysContainer),w.weekNumbers&&u(w.weekNumbers);for(var e=document.createDocumentFragment(),n=0;n1||\"dropdown\"!==w.config.monthSelectorType)){var e=function(e){return!(void 0!==w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&ew.config.maxDate.getMonth())};w.monthsDropdownContainer.tabIndex=-1,w.monthsDropdownContainer.innerHTML=\"\";for(var n=0;n<12;n++)if(e(n)){var t=s(\"option\",\"flatpickr-monthDropdown-month\");t.value=new Date(w.currentYear,n).getMonth().toString(),t.textContent=h(n,w.config.shorthandCurrentMonth,w.l10n),t.tabIndex=-1,w.currentMonth===n&&(t.selected=!0),w.monthsDropdownContainer.appendChild(t)}}}function U(){var e,n=s(\"div\",\"flatpickr-month\"),t=window.document.createDocumentFragment();w.config.showMonths>1||\"static\"===w.config.monthSelectorType?e=s(\"span\",\"cur-month\"):(w.monthsDropdownContainer=s(\"select\",\"flatpickr-monthDropdown-months\"),w.monthsDropdownContainer.setAttribute(\"aria-label\",w.l10n.monthAriaLabel),N(w.monthsDropdownContainer,\"change\",(function(e){var n=g(e),t=parseInt(n.value,10);w.changeMonth(t-w.currentMonth),pe(\"onMonthChange\")})),K(),e=w.monthsDropdownContainer);var a=m(\"cur-year\",{tabindex:\"-1\"}),i=a.getElementsByTagName(\"input\")[0];i.setAttribute(\"aria-label\",w.l10n.yearAriaLabel),w.config.minDate&&i.setAttribute(\"min\",w.config.minDate.getFullYear().toString()),w.config.maxDate&&(i.setAttribute(\"max\",w.config.maxDate.getFullYear().toString()),i.disabled=!!w.config.minDate&&w.config.minDate.getFullYear()===w.config.maxDate.getFullYear());var o=s(\"div\",\"flatpickr-current-month\");return o.appendChild(e),o.appendChild(a),t.appendChild(o),n.appendChild(t),{container:n,yearElement:i,monthElement:e}}function q(){u(w.monthNav),w.monthNav.appendChild(w.prevMonthNav),w.config.showMonths&&(w.yearElements=[],w.monthElements=[]);for(var e=w.config.showMonths;e--;){var n=U();w.yearElements.push(n.yearElement),w.monthElements.push(n.monthElement),w.monthNav.appendChild(n.container)}w.monthNav.appendChild(w.nextMonthNav)}function $(){w.weekdayContainer?u(w.weekdayContainer):w.weekdayContainer=s(\"div\",\"flatpickr-weekdays\");for(var e=w.config.showMonths;e--;){var n=s(\"div\",\"flatpickr-weekdaycontainer\");w.weekdayContainer.appendChild(n)}return z(),w.weekdayContainer}function z(){if(w.weekdayContainer){var e=w.l10n.firstDayOfWeek,t=n(w.l10n.weekdays.shorthand);e>0&&e\\n \"+t.join(\"\")+\"\\n \\n \"}}function G(e,n){void 0===n&&(n=!0);var t=n?e:e-w.currentMonth;t<0&&!0===w._hidePrevMonthArrow||t>0&&!0===w._hideNextMonthArrow||(w.currentMonth+=t,(w.currentMonth<0||w.currentMonth>11)&&(w.currentYear+=w.currentMonth>11?1:-1,w.currentMonth=(w.currentMonth+12)%12,pe(\"onYearChange\"),K()),J(),pe(\"onMonthChange\"),De())}function V(e){return!(!w.config.appendTo||!w.config.appendTo.contains(e))||w.calendarContainer.contains(e)}function Z(e){if(w.isOpen&&!w.config.inline){var n=g(e),t=V(n),a=n===w.input||n===w.altInput||w.element.contains(n)||e.path&&e.path.indexOf&&(~e.path.indexOf(w.input)||~e.path.indexOf(w.altInput)),i=\"blur\"===e.type?a&&e.relatedTarget&&!V(e.relatedTarget):!a&&!t&&!V(e.relatedTarget),o=!w.config.ignoredFocusElements.some((function(e){return e.contains(n)}));i&&o&&(void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement&&\"\"!==w.input.value&&void 0!==w.input.value&&T(),w.close(),w.config&&\"range\"===w.config.mode&&1===w.selectedDates.length&&(w.clear(!1),w.redraw()))}}function Q(e){if(!(!e||w.config.minDate&&ew.config.maxDate.getFullYear())){var n=e,t=w.currentYear!==n;w.currentYear=n||w.currentYear,w.config.maxDate&&w.currentYear===w.config.maxDate.getFullYear()?w.currentMonth=Math.min(w.config.maxDate.getMonth(),w.currentMonth):w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&(w.currentMonth=Math.max(w.config.minDate.getMonth(),w.currentMonth)),t&&(w.redraw(),pe(\"onYearChange\"),K())}}function X(e,n){void 0===n&&(n=!0);var t=w.parseDate(e,void 0,n);if(w.config.minDate&&t&&M(t,w.config.minDate,void 0!==n?n:!w.minDateHasTime)<0||w.config.maxDate&&t&&M(t,w.config.maxDate,void 0!==n?n:!w.maxDateHasTime)>0)return!1;if(0===w.config.enable.length&&0===w.config.disable.length)return!0;if(void 0===t)return!1;for(var a=w.config.enable.length>0,i=a?w.config.enable:w.config.disable,o=0,r=void 0;o=r.from.getTime()&&t.getTime()<=r.to.getTime())return a}return!a}function ee(e){return void 0!==w.daysContainer&&-1===e.className.indexOf(\"hidden\")&&-1===e.className.indexOf(\"flatpickr-disabled\")&&w.daysContainer.contains(e)}function ne(e){e.target!==w._input||e.relatedTarget&&V(e.relatedTarget)||w.setDate(w._input.value,!0,e.target===w.altInput?w.config.altFormat:w.config.dateFormat)}function te(e){var n=g(e),t=w.config.wrap?p.contains(n):n===w._input,a=w.config.allowInput,i=w.isOpen&&(!a||!t),o=w.config.inline&&t&&!a;if(13===e.keyCode&&t){if(a)return w.setDate(w._input.value,!0,n===w.altInput?w.config.altFormat:w.config.dateFormat),n.blur();w.open()}else if(V(n)||i||o){var r=!!w.timeContainer&&w.timeContainer.contains(n);switch(e.keyCode){case 13:r?(e.preventDefault(),T(),se()):ue(e);break;case 27:e.preventDefault(),se();break;case 8:case 46:t&&!w.config.allowInput&&(e.preventDefault(),w.clear());break;case 37:case 39:if(r||t)w.hourElement&&w.hourElement.focus();else if(e.preventDefault(),void 0!==w.daysContainer&&(!1===a||document.activeElement&&ee(document.activeElement))){var l=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),G(l),R(W(1),0)):R(void 0,l)}break;case 38:case 40:e.preventDefault();var c=40===e.keyCode?1:-1;w.daysContainer&&void 0!==n.$i||n===w.input||n===w.altInput?e.ctrlKey?(e.stopPropagation(),Q(w.currentYear-c),R(W(1),0)):r||R(void 0,7*c):n===w.currentYearElement?Q(w.currentYear-c):w.config.enableTime&&(!r&&w.hourElement&&w.hourElement.focus(),T(e),w._debouncedChange());break;case 9:if(r){var d=[w.hourElement,w.minuteElement,w.secondElement,w.amPM].concat(w.pluginElements).filter((function(e){return e})),s=d.indexOf(n);if(-1!==s){var u=d[s+(e.shiftKey?-1:1)];e.preventDefault(),(u||w._input).focus()}}else!w.config.noCalendar&&w.daysContainer&&w.daysContainer.contains(n)&&e.shiftKey&&(e.preventDefault(),w._input.focus())}}if(void 0!==w.amPM&&n===w.amPM)switch(e.key){case w.l10n.amPM[0].charAt(0):case w.l10n.amPM[0].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[0],I(),be();break;case w.l10n.amPM[1].charAt(0):case w.l10n.amPM[1].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[1],I(),be()}(t||V(n))&&pe(\"onKeyDown\",e)}function ae(e){if(1===w.selectedDates.length&&(!e||e.classList.contains(\"flatpickr-day\")&&!e.classList.contains(\"flatpickr-disabled\"))){for(var n=e?e.dateObj.getTime():w.days.firstElementChild.dateObj.getTime(),t=w.parseDate(w.selectedDates[0],void 0,!0).getTime(),a=Math.min(n,w.selectedDates[0].getTime()),i=Math.max(n,w.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;ca&&cr)?r=c:c>t&&(!l||c0&&m0&&m>l;return g?(f.classList.add(\"notAllowed\"),[\"inRange\",\"startRange\",\"endRange\"].forEach((function(e){f.classList.remove(e)})),\"continue\"):o&&!g?\"continue\":([\"startRange\",\"inRange\",\"endRange\",\"notAllowed\"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(n<=w.selectedDates[0].getTime()?\"startRange\":\"endRange\"),tn&&m===t&&f.classList.add(\"endRange\"),m>=r&&(0===l||m<=l)&&(d=t,u=n,(c=m)>Math.min(d,u)&&c0||t.getMinutes()>0||t.getSeconds()>0),w.selectedDates&&(w.selectedDates=w.selectedDates.filter((function(e){return X(e)})),w.selectedDates.length||\"min\"!==e||S(t),be()),w.daysContainer&&(de(),void 0!==t?w.currentYearElement[e]=t.getFullYear().toString():w.currentYearElement.removeAttribute(e),w.currentYearElement.disabled=!!a&&void 0!==t&&a.getFullYear()===t.getFullYear())}}function re(){return w.config.wrap?p.querySelector(\"[data-input]\"):p}function le(){\"object\"!=typeof w.config.locale&&void 0===k.l10ns[w.config.locale]&&w.config.errorHandler(new Error(\"flatpickr: invalid locale \"+w.config.locale)),w.l10n=e(e({},k.l10ns.default),\"object\"==typeof w.config.locale?w.config.locale:\"default\"!==w.config.locale?k.l10ns[w.config.locale]:void 0),D.K=\"(\"+w.l10n.amPM[0]+\"|\"+w.l10n.amPM[1]+\"|\"+w.l10n.amPM[0].toLowerCase()+\"|\"+w.l10n.amPM[1].toLowerCase()+\")\",void 0===e(e({},v),JSON.parse(JSON.stringify(p.dataset||{}))).time_24hr&&void 0===k.defaultConfig.time_24hr&&(w.config.time_24hr=w.l10n.time_24hr),w.formatDate=b(w),w.parseDate=C({config:w.config,l10n:w.l10n})}function ce(e){if(void 0!==w.calendarContainer){pe(\"onPreCalendarPosition\");var n=e||w._positionElement,t=Array.prototype.reduce.call(w.calendarContainer.children,(function(e,n){return e+n.offsetHeight}),0),a=w.calendarContainer.offsetWidth,i=w.config.position.split(\" \"),o=i[0],r=i.length>1?i[1]:null,l=n.getBoundingClientRect(),c=window.innerHeight-l.bottom,s=\"above\"===o||\"below\"!==o&&ct,u=window.pageYOffset+l.top+(s?-t-2:n.offsetHeight+2);if(d(w.calendarContainer,\"arrowTop\",!s),d(w.calendarContainer,\"arrowBottom\",s),!w.config.inline){var f=window.pageXOffset+l.left,m=!1,g=!1;\"center\"===r?(f-=(a-l.width)/2,m=!0):\"right\"===r&&(f-=a-l.width,g=!0),d(w.calendarContainer,\"arrowLeft\",!m&&!g),d(w.calendarContainer,\"arrowCenter\",m),d(w.calendarContainer,\"arrowRight\",g);var p=window.document.body.offsetWidth-(window.pageXOffset+l.right),h=f+a>window.document.body.offsetWidth,v=p+a>window.document.body.offsetWidth;if(d(w.calendarContainer,\"rightMost\",h),!w.config.static)if(w.calendarContainer.style.top=u+\"px\",h)if(v){var D=function(){for(var e=null,n=0;nw.currentMonth+w.config.showMonths-1)&&\"range\"!==w.config.mode;if(w.selectedDateElem=t,\"single\"===w.config.mode)w.selectedDates=[a];else if(\"multiple\"===w.config.mode){var o=ve(a);o?w.selectedDates.splice(parseInt(o),1):w.selectedDates.push(a)}else\"range\"===w.config.mode&&(2===w.selectedDates.length&&w.clear(!1,!1),w.latestSelectedDateObj=a,w.selectedDates.push(a),0!==M(a,w.selectedDates[0],!0)&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()})));if(I(),i){var r=w.currentYear!==a.getFullYear();w.currentYear=a.getFullYear(),w.currentMonth=a.getMonth(),r&&(pe(\"onYearChange\"),K()),pe(\"onMonthChange\")}if(De(),J(),be(),i||\"range\"===w.config.mode||1!==w.config.showMonths?void 0!==w.selectedDateElem&&void 0===w.hourElement&&w.selectedDateElem&&w.selectedDateElem.focus():L(t),void 0!==w.hourElement&&void 0!==w.hourElement&&w.hourElement.focus(),w.config.closeOnSelect){var l=\"single\"===w.config.mode&&!w.config.enableTime,c=\"range\"===w.config.mode&&2===w.selectedDates.length&&!w.config.enableTime;(l||c)&&se()}A()}}w.parseDate=C({config:w.config,l10n:w.l10n}),w._handlers=[],w.pluginElements=[],w.loadedPlugins=[],w._bind=N,w._setHoursFromDate=S,w._positionCalendar=ce,w.changeMonth=G,w.changeYear=Q,w.clear=function(e,n){if(void 0===e&&(e=!0),void 0===n&&(n=!0),w.input.value=\"\",void 0!==w.altInput&&(w.altInput.value=\"\"),void 0!==w.mobileInput&&(w.mobileInput.value=\"\"),w.selectedDates=[],w.latestSelectedDateObj=void 0,!0===n&&(w.currentYear=w._initialDate.getFullYear(),w.currentMonth=w._initialDate.getMonth()),!0===w.config.enableTime){var t=_(),a=t.hours,i=t.minutes,o=t.seconds;O(a,i,o)}w.redraw(),e&&pe(\"onChange\")},w.close=function(){w.isOpen=!1,w.isMobile||(void 0!==w.calendarContainer&&w.calendarContainer.classList.remove(\"open\"),void 0!==w._input&&w._input.classList.remove(\"active\")),pe(\"onClose\")},w._createElement=s,w.destroy=function(){void 0!==w.config&&pe(\"onDestroy\");for(var e=w._handlers.length;e--;){var n=w._handlers[e];n.element.removeEventListener(n.event,n.handler,n.options)}if(w._handlers=[],w.mobileInput)w.mobileInput.parentNode&&w.mobileInput.parentNode.removeChild(w.mobileInput),w.mobileInput=void 0;else if(w.calendarContainer&&w.calendarContainer.parentNode)if(w.config.static&&w.calendarContainer.parentNode){var t=w.calendarContainer.parentNode;if(t.lastChild&&t.removeChild(t.lastChild),t.parentNode){for(;t.firstChild;)t.parentNode.insertBefore(t.firstChild,t);t.parentNode.removeChild(t)}}else w.calendarContainer.parentNode.removeChild(w.calendarContainer);w.altInput&&(w.input.type=\"text\",w.altInput.parentNode&&w.altInput.parentNode.removeChild(w.altInput),delete w.altInput),w.input&&(w.input.type=w.input._type,w.input.classList.remove(\"flatpickr-input\"),w.input.removeAttribute(\"readonly\")),[\"_showTimeInput\",\"latestSelectedDateObj\",\"_hideNextMonthArrow\",\"_hidePrevMonthArrow\",\"__hideNextMonthArrow\",\"__hidePrevMonthArrow\",\"isMobile\",\"isOpen\",\"selectedDateElem\",\"minDateHasTime\",\"maxDateHasTime\",\"days\",\"daysContainer\",\"_input\",\"_positionElement\",\"innerContainer\",\"rContainer\",\"monthNav\",\"todayDateElem\",\"calendarContainer\",\"weekdayContainer\",\"prevMonthNav\",\"nextMonthNav\",\"monthsDropdownContainer\",\"currentMonthElement\",\"currentYearElement\",\"navigationCurrentMonth\",\"selectedDateElem\",\"config\"].forEach((function(e){try{delete w[e]}catch(e){}}))},w.isEnabled=X,w.jumpToDate=P,w.open=function(e,n){if(void 0===n&&(n=w._positionElement),!0===w.isMobile){if(e){e.preventDefault();var t=g(e);t&&t.blur()}return void 0!==w.mobileInput&&(w.mobileInput.focus(),w.mobileInput.click()),void pe(\"onOpen\")}if(!w._input.disabled&&!w.config.inline){var a=w.isOpen;w.isOpen=!0,a||(w.calendarContainer.classList.add(\"open\"),w._input.classList.add(\"active\"),pe(\"onOpen\"),ce(n)),!0===w.config.enableTime&&!0===w.config.noCalendar&&(!1!==w.config.allowInput||void 0!==e&&w.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return w.hourElement.select()}),50))}},w.redraw=de,w.set=function(e,n){if(null!==e&&\"object\"==typeof e)for(var a in Object.assign(w.config,e),e)void 0!==fe[a]&&fe[a].forEach((function(e){return e()}));else w.config[e]=n,void 0!==fe[e]?fe[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(w.config[e]=c(n));w.redraw(),be(!0)},w.setDate=function(e,n,t){if(void 0===n&&(n=!1),void 0===t&&(t=w.config.dateFormat),0!==e&&!e||e instanceof Array&&0===e.length)return w.clear(n);me(e,t),w.latestSelectedDateObj=w.selectedDates[w.selectedDates.length-1],w.redraw(),P(void 0,n),S(),0===w.selectedDates.length&&w.clear(!1),be(n),n&&pe(\"onChange\")},w.toggle=function(e){if(!0===w.isOpen)return w.close();w.open(e)};var fe={locale:[le,z],showMonths:[q,E,$],minDate:[P],maxDate:[P]};function me(e,n){var t=[];if(e instanceof Array)t=e.map((function(e){return w.parseDate(e,n)}));else if(e instanceof Date||\"number\"==typeof e)t=[w.parseDate(e,n)];else if(\"string\"==typeof e)switch(w.config.mode){case\"single\":case\"time\":t=[w.parseDate(e,n)];break;case\"multiple\":t=e.split(w.config.conjunction).map((function(e){return w.parseDate(e,n)}));break;case\"range\":t=e.split(w.l10n.rangeSeparator).map((function(e){return w.parseDate(e,n)}))}else w.config.errorHandler(new Error(\"Invalid date supplied: \"+JSON.stringify(e)));w.selectedDates=w.config.allowInvalidPreload?t:t.filter((function(e){return e instanceof Date&&X(e,!1)})),\"range\"===w.config.mode&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()}))}function ge(e){return e.slice().map((function(e){return\"string\"==typeof e||\"number\"==typeof e||e instanceof Date?w.parseDate(e,void 0,!0):e&&\"object\"==typeof e&&e.from&&e.to?{from:w.parseDate(e.from,void 0),to:w.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function pe(e,n){if(void 0!==w.config){var t=w.config[e];if(void 0!==t&&t.length>0)for(var a=0;t[a]&&a1||\"static\"===w.config.monthSelectorType?w.monthElements[n].textContent=h(t.getMonth(),w.config.shorthandCurrentMonth,w.l10n)+\" \":w.monthsDropdownContainer.value=t.getMonth().toString(),e.value=t.getFullYear().toString()})),w._hidePrevMonthArrow=void 0!==w.config.minDate&&(w.currentYear===w.config.minDate.getFullYear()?w.currentMonth<=w.config.minDate.getMonth():w.currentYearw.config.maxDate.getMonth():w.currentYear>w.config.maxDate.getFullYear()))}function we(e){return w.selectedDates.map((function(n){return w.formatDate(n,e)})).filter((function(e,n,t){return\"range\"!==w.config.mode||w.config.enableTime||t.indexOf(e)===n})).join(\"range\"!==w.config.mode?w.config.conjunction:w.l10n.rangeSeparator)}function be(e){void 0===e&&(e=!0),void 0!==w.mobileInput&&w.mobileFormatStr&&(w.mobileInput.value=void 0!==w.latestSelectedDateObj?w.formatDate(w.latestSelectedDateObj,w.mobileFormatStr):\"\"),w.input.value=we(w.config.dateFormat),void 0!==w.altInput&&(w.altInput.value=we(w.config.altFormat)),!1!==e&&pe(\"onValueUpdate\")}function Ce(e){var n=g(e),t=w.prevMonthNav.contains(n),a=w.nextMonthNav.contains(n);t||a?G(t?-1:1):w.yearElements.indexOf(n)>=0?n.select():n.classList.contains(\"arrowUp\")?w.changeYear(w.currentYear+1):n.classList.contains(\"arrowDown\")&&w.changeYear(w.currentYear-1)}return function(){w.element=w.input=p,w.isOpen=!1,function(){var n=[\"wrap\",\"weekNumbers\",\"allowInput\",\"allowInvalidPreload\",\"clickOpens\",\"time_24hr\",\"enableTime\",\"noCalendar\",\"altInput\",\"shorthandCurrentMonth\",\"inline\",\"static\",\"enableSeconds\",\"disableMobile\"],i=e(e({},JSON.parse(JSON.stringify(p.dataset||{}))),v),o={};w.config.parseDate=i.parseDate,w.config.formatDate=i.formatDate,Object.defineProperty(w.config,\"enable\",{get:function(){return w.config._enable},set:function(e){w.config._enable=ge(e)}}),Object.defineProperty(w.config,\"disable\",{get:function(){return w.config._disable},set:function(e){w.config._disable=ge(e)}});var r=\"time\"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var l=k.defaultConfig.dateFormat||a.dateFormat;o.dateFormat=i.noCalendar||r?\"H:i\"+(i.enableSeconds?\":S\":\"\"):l+\" H:i\"+(i.enableSeconds?\":S\":\"\")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=k.defaultConfig.altFormat||a.altFormat;o.altFormat=i.noCalendar||r?\"h:i\"+(i.enableSeconds?\":S K\":\" K\"):d+\" h:i\"+(i.enableSeconds?\":S\":\"\")+\" K\"}Object.defineProperty(w.config,\"minDate\",{get:function(){return w.config._minDate},set:oe(\"min\")}),Object.defineProperty(w.config,\"maxDate\",{get:function(){return w.config._maxDate},set:oe(\"max\")});var s=function(e){return function(n){w.config[\"min\"===e?\"_minTime\":\"_maxTime\"]=w.parseDate(n,\"H:i:S\")}};Object.defineProperty(w.config,\"minTime\",{get:function(){return w.config._minTime},set:s(\"min\")}),Object.defineProperty(w.config,\"maxTime\",{get:function(){return w.config._maxTime},set:s(\"max\")}),\"time\"===i.mode&&(w.config.noCalendar=!0,w.config.enableTime=!0),Object.assign(w.config,o,i);for(var u=0;u-1?w.config[m]=c(f[m]).map(x).concat(w.config[m]):void 0===i[m]&&(w.config[m]=f[m])}i.altInputClass||(w.config.altInputClass=re().className+\" \"+w.config.altInputClass),pe(\"onParseConfig\")}(),le(),w.input=re(),w.input?(w.input._type=w.input.type,w.input.type=\"text\",w.input.classList.add(\"flatpickr-input\"),w._input=w.input,w.config.altInput&&(w.altInput=s(w.input.nodeName,w.config.altInputClass),w._input=w.altInput,w.altInput.placeholder=w.input.placeholder,w.altInput.disabled=w.input.disabled,w.altInput.required=w.input.required,w.altInput.tabIndex=w.input.tabIndex,w.altInput.type=\"text\",w.input.setAttribute(\"type\",\"hidden\"),!w.config.static&&w.input.parentNode&&w.input.parentNode.insertBefore(w.altInput,w.input.nextSibling)),w.config.allowInput||w._input.setAttribute(\"readonly\",\"readonly\"),w._positionElement=w.config.positionElement||w._input):w.config.errorHandler(new Error(\"Invalid input element specified\")),function(){w.selectedDates=[],w.now=w.parseDate(w.config.now)||new Date;var e=w.config.defaultDate||(\"INPUT\"!==w.input.nodeName&&\"TEXTAREA\"!==w.input.nodeName||!w.input.placeholder||w.input.value!==w.input.placeholder?w.input.value:null);e&&me(e,w.config.dateFormat),w._initialDate=w.selectedDates.length>0?w.selectedDates[0]:w.config.minDate&&w.config.minDate.getTime()>w.now.getTime()?w.config.minDate:w.config.maxDate&&w.config.maxDate.getTime()0&&(w.latestSelectedDateObj=w.selectedDates[0]),void 0!==w.config.minTime&&(w.config.minTime=w.parseDate(w.config.minTime,\"H:i\")),void 0!==w.config.maxTime&&(w.config.maxTime=w.parseDate(w.config.maxTime,\"H:i\")),w.minDateHasTime=!!w.config.minDate&&(w.config.minDate.getHours()>0||w.config.minDate.getMinutes()>0||w.config.minDate.getSeconds()>0),w.maxDateHasTime=!!w.config.maxDate&&(w.config.maxDate.getHours()>0||w.config.maxDate.getMinutes()>0||w.config.maxDate.getSeconds()>0)}(),w.utils={getDaysInMonth:function(e,n){return void 0===e&&(e=w.currentMonth),void 0===n&&(n=w.currentYear),1===e&&(n%4==0&&n%100!=0||n%400==0)?29:w.l10n.daysInMonth[e]}},w.isMobile||function(){var e=window.document.createDocumentFragment();if(w.calendarContainer=s(\"div\",\"flatpickr-calendar\"),w.calendarContainer.tabIndex=-1,!w.config.noCalendar){if(e.appendChild((w.monthNav=s(\"div\",\"flatpickr-months\"),w.yearElements=[],w.monthElements=[],w.prevMonthNav=s(\"span\",\"flatpickr-prev-month\"),w.prevMonthNav.innerHTML=w.config.prevArrow,w.nextMonthNav=s(\"span\",\"flatpickr-next-month\"),w.nextMonthNav.innerHTML=w.config.nextArrow,q(),Object.defineProperty(w,\"_hidePrevMonthArrow\",{get:function(){return w.__hidePrevMonthArrow},set:function(e){w.__hidePrevMonthArrow!==e&&(d(w.prevMonthNav,\"flatpickr-disabled\",e),w.__hidePrevMonthArrow=e)}}),Object.defineProperty(w,\"_hideNextMonthArrow\",{get:function(){return w.__hideNextMonthArrow},set:function(e){w.__hideNextMonthArrow!==e&&(d(w.nextMonthNav,\"flatpickr-disabled\",e),w.__hideNextMonthArrow=e)}}),w.currentYearElement=w.yearElements[0],De(),w.monthNav)),w.innerContainer=s(\"div\",\"flatpickr-innerContainer\"),w.config.weekNumbers){var n=function(){w.calendarContainer.classList.add(\"hasWeeks\");var e=s(\"div\",\"flatpickr-weekwrapper\");e.appendChild(s(\"span\",\"flatpickr-weekday\",w.l10n.weekAbbreviation));var n=s(\"div\",\"flatpickr-weeks\");return e.appendChild(n),{weekWrapper:e,weekNumbers:n}}(),t=n.weekWrapper,a=n.weekNumbers;w.innerContainer.appendChild(t),w.weekNumbers=a,w.weekWrapper=t}w.rContainer=s(\"div\",\"flatpickr-rContainer\"),w.rContainer.appendChild($()),w.daysContainer||(w.daysContainer=s(\"div\",\"flatpickr-days\"),w.daysContainer.tabIndex=-1),J(),w.rContainer.appendChild(w.daysContainer),w.innerContainer.appendChild(w.rContainer),e.appendChild(w.innerContainer)}w.config.enableTime&&e.appendChild(function(){w.calendarContainer.classList.add(\"hasTime\"),w.config.noCalendar&&w.calendarContainer.classList.add(\"noCalendar\"),w.timeContainer=s(\"div\",\"flatpickr-time\"),w.timeContainer.tabIndex=-1;var e=s(\"span\",\"flatpickr-time-separator\",\":\"),n=m(\"flatpickr-hour\",{\"aria-label\":w.l10n.hourAriaLabel});w.hourElement=n.getElementsByTagName(\"input\")[0];var t=m(\"flatpickr-minute\",{\"aria-label\":w.l10n.minuteAriaLabel});if(w.minuteElement=t.getElementsByTagName(\"input\")[0],w.hourElement.tabIndex=w.minuteElement.tabIndex=-1,w.hourElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getHours():w.config.time_24hr?w.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(w.config.defaultHour)),w.minuteElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getMinutes():w.config.defaultMinute),w.hourElement.setAttribute(\"step\",w.config.hourIncrement.toString()),w.minuteElement.setAttribute(\"step\",w.config.minuteIncrement.toString()),w.hourElement.setAttribute(\"min\",w.config.time_24hr?\"0\":\"1\"),w.hourElement.setAttribute(\"max\",w.config.time_24hr?\"23\":\"12\"),w.minuteElement.setAttribute(\"min\",\"0\"),w.minuteElement.setAttribute(\"max\",\"59\"),w.timeContainer.appendChild(n),w.timeContainer.appendChild(e),w.timeContainer.appendChild(t),w.config.time_24hr&&w.timeContainer.classList.add(\"time24hr\"),w.config.enableSeconds){w.timeContainer.classList.add(\"hasSeconds\");var a=m(\"flatpickr-second\");w.secondElement=a.getElementsByTagName(\"input\")[0],w.secondElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getSeconds():w.config.defaultSeconds),w.secondElement.setAttribute(\"step\",w.minuteElement.getAttribute(\"step\")),w.secondElement.setAttribute(\"min\",\"0\"),w.secondElement.setAttribute(\"max\",\"59\"),w.timeContainer.appendChild(s(\"span\",\"flatpickr-time-separator\",\":\")),w.timeContainer.appendChild(a)}return w.config.time_24hr||(w.amPM=s(\"span\",\"flatpickr-am-pm\",w.l10n.amPM[r((w.latestSelectedDateObj?w.hourElement.value:w.config.defaultHour)>11)]),w.amPM.title=w.l10n.toggleTitle,w.amPM.tabIndex=-1,w.timeContainer.appendChild(w.amPM)),w.timeContainer}()),d(w.calendarContainer,\"rangeMode\",\"range\"===w.config.mode),d(w.calendarContainer,\"animate\",!0===w.config.animate),d(w.calendarContainer,\"multiMonth\",w.config.showMonths>1),w.calendarContainer.appendChild(e);var i=void 0!==w.config.appendTo&&void 0!==w.config.appendTo.nodeType;if((w.config.inline||w.config.static)&&(w.calendarContainer.classList.add(w.config.inline?\"inline\":\"static\"),w.config.inline&&(!i&&w.element.parentNode?w.element.parentNode.insertBefore(w.calendarContainer,w._input.nextSibling):void 0!==w.config.appendTo&&w.config.appendTo.appendChild(w.calendarContainer)),w.config.static)){var l=s(\"div\",\"flatpickr-wrapper\");w.element.parentNode&&w.element.parentNode.insertBefore(l,w.element),l.appendChild(w.element),w.altInput&&l.appendChild(w.altInput),l.appendChild(w.calendarContainer)}w.config.static||w.config.inline||(void 0!==w.config.appendTo?w.config.appendTo:window.document.body).appendChild(w.calendarContainer)}(),function(){if(w.config.wrap&&[\"open\",\"close\",\"toggle\",\"clear\"].forEach((function(e){Array.prototype.forEach.call(w.element.querySelectorAll(\"[data-\"+e+\"]\"),(function(n){return N(n,\"click\",w[e])}))})),w.isMobile)!function(){var e=w.config.enableTime?w.config.noCalendar?\"time\":\"datetime-local\":\"date\";w.mobileInput=s(\"input\",w.input.className+\" flatpickr-mobile\"),w.mobileInput.tabIndex=1,w.mobileInput.type=e,w.mobileInput.disabled=w.input.disabled,w.mobileInput.required=w.input.required,w.mobileInput.placeholder=w.input.placeholder,w.mobileFormatStr=\"datetime-local\"===e?\"Y-m-d\\\\TH:i:S\":\"date\"===e?\"Y-m-d\":\"H:i:S\",w.selectedDates.length>0&&(w.mobileInput.defaultValue=w.mobileInput.value=w.formatDate(w.selectedDates[0],w.mobileFormatStr)),w.config.minDate&&(w.mobileInput.min=w.formatDate(w.config.minDate,\"Y-m-d\")),w.config.maxDate&&(w.mobileInput.max=w.formatDate(w.config.maxDate,\"Y-m-d\")),w.input.getAttribute(\"step\")&&(w.mobileInput.step=String(w.input.getAttribute(\"step\"))),w.input.type=\"hidden\",void 0!==w.altInput&&(w.altInput.type=\"hidden\");try{w.input.parentNode&&w.input.parentNode.insertBefore(w.mobileInput,w.input.nextSibling)}catch(e){}N(w.mobileInput,\"change\",(function(e){w.setDate(g(e).value,!1,w.mobileFormatStr),pe(\"onChange\"),pe(\"onClose\")}))}();else{var e=l(ie,50);if(w._debouncedChange=l(A,300),w.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&N(w.daysContainer,\"mouseover\",(function(e){\"range\"===w.config.mode&&ae(g(e))})),N(window.document.body,\"keydown\",te),w.config.inline||w.config.static||N(window,\"resize\",e),void 0!==window.ontouchstart?N(window.document,\"touchstart\",Z):N(window.document,\"click\",Z),N(window.document,\"focus\",Z,{capture:!0}),!0===w.config.clickOpens&&(N(w._input,\"focus\",w.open),N(w._input,\"click\",w.open)),void 0!==w.daysContainer&&(N(w.monthNav,\"click\",Ce),N(w.monthNav,[\"keyup\",\"increment\"],F),N(w.daysContainer,\"click\",ue)),void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement){var n=function(e){return g(e).select()};N(w.timeContainer,[\"increment\"],T),N(w.timeContainer,\"blur\",T,{capture:!0}),N(w.timeContainer,\"click\",Y),N([w.hourElement,w.minuteElement],[\"focus\",\"click\"],n),void 0!==w.secondElement&&N(w.secondElement,\"focus\",(function(){return w.secondElement&&w.secondElement.select()})),void 0!==w.amPM&&N(w.amPM,\"click\",(function(e){T(e),A()}))}w.config.allowInput&&N(w._input,\"blur\",ne)}}(),(w.selectedDates.length||w.config.noCalendar)&&(w.config.enableTime&&S(w.config.noCalendar?w.latestSelectedDateObj||w.config.minDate:void 0),be(!1)),E();var n=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!w.isMobile&&n&&ce(),pe(\"onReady\")}(),w}function E(e,n){for(var t=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;ithis.render()));const{start:s,end:l,value:o,step:r,title:n}=this.model.properties;this.on_change([s,l,o,r],(()=>{const{start:t,end:e,value:i,step:s}=this._calc_to();this._noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s},!0)}));const{bar_color:a}=this.model.properties;this.on_change(a,(()=>{this._set_bar_color()}));const{show_value:d}=this.model.properties;this.on_change([o,n,d],(()=>this._update_title()))}styles(){return[...super.styles(),p.default,u.default]}_update_title(){var t;(0,a.empty)(this.title_el);const e=null==this.model.title||0==this.model.title.length&&!this.model.show_value;if(this.title_el.style.display=e?\"none\":\"\",!e&&(0!=(null===(t=this.model.title)||void 0===t?void 0:t.length)&&(this.title_el.textContent=`${this.model.title}: `),this.model.show_value)){const{value:t}=this._calc_to(),e=t.map((t=>this.model.pretty(t))).join(\" .. \");this.title_el.appendChild((0,a.span)({class:m.slider_value},e))}}_set_bar_color(){if(!this.model.disabled){this.slider_el.querySelector(\".noUi-connect\").style.backgroundColor=(0,_.color2css)(this.model.bar_color)}}render(){super.render();const{start:t,end:e,value:i,step:s}=this._calc_to();let l;if(this.model.tooltips){const t={to:t=>this.model.pretty(t)};l=(0,d.repeat)(t,i.length)}else l=!1;if(null==this.slider_el){this.slider_el=(0,a.div)(),this._noUiSlider=n.default.create(this.slider_el,{range:{min:t,max:e},start:i,step:s,behaviour:this.model.behaviour,connect:this.model.connected,tooltips:l,orientation:this.model.orientation,direction:this.model.direction}),this._noUiSlider.on(\"slide\",((t,e,i)=>this._slide(i))),this._noUiSlider.on(\"change\",((t,e,i)=>this._change(i)));const o=(t,e)=>{if(!l)return;this.slider_el.querySelectorAll(\".noUi-handle\")[t].querySelector(\".noUi-tooltip\").style.display=e?\"block\":\"\"};this._noUiSlider.on(\"start\",((t,e)=>o(e,!0))),this._noUiSlider.on(\"end\",((t,e)=>o(e,!1)))}else this._noUiSlider.updateOptions({range:{min:t,max:e},start:i,step:s},!0);this._set_bar_color(),this.model.disabled?this.slider_el.setAttribute(\"disabled\",\"true\"):this.slider_el.removeAttribute(\"disabled\"),this.title_el=(0,a.div)({class:m.slider_title}),this._update_title(),this.group_el=(0,a.div)({class:v.input_group},this.title_el,this.slider_el),this.el.appendChild(this.group_el)}_slide(t){this.model.value=this._calc_from(t)}_change(t){const e=this._calc_from(t);this.model.setv({value:e,value_throttled:e})}}b.__name__=\"AbstractBaseSliderView\";class g extends b{_calc_to(){return{start:this.model.start,end:this.model.end,value:[this.model.value],step:this.model.step}}_calc_from([t]){return Number.isInteger(this.model.start)&&Number.isInteger(this.model.end)&&Number.isInteger(this.model.step)?Math.round(t):t}}i.AbstractSliderView=g,g.__name__=\"AbstractSliderView\";class f extends b{_calc_to(){return{start:this.model.start,end:this.model.end,value:this.model.value,step:this.model.step}}_calc_from(t){return t}}i.AbstractRangeSliderView=f,f.__name__=\"AbstractRangeSliderView\";class S extends h.OrientedControl{constructor(t){super(t),this.connected=!1}pretty(t){return this._formatter(t,this.format)}}i.AbstractSlider=S,r=S,S.__name__=\"AbstractSlider\",r.define((({Any:t,Boolean:e,Number:i,String:s,Color:l,Or:o,Enum:r,Ref:n,Nullable:a})=>({title:[a(s),\"\"],show_value:[e,!0],start:[t],end:[t],value:[t],value_throttled:[t],step:[i,1],format:[o(s,n(c.TickFormatter))],direction:[r(\"ltr\",\"rtl\"),\"ltr\"],tooltips:[e,!0],bar_color:[l,\"#e6e6e6\"]})))},\n", - " 459: function _(t,e,r,n,i){var o,s;o=this,s=function(t){\"use strict\";var e,r;function n(t){return\"object\"==typeof t&&\"function\"==typeof t.to}function i(t){t.parentElement.removeChild(t)}function o(t){return null!=t}function s(t){t.preventDefault()}function a(t){return\"number\"==typeof t&&!isNaN(t)&&isFinite(t)}function l(t,e,r){r>0&&(f(t,e),setTimeout((function(){d(t,e)}),r))}function u(t){return Math.max(Math.min(t,100),0)}function c(t){return Array.isArray(t)?t:[t]}function p(t){var e=(t=String(t)).split(\".\");return e.length>1?e[1].length:0}function f(t,e){t.classList&&!/\\s/.test(e)?t.classList.add(e):t.className+=\" \"+e}function d(t,e){t.classList&&!/\\s/.test(e)?t.classList.remove(e):t.className=t.className.replace(new RegExp(\"(^|\\\\b)\"+e.split(\" \").join(\"|\")+\"(\\\\b|$)\",\"gi\"),\" \")}function h(t){var e=void 0!==window.pageXOffset,r=\"CSS1Compat\"===(t.compatMode||\"\");return{x:e?window.pageXOffset:r?t.documentElement.scrollLeft:t.body.scrollLeft,y:e?window.pageYOffset:r?t.documentElement.scrollTop:t.body.scrollTop}}function m(t,e){return 100/(e-t)}function g(t,e,r){return 100*e/(t[r+1]-t[r])}function v(t,e){for(var r=1;t>=e[r];)r+=1;return r}function b(t,e,r){if(r>=t.slice(-1)[0])return 100;var n=v(r,t),i=t[n-1],o=t[n],s=e[n-1],a=e[n];return s+function(t,e){return g(t,t[0]<0?e+Math.abs(t[0]):e-t[0],0)}([i,o],r)/m(s,a)}function S(t,e,r,n){if(100===n)return n;var i=v(n,t),o=t[i-1],s=t[i];return r?n-o>(s-o)/2?s:o:e[i-1]?t[i-1]+function(t,e){return Math.round(t/e)*e}(n-t[i-1],e[i-1]):n}t.PipsMode=void 0,(e=t.PipsMode||(t.PipsMode={})).Range=\"range\",e.Steps=\"steps\",e.Positions=\"positions\",e.Count=\"count\",e.Values=\"values\",t.PipsType=void 0,(r=t.PipsType||(t.PipsType={}))[r.None=-1]=\"None\",r[r.NoValue=0]=\"NoValue\",r[r.LargeValue=1]=\"LargeValue\",r[r.SmallValue=2]=\"SmallValue\";var x=function(){function t(t,e,r){var n;this.xPct=[],this.xVal=[],this.xSteps=[],this.xNumSteps=[],this.xHighestCompleteStep=[],this.xSteps=[r||!1],this.xNumSteps=[!1],this.snap=e;var i=[];for(Object.keys(t).forEach((function(e){i.push([c(t[e]),e])})),i.sort((function(t,e){return t[0][0]-e[0][0]})),n=0;nthis.xPct[i+1];)i++;else t===this.xPct[this.xPct.length-1]&&(i=this.xPct.length-2);r||t!==this.xPct[i+1]||i++,null===e&&(e=[]);var o=1,s=e[i],a=0,l=0,u=0,c=0;for(n=r?(t-this.xPct[i])/(this.xPct[i+1]-this.xPct[i]):(this.xPct[i+1]-t)/(this.xPct[i+1]-this.xPct[i]);s>0;)a=this.xPct[i+1+c]-this.xPct[i+c],e[i+c]*o+100-100*n>100?(l=a*n,o=(s-100*n)/e[i+c],n=1):(l=e[i+c]*a/100*o,o=0),r?(u-=l,this.xPct.length+c>=1&&c--):(u+=l,this.xPct.length-c>=1&&c++),s=e[i+c]*o;return t+u},t.prototype.toStepping=function(t){return t=b(this.xVal,this.xPct,t)},t.prototype.fromStepping=function(t){return function(t,e,r){if(r>=100)return t.slice(-1)[0];var n=v(r,e),i=t[n-1],o=t[n],s=e[n-1];return function(t,e){return e*(t[1]-t[0])/100+t[0]}([i,o],(r-s)*m(s,e[n]))}(this.xVal,this.xPct,t)},t.prototype.getStep=function(t){return t=S(this.xPct,this.xSteps,this.snap,t)},t.prototype.getDefaultStep=function(t,e,r){var n=v(t,this.xPct);return(100===t||e&&t===this.xPct[n-1])&&(n=Math.max(n-1,1)),(this.xVal[n]-this.xVal[n-1])/r},t.prototype.getNearbySteps=function(t){var e=v(t,this.xPct);return{stepBefore:{startValue:this.xVal[e-2],step:this.xNumSteps[e-2],highestStep:this.xHighestCompleteStep[e-2]},thisStep:{startValue:this.xVal[e-1],step:this.xNumSteps[e-1],highestStep:this.xHighestCompleteStep[e-1]},stepAfter:{startValue:this.xVal[e],step:this.xNumSteps[e],highestStep:this.xHighestCompleteStep[e]}}},t.prototype.countStepDecimals=function(){var t=this.xNumSteps.map(p);return Math.max.apply(null,t)},t.prototype.hasNoSize=function(){return this.xVal[0]===this.xVal[this.xVal.length-1]},t.prototype.convert=function(t){return this.getStep(this.toStepping(t))},t.prototype.handleEntryPoint=function(t,e){var r;if(!a(r=\"min\"===t?0:\"max\"===t?100:parseFloat(t))||!a(e[0]))throw new Error(\"noUiSlider: 'range' value isn't numeric.\");this.xPct.push(r),this.xVal.push(e[0]);var n=Number(e[1]);r?this.xSteps.push(!isNaN(n)&&n):isNaN(n)||(this.xSteps[0]=n),this.xHighestCompleteStep.push(0)},t.prototype.handleStepPoint=function(t,e){if(e)if(this.xVal[t]!==this.xVal[t+1]){this.xSteps[t]=g([this.xVal[t],this.xVal[t+1]],e,0)/m(this.xPct[t],this.xPct[t+1]);var r=(this.xVal[t+1]-this.xVal[t])/this.xNumSteps[t],n=Math.ceil(Number(r.toFixed(3))-1),i=this.xVal[t]+this.xNumSteps[t]*n;this.xHighestCompleteStep[t]=i}else this.xSteps[t]=this.xHighestCompleteStep[t]=this.xVal[t]},t}(),y={to:function(t){return void 0===t?\"\":t.toFixed(2)},from:Number},w={target:\"target\",base:\"base\",origin:\"origin\",handle:\"handle\",handleLower:\"handle-lower\",handleUpper:\"handle-upper\",touchArea:\"touch-area\",horizontal:\"horizontal\",vertical:\"vertical\",background:\"background\",connect:\"connect\",connects:\"connects\",ltr:\"ltr\",rtl:\"rtl\",textDirectionLtr:\"txt-dir-ltr\",textDirectionRtl:\"txt-dir-rtl\",draggable:\"draggable\",drag:\"state-drag\",tap:\"state-tap\",active:\"active\",tooltip:\"tooltip\",pips:\"pips\",pipsHorizontal:\"pips-horizontal\",pipsVertical:\"pips-vertical\",marker:\"marker\",markerHorizontal:\"marker-horizontal\",markerVertical:\"marker-vertical\",markerNormal:\"marker-normal\",markerLarge:\"marker-large\",markerSub:\"marker-sub\",value:\"value\",valueHorizontal:\"value-horizontal\",valueVertical:\"value-vertical\",valueNormal:\"value-normal\",valueLarge:\"value-large\",valueSub:\"value-sub\"},E=\".__tooltips\",P=\".__aria\";function C(t,e){if(!a(e))throw new Error(\"noUiSlider: 'step' is not numeric.\");t.singleStep=e}function N(t,e){if(!a(e))throw new Error(\"noUiSlider: 'keyboardPageMultiplier' is not numeric.\");t.keyboardPageMultiplier=e}function V(t,e){if(!a(e))throw new Error(\"noUiSlider: 'keyboardMultiplier' is not numeric.\");t.keyboardMultiplier=e}function k(t,e){if(!a(e))throw new Error(\"noUiSlider: 'keyboardDefaultStep' is not numeric.\");t.keyboardDefaultStep=e}function M(t,e){if(\"object\"!=typeof e||Array.isArray(e))throw new Error(\"noUiSlider: 'range' is not an object.\");if(void 0===e.min||void 0===e.max)throw new Error(\"noUiSlider: Missing 'min' or 'max' in 'range'.\");t.spectrum=new x(e,t.snap||!1,t.singleStep)}function A(t,e){if(e=c(e),!Array.isArray(e)||!e.length)throw new Error(\"noUiSlider: 'start' option is incorrect.\");t.handles=e.length,t.start=e}function U(t,e){if(\"boolean\"!=typeof e)throw new Error(\"noUiSlider: 'snap' option must be a boolean.\");t.snap=e}function D(t,e){if(\"boolean\"!=typeof e)throw new Error(\"noUiSlider: 'animate' option must be a boolean.\");t.animate=e}function O(t,e){if(\"number\"!=typeof e)throw new Error(\"noUiSlider: 'animationDuration' option must be a number.\");t.animationDuration=e}function L(t,e){var r,n=[!1];if(\"lower\"===e?e=[!0,!1]:\"upper\"===e&&(e=[!1,!0]),!0===e||!1===e){for(r=1;r1)throw new Error(\"noUiSlider: 'padding' option must not exceed 100% of the range.\")}}function F(t,e){switch(e){case\"ltr\":t.dir=0;break;case\"rtl\":t.dir=1;break;default:throw new Error(\"noUiSlider: 'direction' option was not recognized.\")}}function R(t,e){if(\"string\"!=typeof e)throw new Error(\"noUiSlider: 'behaviour' must be a string containing options.\");var r=e.indexOf(\"tap\")>=0,n=e.indexOf(\"drag\")>=0,i=e.indexOf(\"fixed\")>=0,o=e.indexOf(\"snap\")>=0,s=e.indexOf(\"hover\")>=0,a=e.indexOf(\"unconstrained\")>=0,l=e.indexOf(\"drag-all\")>=0;if(i){if(2!==t.handles)throw new Error(\"noUiSlider: 'fixed' behaviour must be used with 2 handles\");j(t,t.start[1]-t.start[0])}if(a&&(t.margin||t.limit))throw new Error(\"noUiSlider: 'unconstrained' behaviour cannot be used with margin or limit\");t.events={tap:r||o,drag:n,dragAll:l,fixed:i,snap:o,hover:s,unconstrained:a}}function _(t,e){if(!1!==e)if(!0===e||n(e)){t.tooltips=[];for(var r=0;r= 2) required for mode 'count'.\");for(var r=e.values-1,n=100/r,i=[];r--;)i[r]=r*n;return i.push(100),q(i,e.stepped)}return e.mode===t.PipsMode.Positions?q(e.values,e.stepped):e.mode===t.PipsMode.Values?e.stepped?e.values.map((function(t){return C.fromStepping(C.getStep(C.toStepping(t)))})):e.values:[]}(e),i={},o=C.xVal[0],s=C.xVal[C.xVal.length-1],a=!1,l=!1,u=0;return r=n.slice().sort((function(t,e){return t-e})),(n=r.filter((function(t){return!this[t]&&(this[t]=!0)}),{}))[0]!==o&&(n.unshift(o),a=!0),n[n.length-1]!==s&&(n.push(s),l=!0),n.forEach((function(r,o){var s,c,p,f,d,h,m,g,v,b,S=r,x=n[o+1],y=e.mode===t.PipsMode.Steps;for(y&&(s=C.xNumSteps[o]),s||(s=x-S),void 0===x&&(x=S),s=Math.max(s,1e-7),c=S;c<=x;c=Number((c+s).toFixed(7))){for(g=(d=(f=C.toStepping(c))-u)/(e.density||1),b=d/(v=Math.round(g)),p=1;p<=v;p+=1)i[(h=u+p*b).toFixed(5)]=[C.fromStepping(h),0];m=n.indexOf(c)>-1?t.PipsType.LargeValue:y?t.PipsType.SmallValue:t.PipsType.NoValue,!o&&a&&c!==x&&(m=0),c===x&&l||(i[f.toFixed(5)]=[c,m]),u=f}})),i}function Y(e,n,i){var o,s,a=U.createElement(\"div\"),l=((o={})[t.PipsType.None]=\"\",o[t.PipsType.NoValue]=r.cssClasses.valueNormal,o[t.PipsType.LargeValue]=r.cssClasses.valueLarge,o[t.PipsType.SmallValue]=r.cssClasses.valueSub,o),u=((s={})[t.PipsType.None]=\"\",s[t.PipsType.NoValue]=r.cssClasses.markerNormal,s[t.PipsType.LargeValue]=r.cssClasses.markerLarge,s[t.PipsType.SmallValue]=r.cssClasses.markerSub,s),c=[r.cssClasses.valueHorizontal,r.cssClasses.valueVertical],p=[r.cssClasses.markerHorizontal,r.cssClasses.markerVertical];function d(t,e){var n=e===r.cssClasses.value,i=n?l:u;return e+\" \"+(n?c:p)[r.ort]+\" \"+i[t]}return f(a,r.cssClasses.pips),f(a,0===r.ort?r.cssClasses.pipsHorizontal:r.cssClasses.pipsVertical),Object.keys(e).forEach((function(o){!function(e,o,s){if((s=n?n(o,s):s)!==t.PipsType.None){var l=T(a,!1);l.className=d(s,r.cssClasses.marker),l.style[r.style]=e+\"%\",s>t.PipsType.NoValue&&((l=T(a,!1)).className=d(s,r.cssClasses.value),l.setAttribute(\"data-value\",String(o)),l.style[r.style]=e+\"%\",l.innerHTML=String(i.to(o)))}}(o,e[o][0],e[o][1])})),a}function I(){g&&(i(g),g=null)}function W(t){I();var e=X(t),r=t.filter,n=t.format||{to:function(t){return String(Math.round(t))}};return g=w.appendChild(Y(e,r,n))}function $(){var t=a.getBoundingClientRect(),e=\"offset\"+[\"Width\",\"Height\"][r.ort];return 0===r.ort?t.width||a[e]:t.height||a[e]}function J(t,e,n,i){var o=function(o){var s,a,l=function(t,e,r){var n=0===t.type.indexOf(\"touch\"),i=0===t.type.indexOf(\"mouse\"),o=0===t.type.indexOf(\"pointer\"),s=0,a=0;if(0===t.type.indexOf(\"MSPointer\")&&(o=!0),\"mousedown\"===t.type&&!t.buttons&&!t.touches)return!1;if(n){var l=function(e){var n=e.target;return n===r||r.contains(n)||t.composed&&t.composedPath().shift()===r};if(\"touchstart\"===t.type){var u=Array.prototype.filter.call(t.touches,l);if(u.length>1)return!1;s=u[0].pageX,a=u[0].pageY}else{var c=Array.prototype.find.call(t.changedTouches,l);if(!c)return!1;s=c.pageX,a=c.pageY}}return e=e||h(U),(i||o)&&(s=t.clientX+e.x,a=t.clientY+e.y),t.pageOffset=e,t.points=[s,a],t.cursor=i||o,t}(o,i.pageOffset,i.target||e);return!!l&&!(F()&&!i.doNotReject)&&(s=w,a=r.cssClasses.tap,!((s.classList?s.classList.contains(a):new RegExp(\"\\\\b\"+a+\"\\\\b\").test(s.className))&&!i.doNotReject)&&!(t===x.start&&void 0!==l.buttons&&l.buttons>1)&&(!i.hover||!l.buttons)&&(y||l.preventDefault(),l.calcPoint=l.points[r.ort],void n(l,i)))},s=[];return t.split(\" \").forEach((function(t){e.addEventListener(t,o,!!y&&{passive:!0}),s.push([t,o])})),s}function K(t){var e,n,i,o,s,l,c=100*(t-(e=a,n=r.ort,i=e.getBoundingClientRect(),o=e.ownerDocument,s=o.documentElement,l=h(o),/webkit.*Chrome.*Mobile/i.test(navigator.userAgent)&&(l.x=0),n?i.top+l.y-s.clientTop:i.left+l.x-s.clientLeft))/$();return c=u(c),r.dir?100-c:c}function Q(t,e){\"mouseout\"===t.type&&\"HTML\"===t.target.nodeName&&null===t.relatedTarget&&tt(t,e)}function Z(t,e){if(-1===navigator.appVersion.indexOf(\"MSIE 9\")&&0===t.buttons&&0!==e.buttonsProperty)return tt(t,e);var n=(r.dir?-1:1)*(t.calcPoint-e.startCalcPoint);ut(n>0,100*n/e.baseSize,e.locations,e.handleNumbers,e.connect)}function tt(t,e){e.handle&&(d(e.handle,r.cssClasses.active),M-=1),e.listeners.forEach((function(t){D.removeEventListener(t[0],t[1])})),0===M&&(d(w,r.cssClasses.drag),pt(),t.cursor&&(O.style.cursor=\"\",O.removeEventListener(\"selectstart\",s))),e.handleNumbers.forEach((function(t){st(\"change\",t),st(\"set\",t),st(\"end\",t)}))}function et(t,e){if(!e.handleNumbers.some(R)){var n;1===e.handleNumbers.length&&(n=p[e.handleNumbers[0]].children[0],M+=1,f(n,r.cssClasses.active)),t.stopPropagation();var i=[],o=J(x.move,D,Z,{target:t.target,handle:n,connect:e.connect,listeners:i,startCalcPoint:t.calcPoint,baseSize:$(),pageOffset:t.pageOffset,handleNumbers:e.handleNumbers,buttonsProperty:t.buttons,locations:V.slice()}),a=J(x.end,D,tt,{target:t.target,handle:n,listeners:i,doNotReject:!0,handleNumbers:e.handleNumbers}),l=J(\"mouseout\",D,Q,{target:t.target,handle:n,listeners:i,doNotReject:!0,handleNumbers:e.handleNumbers});i.push.apply(i,o.concat(a,l)),t.cursor&&(O.style.cursor=getComputedStyle(t.target).cursor,p.length>1&&f(w,r.cssClasses.drag),O.addEventListener(\"selectstart\",s,!1)),e.handleNumbers.forEach((function(t){st(\"start\",t)}))}}function rt(t){t.stopPropagation();var e=K(t.calcPoint),n=function(t){var e=100,r=!1;return p.forEach((function(n,i){if(!R(i)){var o=V[i],s=Math.abs(o-t);(so||100===s&&100===e)&&(r=i,e=s)}})),r}(e);!1!==n&&(r.events.snap||l(w,r.cssClasses.tap,r.animationDuration),ft(n,e,!0,!0),pt(),st(\"slide\",n,!0),st(\"update\",n,!0),r.events.snap?et(t,{handleNumbers:[n]}):(st(\"change\",n,!0),st(\"set\",n,!0)))}function nt(t){var e=K(t.calcPoint),r=C.getStep(e),n=C.fromStepping(r);Object.keys(A).forEach((function(t){\"hover\"===t.split(\".\")[0]&&A[t].forEach((function(t){t.call(bt,n)}))}))}function it(t,e){A[t]=A[t]||[],A[t].push(e),\"update\"===t.split(\".\")[0]&&p.forEach((function(t,e){st(\"update\",e)}))}function ot(t){var e=t&&t.split(\".\")[0],r=e?t.substring(e.length):t;Object.keys(A).forEach((function(t){var n=t.split(\".\")[0],i=t.substring(n.length);e&&e!==n||r&&r!==i||function(t){return t===P||t===E}(i)&&r!==i||delete A[t]}))}function st(t,e,n){Object.keys(A).forEach((function(i){var o=i.split(\".\")[0];t===o&&A[i].forEach((function(t){t.call(bt,N.map(r.format.to),e,N.slice(),n||!1,V.slice(),bt)}))}))}function at(t,e,n,i,o,s){var a;return p.length>1&&!r.events.unconstrained&&(i&&e>0&&(a=C.getAbsoluteDistance(t[e-1],r.margin,!1),n=Math.max(n,a)),o&&e1&&r.limit&&(i&&e>0&&(a=C.getAbsoluteDistance(t[e-1],r.limit,!1),n=Math.min(n,a)),o&&e1?n.forEach((function(t,r){var n=at(o,t,o[t]+e,a[r],l[r],!1);!1===n?e=0:(e=n-o[t],o[t]=n)})):a=l=[!0];var u=!1;n.forEach((function(t,n){u=ft(t,r[t]+e,a[n],l[n])||u})),u&&(n.forEach((function(t){st(\"update\",t),st(\"slide\",t)})),null!=i&&st(\"drag\",s))}function ct(t,e){return r.dir?100-t-e:t}function pt(){k.forEach((function(t){var e=V[t]>50?-1:1,r=3+(p.length+e*t);p[t].style.zIndex=String(r)}))}function ft(t,e,n,i,o){return o||(e=at(V,t,e,n,i,!1)),!1!==e&&(function(t,e){V[t]=e,N[t]=C.fromStepping(e);var n=\"translate(\"+lt(10*(ct(e,0)-L)+\"%\",\"0\")+\")\";p[t].style[r.transformRule]=n,dt(t),dt(t+1)}(t,e),!0)}function dt(t){if(m[t]){var e=0,n=100;0!==t&&(e=V[t-1]),t!==m.length-1&&(n=V[t]);var i=n-e,o=\"translate(\"+lt(ct(e,i)+\"%\",\"0\")+\")\",s=\"scale(\"+lt(i/100,\"1\")+\")\";m[t].style[r.transformRule]=o+\" \"+s}}function ht(t,e){return null===t||!1===t||void 0===t?V[e]:(\"number\"==typeof t&&(t=String(t)),!1!==(t=r.format.from(t))&&(t=C.toStepping(t)),!1===t||isNaN(t)?V[e]:t)}function mt(t,e,n){var i=c(t),o=void 0===V[0];e=void 0===e||e,r.animate&&!o&&l(w,r.cssClasses.tap,r.animationDuration),k.forEach((function(t){ft(t,ht(i[t],t),!0,!1,n)}));var s=1===k.length?0:1;if(o&&C.hasNoSize()&&(n=!0,V[0]=0,k.length>1)){var a=100/(k.length-1);k.forEach((function(t){V[t]=t*a}))}for(;sn.stepAfter.startValue&&(o=n.stepAfter.startValue-i),s=i>n.thisStep.startValue?n.thisStep.step:!1!==n.stepBefore.step&&i-n.stepBefore.highestStep,100===e?o=null:0===e&&(s=null);var a=C.countStepDecimals();return null!==o&&!1!==o&&(o=Number(o.toFixed(a))),null!==s&&!1!==s&&(s=Number(s.toFixed(a))),[s,o]}f(b=w,r.cssClasses.target),0===r.dir?f(b,r.cssClasses.ltr):f(b,r.cssClasses.rtl),0===r.ort?f(b,r.cssClasses.horizontal):f(b,r.cssClasses.vertical),f(b,\"rtl\"===getComputedStyle(b).direction?r.cssClasses.textDirectionRtl:r.cssClasses.textDirectionLtr),a=T(b,r.cssClasses.base),function(t,e){var n=T(e,r.cssClasses.connects);p=[],(m=[]).push(z(n,t[0]));for(var i=0;i=0&&t .noUi-tooltip{-webkit-transform:translate(50%, 0);transform:translate(50%, 0);left:auto;bottom:10px;}.bk-root .noUi-vertical .noUi-origin > .noUi-tooltip{-webkit-transform:translate(0, -18px);transform:translate(0, -18px);top:auto;right:28px;}.bk-root .noUi-handle{cursor:grab;cursor:-webkit-grab;}.bk-root .noUi-handle.noUi-active{cursor:grabbing;cursor:-webkit-grabbing;}.bk-root .noUi-handle:after,.bk-root .noUi-handle:before{display:none;}.bk-root .noUi-tooltip{display:none;white-space:nowrap;}.bk-root .noUi-handle:hover .noUi-tooltip{display:block;}.bk-root .noUi-horizontal{width:100%;height:10px;}.bk-root .noUi-vertical{width:10px;height:100%;}.bk-root .noUi-horizontal .noUi-handle{width:14px;height:18px;right:-7px;top:-5px;}.bk-root .noUi-vertical .noUi-handle{width:18px;height:14px;right:-5px;top:-7px;}.bk-root .noUi-target.noUi-horizontal{margin:5px 0px;}.bk-root .noUi-target.noUi-vertical{margin:0px 5px;}'},\n", - " 462: function _(e,t,r,a,i){a();var s;const d=(0,e(1).__importDefault)(e(151)),o=e(458),_=e(8);class n extends o.AbstractSliderView{}r.DateSliderView=n,n.__name__=\"DateSliderView\";class c extends o.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}_formatter(e,t){return(0,_.isString)(t)?(0,d.default)(e,t):t.compute(e)}}r.DateSlider=c,s=c,c.__name__=\"DateSlider\",s.prototype.default_view=n,s.override({format:\"%d %b %Y\"})},\n", - " 463: function _(e,t,s,r,i){var _;r();const n=e(464);class a extends n.MarkupView{render(){super.render(),this.model.render_as_text?this.markup_el.textContent=this.model.text:this.markup_el.innerHTML=this.has_math_disabled()?this.model.text:this.process_tex()}}s.DivView=a,a.__name__=\"DivView\";class d extends n.Markup{constructor(e){super(e)}}s.Div=d,_=d,d.__name__=\"Div\",_.prototype.default_view=a,_.define((({Boolean:e})=>({render_as_text:[e,!1]})))},\n", - " 464: function _(t,e,s,i,r){i();const a=t(1);var n;const o=t(210),d=t(43),h=t(137),l=t(508),_=(0,a.__importStar)(t(465));class u extends l.WidgetView{get provider(){return h.default_provider}async lazy_initialize(){await super.lazy_initialize(),\"not_started\"==this.provider.status&&await this.provider.fetch(),\"not_started\"!=this.provider.status&&\"loading\"!=this.provider.status||this.provider.ready.connect((()=>{this.contains_tex_string()&&this.rerender()}))}after_layout(){super.after_layout(),\"loading\"===this.provider.status&&(this._has_finished=!1)}rerender(){this.layout.invalidate_cache(),this.render(),this.root.compute_layout()}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>{this.rerender()}))}styles(){return[...super.styles(),_.default]}_update_layout(){this.layout=new o.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render();const t=Object.assign(Object.assign({},this.model.style),{display:\"inline-block\"});this.markup_el=(0,d.div)({class:_.clearfix,style:t}),this.el.appendChild(this.markup_el),\"failed\"!=this.provider.status&&\"loaded\"!=this.provider.status||(this._has_finished=!0)}has_math_disabled(){return this.model.disable_math||!this.contains_tex_string()}process_tex(){if(!this.provider.MathJax)return this.model.text;const{text:t}=this.model,e=this.provider.MathJax.find_tex(t),s=[];let i=0;for(const r of e)s.push(t.slice(i,r.start.n)),s.push(this.provider.MathJax.tex2svg(r.math,{display:r.display}).outerHTML),i=r.end.n;return i0}}s.MarkupView=u,u.__name__=\"MarkupView\";class p extends l.Widget{constructor(t){super(t)}}s.Markup=p,n=p,p.__name__=\"Markup\",n.define((({Boolean:t,String:e,Dict:s})=>({text:[e,\"\"],style:[s(e),{}],disable_math:[t,!1]})))},\n", - " 465: function _(o,r,e,t,a){t(),e.root=\"bk-root\",e.clearfix=\"bk-clearfix\",e.default='.bk-root .bk-clearfix:before,.bk-root .bk-clearfix:after{content:\"\";display:table;}.bk-root .bk-clearfix:after{clear:both;}'},\n", - " 466: function _(e,t,i,n,s){n();const o=e(1);var l;const r=e(438),d=e(251),_=e(43),u=e(8),c=(0,o.__importStar)(e(318)),h=(0,o.__importStar)(e(229)),m=h;class p extends r.AbstractButtonView{constructor(){super(...arguments),this._open=!1}styles(){return[...super.styles(),h.default]}render(){super.render();const e=(0,_.div)({class:[m.caret,m.down]});if(this.model.is_split){const t=this._render_button(e);t.classList.add(c.dropdown_toggle),t.addEventListener(\"click\",(()=>this._toggle_menu())),this.group_el.appendChild(t)}else this.button_el.appendChild(e);const t=this.model.menu.map(((e,t)=>{if(null==e)return(0,_.div)({class:m.divider});{const i=(0,u.isString)(e)?e:e[0],n=(0,_.div)(i);return n.addEventListener(\"click\",(()=>this._item_click(t))),n}}));this.menu=(0,_.div)({class:[m.menu,m.below]},t),this.el.appendChild(this.menu),(0,_.undisplay)(this.menu)}_show_menu(){if(!this._open){this._open=!0,(0,_.display)(this.menu);const e=t=>{const{target:i}=t;i instanceof HTMLElement&&!this.el.contains(i)&&(document.removeEventListener(\"click\",e),this._hide_menu())};document.addEventListener(\"click\",e)}}_hide_menu(){this._open&&(this._open=!1,(0,_.undisplay)(this.menu))}_toggle_menu(){this._open?this._hide_menu():this._show_menu()}click(){this.model.is_split?(this._hide_menu(),this.model.trigger_event(new d.ButtonClick),super.click()):this._toggle_menu()}_item_click(e){this._hide_menu();const t=this.model.menu[e];if(null!=t){const i=(0,u.isString)(t)?t:t[1];(0,u.isString)(i)?this.model.trigger_event(new d.MenuItemClick(i)):i.execute(this.model,{index:e})}}}i.DropdownView=p,p.__name__=\"DropdownView\";class a extends r.AbstractButton{constructor(e){super(e)}get is_split(){return this.split}}i.Dropdown=a,l=a,a.__name__=\"Dropdown\",l.prototype.default_view=p,l.define((({Null:e,Boolean:t,String:i,Array:n,Tuple:s,Or:o})=>({split:[t,!1],menu:[n(o(i,s(i,o(i)),e)),[]]}))),l.override({label:\"Dropdown\"})},\n", - " 467: function _(e,l,i,t,s){var n;t();const a=e(43),o=e(508);class d extends o.WidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.render()))}render(){const{multiple:e,accept:l,disabled:i,width:t}=this.model;null==this.dialog_el&&(this.dialog_el=(0,a.input)({type:\"file\",multiple:e}),this.dialog_el.onchange=()=>{const{files:e}=this.dialog_el;null!=e&&this.load_files(e)},this.el.appendChild(this.dialog_el)),null!=l&&\"\"!=l&&(this.dialog_el.accept=l),this.dialog_el.style.width=`${t}px`,this.dialog_el.disabled=i}async load_files(e){const l=[],i=[],t=[];for(const s of e){const e=await this._read_file(s),[,n=\"\",,a=\"\"]=e.split(/[:;,]/,4);l.push(a),i.push(s.name),t.push(n)}this.model.multiple?this.model.setv({value:l,filename:i,mime_type:t}):this.model.setv({value:l[0],filename:i[0],mime_type:t[0]})}_read_file(e){return new Promise(((l,i)=>{const t=new FileReader;t.onload=()=>{var s;const{result:n}=t;null!=n?l(n):i(null!==(s=t.error)&&void 0!==s?s:new Error(`unable to read '${e.name}'`))},t.readAsDataURL(e)}))}}i.FileInputView=d,d.__name__=\"FileInputView\";class r extends o.Widget{constructor(e){super(e)}}i.FileInput=r,n=r,r.__name__=\"FileInput\",n.prototype.default_view=d,n.define((({Boolean:e,String:l,Array:i,Or:t})=>({value:[t(l,i(l)),\"\"],mime_type:[t(l,i(l)),\"\"],filename:[t(l,i(l)),\"\"],accept:[l,\"\"],multiple:[e,!1]})))},\n", - " 468: function _(e,t,i,s,n){s();const l=e(1);var o;const r=e(43),c=e(8),h=e(445),p=(0,l.__importStar)(e(446));class d extends h.InputWidgetView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.value.change,(()=>this.render_selection())),this.connect(this.model.properties.options.change,(()=>this.render())),this.connect(this.model.properties.name.change,(()=>this.render())),this.connect(this.model.properties.title.change,(()=>this.render())),this.connect(this.model.properties.size.change,(()=>this.render())),this.connect(this.model.properties.disabled.change,(()=>this.render()))}render(){super.render();const e=this.model.options.map((e=>{let t,i;return(0,c.isString)(e)?t=i=e:[t,i]=e,(0,r.option)({value:t},i)}));this.input_el=(0,r.select)({multiple:!0,class:p.input,name:this.model.name,disabled:this.model.disabled},e),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.group_el.appendChild(this.input_el),this.render_selection()}render_selection(){const e=new Set(this.model.value);for(const t of this.el.querySelectorAll(\"option\"))t.selected=e.has(t.value);this.input_el.size=this.model.size}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.input_el.focus()}}i.MultiSelectView=d,d.__name__=\"MultiSelectView\";class u extends h.InputWidget{constructor(e){super(e)}}i.MultiSelect=u,o=u,u.__name__=\"MultiSelect\",o.prototype.default_view=d,o.define((({Int:e,String:t,Array:i,Tuple:s,Or:n})=>({value:[i(t),[]],options:[i(n(t,s(t,t))),[]],size:[e,4]})))},\n", - " 469: function _(e,a,r,t,s){var n;t();const p=e(464),_=e(43);class i extends p.MarkupView{render(){super.render();const e=(0,_.p)({style:{margin:0}});this.has_math_disabled()?e.textContent=this.model.text:e.innerHTML=this.process_tex(),this.markup_el.appendChild(e)}}r.ParagraphView=i,i.__name__=\"ParagraphView\";class h extends p.Markup{constructor(e){super(e)}}r.Paragraph=h,n=h,h.__name__=\"Paragraph\",n.prototype.default_view=i},\n", - " 470: function _(e,s,t,n,r){var p;n();const u=e(443);class a extends u.TextInputView{render(){super.render(),this.input_el.type=\"password\"}}t.PasswordInputView=a,a.__name__=\"PasswordInputView\";class o extends u.TextInput{constructor(e){super(e)}}t.PasswordInput=o,p=o,o.__name__=\"PasswordInput\",p.prototype.default_view=a},\n", - " 471: function _(e,t,i,l,s){l();const o=e(1);var n;const h=(0,o.__importDefault)(e(472)),a=e(43),u=e(8),c=e(210),_=(0,o.__importStar)(e(446)),d=(0,o.__importDefault)(e(473)),r=e(445);class m extends r.InputWidgetView{constructor(){super(...arguments),this._last_height=null}connect_signals(){super.connect_signals(),this.connect(this.model.properties.disabled.change,(()=>this.set_disabled()));const{value:e,max_items:t,option_limit:i,search_option_limit:l,delete_button:s,placeholder:o,options:n,name:h,title:a}=this.model.properties;this.on_change([e,t,i,l,s,o,n,h,a],(()=>this.render()))}styles(){return[...super.styles(),d.default]}_update_layout(){this.layout=new c.CachedVariadicBox(this.el),this.layout.set_sizing(this.box_sizing())}render(){super.render(),this.input_el=(0,a.select)({multiple:!0,class:_.input,name:this.model.name,disabled:this.model.disabled}),this.group_el.appendChild(this.input_el);const e=new Set(this.model.value),t=this.model.options.map((t=>{let i,l;return(0,u.isString)(t)?i=l=t:[i,l]=t,{value:i,label:l,selected:e.has(i)}})),i=this.model.solid?\"solid\":\"light\",l=`choices__item ${i}`,s=`choices__button ${i}`,o={choices:t,duplicateItemsAllowed:!1,removeItemButton:this.model.delete_button,classNames:{item:l,button:s}};null!=this.model.placeholder&&(o.placeholderValue=this.model.placeholder),null!=this.model.max_items&&(o.maxItemCount=this.model.max_items),null!=this.model.option_limit&&(o.renderChoiceLimit=this.model.option_limit),null!=this.model.search_option_limit&&(o.searchResultLimit=this.model.search_option_limit),this.choice_el=new h.default(this.input_el,o);const n=()=>this.choice_el.containerOuter.element.getBoundingClientRect().height;null!=this._last_height&&this._last_height!=n()&&this.root.invalidate_layout(),this._last_height=n(),this.input_el.addEventListener(\"change\",(()=>this.change_input()))}set_disabled(){this.model.disabled?this.choice_el.disable():this.choice_el.enable()}change_input(){const e=null!=this.el.querySelector(\"select:focus\"),t=[];for(const e of this.el.querySelectorAll(\"option\"))e.selected&&t.push(e.value);this.model.value=t,super.change_input(),e&&this.input_el.focus()}}i.MultiChoiceView=m,m.__name__=\"MultiChoiceView\";class p extends r.InputWidget{constructor(e){super(e)}}i.MultiChoice=p,n=p,p.__name__=\"MultiChoice\",n.prototype.default_view=m,n.define((({Boolean:e,Int:t,String:i,Array:l,Tuple:s,Or:o,Nullable:n})=>({value:[l(i),[]],options:[l(o(i,s(i,i))),[]],max_items:[n(t),null],delete_button:[e,!0],placeholder:[n(i),null],option_limit:[n(t),null],search_option_limit:[n(t),null],solid:[e,!0]})))},\n", - " 472: function _(e,t,i,n,s){\n", - " /*! choices.js v9.0.1 | © 2019 Josh Johnson | https://github.com/jshjohnson/Choices#readme */\n", - " var r,o;r=window,o=function(){return function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"/public/assets/scripts/\",i(i.s=4)}([function(e,t,i){\"use strict\";var n=function(e){return function(e){return!!e&&\"object\"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return\"[object RegExp]\"===t||\"[object Date]\"===t||function(e){return e.$$typeof===s}(e)}(e)},s=\"function\"==typeof Symbol&&Symbol.for?Symbol.for(\"react.element\"):60103;function r(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function o(e,t,i){return e.concat(t).map((function(e){return r(e,i)}))}function a(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function c(e,t,i){var n={};return i.isMergeableObject(e)&&a(e).forEach((function(t){n[t]=r(e[t],i)})),a(t).forEach((function(s){(function(e,t){try{return t in e&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))}catch(e){return!1}})(e,s)||(i.isMergeableObject(t[s])&&e[s]?n[s]=function(e,t){if(!t.customMerge)return l;var i=t.customMerge(e);return\"function\"==typeof i?i:l}(s,i)(e[s],t[s],i):n[s]=r(t[s],i))})),n}function l(e,t,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||n,i.cloneUnlessOtherwiseSpecified=r;var s=Array.isArray(t);return s===Array.isArray(e)?s?i.arrayMerge(e,t,i):c(e,t,i):r(t,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error(\"first argument should be an array\");return e.reduce((function(e,i){return l(e,i,t)}),{})};var h=l;e.exports=h},function(e,t,i){\"use strict\";(function(e,n){var s,r=i(3);s=\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:void 0!==e?e:n;var o=Object(r.a)(s);t.a=o}).call(this,i(5),i(6)(e))},function(e,t,i){\n", - " /*!\n", - " * Fuse.js v3.4.5 - Lightweight fuzzy-search (http://fusejs.io)\n", - " *\n", - " * Copyright (c) 2012-2017 Kirollos Risk (http://kiro.me)\n", - " * All Rights Reserved. Apache Software License 2.0\n", - " *\n", - " * http://www.apache.org/licenses/LICENSE-2.0\n", - " */\n", - " e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,\"a\",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p=\"\",i(i.s=1)}([function(e,t){e.exports=function(e){return Array.isArray?Array.isArray(e):\"[object Array]\"===Object.prototype.toString.call(e)}},function(e,t,i){function n(e){return(n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e})(e)}function s(e,t){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:{limit:!1};this._log('---------\\nSearch pattern: \"'.concat(e,'\"'));var i=this._prepareSearchers(e),n=i.tokenSearchers,s=i.fullSearcher,r=this._search(n,s),o=r.weights,a=r.results;return this._computeScore(o,a),this.options.shouldSort&&this._sort(a),t.limit&&\"number\"==typeof t.limit&&(a=a.slice(0,t.limit)),this._format(a)}},{key:\"_prepareSearchers\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=[];if(this.options.tokenize)for(var i=e.split(this.options.tokenSeparator),n=0,s=i.length;n0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,i=this.list,n={},s=[];if(\"string\"==typeof i[0]){for(var r=0,o=i.length;r1)throw new Error(\"Key weight has to be > 0 and <= 1\");p=p.name}else a[p]={weight:1};this._analyze({key:p,value:this.options.getFn(h,p),record:h,index:c},{resultMap:n,results:s,tokenSearchers:e,fullSearcher:t})}return{weights:a,results:s}}},{key:\"_analyze\",value:function(e,t){var i=e.key,n=e.arrayIndex,s=void 0===n?-1:n,r=e.value,o=e.record,c=e.index,l=t.tokenSearchers,h=void 0===l?[]:l,u=t.fullSearcher,d=void 0===u?[]:u,p=t.resultMap,m=void 0===p?{}:p,f=t.results,v=void 0===f?[]:f;if(null!=r){var g=!1,_=-1,b=0;if(\"string\"==typeof r){this._log(\"\\nKey: \".concat(\"\"===i?\"-\":i));var y=d.search(r);if(this._log('Full text: \"'.concat(r,'\", score: ').concat(y.score)),this.options.tokenize){for(var E=r.split(this.options.tokenSeparator),I=[],S=0;S-1&&(P=(P+_)/2),this._log(\"Score average:\",P);var D=!this.options.tokenize||!this.options.matchAllTokens||b>=h.length;if(this._log(\"\\nCheck Matches: \".concat(D)),(g||y.isMatch)&&D){var M=m[c];M?M.output.push({key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}):(m[c]={item:o,output:[{key:i,arrayIndex:s,value:r,score:P,matchedIndices:y.matchedIndices}]},v.push(m[c]))}}else if(a(r))for(var N=0,F=r.length;N-1&&(o.arrayIndex=r.arrayIndex),t.matches.push(o)}}})),this.options.includeScore&&s.push((function(e,t){t.score=e.score}));for(var r=0,o=e.length;ri)return s(e,this.pattern,n);var o=this.options,a=o.location,c=o.distance,l=o.threshold,h=o.findAllMatches,u=o.minMatchCharLength;return r(e,this.pattern,this.patternAlphabet,{location:a,distance:c,threshold:l,findAllMatches:h,minMatchCharLength:u})}}])&&n(t.prototype,i),a&&n(t,a),e}();e.exports=a},function(e,t){var i=/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g;e.exports=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:/ +/g,s=new RegExp(t.replace(i,\"\\\\$&\").replace(n,\"|\")),r=e.match(s),o=!!r,a=[];if(o)for(var c=0,l=r.length;c=P;N-=1){var F=N-1,j=i[e.charAt(F)];if(j&&(E[F]=1),M[N]=(M[N+1]<<1|1)&j,0!==T&&(M[N]|=(O[N+1]|O[N])<<1|1|O[N+1]),M[N]&L&&(C=n(t,{errors:T,currentLocation:F,expectedLocation:v,distance:l}))<=_){if(_=C,(b=F)<=v)break;P=Math.max(1,2*v-b)}}if(n(t,{errors:T+1,currentLocation:v,expectedLocation:v,distance:l})>_)break;O=M}return{isMatch:b>=0,score:0===C?.001:C,matchedIndices:s(E,f)}}},function(e,t){e.exports=function(e,t){var i=t.errors,n=void 0===i?0:i,s=t.currentLocation,r=void 0===s?0:s,o=t.expectedLocation,a=void 0===o?0:o,c=t.distance,l=void 0===c?100:c,h=n/e.length,u=Math.abs(a-r);return l?h+u/l:u?1:h}},function(e,t){e.exports=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=[],n=-1,s=-1,r=0,o=e.length;r=t&&i.push([n,s]),n=-1)}return e[r-1]&&r-n>=t&&i.push([n,r-1]),i}},function(e,t){e.exports=function(e){for(var t={},i=e.length,n=0;n/g,\"&rt;\").replace(/-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!0),i})):e;case\"REMOVE_ITEM\":return t.choiceId>-1?e.map((function(e){var i=e;return i.id===parseInt(t.choiceId,10)&&(i.selected=!1),i})):e;case\"FILTER_CHOICES\":return e.map((function(e){var i=e;return i.active=t.results.some((function(e){var t=e.item,n=e.score;return t.id===i.id&&(i.score=n,!0)})),i}));case\"ACTIVATE_CHOICES\":return e.map((function(e){var i=e;return i.active=t.active,i}));case\"CLEAR_CHOICES\":return v;default:return e}},general:_}),A=function(e,t){var i=e;if(\"CLEAR_ALL\"===t.type)i=void 0;else if(\"RESET_TO\"===t.type)return O(t.state);return C(i,t)};function L(e,t){for(var i=0;i\"'+I(e)+'\"'},maxItemText:function(e){return\"Only \"+e+\" values can be added\"},valueComparer:function(e,t){return e===t},fuseOptions:{includeScore:!0},callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:\"choices\",containerInner:\"choices__inner\",input:\"choices__input\",inputCloned:\"choices__input--cloned\",list:\"choices__list\",listItems:\"choices__list--multiple\",listSingle:\"choices__list--single\",listDropdown:\"choices__list--dropdown\",item:\"choices__item\",itemSelectable:\"choices__item--selectable\",itemDisabled:\"choices__item--disabled\",itemChoice:\"choices__item--choice\",placeholder:\"choices__placeholder\",group:\"choices__group\",groupHeading:\"choices__heading\",button:\"choices__button\",activeState:\"is-active\",focusState:\"is-focused\",openState:\"is-open\",disabledState:\"is-disabled\",highlightedState:\"is-highlighted\",selectedState:\"is-selected\",flippedState:\"is-flipped\",loadingState:\"is-loading\",noResults:\"has-no-results\",noChoices:\"has-no-choices\"}},D=\"showDropdown\",M=\"hideDropdown\",N=\"change\",F=\"choice\",j=\"search\",K=\"addItem\",R=\"removeItem\",H=\"highlightItem\",B=\"highlightChoice\",V=\"ADD_CHOICE\",G=\"FILTER_CHOICES\",q=\"ACTIVATE_CHOICES\",U=\"CLEAR_CHOICES\",z=\"ADD_GROUP\",W=\"ADD_ITEM\",X=\"REMOVE_ITEM\",$=\"HIGHLIGHT_ITEM\",J=46,Y=8,Z=13,Q=65,ee=27,te=38,ie=40,ne=33,se=34,re=\"text\",oe=\"select-one\",ae=\"select-multiple\",ce=function(){function e(e){var t=e.element,i=e.type,n=e.classNames,s=e.position;this.element=t,this.classNames=n,this.type=i,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}var t=e.prototype;return t.addEventListeners=function(){this.element.addEventListener(\"focus\",this._onFocus),this.element.addEventListener(\"blur\",this._onBlur)},t.removeEventListeners=function(){this.element.removeEventListener(\"focus\",this._onFocus),this.element.removeEventListener(\"blur\",this._onBlur)},t.shouldFlip=function(e){if(\"number\"!=typeof e)return!1;var t=!1;return\"auto\"===this.position?t=!window.matchMedia(\"(min-height: \"+(e+1)+\"px)\").matches:\"top\"===this.position&&(t=!0),t},t.setActiveDescendant=function(e){this.element.setAttribute(\"aria-activedescendant\",e)},t.removeActiveDescendant=function(){this.element.removeAttribute(\"aria-activedescendant\")},t.open=function(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"true\"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)},t.close=function(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute(\"aria-expanded\",\"false\"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)},t.focus=function(){this.isFocussed||this.element.focus()},t.addFocusState=function(){this.element.classList.add(this.classNames.focusState)},t.removeFocusState=function(){this.element.classList.remove(this.classNames.focusState)},t.enable=function(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute(\"aria-disabled\"),this.type===oe&&this.element.setAttribute(\"tabindex\",\"0\"),this.isDisabled=!1},t.disable=function(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute(\"aria-disabled\",\"true\"),this.type===oe&&this.element.setAttribute(\"tabindex\",\"-1\"),this.isDisabled=!0},t.wrap=function(e){!function(e,t){void 0===t&&(t=document.createElement(\"div\")),e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.appendChild(e)}(e,this.element)},t.unwrap=function(e){this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element)},t.addLoadingState=function(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute(\"aria-busy\",\"true\"),this.isLoading=!0},t.removeLoadingState=function(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute(\"aria-busy\"),this.isLoading=!1},t._onFocus=function(){this.isFocussed=!0},t._onBlur=function(){this.isFocussed=!1},e}();function le(e,t){for(var i=0;i0?this.element.scrollTop+o-s:e.offsetTop;requestAnimationFrame((function(){i._animateScroll(a,t)}))}},t._scrollDown=function(e,t,i){var n=(i-e)/t,s=n>1?n:1;this.element.scrollTop=e+s},t._scrollUp=function(e,t,i){var n=(e-i)/t,s=n>1?n:1;this.element.scrollTop=e-s},t._animateScroll=function(e,t){var i=this,n=this.element.scrollTop,s=!1;t>0?(this._scrollDown(n,4,e),ne&&(s=!0)),s&&requestAnimationFrame((function(){i._animateScroll(e,t)}))},e}();function de(e,t){for(var i=0;i0?\"treeitem\":\"option\"),Object.assign(g.dataset,{choice:\"\",id:l,value:h,selectText:i}),m?(g.classList.add(a),g.dataset.choiceDisabled=\"\",g.setAttribute(\"aria-disabled\",\"true\")):(g.classList.add(r),g.dataset.choiceSelectable=\"\"),g},input:function(e,t){var i=e.input,n=e.inputCloned,s=Object.assign(document.createElement(\"input\"),{type:\"text\",className:i+\" \"+n,autocomplete:\"off\",autocapitalize:\"off\",spellcheck:!1});return s.setAttribute(\"role\",\"textbox\"),s.setAttribute(\"aria-autocomplete\",\"list\"),s.setAttribute(\"aria-label\",t),s},dropdown:function(e){var t=e.list,i=e.listDropdown,n=document.createElement(\"div\");return n.classList.add(t,i),n.setAttribute(\"aria-expanded\",\"false\"),n},notice:function(e,t,i){var n=e.item,s=e.itemChoice,r=e.noResults,o=e.noChoices;void 0===i&&(i=\"\");var a=[n,s];return\"no-choices\"===i?a.push(o):\"no-results\"===i&&a.push(r),Object.assign(document.createElement(\"div\"),{innerHTML:t,className:a.join(\" \")})},option:function(e){var t=e.label,i=e.value,n=e.customProperties,s=e.active,r=e.disabled,o=new Option(t,i,!1,s);return n&&(o.dataset.customProperties=n),o.disabled=r,o}},be=function(e){return void 0===e&&(e=!0),{type:q,active:e}},ye=function(e,t){return{type:$,id:e,highlighted:t}},Ee=function(e){var t=e.value,i=e.id,n=e.active,s=e.disabled;return{type:z,value:t,id:i,active:n,disabled:s}},Ie=function(e){return{type:\"SET_IS_LOADING\",isLoading:e}};function Se(e,t){for(var i=0;i=0?this._store.getGroupById(s):null;return this._store.dispatch(ye(i,!0)),t&&this.passedElement.triggerEvent(H,{id:i,value:o,label:c,groupValue:l&&l.value?l.value:null}),this},r.unhighlightItem=function(e){if(!e)return this;var t=e.id,i=e.groupId,n=void 0===i?-1:i,s=e.value,r=void 0===s?\"\":s,o=e.label,a=void 0===o?\"\":o,c=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(ye(t,!1)),this.passedElement.triggerEvent(H,{id:t,value:r,label:a,groupValue:c&&c.value?c.value:null}),this},r.highlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.highlightItem(t)})),this},r.unhighlightAll=function(){var e=this;return this._store.items.forEach((function(t){return e.unhighlightItem(t)})),this},r.removeActiveItemsByValue=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.value===e})).forEach((function(e){return t._removeItem(e)})),this},r.removeActiveItems=function(e){var t=this;return this._store.activeItems.filter((function(t){return t.id!==e})).forEach((function(e){return t._removeItem(e)})),this},r.removeHighlightedItems=function(e){var t=this;return void 0===e&&(e=!1),this._store.highlightedActiveItems.forEach((function(i){t._removeItem(i),e&&t._triggerChange(i.value)})),this},r.showDropdown=function(e){var t=this;return this.dropdown.isActive||requestAnimationFrame((function(){t.dropdown.show(),t.containerOuter.open(t.dropdown.distanceFromTopWindow),!e&&t._canSearch&&t.input.focus(),t.passedElement.triggerEvent(D,{})})),this},r.hideDropdown=function(e){var t=this;return this.dropdown.isActive?(requestAnimationFrame((function(){t.dropdown.hide(),t.containerOuter.close(),!e&&t._canSearch&&(t.input.removeActiveDescendant(),t.input.blur()),t.passedElement.triggerEvent(M,{})})),this):this},r.getValue=function(e){void 0===e&&(e=!1);var t=this._store.activeItems.reduce((function(t,i){var n=e?i.value:i;return t.push(n),t}),[]);return this._isSelectOneElement?t[0]:t},r.setValue=function(e){var t=this;return this.initialised?(e.forEach((function(e){return t._setChoiceOrItem(e)})),this):this},r.setChoiceByValue=function(e){var t=this;return!this.initialised||this._isTextElement||(Array.isArray(e)?e:[e]).forEach((function(e){return t._findAndSelectChoiceByValue(e)})),this},r.setChoices=function(e,t,i,n){var s=this;if(void 0===e&&(e=[]),void 0===t&&(t=\"value\"),void 0===i&&(i=\"label\"),void 0===n&&(n=!1),!this.initialised)throw new ReferenceError(\"setChoices was called on a non-initialized instance of Choices\");if(!this._isSelectElement)throw new TypeError(\"setChoices can't be used with INPUT based Choices\");if(\"string\"!=typeof t||!t)throw new TypeError(\"value parameter must be a name of 'value' field in passed objects\");if(n&&this.clearChoices(),\"function\"==typeof e){var r=e(this);if(\"function\"==typeof Promise&&r instanceof Promise)return new Promise((function(e){return requestAnimationFrame(e)})).then((function(){return s._handleLoadingState(!0)})).then((function(){return r})).then((function(e){return s.setChoices(e,t,i,n)})).catch((function(e){s.config.silent||console.error(e)})).then((function(){return s._handleLoadingState(!1)})).then((function(){return s}));if(!Array.isArray(r))throw new TypeError(\".setChoices first argument function must return either array of choices or Promise, got: \"+typeof r);return this.setChoices(r,t,i,!1)}if(!Array.isArray(e))throw new TypeError(\".setChoices must be called either with array of choices with a function resulting into Promise of array of choices\");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach((function(e){e.choices?s._addGroup({id:parseInt(e.id,10)||null,group:e,valueKey:t,labelKey:i}):s._addChoice({value:e[t],label:e[i],isSelected:e.selected,isDisabled:e.disabled,customProperties:e.customProperties,placeholder:e.placeholder})})),this._stopLoading(),this},r.clearChoices=function(){return this._store.dispatch({type:U}),this},r.clearStore=function(){return this._store.dispatch({type:\"CLEAR_ALL\"}),this},r.clearInput=function(){var e=!this._isSelectOneElement;return this.input.clear(e),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(be(!0))),this},r._render=function(){if(!this._store.isLoading()){this._currentState=this._store.state;var e=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,t=this._isSelectElement,i=this._currentState.items!==this._prevState.items;e&&(t&&this._renderChoices(),i&&this._renderItems(),this._prevState=this._currentState)}},r._renderChoices=function(){var e=this,t=this._store,i=t.activeGroups,n=t.activeChoices,s=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame((function(){return e.choiceList.scrollToTop()})),i.length>=1&&!this._isSearching){var r=n.filter((function(e){return!0===e.placeholder&&-1===e.groupId}));r.length>=1&&(s=this._createChoicesFragment(r,s)),s=this._createGroupsFragment(i,n,s)}else n.length>=1&&(s=this._createChoicesFragment(n,s));if(s.childNodes&&s.childNodes.length>0){var o=this._store.activeItems,a=this._canAddItem(o,this.input.value);a.response?(this.choiceList.append(s),this._highlightChoice()):this.choiceList.append(this._getTemplate(\"notice\",a.notice))}else{var c,l;this._isSearching?(l=\"function\"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,c=this._getTemplate(\"notice\",l,\"no-results\")):(l=\"function\"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,c=this._getTemplate(\"notice\",l,\"no-choices\")),this.choiceList.append(c)}},r._renderItems=function(){var e=this._store.activeItems||[];this.itemList.clear();var t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)},r._createGroupsFragment=function(e,t,i){var n=this;return void 0===i&&(i=document.createDocumentFragment()),this.config.shouldSort&&e.sort(this.config.sorter),e.forEach((function(e){var s=function(e){return t.filter((function(t){return n._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&(\"always\"===n.config.renderSelectedChoices||!t.selected)}))}(e);if(s.length>=1){var r=n._getTemplate(\"choiceGroup\",e);i.appendChild(r),n._createChoicesFragment(s,i,!0)}})),i},r._createChoicesFragment=function(e,t,i){var n=this;void 0===t&&(t=document.createDocumentFragment()),void 0===i&&(i=!1);var s=this.config,r=s.renderSelectedChoices,o=s.searchResultLimit,a=s.renderChoiceLimit,c=this._isSearching?w:this.config.sorter,l=function(e){if(\"auto\"!==r||n._isSelectOneElement||!e.selected){var i=n._getTemplate(\"choice\",e,n.config.itemSelectText);t.appendChild(i)}},h=e;\"auto\"!==r||this._isSelectOneElement||(h=e.filter((function(e){return!e.selected})));var u=h.reduce((function(e,t){return t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e}),{placeholderChoices:[],normalChoices:[]}),d=u.placeholderChoices,p=u.normalChoices;(this.config.shouldSort||this._isSearching)&&p.sort(c);var m=h.length,f=this._isSelectOneElement?[].concat(d,p):p;this._isSearching?m=o:a&&a>0&&!i&&(m=a);for(var v=0;v=n){var o=s?this._searchChoices(e):0;this.passedElement.triggerEvent(j,{value:e,resultCount:o})}else r&&(this._isSearching=!1,this._store.dispatch(be(!0)))}},r._canAddItem=function(e,t){var i=!0,n=\"function\"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){var s=function(e,t,i){return void 0===i&&(i=\"value\"),e.some((function(e){return\"string\"==typeof t?e[i]===t.trim():e[i]===t}))}(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,n=\"function\"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&s&&i&&(i=!1,n=\"function\"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&\"function\"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,n=\"function\"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:n}},r._searchChoices=function(e){var t=\"string\"==typeof e?e.trim():e,i=\"string\"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===i+\" \")return 0;var n=this._store.searchableChoices,r=t,o=[].concat(this.config.searchFields),a=Object.assign(this.config.fuseOptions,{keys:o}),c=new s.a(n,a).search(r);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch(function(e){return{type:G,results:e}}(c)),c.length},r._addEventListeners=function(){var e=document.documentElement;e.addEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.addEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.addEventListener(\"mousedown\",this._onMouseDown,!0),e.addEventListener(\"click\",this._onClick,{passive:!0}),e.addEventListener(\"touchmove\",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener(\"mouseover\",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener(\"blur\",this._onBlur,{passive:!0})),this.input.element.addEventListener(\"keyup\",this._onKeyUp,{passive:!0}),this.input.element.addEventListener(\"focus\",this._onFocus,{passive:!0}),this.input.element.addEventListener(\"blur\",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener(\"reset\",this._onFormReset,{passive:!0}),this.input.addEventListeners()},r._removeEventListeners=function(){var e=document.documentElement;e.removeEventListener(\"touchend\",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener(\"keydown\",this._onKeyDown,!0),this.containerOuter.element.removeEventListener(\"mousedown\",this._onMouseDown,!0),e.removeEventListener(\"click\",this._onClick),e.removeEventListener(\"touchmove\",this._onTouchMove),this.dropdown.element.removeEventListener(\"mouseover\",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener(\"focus\",this._onFocus),this.containerOuter.element.removeEventListener(\"blur\",this._onBlur)),this.input.element.removeEventListener(\"keyup\",this._onKeyUp),this.input.element.removeEventListener(\"focus\",this._onFocus),this.input.element.removeEventListener(\"blur\",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener(\"reset\",this._onFormReset),this.input.removeEventListeners()},r._onKeyDown=function(e){var t,i=e.target,n=e.keyCode,s=e.ctrlKey,r=e.metaKey,o=this._store.activeItems,a=this.input.isFocussed,c=this.dropdown.isActive,l=this.itemList.hasChildren(),h=String.fromCharCode(n),u=J,d=Y,p=Z,m=Q,f=ee,v=te,g=ie,_=ne,b=se,y=s||r;!this._isTextElement&&/[a-zA-Z0-9-_ ]/.test(h)&&this.showDropdown();var E=((t={})[m]=this._onAKey,t[p]=this._onEnterKey,t[f]=this._onEscapeKey,t[v]=this._onDirectionKey,t[_]=this._onDirectionKey,t[g]=this._onDirectionKey,t[b]=this._onDirectionKey,t[d]=this._onDeleteKey,t[u]=this._onDeleteKey,t);E[n]&&E[n]({event:e,target:i,keyCode:n,metaKey:r,activeItems:o,hasFocusedInput:a,hasActiveDropdown:c,hasItems:l,hasCtrlDownKeyPressed:y})},r._onKeyUp=function(e){var t=e.target,i=e.keyCode,n=this.input.value,s=this._store.activeItems,r=this._canAddItem(s,n),o=J,a=Y;if(this._isTextElement)if(r.notice&&n){var c=this._getTemplate(\"notice\",r.notice);this.dropdown.element.innerHTML=c.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0);else{var l=(i===o||i===a)&&!t.value,h=!this._isTextElement&&this._isSearching,u=this._canSearch&&r.response;l&&h?(this._isSearching=!1,this._store.dispatch(be(!0))):u&&this._handleSearch(this.input.value)}this._canSearch=this.config.searchEnabled},r._onAKey=function(e){var t=e.hasItems;e.hasCtrlDownKeyPressed&&t&&(this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll())},r._onEnterKey=function(e){var t=e.event,i=e.target,n=e.activeItems,s=e.hasActiveDropdown,r=Z,o=i.hasAttribute(\"data-button\");if(this._isTextElement&&i.value){var a=this.input.value;this._canAddItem(n,a).response&&(this.hideDropdown(!0),this._addItem({value:a}),this._triggerChange(a),this.clearInput())}if(o&&(this._handleButtonAction(n,i),t.preventDefault()),s){var c=this.dropdown.getChild(\".\"+this.config.classNames.highlightedState);c&&(n[0]&&(n[0].keyCode=r),this._handleChoiceAction(n,c)),t.preventDefault()}else this._isSelectOneElement&&(this.showDropdown(),t.preventDefault())},r._onEscapeKey=function(e){e.hasActiveDropdown&&(this.hideDropdown(!0),this.containerOuter.focus())},r._onDirectionKey=function(e){var t,i,n,s=e.event,r=e.hasActiveDropdown,o=e.keyCode,a=e.metaKey,c=ie,l=ne,h=se;if(r||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;var u,d=o===c||o===h?1:-1,p=\"[data-choice-selectable]\";if(a||o===h||o===l)u=d>0?this.dropdown.element.querySelector(\"[data-choice-selectable]:last-of-type\"):this.dropdown.element.querySelector(p);else{var m=this.dropdown.element.querySelector(\".\"+this.config.classNames.highlightedState);u=m?function(e,t,i){if(void 0===i&&(i=1),e instanceof Element&&\"string\"==typeof t){for(var n=(i>0?\"next\":\"previous\")+\"ElementSibling\",s=e[n];s;){if(s.matches(t))return s;s=s[n]}return s}}(m,p,d):this.dropdown.element.querySelector(p)}u&&(t=u,i=this.choiceList.element,void 0===(n=d)&&(n=1),t&&(n>0?i.scrollTop+i.offsetHeight>=t.offsetTop+t.offsetHeight:t.offsetTop>=i.scrollTop)||this.choiceList.scrollToChildElement(u,d),this._highlightChoice(u)),s.preventDefault()}},r._onDeleteKey=function(e){var t=e.event,i=e.target,n=e.hasFocusedInput,s=e.activeItems;!n||i.value||this._isSelectOneElement||(this._handleBackspace(s),t.preventDefault())},r._onTouchMove=function(){this._wasTap&&(this._wasTap=!1)},r._onTouchEnd=function(e){var t=(e||e.touches[0]).target;this._wasTap&&this.containerOuter.element.contains(t)&&((t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()),this._wasTap=!0},r._onMouseDown=function(e){var t=e.target;if(t instanceof HTMLElement){if(we&&this.choiceList.element.contains(t)){var i=this.choiceList.element.firstElementChild,n=\"ltr\"===this._direction?e.offsetX>=i.offsetWidth:e.offsetX0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0))},r._onFocus=function(e){var t,i=this,n=e.target;this.containerOuter.element.contains(n)&&((t={}).text=function(){n===i.input.element&&i.containerOuter.addFocusState()},t[\"select-one\"]=function(){i.containerOuter.addFocusState(),n===i.input.element&&i.showDropdown(!0)},t[\"select-multiple\"]=function(){n===i.input.element&&(i.showDropdown(!0),i.containerOuter.addFocusState())},t)[this.passedElement.element.type]()},r._onBlur=function(e){var t=this,i=e.target;if(this.containerOuter.element.contains(i)&&!this._isScrollingOnIe){var n,s=this._store.activeItems.some((function(e){return e.highlighted}));((n={}).text=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),s&&t.unhighlightAll(),t.hideDropdown(!0))},n[\"select-one\"]=function(){t.containerOuter.removeFocusState(),(i===t.input.element||i===t.containerOuter.element&&!t._canSearch)&&t.hideDropdown(!0)},n[\"select-multiple\"]=function(){i===t.input.element&&(t.containerOuter.removeFocusState(),t.hideDropdown(!0),s&&t.unhighlightAll())},n)[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()},r._onFormReset=function(){this._store.dispatch({type:\"RESET_TO\",state:this._initialState})},r._highlightChoice=function(e){var t=this;void 0===e&&(e=null);var i=Array.from(this.dropdown.element.querySelectorAll(\"[data-choice-selectable]\"));if(i.length){var n=e;Array.from(this.dropdown.element.querySelectorAll(\".\"+this.config.classNames.highlightedState)).forEach((function(e){e.classList.remove(t.config.classNames.highlightedState),e.setAttribute(\"aria-selected\",\"false\")})),n?this._highlightPosition=i.indexOf(n):(n=i.length>this._highlightPosition?i[this._highlightPosition]:i[i.length-1])||(n=i[0]),n.classList.add(this.config.classNames.highlightedState),n.setAttribute(\"aria-selected\",\"true\"),this.passedElement.triggerEvent(B,{el:n}),this.dropdown.isActive&&(this.input.setActiveDescendant(n.id),this.containerOuter.setActiveDescendant(n.id))}},r._addItem=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.choiceId,r=void 0===s?-1:s,o=e.groupId,a=void 0===o?-1:o,c=e.customProperties,l=void 0===c?null:c,h=e.placeholder,u=void 0!==h&&h,d=e.keyCode,p=void 0===d?null:d,m=\"string\"==typeof t?t.trim():t,f=p,v=l,g=this._store.items,_=n||m,b=r||-1,y=a>=0?this._store.getGroupById(a):null,E=g?g.length+1:1;return this.config.prependValue&&(m=this.config.prependValue+m.toString()),this.config.appendValue&&(m+=this.config.appendValue.toString()),this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.choiceId,r=e.groupId,o=e.customProperties,a=e.placeholder,c=e.keyCode;return{type:W,value:t,label:i,id:n,choiceId:s,groupId:r,customProperties:o,placeholder:a,keyCode:c}}({value:m,label:_,id:E,choiceId:b,groupId:a,customProperties:l,placeholder:u,keyCode:f})),this._isSelectOneElement&&this.removeActiveItems(E),this.passedElement.triggerEvent(K,{id:E,value:m,label:_,customProperties:v,groupValue:y&&y.value?y.value:void 0,keyCode:f}),this},r._removeItem=function(e){if(!e||!E(\"Object\",e))return this;var t=e.id,i=e.value,n=e.label,s=e.choiceId,r=e.groupId,o=r>=0?this._store.getGroupById(r):null;return this._store.dispatch(function(e,t){return{type:X,id:e,choiceId:t}}(t,s)),o&&o.value?this.passedElement.triggerEvent(R,{id:t,value:i,label:n,groupValue:o.value}):this.passedElement.triggerEvent(R,{id:t,value:i,label:n}),this},r._addChoice=function(e){var t=e.value,i=e.label,n=void 0===i?null:i,s=e.isSelected,r=void 0!==s&&s,o=e.isDisabled,a=void 0!==o&&o,c=e.groupId,l=void 0===c?-1:c,h=e.customProperties,u=void 0===h?null:h,d=e.placeholder,p=void 0!==d&&d,m=e.keyCode,f=void 0===m?null:m;if(null!=t){var v=this._store.choices,g=n||t,_=v?v.length+1:1,b=this._baseId+\"-\"+this._idNames.itemChoice+\"-\"+_;this._store.dispatch(function(e){var t=e.value,i=e.label,n=e.id,s=e.groupId,r=e.disabled,o=e.elementId,a=e.customProperties,c=e.placeholder,l=e.keyCode;return{type:V,value:t,label:i,id:n,groupId:s,disabled:r,elementId:o,customProperties:a,placeholder:c,keyCode:l}}({id:_,groupId:l,elementId:b,value:t,label:g,disabled:a,customProperties:u,placeholder:p,keyCode:f})),r&&this._addItem({value:t,label:g,choiceId:_,customProperties:u,placeholder:p,keyCode:f})}},r._addGroup=function(e){var t=this,i=e.group,n=e.id,s=e.valueKey,r=void 0===s?\"value\":s,o=e.labelKey,a=void 0===o?\"label\":o,c=E(\"Object\",i)?i.choices:Array.from(i.getElementsByTagName(\"OPTION\")),l=n||Math.floor((new Date).valueOf()*Math.random()),h=!!i.disabled&&i.disabled;c?(this._store.dispatch(Ee({value:i.label,id:l,active:!0,disabled:h})),c.forEach((function(e){var i=e.disabled||e.parentNode&&e.parentNode.disabled;t._addChoice({value:e[r],label:E(\"Object\",e)?e[a]:e.innerHTML,isSelected:e.selected,isDisabled:i,groupId:l,customProperties:e.customProperties,placeholder:e.placeholder})}))):this._store.dispatch(Ee({value:i.label,id:i.id,active:!1,disabled:i.disabled}))},r._getTemplate=function(e){var t;if(!e)return null;for(var i=this.config.classNames,n=arguments.length,s=new Array(n>1?n-1:0),r=1;r{var e;return this.input_el.name=null!==(e=this.model.name)&&void 0!==e?e:\"\"})),this.connect(this.model.properties.value.change,(()=>{this.input_el.value=this.format_value,this.old_value=this.input_el.value})),this.connect(this.model.properties.low.change,(()=>{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&(0,p.assert)(t<=l,\"Invalid bounds, low must be inferior to high\"),null!=e&&null!=t&&e{const{value:e,low:t,high:l}=this.model;null!=t&&null!=l&&(0,p.assert)(l>=t,\"Invalid bounds, high must be superior to low\"),null!=e&&null!=l&&e>l&&(this.model.value=l)})),this.connect(this.model.properties.high.change,(()=>this.input_el.placeholder=this.model.placeholder)),this.connect(this.model.properties.disabled.change,(()=>this.input_el.disabled=this.model.disabled)),this.connect(this.model.properties.placeholder.change,(()=>this.input_el.placeholder=this.model.placeholder))}get format_value(){return null!=this.model.value?this.model.pretty(this.model.value):\"\"}_set_input_filter(e){this.input_el.addEventListener(\"input\",(()=>{const{selectionStart:t,selectionEnd:l}=this.input_el;if(e(this.input_el.value))this.old_value=this.input_el.value;else{const e=this.old_value.length-this.input_el.value.length;this.input_el.value=this.old_value,t&&l&&this.input_el.setSelectionRange(t-1,l+e)}}))}render(){super.render(),this.input_el=(0,r.input)({type:\"text\",class:_.input,name:this.model.name,value:this.format_value,disabled:this.model.disabled,placeholder:this.model.placeholder}),this.old_value=this.format_value,this.set_input_filter(),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.input_el.addEventListener(\"focusout\",(()=>this.input_el.value=this.format_value)),this.group_el.appendChild(this.input_el)}set_input_filter(){\"int\"==this.model.mode?this._set_input_filter((e=>m.test(e))):\"float\"==this.model.mode&&this._set_input_filter((e=>c.test(e)))}bound_value(e){let t=e;const{low:l,high:i}=this.model;return t=null!=l?Math.max(l,t):t,t=null!=i?Math.min(i,t):t,t}get value(){let e=\"\"!=this.input_el.value?Number(this.input_el.value):null;return null!=e&&(e=this.bound_value(e)),e}change_input(){null==this.value?this.model.value=null:Number.isNaN(this.value)||(this.model.value=this.value)}}l.NumericInputView=v,v.__name__=\"NumericInputView\";class g extends o.InputWidget{constructor(e){super(e)}_formatter(e,t){return(0,d.isString)(t)?h.format(e,t):t.doFormat([e],{loc:0})[0]}pretty(e){return null!=this.format?this._formatter(e,this.format):`${e}`}}l.NumericInput=g,u=g,g.__name__=\"NumericInput\",u.prototype.default_view=v,u.define((({Number:e,String:t,Enum:l,Ref:i,Or:n,Nullable:s})=>({value:[s(e),null],placeholder:[t,\"\"],mode:[l(\"int\",\"float\"),\"int\"],format:[s(n(t,i(a.TickFormatter))),null],low:[s(e),null],high:[s(e),null]})))},\n", - " 475: function _(e,t,r,s,n){var a;s();const o=e(464),_=e(43);class p extends o.MarkupView{render(){super.render();const e=(0,_.pre)({style:{overflow:\"auto\"}},this.model.text);this.markup_el.appendChild(e)}}r.PreTextView=p,p.__name__=\"PreTextView\";class u extends o.Markup{constructor(e){super(e)}}r.PreText=u,a=u,u.__name__=\"PreText\",a.prototype.default_view=p},\n", - " 476: function _(t,o,e,a,i){a();const n=t(1);var u;const s=t(449),c=t(43),_=(0,n.__importStar)(t(318));class r extends s.ButtonGroupView{change_active(t){this.model.active!==t&&(this.model.active=t)}_update_active(){const{active:t}=this.model;this._buttons.forEach(((o,e)=>{(0,c.classes)(o).toggle(_.active,t===e)}))}}e.RadioButtonGroupView=r,r.__name__=\"RadioButtonGroupView\";class l extends s.ButtonGroup{constructor(t){super(t)}}e.RadioButtonGroup=l,u=l,l.__name__=\"RadioButtonGroup\",u.prototype.default_view=r,u.define((({Int:t,Nullable:o})=>({active:[o(t),null]})))},\n", - " 477: function _(e,n,i,t,a){t();const s=e(1);var l;const o=e(43),d=e(34),p=e(452),r=(0,s.__importStar)(e(446));class u extends p.InputGroupView{render(){super.render();const e=(0,o.div)({class:[r.input_group,this.model.inline?r.inline:null]});this.el.appendChild(e);const n=(0,d.uniqueId)(),{active:i,labels:t}=this.model;this._inputs=[];for(let a=0;athis.change_active(a))),this._inputs.push(s),this.model.disabled&&(s.disabled=!0),a==i&&(s.checked=!0);const l=(0,o.label)(s,(0,o.span)(t[a]));e.appendChild(l)}}change_active(e){this.model.active=e}}i.RadioGroupView=u,u.__name__=\"RadioGroupView\";class c extends p.InputGroup{constructor(e){super(e)}}i.RadioGroup=c,l=c,c.__name__=\"RadioGroup\",l.prototype.default_view=u,l.define((({Boolean:e,Int:n,String:i,Array:t,Nullable:a})=>({active:[a(n),null],labels:[t(i),[]],inline:[e,!1]})))},\n", - " 478: function _(e,r,t,a,i){a();var n;const o=(0,e(1).__importStar)(e(153)),s=e(458),_=e(8);class d extends s.AbstractRangeSliderView{}t.RangeSliderView=d,d.__name__=\"RangeSliderView\";class c extends s.AbstractSlider{constructor(e){super(e),this.behaviour=\"drag\",this.connected=[!1,!0,!1]}_formatter(e,r){return(0,_.isString)(r)?o.format(e,r):r.compute(e)}}t.RangeSlider=c,n=c,c.__name__=\"RangeSlider\",n.prototype.default_view=d,n.override({format:\"0[.]00\"})},\n", - " 479: function _(e,t,n,s,i){s();const l=e(1);var u;const a=e(43),o=e(8),p=e(13),_=e(445),r=(0,l.__importStar)(e(446));class c extends _.InputWidgetView{constructor(){super(...arguments),this._known_values=new Set}connect_signals(){super.connect_signals();const{value:e,options:t}=this.model.properties;this.on_change(e,(()=>{this._update_value()})),this.on_change(t,(()=>{(0,a.empty)(this.input_el),(0,a.append)(this.input_el,...this.options_el()),this._update_value()}))}options_el(){const{_known_values:e}=this;function t(t){return t.map((t=>{let n,s;return(0,o.isString)(t)?n=s=t:[n,s]=t,e.add(n),(0,a.option)({value:n},s)}))}e.clear();const{options:n}=this.model;return(0,o.isArray)(n)?t(n):(0,p.entries)(n).map((([e,n])=>(0,a.optgroup)({label:e},t(n))))}render(){super.render(),this.input_el=(0,a.select)({class:r.input,name:this.model.name,disabled:this.model.disabled},this.options_el()),this._update_value(),this.input_el.addEventListener(\"change\",(()=>this.change_input())),this.group_el.appendChild(this.input_el)}change_input(){const e=this.input_el.value;this.model.value=e,super.change_input()}_update_value(){const{value:e}=this.model;this._known_values.has(e)?this.input_el.value=e:this.input_el.removeAttribute(\"value\")}}n.SelectView=c,c.__name__=\"SelectView\";class h extends _.InputWidget{constructor(e){super(e)}}n.Select=h,u=h,h.__name__=\"Select\",u.prototype.default_view=c,u.define((({String:e,Array:t,Tuple:n,Dict:s,Or:i})=>{const l=t(i(e,n(e,e)));return{value:[e,\"\"],options:[i(l,s(l)),[]]}}))},\n", - " 480: function _(e,t,r,i,a){i();var o;const s=(0,e(1).__importStar)(e(153)),_=e(458),n=e(8);class c extends _.AbstractSliderView{}r.SliderView=c,c.__name__=\"SliderView\";class d extends _.AbstractSlider{constructor(e){super(e),this.behaviour=\"tap\",this.connected=[!0,!1]}_formatter(e,t){return(0,n.isString)(t)?s.format(e,t):t.compute(e)}}r.Slider=d,o=d,d.__name__=\"Slider\",o.prototype.default_view=c,o.override({format:\"0[.]00\"})},\n", - " 481: function _(e,t,i,n,s){var l;n();const o=e(474),r=e(43),{min:a,max:h,floor:_,abs:u}=Math;function d(e){return _(e)!==e?e.toFixed(16).replace(/0+$/,\"\").split(\".\")[1].length:0}class p extends o.NumericInputView{*buttons(){yield this.btn_up_el,yield this.btn_down_el}initialize(){super.initialize(),this._handles={interval:void 0,timeout:void 0},this._interval=200}connect_signals(){super.connect_signals();const e=this.model.properties;this.on_change(e.disabled,(()=>{for(const e of this.buttons())(0,r.toggle_attribute)(e,\"disabled\",this.model.disabled)}))}render(){super.render(),this.wrapper_el=(0,r.div)({class:\"bk-spin-wrapper\"}),this.group_el.replaceChild(this.wrapper_el,this.input_el),this.btn_up_el=(0,r.button)({class:\"bk-spin-btn bk-spin-btn-up\"}),this.btn_down_el=(0,r.button)({class:\"bk-spin-btn bk-spin-btn-down\"}),this.wrapper_el.appendChild(this.input_el),this.wrapper_el.appendChild(this.btn_up_el),this.wrapper_el.appendChild(this.btn_down_el);for(const e of this.buttons())(0,r.toggle_attribute)(e,\"disabled\",this.model.disabled),e.addEventListener(\"mousedown\",(e=>this._btn_mouse_down(e))),e.addEventListener(\"mouseup\",(()=>this._btn_mouse_up())),e.addEventListener(\"mouseleave\",(()=>this._btn_mouse_leave()));this.input_el.addEventListener(\"keydown\",(e=>this._input_key_down(e))),this.input_el.addEventListener(\"keyup\",(()=>this.model.value_throttled=this.model.value)),this.input_el.addEventListener(\"wheel\",(e=>this._input_mouse_wheel(e))),this.input_el.addEventListener(\"wheel\",function(e,t,i=!1){let n;return function(...s){const l=this,o=i&&void 0===n;void 0!==n&&clearTimeout(n),n=setTimeout((function(){n=void 0,i||e.apply(l,s)}),t),o&&e.apply(l,s)}}((()=>{this.model.value_throttled=this.model.value}),this.model.wheel_wait,!1))}get precision(){const{low:e,high:t,step:i}=this.model,n=d;return h(n(u(null!=e?e:0)),n(u(null!=t?t:0)),n(u(i)))}remove(){this._stop_incrementation(),super.remove()}_start_incrementation(e){clearInterval(this._handles.interval),this._counter=0;const{step:t}=this.model,i=e=>{if(this._counter+=1,this._counter%5==0){const t=Math.floor(this._counter/5);t<10?(clearInterval(this._handles.interval),this._handles.interval=setInterval((()=>i(e)),this._interval/(t+1))):t>=10&&t<=13&&(clearInterval(this._handles.interval),this._handles.interval=setInterval((()=>i(2*e)),this._interval/10))}this.increment(e)};this._handles.interval=setInterval((()=>i(e*t)),this._interval)}_stop_incrementation(){clearTimeout(this._handles.timeout),this._handles.timeout=void 0,clearInterval(this._handles.interval),this._handles.interval=void 0,this.model.value_throttled=this.model.value}_btn_mouse_down(e){e.preventDefault();const t=e.currentTarget===this.btn_up_el?1:-1;this.increment(t*this.model.step),this.input_el.focus(),this._handles.timeout=setTimeout((()=>this._start_incrementation(t)),this._interval)}_btn_mouse_up(){this._stop_incrementation()}_btn_mouse_leave(){this._stop_incrementation()}_input_mouse_wheel(e){if(document.activeElement===this.input_el){e.preventDefault();const t=e.deltaY>0?-1:1;this.increment(t*this.model.step)}}_input_key_down(e){switch(e.keyCode){case r.Keys.Up:return e.preventDefault(),this.increment(this.model.step);case r.Keys.Down:return e.preventDefault(),this.increment(-this.model.step);case r.Keys.PageUp:return e.preventDefault(),this.increment(this.model.page_step_multiplier*this.model.step);case r.Keys.PageDown:return e.preventDefault(),this.increment(-this.model.page_step_multiplier*this.model.step)}}adjust_to_precision(e){return this.bound_value(Number(e.toFixed(this.precision)))}increment(e){const{low:t,high:i}=this.model;null==this.model.value?e>0?this.model.value=null!=t?t:null!=i?a(0,i):0:e<0&&(this.model.value=null!=i?i:null!=t?h(t,0):0):this.model.value=this.adjust_to_precision(this.model.value+e)}change_input(){super.change_input(),this.model.value_throttled=this.model.value}}i.SpinnerView=p,p.__name__=\"SpinnerView\";class m extends o.NumericInput{constructor(e){super(e)}}i.Spinner=m,l=m,m.__name__=\"Spinner\",l.prototype.default_view=p,l.define((({Number:e,Nullable:t})=>({value_throttled:[t(e),null],step:[e,1],page_step_multiplier:[e,10],wheel_wait:[e,100]}))),l.override({mode:\"float\"})},\n", - " 482: function _(e,t,s,n,i){n();const o=e(1);var r;const c=e(444),l=e(43),p=(0,o.__importStar)(e(446));class _ extends c.TextLikeInputView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.rows.change,(()=>this.input_el.rows=this.model.rows)),this.connect(this.model.properties.cols.change,(()=>this.input_el.cols=this.model.cols))}_render_input(){this.input_el=(0,l.textarea)({class:p.input})}render(){super.render(),this.input_el.cols=this.model.cols,this.input_el.rows=this.model.rows}}s.TextAreaInputView=_,_.__name__=\"TextAreaInputView\";class a extends c.TextLikeInput{constructor(e){super(e)}}s.TextAreaInput=a,r=a,a.__name__=\"TextAreaInput\",r.prototype.default_view=_,r.define((({Int:e})=>({cols:[e,20],rows:[e,2]}))),r.override({max_length:500})},\n", - " 483: function _(e,t,s,c,i){c();const o=e(1);var a;const n=e(438),l=e(43),_=(0,o.__importStar)(e(318));class r extends n.AbstractButtonView{connect_signals(){super.connect_signals(),this.connect(this.model.properties.active.change,(()=>this._update_active()))}render(){super.render(),this._update_active()}click(){this.model.active=!this.model.active,super.click()}_update_active(){(0,l.classes)(this.button_el).toggle(_.active,this.model.active)}}s.ToggleView=r,r.__name__=\"ToggleView\";class g extends n.AbstractButton{constructor(e){super(e)}}s.Toggle=g,a=g,g.__name__=\"Toggle\",a.prototype.default_view=r,a.define((({Boolean:e})=>({active:[e,!1]}))),a.override({label:\"Toggle\"})},\n", - " }, 436, {\"models/widgets/main\":436,\"models/widgets/index\":437,\"models/widgets/abstract_button\":438,\"models/widgets/control\":439,\"models/widgets/widget\":508,\"models/widgets/abstract_icon\":441,\"models/widgets/autocomplete_input\":442,\"models/widgets/text_input\":443,\"models/widgets/text_like_input\":444,\"models/widgets/input_widget\":445,\"styles/widgets/inputs.css\":446,\"models/widgets/button\":447,\"models/widgets/checkbox_button_group\":448,\"models/widgets/button_group\":449,\"models/widgets/oriented_control\":450,\"models/widgets/checkbox_group\":451,\"models/widgets/input_group\":452,\"models/widgets/color_picker\":453,\"models/widgets/date_picker\":454,\"styles/widgets/flatpickr.css\":456,\"models/widgets/date_range_slider\":457,\"models/widgets/abstract_slider\":458,\"styles/widgets/sliders.css\":460,\"styles/widgets/nouislider.css\":461,\"models/widgets/date_slider\":462,\"models/widgets/div\":463,\"models/widgets/markup\":464,\"styles/clearfix.css\":465,\"models/widgets/dropdown\":466,\"models/widgets/file_input\":467,\"models/widgets/multiselect\":468,\"models/widgets/paragraph\":469,\"models/widgets/password_input\":470,\"models/widgets/multichoice\":471,\"styles/widgets/choices.css\":473,\"models/widgets/numeric_input\":474,\"models/widgets/pretext\":475,\"models/widgets/radio_button_group\":476,\"models/widgets/radio_group\":477,\"models/widgets/range_slider\":478,\"models/widgets/selectbox\":479,\"models/widgets/slider\":480,\"models/widgets/spinner\":481,\"models/widgets/textarea_input\":482,\"models/widgets/toggle\":483}, {});});\n", - "\n", - " /* END bokeh-widgets.min.js */\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " /* BEGIN bokeh-tables.min.js */\n", - " /*!\n", - " * Copyright (c) 2012 - 2021, Anaconda, Inc., and Bokeh Contributors\n", - " * All rights reserved.\n", - " * \n", - " * Redistribution and use in source and binary forms, with or without modification,\n", - " * are permitted provided that the following conditions are met:\n", - " * \n", - " * Redistributions of source code must retain the above copyright notice,\n", - " * this list of conditions and the following disclaimer.\n", - " * \n", - " * Redistributions in binary form must reproduce the above copyright notice,\n", - " * this list of conditions and the following disclaimer in the documentation\n", - " * and/or other materials provided with the distribution.\n", - " * \n", - " * Neither the name of Anaconda nor the names of any contributors\n", - " * may be used to endorse or promote products derived from this software\n", - " * without specific prior written permission.\n", - " * \n", - " * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n", - " * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n", - " * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n", - " * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n", - " * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n", - " * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n", - " * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n", - " * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n", - " * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n", - " * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF\n", - " * THE POSSIBILITY OF SUCH DAMAGE.\n", - " */\n", - " (function(root, factory) {\n", - " factory(root[\"Bokeh\"], \"2.4.2\");\n", - " })(this, function(Bokeh, version) {\n", - " let define;\n", - " return (function(modules, entry, aliases, externals) {\n", - " const bokeh = typeof Bokeh !== \"undefined\" && (version != null ? Bokeh[version] : Bokeh);\n", - " if (bokeh != null) {\n", - " return bokeh.register_plugin(modules, entry, aliases);\n", - " } else {\n", - " throw new Error(\"Cannot find Bokeh \" + version + \". You have to load it prior to loading plugins.\");\n", - " }\n", - " })\n", - " ({\n", - " 484: function _(t,e,o,r,s){r();const _=(0,t(1).__importStar)(t(485));o.Tables=_;(0,t(7).register_models)(_)},\n", - " 485: function _(g,a,r,e,t){e();const o=g(1);(0,o.__exportStar)(g(486),r),(0,o.__exportStar)(g(489),r),t(\"DataTable\",g(492).DataTable),t(\"TableColumn\",g(510).TableColumn),t(\"TableWidget\",g(509).TableWidget);var n=g(512);t(\"AvgAggregator\",n.AvgAggregator),t(\"MinAggregator\",n.MinAggregator),t(\"MaxAggregator\",n.MaxAggregator),t(\"SumAggregator\",n.SumAggregator);var A=g(513);t(\"GroupingInfo\",A.GroupingInfo),t(\"DataCube\",A.DataCube)},\n", - " 486: function _(e,t,i,s,a){s();const r=e(1);var l,n,u,d,o,p,_,c,h;const E=e(43),V=e(226),m=e(53),f=e(487),v=(0,r.__importStar)(e(488));class w extends V.DOMView{constructor(e){const{model:t,parent:i}=e.column;super(Object.assign({model:t,parent:i},e)),this.args=e,this.initialize(),this.render()}get emptyValue(){return null}initialize(){super.initialize(),this.inputEl=this._createInput(),this.defaultValue=null}async lazy_initialize(){throw new Error(\"unsupported\")}css_classes(){return super.css_classes().concat(v.cell_editor)}render(){super.render(),this.args.container.append(this.el),this.el.appendChild(this.inputEl),this.renderEditor(),this.disableNavigation()}renderEditor(){}disableNavigation(){this.inputEl.addEventListener(\"keydown\",(e=>{switch(e.keyCode){case E.Keys.Left:case E.Keys.Right:case E.Keys.Up:case E.Keys.Down:case E.Keys.PageUp:case E.Keys.PageDown:e.stopImmediatePropagation()}}))}destroy(){this.remove()}focus(){this.inputEl.focus()}show(){}hide(){}position(){}getValue(){return this.inputEl.value}setValue(e){this.inputEl.value=e}serializeValue(){return this.getValue()}isValueChanged(){return!(\"\"==this.getValue()&&null==this.defaultValue)&&this.getValue()!==this.defaultValue}applyValue(e,t){const i=this.args.grid.getData(),s=i.index.indexOf(e[f.DTINDEX_NAME]);i.setField(s,this.args.column.field,t)}loadValue(e){const t=e[this.args.column.field];this.defaultValue=null!=t?t:this.emptyValue,this.setValue(this.defaultValue)}validateValue(e){if(this.args.column.validator){const t=this.args.column.validator(e);if(!t.valid)return t}return{valid:!0,msg:null}}validate(){return this.validateValue(this.getValue())}}i.CellEditorView=w,w.__name__=\"CellEditorView\";class g extends m.Model{}i.CellEditor=g,g.__name__=\"CellEditor\";class x extends w{get emptyValue(){return\"\"}_createInput(){return(0,E.input)({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}}i.StringEditorView=x,x.__name__=\"StringEditorView\";class y extends g{}i.StringEditor=y,l=y,y.__name__=\"StringEditor\",l.prototype.default_view=x,l.define((({String:e,Array:t})=>({completions:[t(e),[]]})));class I extends w{_createInput(){return(0,E.textarea)()}renderEditor(){this.inputEl.focus(),this.inputEl.select()}}i.TextEditorView=I,I.__name__=\"TextEditorView\";class b extends g{}i.TextEditor=b,n=b,b.__name__=\"TextEditor\",n.prototype.default_view=I;class N extends w{_createInput(){return(0,E.select)()}renderEditor(){for(const e of this.model.options)this.inputEl.appendChild((0,E.option)({value:e},e));this.focus()}}i.SelectEditorView=N,N.__name__=\"SelectEditorView\";class C extends g{}i.SelectEditor=C,u=C,C.__name__=\"SelectEditor\",u.prototype.default_view=N,u.define((({String:e,Array:t})=>({options:[t(e),[]]})));class D extends w{_createInput(){return(0,E.input)({type:\"text\"})}}i.PercentEditorView=D,D.__name__=\"PercentEditorView\";class S extends g{}i.PercentEditor=S,d=S,S.__name__=\"PercentEditor\",d.prototype.default_view=D;class k extends w{_createInput(){return(0,E.input)({type:\"checkbox\"})}renderEditor(){this.focus()}loadValue(e){this.defaultValue=!!e[this.args.column.field],this.inputEl.checked=this.defaultValue}serializeValue(){return this.inputEl.checked}}i.CheckboxEditorView=k,k.__name__=\"CheckboxEditorView\";class z extends g{}i.CheckboxEditor=z,o=z,z.__name__=\"CheckboxEditor\",o.prototype.default_view=k;class P extends w{_createInput(){return(0,E.input)({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){var e;return null!==(e=parseInt(this.getValue(),10))&&void 0!==e?e:0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid integer\"}:super.validateValue(e)}}i.IntEditorView=P,P.__name__=\"IntEditorView\";class T extends g{}i.IntEditor=T,p=T,T.__name__=\"IntEditor\",p.prototype.default_view=P,p.define((({Int:e})=>({step:[e,1]})));class K extends w{_createInput(){return(0,E.input)({type:\"text\"})}renderEditor(){this.inputEl.focus(),this.inputEl.select()}remove(){super.remove()}serializeValue(){var e;return null!==(e=parseFloat(this.getValue()))&&void 0!==e?e:0}loadValue(e){super.loadValue(e),this.inputEl.defaultValue=this.defaultValue,this.inputEl.select()}validateValue(e){return isNaN(e)?{valid:!1,msg:\"Please enter a valid number\"}:super.validateValue(e)}}i.NumberEditorView=K,K.__name__=\"NumberEditorView\";class A extends g{}i.NumberEditor=A,_=A,A.__name__=\"NumberEditor\",_.prototype.default_view=K,_.define((({Number:e})=>({step:[e,.01]})));class M extends w{_createInput(){return(0,E.input)({type:\"text\"})}}i.TimeEditorView=M,M.__name__=\"TimeEditorView\";class O extends g{}i.TimeEditor=O,c=O,O.__name__=\"TimeEditor\",c.prototype.default_view=M;class F extends w{_createInput(){return(0,E.input)({type:\"text\"})}get emptyValue(){return new Date}renderEditor(){this.inputEl.focus(),this.inputEl.select()}destroy(){super.destroy()}show(){super.show()}hide(){super.hide()}position(){return super.position()}getValue(){}setValue(e){}}i.DateEditorView=F,F.__name__=\"DateEditorView\";class L extends g{}i.DateEditor=L,h=L,L.__name__=\"DateEditor\",h.prototype.default_view=F},\n", - " 487: function _(_,n,i,t,d){t(),i.DTINDEX_NAME=\"__bkdt_internal_index__\"},\n", - " 488: function _(e,l,o,t,r){t(),o.root=\"bk-root\",o.data_table=\"bk-data-table\",o.cell_special_defaults=\"bk-cell-special-defaults\",o.cell_select=\"bk-cell-select\",o.cell_index=\"bk-cell-index\",o.header_index=\"bk-header-index\",o.cell_editor=\"bk-cell-editor\",o.cell_editor_completion=\"bk-cell-editor-completion\",o.default='.bk-root .bk-data-table{box-sizing:content-box;font-size:11px;}.bk-root .bk-data-table input[type=\"checkbox\"]{margin-left:4px;margin-right:4px;}.bk-root .bk-cell-special-defaults{border-right-color:silver;border-right-style:solid;background:#f5f5f5;}.bk-root .bk-cell-select{border-right-color:silver;border-right-style:solid;background:#f5f5f5;}.bk-root .slick-cell.bk-cell-index{border-right-color:silver;border-right-style:solid;background:#f5f5f5;text-align:right;background:#f0f0f0;color:#909090;}.bk-root .bk-header-index .slick-column-name{float:right;}.bk-root .slick-row.selected .bk-cell-index{background-color:transparent;}.bk-root .slick-row.odd{background:#f0f0f0;}.bk-root .slick-cell{padding-left:4px;padding-right:4px;border-right-color:transparent;border:0.25px solid transparent;}.bk-root .slick-cell .bk{line-height:inherit;}.bk-root .slick-cell.active{border-style:dashed;}.bk-root .slick-cell.selected{background-color:#F0F8FF;}.bk-root .slick-cell.editable{padding-left:0;padding-right:0;}.bk-root .bk-cell-editor{display:contents;}.bk-root .bk-cell-editor input,.bk-root .bk-cell-editor select{width:100%;height:100%;border:0;margin:0;padding:0;outline:0;background:transparent;vertical-align:baseline;}.bk-root .bk-cell-editor input{padding-left:4px;padding-right:4px;}.bk-root .bk-cell-editor-completion{font-size:11px;}'},\n", - " 489: function _(t,e,r,n,a){n();const o=t(1);var l,s,i,c,u,m;const _=(0,o.__importDefault)(t(151)),d=(0,o.__importStar)(t(153)),f=t(490),g=t(43),h=t(20),F=t(8),p=t(34),b=t(22),S=t(53);class x extends S.Model{constructor(t){super(t)}doFormat(t,e,r,n,a){return null==r?\"\":`${r}`.replace(/&/g,\"&\").replace(//g,\">\")}}r.CellFormatter=x,x.__name__=\"CellFormatter\";class M extends x{constructor(t){super(t)}doFormat(t,e,r,n,a){const{font_style:o,text_align:l,text_color:s}=this,i=(0,g.div)(null==r?\"\":`${r}`);switch(o){case\"bold\":i.style.fontWeight=\"bold\";break;case\"italic\":i.style.fontStyle=\"italic\"}return null!=l&&(i.style.textAlign=l),null!=s&&(i.style.color=(0,b.color2css)(s)),i.outerHTML}}r.StringFormatter=M,l=M,M.__name__=\"StringFormatter\",l.define((({Color:t,Nullable:e})=>({font_style:[h.FontStyle,\"normal\"],text_align:[h.TextAlign,\"left\"],text_color:[e(t),null]})));class N extends M{constructor(t){super(t)}get scientific_limit_low(){return 10**this.power_limit_low}get scientific_limit_high(){return 10**this.power_limit_high}doFormat(t,e,r,n,a){const o=Math.abs(r)<=this.scientific_limit_low||Math.abs(r)>=this.scientific_limit_high;let l=this.precision;return l<1&&(l=1),r=null!=r&&!isNaN(r)||null==this.nan_format?0==r?(0,p.to_fixed)(r,1):o?r.toExponential(l):(0,p.to_fixed)(r,l):this.nan_format,super.doFormat(t,e,r,n,a)}}r.ScientificFormatter=N,s=N,N.__name__=\"ScientificFormatter\",s.define((({Number:t,String:e,Nullable:r})=>({nan_format:[r(e),null],precision:[t,10],power_limit_high:[t,5],power_limit_low:[t,-3]})));class w extends M{constructor(t){super(t)}doFormat(t,e,r,n,a){const{format:o,language:l,nan_format:s}=this,i=(()=>{switch(this.rounding){case\"round\":case\"nearest\":return Math.round;case\"floor\":case\"rounddown\":return Math.floor;case\"ceil\":case\"roundup\":return Math.ceil}})();return r=null!=r&&!isNaN(r)||null==s?d.format(r,o,l,i):s,super.doFormat(t,e,r,n,a)}}r.NumberFormatter=w,i=w,w.__name__=\"NumberFormatter\",i.define((({String:t,Nullable:e})=>({format:[t,\"0,0\"],language:[t,\"en\"],rounding:[h.RoundingFunction,\"round\"],nan_format:[e(t),null]})));class C extends x{constructor(t){super(t)}doFormat(t,e,r,n,a){return r?(0,g.i)({class:this.icon}).outerHTML:\"\"}}r.BooleanFormatter=C,c=C,C.__name__=\"BooleanFormatter\",c.define((({String:t})=>({icon:[t,\"check\"]})));class y extends M{constructor(t){super(t)}getFormat(){switch(this.format){case\"ATOM\":case\"W3C\":case\"RFC-3339\":case\"ISO-8601\":return\"%Y-%m-%d\";case\"COOKIE\":return\"%a, %d %b %Y\";case\"RFC-850\":return\"%A, %d-%b-%y\";case\"RFC-1123\":case\"RFC-2822\":return\"%a, %e %b %Y\";case\"RSS\":case\"RFC-822\":case\"RFC-1036\":return\"%a, %e %b %y\";case\"TIMESTAMP\":return;default:return this.format}}doFormat(t,e,r,n,a){const{nan_format:o}=this;let l;return l=null!=(r=(0,F.isString)(r)?parseInt(r,10):r)&&!isNaN(r)&&-9223372036854776!==r||null==o?null==r?\"\":(0,_.default)(r,this.getFormat()):o,super.doFormat(t,e,l,n,a)}}r.DateFormatter=y,u=y,y.__name__=\"DateFormatter\",u.define((({String:t,Nullable:e})=>({format:[t,\"ISO-8601\"],nan_format:[e(t),null]})));class T extends x{constructor(t){super(t)}doFormat(t,e,r,n,a){const{template:o}=this;if(null==r)return\"\";return f._.template(o)(Object.assign(Object.assign({},a),{value:r}))}}r.HTMLTemplateFormatter=T,m=T,T.__name__=\"HTMLTemplateFormatter\",m.define((({String:t})=>({template:[t,\"<%= value %>\"]})))},\n", - " 490: function _(e,n,t,f,i){var o=e(491),d=o.template;function r(e,n,t){return d(e,n,t)}r._=o,n.exports=r,\"function\"==typeof define&&define.amd?define((function(){return r})):\"undefined\"==typeof window&&\"undefined\"==typeof navigator||(window.UnderscoreTemplate=r)},\n", - " 491: function _(r,e,n,t,a){\n", - " // (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n", - " // Underscore may be freely distributed under the MIT license.\n", - " var u={},c=Array.prototype,o=Object.prototype,l=c.slice,i=o.toString,f=o.hasOwnProperty,s=c.forEach,p=Object.keys,_=Array.isArray,h=function(){},v=h.each=h.forEach=function(r,e,n){if(null!=r)if(s&&r.forEach===s)r.forEach(e,n);else if(r.length===+r.length){for(var t=0,a=r.length;t\":\">\",'\"':\""\",\"'\":\"'\"}},y={escape:new RegExp(\"[\"+h.keys(g.escape).join(\"\")+\"]\",\"g\")};h.each([\"escape\"],(function(r){h[r]=function(e){return null==e?\"\":(\"\"+e).replace(y[r],(function(e){return g[r][e]}))}})),h.templateSettings={evaluate:/<%([\\s\\S]+?)%>/g,interpolate:/<%=([\\s\\S]+?)%>/g,escape:/<%-([\\s\\S]+?)%>/g};var j=/(.)^/,b={\"'\":\"'\",\"\\\\\":\"\\\\\",\"\\r\":\"r\",\"\\n\":\"n\",\"\\t\":\"t\",\"\\u2028\":\"u2028\",\"\\u2029\":\"u2029\"},w=/\\\\|'|\\r|\\n|\\t|\\u2028|\\u2029/g;h.template=function(r,e,n){var t;n=h.defaults({},n,h.templateSettings);var a=new RegExp([(n.escape||j).source,(n.interpolate||j).source,(n.evaluate||j).source].join(\"|\")+\"|$\",\"g\"),u=0,c=\"__p+='\";r.replace(a,(function(e,n,t,a,o){return c+=r.slice(u,o).replace(w,(function(r){return\"\\\\\"+b[r]})),n&&(c+=\"'+\\n((__t=(\"+n+\"))==null?'':_.escape(__t))+\\n'\"),t&&(c+=\"'+\\n((__t=(\"+t+\"))==null?'':__t)+\\n'\"),a&&(c+=\"';\\n\"+a+\"\\n__p+='\"),u=o+e.length,e})),c+=\"';\\n\",n.variable||(c=\"with(obj||{}){\\n\"+c+\"}\\n\"),c=\"var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\\n\"+c+\"return __p;\\n\";try{t=new Function(n.variable||\"obj\",\"_\",c)}catch(r){throw r.source=c,r}if(e)return t(e,h);var o=function(r){return t.call(this,r,h)};return o.source=\"function(\"+(n.variable||\"obj\")+\"){\\n\"+c+\"}\",o},e.exports=h},\n", - " 492: function _(e,t,i,s,o){s();const n=e(1);var l;const r=e(493),d=e(497),a=e(498),h=e(499),u=e(34),c=e(8),_=e(9),m=e(13),g=e(19),p=e(508),f=e(487),b=e(509),w=e(510),x=(0,n.__importStar)(e(488)),C=x,v=(0,n.__importDefault)(e(511));i.AutosizeModes={fit_columns:\"FCV\",fit_viewport:\"FVC\",force_fit:\"LFF\",none:\"NOA\"};let z=!1;class A{constructor(e,t){this.init(e,t)}init(e,t){if(f.DTINDEX_NAME in e.data)throw new Error(`special name ${f.DTINDEX_NAME} cannot be used as a data table column`);this.source=e,this.view=t,this.index=[...this.view.indices]}getLength(){return this.index.length}getItem(e){const t={};for(const i of(0,m.keys)(this.source.data))t[i]=this.source.data[i][this.index[e]];return t[f.DTINDEX_NAME]=this.index[e],t}getField(e,t){return t==f.DTINDEX_NAME?this.index[e]:this.source.data[t][this.index[e]]}setField(e,t,i){const s=this.index[e];this.source.patch({[t]:[[s,i]]})}getRecords(){return(0,_.range)(0,this.getLength()).map((e=>this.getItem(e)))}getItems(){return this.getRecords()}slice(e,t,i){return e=null!=e?e:0,t=null!=t?t:this.getLength(),i=null!=i?i:1,(0,_.range)(e,t,i).map((e=>this.getItem(e)))}sort(e){let t=e.map((e=>[e.sortCol.field,e.sortAsc?1:-1]));0==t.length&&(t=[[f.DTINDEX_NAME,1]]);const i=this.getRecords(),s=this.index.slice();this.index.sort(((e,o)=>{for(const[n,l]of t){const t=i[s.indexOf(e)][n],r=i[s.indexOf(o)][n];if(t!==r)return(0,c.isNumber)(t)&&(0,c.isNumber)(r)?l*(t-r||+isNaN(t)-+isNaN(r)):`${t}`>`${r}`?l:-l}return 0}))}}i.TableDataProvider=A,A.__name__=\"TableDataProvider\";class M extends p.WidgetView{constructor(){super(...arguments),this._in_selection_update=!1,this._width=null}connect_signals(){super.connect_signals(),this.connect(this.model.change,(()=>this.render())),this.connect(this.model.source.streaming,(()=>this.updateGrid())),this.connect(this.model.source.patching,(()=>this.updateGrid())),this.connect(this.model.source.change,(()=>this.updateGrid())),this.connect(this.model.source.properties.data.change,(()=>this.updateGrid())),this.connect(this.model.source.selected.change,(()=>this.updateSelection())),this.connect(this.model.source.selected.properties.indices.change,(()=>this.updateSelection()));for(const e of this.model.columns)this.connect(e.change,(()=>{this.invalidate_layout(),this.render()}))}remove(){var e;null===(e=this.grid)||void 0===e||e.destroy(),super.remove()}styles(){return[...super.styles(),v.default,x.default]}update_position(){super.update_position(),this.grid.resizeCanvas()}after_layout(){super.after_layout(),this.updateLayout(!0,!1)}box_sizing(){const e=super.box_sizing();return\"fit_viewport\"===this.model.autosize_mode&&null!=this._width&&(e.width=this._width),e}updateLayout(e,t){const s=this.autosize;s===i.AutosizeModes.fit_columns||s===i.AutosizeModes.force_fit?(e||this.grid.resizeCanvas(),this.grid.autosizeColumns()):e&&t&&s===i.AutosizeModes.fit_viewport&&this.invalidate_layout()}updateGrid(){if(this.model.view.compute_indices(),this.data.init(this.model.source,this.model.view),this.model.sortable){const e=this.grid.getColumns(),t=this.grid.getSortColumns().map((t=>({sortCol:{field:e[this.grid.getColumnIndex(t.columnId)].field},sortAsc:t.sortAsc})));this.data.sort(t)}this.grid.invalidate(),this.updateLayout(!0,!0)}updateSelection(){if(this._in_selection_update)return;const{selected:e}=this.model.source,t=e.indices.map((e=>this.data.index.indexOf(e))).sort();this._in_selection_update=!0,this.grid.setSelectedRows(t),this._in_selection_update=!1;const i=this.grid.getViewport(),s=this.model.get_scroll_index(i,t);null!=s&&this.grid.scrollRowToTop(s)}newIndexColumn(){return{id:(0,u.uniqueId)(),name:this.model.index_header,field:f.DTINDEX_NAME,width:this.model.index_width,behavior:\"select\",cannotTriggerInsert:!0,resizable:!1,selectable:!1,sortable:!0,cssClass:C.cell_index,headerCssClass:C.header_index}}css_classes(){return super.css_classes().concat(C.data_table)}get autosize(){let e;return e=!0===this.model.fit_columns?i.AutosizeModes.force_fit:!1===this.model.fit_columns?i.AutosizeModes.none:i.AutosizeModes[this.model.autosize_mode],e}render(){var e;const t=this.model.columns.filter((e=>e.visible)).map((e=>Object.assign(Object.assign({},e.toColumn()),{parent:this})));let s=null;if(\"checkbox\"==this.model.selectable&&(s=new d.CheckboxSelectColumn({cssClass:C.cell_select}),t.unshift(s.getColumnDefinition())),null!=this.model.index_position){const e=this.model.index_position,i=this.newIndexColumn();-1==e?t.push(i):e<-1?t.splice(e+1,0,i):t.splice(e,0,i)}let{reorderable:o}=this.model;!o||\"undefined\"!=typeof $&&null!=$.fn&&null!=$.fn.sortable||(z||(g.logger.warn(\"jquery-ui is required to enable DataTable.reorderable\"),z=!0),o=!1);let n=-1,l=!1;const{frozen_rows:u,frozen_columns:_}=this.model,m=null==_?-1:_-1;null!=u&&(l=u<0,n=Math.abs(u));const p={enableCellNavigation:!1!==this.model.selectable,enableColumnReorder:o,autosizeColsMode:this.autosize,multiColumnSort:this.model.sortable,editable:this.model.editable,autoEdit:this.model.auto_edit,autoHeight:!1,rowHeight:this.model.row_height,frozenColumn:m,frozenRow:n,frozenBottom:l},f=null!=this.grid;if(this.data=new A(this.model.source,this.model.view),this.grid=new h.Grid(this.el,this.data,t,p),this.autosize==i.AutosizeModes.fit_viewport){this.grid.autosizeColumns();let i=0;for(const s of t)i+=null!==(e=s.width)&&void 0!==e?e:0;this._width=Math.ceil(i)}if(this.grid.onSort.subscribe(((e,t)=>{if(!this.model.sortable)return;const i=t.sortCols;null!=i&&(this.data.sort(i),this.grid.invalidate(),this.updateSelection(),this.grid.render(),this.model.header_row||this._hide_header(),this.model.update_sort_columns(i))})),!1!==this.model.selectable){this.grid.setSelectionModel(new r.RowSelectionModel({selectActiveRow:null==s})),null!=s&&this.grid.registerPlugin(s);const e={dataItemColumnValueExtractor(e,t){let i=e[t.field];return(0,c.isString)(i)&&(i=i.replace(/\\n/g,\"\\\\n\")),i},includeHeaderWhenCopying:!1};this.grid.registerPlugin(new a.CellExternalCopyManager(e)),this.grid.onSelectedRowsChanged.subscribe(((e,t)=>{this._in_selection_update||(this.model.source.selected.indices=t.rows.map((e=>this.data.index[e])))})),this.updateSelection(),this.model.header_row||this._hide_header()}f&&this.updateLayout(f,!1)}_hide_header(){for(const e of this.el.querySelectorAll(\".slick-header-columns\"))e.style.height=\"0px\";this.grid.resizeCanvas()}}i.DataTableView=M,M.__name__=\"DataTableView\";class D extends b.TableWidget{constructor(e){super(e),this._sort_columns=[]}get sort_columns(){return this._sort_columns}update_sort_columns(e){this._sort_columns=e.map((({sortCol:e,sortAsc:t})=>({field:e.field,sortAsc:t})))}get_scroll_index(e,t){return this.scroll_to_selection&&0!=t.length?(0,_.some)(t,(t=>e.top<=t&&t<=e.bottom))?null:Math.max(0,Math.min(...t)-1):null}}i.DataTable=D,l=D,D.__name__=\"DataTable\",l.prototype.default_view=M,l.define((({Array:e,Boolean:t,Int:i,Ref:s,String:o,Enum:n,Or:l,Nullable:r})=>({autosize_mode:[n(\"fit_columns\",\"fit_viewport\",\"none\",\"force_fit\"),\"force_fit\"],auto_edit:[t,!1],columns:[e(s(w.TableColumn)),[]],fit_columns:[r(t),null],frozen_columns:[r(i),null],frozen_rows:[r(i),null],sortable:[t,!0],reorderable:[t,!0],editable:[t,!1],selectable:[l(t,n(\"checkbox\")),!0],index_position:[r(i),0],index_header:[o,\"#\"],index_width:[i,40],scroll_to_selection:[t,!0],header_row:[t,!0],row_height:[i,25]}))),l.override({width:600,height:400})},\n", - " 493: function _(e,t,n,o,r){var l=e(494),i=e(496);t.exports={RowSelectionModel:function(e){var t,n,o,r=[],c=this,u=new i.EventHandler,s={selectActiveRow:!0};function a(e){return function(){n||(n=!0,e.apply(this,arguments),n=!1)}}function f(e){for(var t=[],n=0;n=0&&r0&&t-1 in e)}w.fn=w.prototype={jquery:b,constructor:w,length:0,toArray:function(){return i.call(this)},get:function(e){return null==e?i.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=w.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return w.each(this,e)},map:function(e){return this.pushStack(w.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(i.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(w.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(w.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|[\\\\x20\\\\t\\\\r\\\\n\\\\f])[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\"),U=new RegExp(M+\"|>\"),X=new RegExp(F),V=new RegExp(\"^\"+I+\"$\"),G={ID:new RegExp(\"^#(\"+I+\")\"),CLASS:new RegExp(\"^\\\\.(\"+I+\")\"),TAG:new RegExp(\"^(\"+I+\"|[*])\"),ATTR:new RegExp(\"^\"+W),PSEUDO:new RegExp(\"^\"+F),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\([\\\\x20\\\\t\\\\r\\\\n\\\\f]*(even|odd|(([+-]|)(\\\\d*)n|)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:([+-]|)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(\\\\d+)|))[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+R+\")$\",\"i\"),needsContext:new RegExp(\"^[\\\\x20\\\\t\\\\r\\\\n\\\\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\([\\\\x20\\\\t\\\\r\\\\n\\\\f]*((?:-\\\\d)?\\\\d*)[\\\\x20\\\\t\\\\r\\\\n\\\\f]*\\\\)|)(?=[^-]|$)\",\"i\")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\\d$/i,K=/^[^{]+\\{\\s*\\[native \\w/,Z=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ee=/[+~]/,te=new RegExp(\"\\\\\\\\[\\\\da-fA-F]{1,6}[\\\\x20\\\\t\\\\r\\\\n\\\\f]?|\\\\\\\\([^\\\\r\\\\n\\\\f])\",\"g\"),ne=function(e,t){var n=\"0x\"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,ie=function(e,t){return t?\"\\0\"===e?\"\\ufffd\":e.slice(0,-1)+\"\\\\\"+e.charCodeAt(e.length-1).toString(16)+\" \":\"\\\\\"+e},oe=function(){p()},ae=be((function(e){return!0===e.disabled&&\"fieldset\"===e.nodeName.toLowerCase()}),{dir:\"parentNode\",next:\"legend\"});try{H.apply(D=O.call(w.childNodes),w.childNodes),D[w.childNodes.length].nodeType}catch(e){H={apply:D.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,l,c,f,h,y,m=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],\"string\"!=typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(p(t),t=t||d,g)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(l=t.getElementById(o)))return r;if(l.id===o)return r.push(l),r}else if(m&&(l=m.getElementById(o))&&x(t,l)&&l.id===o)return r.push(l),r}else{if(f[2])return H.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return H.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!A[e+\" \"]&&(!v||!v.test(e))&&(1!==w||\"object\"!==t.nodeName.toLowerCase())){if(y=e,m=t,1===w&&(U.test(e)||z.test(e))){for((m=ee.test(e)&&ye(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute(\"id\"))?c=c.replace(re,ie):t.setAttribute(\"id\",c=b)),s=(h=a(e)).length;s--;)h[s]=(c?\"#\"+c:\":scope\")+\" \"+xe(h[s]);y=h.join(\",\")}try{return H.apply(r,m.querySelectorAll(y)),r}catch(t){A(e,!0)}finally{c===b&&t.removeAttribute(\"id\")}}}return u(e.replace($,\"$1\"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+\" \")>r.cacheLength&&delete t[e.shift()],t[n+\" \"]=i}}function le(e){return e[b]=!0,e}function ce(e){var t=d.createElement(\"fieldset\");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split(\"|\"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function de(e){return function(t){return\"input\"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return(\"input\"===n||\"button\"===n)&&t.type===e}}function ge(e){return function(t){return\"form\"in t?t.parentNode&&!1===t.disabled?\"label\"in t?\"label\"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:\"label\"in t&&t.disabled===e}}function ve(e){return le((function(t){return t=+t,le((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ye(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||\"HTML\")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=d&&9===a.nodeType&&a.documentElement?(h=(d=a).documentElement,g=!o(d),w!=d&&(i=d.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener(\"unload\",oe,!1):i.attachEvent&&i.attachEvent(\"onunload\",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(d.createElement(\"div\")),void 0!==e.querySelectorAll&&!e.querySelectorAll(\":scope fieldset div\").length})),n.attributes=ce((function(e){return e.className=\"i\",!e.getAttribute(\"className\")})),n.getElementsByTagName=ce((function(e){return e.appendChild(d.createComment(\"\")),!e.getElementsByTagName(\"*\").length})),n.getElementsByClassName=K.test(d.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=b,!d.getElementsByName||!d.getElementsByName(b).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute(\"id\")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode(\"id\");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&g){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode(\"id\"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if(\"*\"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&g)return t.getElementsByClassName(e)},y=[],v=[],(n.qsa=K.test(d.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML=\"\",e.querySelectorAll(\"[msallowcapture^='']\").length&&v.push(\"[*^$]=[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:''|\\\"\\\")\"),e.querySelectorAll(\"[selected]\").length||v.push(\"\\\\[[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:value|\"+R+\")\"),e.querySelectorAll(\"[id~=\"+b+\"-]\").length||v.push(\"~=\"),(t=d.createElement(\"input\")).setAttribute(\"name\",\"\"),e.appendChild(t),e.querySelectorAll(\"[name='']\").length||v.push(\"\\\\[[\\\\x20\\\\t\\\\r\\\\n\\\\f]*name[\\\\x20\\\\t\\\\r\\\\n\\\\f]*=[\\\\x20\\\\t\\\\r\\\\n\\\\f]*(?:''|\\\"\\\")\"),e.querySelectorAll(\":checked\").length||v.push(\":checked\"),e.querySelectorAll(\"a#\"+b+\"+*\").length||v.push(\".#.+[+~]\"),e.querySelectorAll(\"\\\\\\f\"),v.push(\"[\\\\r\\\\n\\\\f]\")})),ce((function(e){e.innerHTML=\"\";var t=d.createElement(\"input\");t.setAttribute(\"type\",\"hidden\"),e.appendChild(t).setAttribute(\"name\",\"D\"),e.querySelectorAll(\"[name=d]\").length&&v.push(\"name[\\\\x20\\\\t\\\\r\\\\n\\\\f]*[*^$|!~]?=\"),2!==e.querySelectorAll(\":enabled\").length&&v.push(\":enabled\",\":disabled\"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(\":disabled\").length&&v.push(\":enabled\",\":disabled\"),e.querySelectorAll(\"*,:x\"),v.push(\",.*:\")}))),(n.matchesSelector=K.test(m=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=m.call(e,\"*\"),m.call(e,\"[s!='']:x\"),y.push(\"!=\",F)})),v=v.length&&new RegExp(v.join(\"|\")),y=y.length&&new RegExp(y.join(\"|\")),t=K.test(h.compareDocumentPosition),x=t||K.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},N=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==d||e.ownerDocument==w&&x(w,e)?-1:t==d||t.ownerDocument==w&&x(w,t)?1:c?P(c,e)-P(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==d?-1:t==d?1:i?-1:o?1:c?P(c,e)-P(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]==w?-1:s[r]==w?1:0},d):d},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(p(e),n.matchesSelector&&g&&!A[t+\" \"]&&(!y||!y.test(t))&&(!v||!v.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){A(t,!0)}return se(t,d,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!=d&&p(e),x(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=d&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&j.call(r.attrHandle,t.toLowerCase())?i(e,t,!g):void 0;return void 0!==o?o:n.attributes||!g?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+\"\").replace(re,ie)},se.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(N),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n=\"\",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if(\"string\"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},r=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||\"\").replace(te,ne),\"~=\"===e[2]&&(e[3]=\" \"+e[3]+\" \"),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),\"nth\"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(\"even\"===e[3]||\"odd\"===e[3])),e[5]=+(e[7]+e[8]||\"odd\"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||\"\":n&&X.test(n)&&(t=a(n,!0))&&(t=n.indexOf(\")\",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return\"*\"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+\" \"];return t||(t=new RegExp(\"(^|[\\\\x20\\\\t\\\\r\\\\n\\\\f])\"+e+\"(\"+M+\"|$)\"))&&E(e,(function(e){return t.test(\"string\"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute(\"class\")||\"\")}))},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?\"!=\"===t:!t||(i+=\"\",\"=\"===t?i===n:\"!=\"===t?i!==n:\"^=\"===t?n&&0===i.indexOf(n):\"*=\"===t?n&&i.indexOf(n)>-1:\"$=\"===t?n&&i.slice(-n.length)===n:\"~=\"===t?(\" \"+i.replace(B,\" \")+\" \").indexOf(n)>-1:\"|=\"===t&&(i===n||i.slice(0,n.length+1)===n+\"-\"))}},CHILD:function(e,t,n,r,i){var o=\"nth\"!==e.slice(0,3),a=\"last\"!==e.slice(-4),s=\"of-type\"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?\"nextSibling\":\"previousSibling\",v=t.parentNode,y=s&&t.nodeName.toLowerCase(),m=!u&&!s,x=!1;if(v){if(o){for(;g;){for(p=t;p=p[g];)if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g=\"only\"===e&&!h&&\"nextSibling\"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&m){for(x=(d=(l=(c=(f=(p=v)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1])&&l[2],p=d&&v.childNodes[d];p=++d&&p&&p[g]||(x=d=0)||h.pop();)if(1===p.nodeType&&++x&&p===t){c[e]=[T,d,x];break}}else if(m&&(x=d=(l=(c=(f=(p=t)[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===T&&l[1]),!1===x)for(;(p=++d&&p&&p[g]||(x=d=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==y:1!==p.nodeType)||!++x||(m&&((c=(f=p[b]||(p[b]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[T,x]),p!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error(\"unsupported pseudo: \"+e);return i[b]?i(t):i.length>1?(n=[e,e,\"\",t],r.setFilters.hasOwnProperty(e.toLowerCase())?le((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=P(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:le((function(e){var t=[],n=[],r=s(e.replace($,\"$1\"));return r[b]?le((function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:le((function(e){return function(t){return se(e,t).length>0}})),contains:le((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:le((function(e){return V.test(e||\"\")||se.error(\"unsupported lang: \"+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=g?t.lang:t.getAttribute(\"xml:lang\")||t.getAttribute(\"lang\"))return(n=n.toLowerCase())===e||0===n.indexOf(e+\"-\")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===d.activeElement&&(!d.hasFocus||d.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&!!e.checked||\"option\"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return\"input\"===t&&\"button\"===e.type||\"button\"===t},text:function(e){var t;return\"input\"===e.nodeName.toLowerCase()&&\"text\"===e.type&&(null==(t=e.getAttribute(\"type\"))||\"text\"===t.toLowerCase())},first:ve((function(){return[0]})),last:ve((function(e,t){return[t-1]})),eq:ve((function(e,t,n){return[n<0?n+t:n]})),even:ve((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:ve((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s-1&&(o[l]=!(a[l]=f))}}else y=Te(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[\" \"],u=a?1:0,c=be((function(e){return e===t}),s,!0),f=be((function(e){return P(t,e)>-1}),s,!0),p=[function(e,n,r){var i=!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&we(p),u>1&&xe(e.slice(0,u-1).concat({value:\" \"===e[u-2].type?\"*\":\"\"})).replace($,\"$1\"),n,u0,i=e.length>0,o=function(o,a,s,u,c){var f,h,v,y=0,m=\"0\",x=o&&[],b=[],w=l,C=o||i&&r.find.TAG(\"*\",c),E=T+=null==w?1:Math.random()||.1,S=C.length;for(c&&(l=a==d||a||c);m!==S&&null!=(f=C[m]);m++){if(i&&f){for(h=0,a||f.ownerDocument==d||(p(f),s=!g);v=e[h++];)if(v(f,a||d,s)){u.push(f);break}c&&(T=E)}n&&((f=!v&&f)&&y--,o&&x.push(f))}if(y+=m,n&&m!==y){for(h=0;v=t[h++];)v(x,b,a,s);if(o){if(y>0)for(;m--;)x[m]||b[m]||(b[m]=q.call(u));b=Te(b)}H.apply(u,b),c&&!o&&b.length>0&&y+t.length>1&&se.uniqueSort(u)}return c&&(T=E,l=w),x};return n?le(o):o}(o,i)),s.selector=e}return s},u=se.select=function(e,t,n,i){var o,u,l,c,f,p=\"function\"==typeof e&&e,d=!i&&a(e=p.selector||e);if(n=n||[],1===d.length){if((u=d[0]=d[0].slice(0)).length>2&&\"ID\"===(l=u[0]).type&&9===t.nodeType&&g&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=G.needsContext.test(e)?0:u.length;o--&&(l=u[o],!r.relative[c=l.type]);)if((f=r.find[c])&&(i=f(l.matches[0].replace(te,ne),ee.test(u[0].type)&&ye(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&xe(u)))return H.apply(n,i),n;break}}return(p||s(e,d))(i,t,!g,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},n.sortStable=b.split(\"\").sort(N).join(\"\")===b,n.detectDuplicates=!!f,p(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(d.createElement(\"fieldset\"))})),ce((function(e){return e.innerHTML=\"\",\"#\"===e.firstChild.getAttribute(\"href\")}))||fe(\"type|href|height|width\",(function(e,t,n){if(!n)return e.getAttribute(t,\"type\"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML=\"\",e.firstChild.setAttribute(\"value\",\"\"),\"\"===e.firstChild.getAttribute(\"value\")}))||fe(\"value\",(function(e,t,n){if(!n&&\"input\"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute(\"disabled\")}))||fe(R,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),se}(e);w.find=C,w.expr=C.selectors,w.expr[\":\"]=w.expr.pseudos,w.uniqueSort=w.unique=C.uniqueSort,w.text=C.getText,w.isXMLDoc=C.isXML,w.contains=C.contains,w.escapeSelector=C.escape;var E=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&w(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=w.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i;function j(e,t,n){return h(t)?w.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?w.grep(e,(function(e){return e===t!==n})):\"string\"!=typeof t?w.grep(e,(function(e){return s.call(t,e)>-1!==n})):w.filter(t,e,n)}w.filter=function(e,t,n){var r=t[0];return n&&(e=\":not(\"+e+\")\"),1===t.length&&1===r.nodeType?w.find.matchesSelector(r,e)?[r]:[]:w.find.matches(e,w.grep(t,(function(e){return 1===e.nodeType})))},w.fn.extend({find:function(e){var t,n,r=this.length,i=this;if(\"string\"!=typeof e)return this.pushStack(w(e).filter((function(){for(t=0;t1?w.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,\"string\"==typeof e&&k.test(e)?w(e):e||[],!1).length}});var D,q=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/;(w.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,\"string\"==typeof e){if(!(r=\"<\"===e[0]&&\">\"===e[e.length-1]&&e.length>=3?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof w?t[0]:t,w.merge(this,w.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:v,!0)),N.test(r[1])&&w.isPlainObject(t))for(r in t)h(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=v.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):h(e)?void 0!==n.ready?n.ready(e):e(w):w.makeArray(e,this)}).prototype=w.fn,D=w(v);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}w.fn.extend({has:function(e){var t=w(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&w.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?w.uniqueSort(o):o)},index:function(e){return e?\"string\"==typeof e?s.call(w(e),this[0]):s.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(w.uniqueSort(w.merge(this.get(),w(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),w.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return E(e,\"parentNode\")},parentsUntil:function(e,t,n){return E(e,\"parentNode\",n)},next:function(e){return O(e,\"nextSibling\")},prev:function(e){return O(e,\"previousSibling\")},nextAll:function(e){return E(e,\"nextSibling\")},prevAll:function(e){return E(e,\"previousSibling\")},nextUntil:function(e,t,n){return E(e,\"nextSibling\",n)},prevUntil:function(e,t,n){return E(e,\"previousSibling\",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,\"template\")&&(e=e.content||e),w.merge([],e.childNodes))}},(function(e,t){w.fn[e]=function(n,r){var i=w.map(this,t,n);return\"Until\"!==e.slice(-5)&&(r=n),r&&\"string\"==typeof r&&(i=w.filter(r,i)),this.length>1&&(H[e]||w.uniqueSort(i),L.test(e)&&i.reverse()),this.pushStack(i)}}));var P=/[^\\x20\\t\\r\\n\\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&h(i=e.promise)?i.call(e).done(t).fail(n):e&&h(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}w.Callbacks=function(e){e=\"string\"==typeof e?function(e){var t={};return w.each(e.match(P)||[],(function(e,n){t[n]=!0})),t}(e):w.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--})),this},has:function(e){return e?w.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n=\"\",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=\"\"),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},w.extend({Deferred:function(t){var n=[[\"notify\",\"progress\",w.Callbacks(\"memory\"),w.Callbacks(\"memory\"),2],[\"resolve\",\"done\",w.Callbacks(\"once memory\"),w.Callbacks(\"once memory\"),0,\"resolved\"],[\"reject\",\"fail\",w.Callbacks(\"once memory\"),w.Callbacks(\"once memory\"),1,\"rejected\"]],r=\"pending\",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return w.Deferred((function(t){w.each(n,(function(n,r){var i=h(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&h(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+\"With\"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(t,r,i){var o=0;function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(){var e,l;if(!(t=o&&(r!==M&&(s=void 0,u=[e]),n.rejectWith(s,u))}};t?c():(w.Deferred.getStackHook&&(c.stackTrace=w.Deferred.getStackHook()),e.setTimeout(c))}}return w.Deferred((function(e){n[0][3].add(a(0,e,h(i)?i:R,e.notifyWith)),n[1][3].add(a(0,e,h(t)?t:R)),n[2][3].add(a(0,e,h(r)?r:M))})).promise()},promise:function(e){return null!=e?w.extend(e,i):i}},o={};return w.each(n,(function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add((function(){r=s}),n[3-e][2].disable,n[3-e][3].disable,n[0][2].lock,n[0][3].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+\"With\"](this===o?void 0:this,arguments),this},o[t[0]+\"With\"]=a.fireWith})),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),o=i.call(arguments),a=w.Deferred(),s=function(e){return function(n){r[e]=this,o[e]=arguments.length>1?i.call(arguments):n,--t||a.resolveWith(r,o)}};if(t<=1&&(I(e,a.done(s(n)).resolve,a.reject,!t),\"pending\"===a.state()||h(o[n]&&o[n].then)))return a.then();for(;n--;)I(o[n],s(n),a.reject);return a.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;w.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&W.test(t.name)&&e.console.warn(\"jQuery.Deferred exception: \"+t.message,t.stack,n)},w.readyException=function(t){e.setTimeout((function(){throw t}))};var F=w.Deferred();function B(){v.removeEventListener(\"DOMContentLoaded\",B),e.removeEventListener(\"load\",B),w.ready()}w.fn.ready=function(e){return F.then(e).catch((function(e){w.readyException(e)})),this},w.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--w.readyWait:w.isReady)||(w.isReady=!0,!0!==e&&--w.readyWait>0||F.resolveWith(v,[w]))}}),w.ready.then=F.then,\"complete\"===v.readyState||\"loading\"!==v.readyState&&!v.documentElement.doScroll?e.setTimeout(w.ready):(v.addEventListener(\"DOMContentLoaded\",B),e.addEventListener(\"load\",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if(\"object\"===x(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,h(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(w(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each((function(){Q.remove(this,e)}))}}),w.extend({queue:function(e,t,n){var r;if(e)return t=(t||\"fx\")+\"queue\",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,w.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||\"fx\";var n=w.queue(e,t),r=n.length,i=n.shift(),o=w._queueHooks(e,t);\"inprogress\"===i&&(i=n.shift(),r--),i&&(\"fx\"===t&&n.unshift(\"inprogress\"),delete o.stop,i.call(e,(function(){w.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+\"queueHooks\";return Y.get(e,n)||Y.access(e,n,{empty:w.Callbacks(\"once memory\").add((function(){Y.remove(e,[t+\"queue\",n])}))})}}),w.fn.extend({queue:function(e,t){var n=2;return\"string\"!=typeof e&&(t=e,e=\"fx\",n--),arguments.length\\x20\\t\\r\\n\\f]*)/i,ge=/^$|^module$|\\/(?:java|ecma)script/i;fe=v.createDocumentFragment().appendChild(v.createElement(\"div\")),(pe=v.createElement(\"input\")).setAttribute(\"type\",\"radio\"),pe.setAttribute(\"checked\",\"checked\"),pe.setAttribute(\"name\",\"t\"),fe.appendChild(pe),d.checkClone=fe.cloneNode(!0).cloneNode(!0).lastChild.checked,fe.innerHTML=\"\",d.noCloneChecked=!!fe.cloneNode(!0).lastChild.defaultValue,fe.innerHTML=\"\",d.option=!!fe.lastChild;var ve={thead:[1,\"\",\"
\"],col:[2,\"\",\"
\"],tr:[2,\"\",\"
\"],td:[3,\"\",\"
\"],_default:[0,\"\",\"\"]};function ye(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||\"*\"):void 0!==e.querySelectorAll?e.querySelectorAll(t||\"*\"):[],void 0===t||t&&A(e,t)?w.merge([e],n):n}function me(e,t){for(var n=0,r=e.length;n\",\"\"]);var xe=/<|&#?\\w+;/;function be(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d-1)i&&i.push(o);else if(l=ie(o),a=ye(f.appendChild(o),\"script\"),l&&me(a),n)for(c=0;o=a[c++];)ge.test(o.type||\"\")&&n.push(o);return f}var we=/^([^.]*)(?:\\.(.+)|)/;function Te(){return!0}function Ce(){return!1}function Ee(e,t){return e===function(){try{return v.activeElement}catch(e){}}()==(\"focus\"===t)}function Se(e,t,n,r,i,o){var a,s;if(\"object\"==typeof t){for(s in\"string\"!=typeof n&&(r=r||n,n=void 0),t)Se(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&(\"string\"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Ce;else if(!i)return e;return 1===o&&(a=i,i=function(e){return w().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=w.guid++)),e.each((function(){w.event.add(this,t,i,r,n)}))}function ke(e,t,n){n?(Y.set(e,t,!1),w.event.add(e,t,{namespace:!1,handler:function(e){var r,o,a=Y.get(this,t);if(1&e.isTrigger&&this[t]){if(a.length)(w.event.special[t]||{}).delegateType&&e.stopPropagation();else if(a=i.call(arguments),Y.set(this,t,a),r=n(this,t),this[t](),a!==(o=Y.get(this,t))||r?Y.set(this,t,!1):o={},a!==o)return e.stopImmediatePropagation(),e.preventDefault(),o&&o.value}else a.length&&(Y.set(this,t,{value:w.event.trigger(w.extend(a[0],w.Event.prototype),a.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,t)&&w.event.add(e,t,Te)}w.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(e);if(V(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&w.find.matchesSelector(re,i),n.guid||(n.guid=w.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(t){return void 0!==w&&w.event.triggered!==t.type?w.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||\"\").match(P)||[\"\"]).length;l--;)d=g=(s=we.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d&&(f=w.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=w.event.special[d]||{},c=w.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&w.expr.match.needsContext.test(i),namespace:h.join(\".\")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(d,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),w.event.global[d]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){for(l=(t=(t||\"\").match(P)||[\"\"]).length;l--;)if(d=g=(s=we.exec(t[l])||[])[1],h=(s[2]||\"\").split(\".\").sort(),d){for(f=w.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp(\"(^|\\\\.)\"+h.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),a=o=p.length;o--;)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&(\"**\"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||w.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)w.event.remove(e,d+t[l],n,r,!0);w.isEmptyObject(u)&&Y.remove(e,\"handle events\")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=w.event.fix(e),l=(Y.get(this,\"events\")||Object.create(null))[u.type]||[],c=w.event.special[u.type]||{};for(s[0]=u,t=1;t=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&(\"click\"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n-1:w.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u\\s*$/g;function De(e,t){return A(e,\"table\")&&A(11!==t.nodeType?t:t.firstChild,\"tr\")&&w(e).children(\"tbody\")[0]||e}function qe(e){return e.type=(null!==e.getAttribute(\"type\"))+\"/\"+e.type,e}function Le(e){return\"true/\"===(e.type||\"\").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute(\"type\"),e}function He(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,\"handle events\"),s)for(n=0,r=s[i].length;n1&&\"string\"==typeof v&&!d.checkClone&&Ne.test(v))return e.each((function(i){var o=e.eq(i);y&&(t[0]=v.call(this,i,o.html())),Pe(o,t,n,r)}));if(p&&(a=(i=be(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=a),a||r)){for(u=(s=w.map(ye(i,\"script\"),qe)).length;f0&&me(a,!u&&ye(e,\"script\")),s},cleanData:function(e){for(var t,n,r,i=w.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?w.event.remove(n,r):w.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),w.fn.extend({detach:function(e){return Re(this,e,!0)},remove:function(e){return Re(this,e)},text:function(e){return $(this,(function(e){return void 0===e?w.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Pe(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||De(this,e).appendChild(e)}))},prepend:function(){return Pe(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=De(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Pe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Pe(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(w.cleanData(ye(e,!1)),e.textContent=\"\");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return w.clone(this,e,t)}))},html:function(e){return $(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if(\"string\"==typeof e&&!Ae.test(e)&&!ve[(he.exec(e)||[\"\",\"\"])[1].toLowerCase()]){e=w.htmlPrefilter(e);try{for(;n=0&&(u+=Math.max(0,Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Ze(e,t,n){var r=Ie(e),i=(!d.boxSizingReliable()||n)&&\"border-box\"===w.css(e,\"boxSizing\",!1,r),o=i,a=Be(e,t,r),s=\"offset\"+t[0].toUpperCase()+t.slice(1);if(Me.test(a)){if(!n)return a;a=\"auto\"}return(!d.boxSizingReliable()&&i||!d.reliableTrDimensions()&&A(e,\"tr\")||\"auto\"===a||!parseFloat(a)&&\"inline\"===w.css(e,\"display\",!1,r))&&e.getClientRects().length&&(i=\"border-box\"===w.css(e,\"boxSizing\",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ke(e,t,n||(i?\"border\":\"content\"),o,r,a)+\"px\"}function et(e,t,n,r,i){return new et.prototype.init(e,t,n,r,i)}w.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Be(e,\"opacity\");return\"\"===n?\"1\":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Ge.test(t),l=e.style;if(u||(t=Xe(s)),a=w.cssHooks[t]||w.cssHooks[s],void 0===n)return a&&\"get\"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];\"string\"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o=\"number\"),null!=n&&n==n&&(\"number\"!==o||u||(n+=i&&i[3]||(w.cssNumber[s]?\"\":\"px\")),d.clearCloneStyle||\"\"!==n||0!==t.indexOf(\"background\")||(l[t]=\"inherit\"),a&&\"set\"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Ge.test(t)||(t=Xe(s)),(a=w.cssHooks[t]||w.cssHooks[s])&&\"get\"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Be(e,t,r)),\"normal\"===i&&t in Qe&&(i=Qe[t]),\"\"===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),w.each([\"height\",\"width\"],(function(e,t){w.cssHooks[t]={get:function(e,n,r){if(n)return!Ve.test(w.css(e,\"display\"))||e.getClientRects().length&&e.getBoundingClientRect().width?Ze(e,t,r):We(e,Ye,(function(){return Ze(e,t,r)}))},set:function(e,n,r){var i,o=Ie(e),a=!d.scrollboxSize()&&\"absolute\"===o.position,s=(a||r)&&\"border-box\"===w.css(e,\"boxSizing\",!1,o),u=r?Ke(e,t,r,s,o):0;return s&&a&&(u-=Math.ceil(e[\"offset\"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-Ke(e,t,\"border\",!1,o)-.5)),u&&(i=te.exec(n))&&\"px\"!==(i[3]||\"px\")&&(e.style[t]=n,n=w.css(e,t)),Je(0,n,u)}}})),w.cssHooks.marginLeft=$e(d.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Be(e,\"marginLeft\"))||e.getBoundingClientRect().left-We(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+\"px\"})),w.each({margin:\"\",padding:\"\",border:\"Width\"},(function(e,t){w.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o=\"string\"==typeof n?n.split(\" \"):[n];r<4;r++)i[e+ne[r]+t]=o[r]||o[r-2]||o[0];return i}},\"margin\"!==e&&(w.cssHooks[e+t].set=Je)})),w.fn.extend({css:function(e,t){return $(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Ie(e),i=t.length;a1)}}),w.Tween=et,et.prototype={constructor:et,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||w.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(w.cssNumber[n]?\"\":\"px\")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,n=et.propHooks[this.prop];return this.options.duration?this.pos=t=w.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):et.propHooks._default.set(this),this}},et.prototype.init.prototype=et.prototype,et.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=w.css(e.elem,e.prop,\"\"))&&\"auto\"!==t?t:0},set:function(e){w.fx.step[e.prop]?w.fx.step[e.prop](e):1!==e.elem.nodeType||!w.cssHooks[e.prop]&&null==e.elem.style[Xe(e.prop)]?e.elem[e.prop]=e.now:w.style(e.elem,e.prop,e.now+e.unit)}}},et.propHooks.scrollTop=et.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},w.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:\"swing\"},w.fx=et.prototype.init,w.fx.step={};var tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){nt&&(!1===v.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(ot):e.setTimeout(ot,w.fx.interval),w.fx.tick())}function at(){return e.setTimeout((function(){tt=void 0})),tt=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i[\"margin\"+(n=ne[r])]=i[\"padding\"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners[\"*\"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each((function(){w.removeAttr(this,e)}))}}),w.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?w.prop(e,t,n):(1===o&&w.isXMLDoc(e)||(i=w.attrHooks[t.toLowerCase()]||(w.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void w.removeAttr(e,t):i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+\"\"),n):i&&\"get\"in i&&null!==(r=i.get(e,t))?r:null==(r=w.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!d.radioValue&&\"radio\"===t&&A(e,\"input\")){var n=e.value;return e.setAttribute(\"type\",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?w.removeAttr(e,n):e.setAttribute(n,n),n}},w.each(w.expr.match.bool.source.match(/\\w+/g),(function(e,t){var n=ft[t]||w.find.attr;ft[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ft[a],ft[a]=i,i=null!=n(e,t,r)?a:null,ft[a]=o),i}}));var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(\" \")}function gt(e){return e.getAttribute&&e.getAttribute(\"class\")||\"\"}function vt(e){return Array.isArray(e)?e:\"string\"==typeof e&&e.match(P)||[]}w.fn.extend({prop:function(e,t){return $(this,w.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[w.propFix[e]||e]}))}}),w.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&w.isXMLDoc(e)||(t=w.propFix[t]||t,i=w.propHooks[t]),void 0!==n?i&&\"set\"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&\"get\"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=w.find.attr(e,\"tabindex\");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:\"htmlFor\",class:\"className\"}}),d.optSelected||(w.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),w.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],(function(){w.propFix[this.toLowerCase()]=this})),w.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){w(this).addClass(e.call(this,t,gt(this)))}));if((t=vt(e)).length)for(;n=this[u++];)if(i=gt(n),r=1===n.nodeType&&\" \"+ht(i)+\" \"){for(a=0;o=t[a++];)r.indexOf(\" \"+o+\" \")<0&&(r+=o+\" \");i!==(s=ht(r))&&n.setAttribute(\"class\",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(h(e))return this.each((function(t){w(this).removeClass(e.call(this,t,gt(this)))}));if(!arguments.length)return this.attr(\"class\",\"\");if((t=vt(e)).length)for(;n=this[u++];)if(i=gt(n),r=1===n.nodeType&&\" \"+ht(i)+\" \"){for(a=0;o=t[a++];)for(;r.indexOf(\" \"+o+\" \")>-1;)r=r.replace(\" \"+o+\" \",\" \");i!==(s=ht(r))&&n.setAttribute(\"class\",s)}return this},toggleClass:function(e,t){var n=typeof e,r=\"string\"===n||Array.isArray(e);return\"boolean\"==typeof t&&r?t?this.addClass(e):this.removeClass(e):h(e)?this.each((function(n){w(this).toggleClass(e.call(this,n,gt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=w(this),a=vt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&\"boolean\"!==n||((t=gt(this))&&Y.set(this,\"__className__\",t),this.setAttribute&&this.setAttribute(\"class\",t||!1===e?\"\":Y.get(this,\"__className__\")||\"\"))}))},hasClass:function(e){var t,n,r=0;for(t=\" \"+e+\" \";n=this[r++];)if(1===n.nodeType&&(\" \"+ht(gt(n))+\" \").indexOf(t)>-1)return!0;return!1}});var yt=/\\r/g;w.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=h(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,w(this).val()):e)?i=\"\":\"number\"==typeof i?i+=\"\":Array.isArray(i)&&(i=w.map(i,(function(e){return null==e?\"\":e+\"\"}))),(t=w.valHooks[this.type]||w.valHooks[this.nodeName.toLowerCase()])&&\"set\"in t&&void 0!==t.set(this,i,\"value\")||(this.value=i))}))):i?(t=w.valHooks[i.type]||w.valHooks[i.nodeName.toLowerCase()])&&\"get\"in t&&void 0!==(n=t.get(i,\"value\"))?n:\"string\"==typeof(n=i.value)?n.replace(yt,\"\"):null==n?\"\":n:void 0}}),w.extend({valHooks:{option:{get:function(e){var t=w.find.attr(e,\"value\");return null!=t?t:ht(w.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a=\"select-one\"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),w.each([\"radio\",\"checkbox\"],(function(){w.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=w.inArray(w(e).val(),t)>-1}},d.checkOn||(w.valHooks[this].get=function(e){return null===e.getAttribute(\"value\")?\"on\":e.value})})),d.focusin=\"onfocusin\"in e;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};w.extend(w.event,{trigger:function(t,n,r,i){var o,a,s,u,l,f,p,d,y=[r||v],m=c.call(t,\"type\")?t.type:t,x=c.call(t,\"namespace\")?t.namespace.split(\".\"):[];if(a=d=s=r=r||v,3!==r.nodeType&&8!==r.nodeType&&!mt.test(m+w.event.triggered)&&(m.indexOf(\".\")>-1&&(x=m.split(\".\"),m=x.shift(),x.sort()),l=m.indexOf(\":\")<0&&\"on\"+m,(t=t[w.expando]?t:new w.Event(m,\"object\"==typeof t&&t)).isTrigger=i?2:3,t.namespace=x.join(\".\"),t.rnamespace=t.namespace?new RegExp(\"(^|\\\\.)\"+x.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:w.makeArray(n,[t]),p=w.event.special[m]||{},i||!p.trigger||!1!==p.trigger.apply(r,n))){if(!i&&!p.noBubble&&!g(r)){for(u=p.delegateType||m,mt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)y.push(a),s=a;s===(r.ownerDocument||v)&&y.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=y[o++])&&!t.isPropagationStopped();)d=a,t.type=o>1?u:p.bindType||m,(f=(Y.get(a,\"events\")||Object.create(null))[t.type]&&Y.get(a,\"handle\"))&&f.apply(a,n),(f=l&&a[l])&&f.apply&&V(a)&&(t.result=f.apply(a,n),!1===t.result&&t.preventDefault());return t.type=m,i||t.isDefaultPrevented()||p._default&&!1!==p._default.apply(y.pop(),n)||!V(r)||l&&h(r[m])&&!g(r)&&((s=r[l])&&(r[l]=null),w.event.triggered=m,t.isPropagationStopped()&&d.addEventListener(m,xt),r[m](),t.isPropagationStopped()&&d.removeEventListener(m,xt),w.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=w.extend(new w.Event,n,{type:e,isSimulated:!0});w.event.trigger(r,null,t)}}),w.fn.extend({trigger:function(e,t){return this.each((function(){w.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return w.event.trigger(e,t,n,!0)}}),d.focusin||w.each({focus:\"focusin\",blur:\"focusout\"},(function(e,t){var n=function(e){w.event.simulate(t,e.target,w.event.fix(e))};w.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=Y.access(r,t);i||r.addEventListener(e,n,!0),Y.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=Y.access(r,t)-1;i?Y.access(r,t,i):(r.removeEventListener(e,n,!0),Y.remove(r,t))}}}));var bt=e.location,wt={guid:Date.now()},Tt=/\\?/;w.parseXML=function(t){var n,r;if(!t||\"string\"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,\"text/xml\")}catch(e){}return r=n&&n.getElementsByTagName(\"parsererror\")[0],n&&!r||w.error(\"Invalid XML: \"+(r?w.map(r.childNodes,(function(e){return e.textContent})).join(\"\\n\"):t)),n};var Ct=/\\[\\]$/,Et=/\\r?\\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(e,t,n,r){var i;if(Array.isArray(t))w.each(t,(function(t,i){n||Ct.test(e)?r(e,i):At(e+\"[\"+(\"object\"==typeof i&&null!=i?t:\"\")+\"]\",i,n,r)}));else if(n||\"object\"!==x(t))r(e,t);else for(i in t)At(e+\"[\"+i+\"]\",t[i],n,r)}w.param=function(e,t){var n,r=[],i=function(e,t){var n=h(t)?t():t;r[r.length]=encodeURIComponent(e)+\"=\"+encodeURIComponent(null==n?\"\":n)};if(null==e)return\"\";if(Array.isArray(e)||e.jquery&&!w.isPlainObject(e))w.each(e,(function(){i(this.name,this.value)}));else for(n in e)At(n,e[n],t,i);return r.join(\"&\")},w.fn.extend({serialize:function(){return w.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=w.prop(this,\"elements\");return e?w.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!w(this).is(\":disabled\")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!de.test(e))})).map((function(e,t){var n=w(this).val();return null==n?null:Array.isArray(n)?w.map(n,(function(e){return{name:t.name,value:e.replace(Et,\"\\r\\n\")}})):{name:t.name,value:n.replace(Et,\"\\r\\n\")}})).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\\/\\//,Ot={},Pt={},Rt=\"*/\".concat(\"*\"),Mt=v.createElement(\"a\");function It(e){return function(t,n){\"string\"!=typeof t&&(n=t,t=\"*\");var r,i=0,o=t.toLowerCase().match(P)||[];if(h(n))for(;r=o[i++];)\"+\"===r[0]?(r=r.slice(1)||\"*\",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Wt(e,t,n,r){var i={},o=e===Pt;function a(s){var u;return i[s]=!0,w.each(e[s]||[],(function(e,s){var l=s(t,n,r);return\"string\"!=typeof l||o||i[l]?o?!(u=l):void 0:(t.dataTypes.unshift(l),a(l),!1)})),u}return a(t.dataTypes[0])||!i[\"*\"]&&a(\"*\")}function Ft(e,t){var n,r,i=w.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&w.extend(!0,e,r),e}Mt.href=bt.href,w.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:\"GET\",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":Rt,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/\\bxml\\b/,html:/\\bhtml/,json:/\\bjson\\b/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":JSON.parse,\"text xml\":w.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,w.ajaxSettings),t):Ft(w.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(t,n){\"object\"==typeof t&&(n=t,t=void 0),n=n||{};var r,i,o,a,s,u,l,c,f,p,d=w.ajaxSetup({},n),h=d.context||d,g=d.context&&(h.nodeType||h.jquery)?w(h):w.event,y=w.Deferred(),m=w.Callbacks(\"once memory\"),x=d.statusCode||{},b={},T={},C=\"canceled\",E={readyState:0,getResponseHeader:function(e){var t;if(l){if(!a)for(a={};t=qt.exec(o);)a[t[1].toLowerCase()+\" \"]=(a[t[1].toLowerCase()+\" \"]||[]).concat(t[2]);t=a[e.toLowerCase()+\" \"]}return null==t?null:t.join(\", \")},getAllResponseHeaders:function(){return l?o:null},setRequestHeader:function(e,t){return null==l&&(e=T[e.toLowerCase()]=T[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==l&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(l)E.always(e[E.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return r&&r.abort(t),S(0,t),this}};if(y.promise(E),d.url=((t||d.url||bt.href)+\"\").replace(Ht,bt.protocol+\"//\"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=(d.dataType||\"*\").toLowerCase().match(P)||[\"\"],null==d.crossDomain){u=v.createElement(\"a\");try{u.href=d.url,u.href=u.href,d.crossDomain=Mt.protocol+\"//\"+Mt.host!=u.protocol+\"//\"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&\"string\"!=typeof d.data&&(d.data=w.param(d.data,d.traditional)),Wt(Ot,d,n,E),l)return E;for(f in(c=w.event&&d.global)&&0==w.active++&&w.event.trigger(\"ajaxStart\"),d.type=d.type.toUpperCase(),d.hasContent=!Lt.test(d.type),i=d.url.replace(jt,\"\"),d.hasContent?d.data&&d.processData&&0===(d.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&(d.data=d.data.replace(Nt,\"+\")):(p=d.url.slice(i.length),d.data&&(d.processData||\"string\"==typeof d.data)&&(i+=(Tt.test(i)?\"&\":\"?\")+d.data,delete d.data),!1===d.cache&&(i=i.replace(Dt,\"$1\"),p=(Tt.test(i)?\"&\":\"?\")+\"_=\"+wt.guid+++p),d.url=i+p),d.ifModified&&(w.lastModified[i]&&E.setRequestHeader(\"If-Modified-Since\",w.lastModified[i]),w.etag[i]&&E.setRequestHeader(\"If-None-Match\",w.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||n.contentType)&&E.setRequestHeader(\"Content-Type\",d.contentType),E.setRequestHeader(\"Accept\",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(\"*\"!==d.dataTypes[0]?\", \"+Rt+\"; q=0.01\":\"\"):d.accepts[\"*\"]),d.headers)E.setRequestHeader(f,d.headers[f]);if(d.beforeSend&&(!1===d.beforeSend.call(h,E,d)||l))return E.abort();if(C=\"abort\",m.add(d.complete),E.done(d.success),E.fail(d.error),r=Wt(Pt,d,n,E)){if(E.readyState=1,c&&g.trigger(\"ajaxSend\",[E,d]),l)return E;d.async&&d.timeout>0&&(s=e.setTimeout((function(){E.abort(\"timeout\")}),d.timeout));try{l=!1,r.send(b,S)}catch(e){if(l)throw e;S(-1,e)}}else S(-1,\"No Transport\");function S(t,n,a,u){var f,p,v,b,T,C=n;l||(l=!0,s&&e.clearTimeout(s),r=void 0,o=u||\"\",E.readyState=t>0?4:0,f=t>=200&&t<300||304===t,a&&(b=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;\"*\"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader(\"Content-Type\"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+\" \"+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(d,E,a)),!f&&w.inArray(\"script\",d.dataTypes)>-1&&w.inArray(\"json\",d.dataTypes)<0&&(d.converters[\"text script\"]=function(){}),b=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if(\"*\"===o)o=u;else if(\"*\"!==u&&u!==o){if(!(a=l[u+\" \"+o]||l[\"* \"+o]))for(i in l)if((s=i.split(\" \"))[1]===o&&(a=l[u+\" \"+s[0]]||l[\"* \"+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:\"parsererror\",error:a?e:\"No conversion from \"+u+\" to \"+o}}}return{state:\"success\",data:t}}(d,b,E,f),f?(d.ifModified&&((T=E.getResponseHeader(\"Last-Modified\"))&&(w.lastModified[i]=T),(T=E.getResponseHeader(\"etag\"))&&(w.etag[i]=T)),204===t||\"HEAD\"===d.type?C=\"nocontent\":304===t?C=\"notmodified\":(C=b.state,p=b.data,f=!(v=b.error))):(v=C,!t&&C||(C=\"error\",t<0&&(t=0))),E.status=t,E.statusText=(n||C)+\"\",f?y.resolveWith(h,[p,C,E]):y.rejectWith(h,[E,C,v]),E.statusCode(x),x=void 0,c&&g.trigger(f?\"ajaxSuccess\":\"ajaxError\",[E,d,f?p:v]),m.fireWith(h,[E,C]),c&&(g.trigger(\"ajaxComplete\",[E,d]),--w.active||w.event.trigger(\"ajaxStop\")))}return E},getJSON:function(e,t,n){return w.get(e,t,n,\"json\")},getScript:function(e,t){return w.get(e,void 0,t,\"script\")}}),w.each([\"get\",\"post\"],(function(e,t){w[t]=function(e,n,r,i){return h(n)&&(i=i||r,r=n,n=void 0),w.ajax(w.extend({url:e,type:t,dataType:i,data:n,success:r},w.isPlainObject(e)&&e))}})),w.ajaxPrefilter((function(e){var t;for(t in e.headers)\"content-type\"===t.toLowerCase()&&(e.contentType=e.headers[t]||\"\")})),w._evalUrl=function(e,t,n){return w.ajax({url:e,type:\"GET\",dataType:\"script\",cache:!0,async:!1,global:!1,converters:{\"text script\":function(){}},dataFilter:function(e){w.globalEval(e,t,n)}})},w.fn.extend({wrapAll:function(e){var t;return this[0]&&(h(e)&&(e=e.call(this[0])),t=w(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return h(e)?this.each((function(t){w(this).wrapInner(e.call(this,t))})):this.each((function(){var t=w(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h(e);return this.each((function(n){w(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not(\"body\").each((function(){w(this).replaceWith(this.childNodes)})),this}}),w.expr.pseudos.hidden=function(e){return!w.expr.pseudos.visible(e)},w.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},w.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=w.ajaxSettings.xhr();d.cors=!!$t&&\"withCredentials\"in $t,d.ajax=$t=!!$t,w.ajaxTransport((function(t){var n,r;if(d.cors||$t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];for(a in t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i[\"X-Requested-With\"]||(i[\"X-Requested-With\"]=\"XMLHttpRequest\"),i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,\"abort\"===e?s.abort():\"error\"===e?\"number\"!=typeof s.status?o(0,\"error\"):o(s.status,s.statusText):o(Bt[s.status]||s.status,s.statusText,\"text\"!==(s.responseType||\"text\")||\"string\"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=s.ontimeout=n(\"error\"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout((function(){n&&r()}))},n=n(\"abort\");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}})),w.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),w.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/\\b(?:java|ecma)script\\b/},converters:{\"text script\":function(e){return w.globalEval(e),e}}}),w.ajaxPrefilter(\"script\",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type=\"GET\")})),w.ajaxTransport(\"script\",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=w(\"" + ] }, "metadata": {}, "output_type": "display_data" }, { "data": { - "application/javascript": [ - "\n", - "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n", - " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n", - "}\n", - "\n", - "\n", - " function JupyterCommManager() {\n", - " }\n", - "\n", - " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n", - " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", - " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", - " comm_manager.register_target(comm_id, function(comm) {\n", - " comm.on_msg(msg_handler);\n", - " });\n", - " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", - " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n", - " comm.onMsg = msg_handler;\n", - " });\n", - " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", - " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n", - " var messages = comm.messages[Symbol.asyncIterator]();\n", - " function processIteratorResult(result) {\n", - " var message = result.value;\n", - " console.log(message)\n", - " var content = {data: message.data, comm_id};\n", - " var buffers = []\n", - " for (var buffer of message.buffers || []) {\n", - " buffers.push(new DataView(buffer))\n", - " }\n", - " var metadata = message.metadata || {};\n", - " var msg = {content, buffers, metadata}\n", - " msg_handler(msg);\n", - " return messages.next().then(processIteratorResult);\n", - " }\n", - " return messages.next().then(processIteratorResult);\n", - " })\n", - " }\n", - " }\n", - "\n", - " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n", - " if (comm_id in window.PyViz.comms) {\n", - " return window.PyViz.comms[comm_id];\n", - " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", - " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", - " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n", - " if (msg_handler) {\n", - " comm.on_msg(msg_handler);\n", - " }\n", - " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", - " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n", - " comm.open();\n", - " if (msg_handler) {\n", - " comm.onMsg = msg_handler;\n", - " }\n", - " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", - " var comm_promise = google.colab.kernel.comms.open(comm_id)\n", - " comm_promise.then((comm) => {\n", - " window.PyViz.comms[comm_id] = comm;\n", - " if (msg_handler) {\n", - " var messages = comm.messages[Symbol.asyncIterator]();\n", - " function processIteratorResult(result) {\n", - " var message = result.value;\n", - " var content = {data: message.data};\n", - " var metadata = message.metadata || {comm_id};\n", - " var msg = {content, metadata}\n", - " msg_handler(msg);\n", - " return messages.next().then(processIteratorResult);\n", - " }\n", - " return messages.next().then(processIteratorResult);\n", - " }\n", - " }) \n", - " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n", - " return comm_promise.then((comm) => {\n", - " comm.send(data, metadata, buffers, disposeOnDone);\n", - " });\n", - " };\n", - " var comm = {\n", - " send: sendClosure\n", - " };\n", - " }\n", - " window.PyViz.comms[comm_id] = comm;\n", - " return comm;\n", - " }\n", - " window.PyViz.comm_manager = new JupyterCommManager();\n", - " \n", - "\n", - "\n", - "var JS_MIME_TYPE = 'application/javascript';\n", - "var HTML_MIME_TYPE = 'text/html';\n", - "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n", - "var CLASS_NAME = 'output';\n", - "\n", - "/**\n", - " * Render data to the DOM node\n", - " */\n", - "function render(props, node) {\n", - " var div = document.createElement(\"div\");\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(div);\n", - " node.appendChild(script);\n", - "}\n", - "\n", - "/**\n", - " * Handle when a new output is added\n", - " */\n", - "function handle_add_output(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - " if (id !== undefined) {\n", - " var nchildren = toinsert.length;\n", - " var html_node = toinsert[nchildren-1].children[0];\n", - " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var scripts = [];\n", - " var nodelist = html_node.querySelectorAll(\"script\");\n", - " for (var i in nodelist) {\n", - " if (nodelist.hasOwnProperty(i)) {\n", - " scripts.push(nodelist[i])\n", - " }\n", - " }\n", - "\n", - " scripts.forEach( function (oldScript) {\n", - " var newScript = document.createElement(\"script\");\n", - " var attrs = [];\n", - " var nodemap = oldScript.attributes;\n", - " for (var j in nodemap) {\n", - " if (nodemap.hasOwnProperty(j)) {\n", - " attrs.push(nodemap[j])\n", - " }\n", - " }\n", - " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n", - " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n", - " oldScript.parentNode.replaceChild(newScript, oldScript);\n", - " });\n", - " if (JS_MIME_TYPE in output.data) {\n", - " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n", - " }\n", - " output_area._hv_plot_id = id;\n", - " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n", - " window.PyViz.plot_index[id] = Bokeh.index[id];\n", - " } else {\n", - " window.PyViz.plot_index[id] = null;\n", - " }\n", - " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - "}\n", - "\n", - "/**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - "function handle_clear_output(event, handle) {\n", - " var id = handle.cell.output_area._hv_plot_id;\n", - " var server_id = handle.cell.output_area._bokeh_server_id;\n", - " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n", - " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n", - " if (server_id !== null) {\n", - " comm.send({event_type: 'server_delete', 'id': server_id});\n", - " return;\n", - " } else if (comm !== null) {\n", - " comm.send({event_type: 'delete', 'id': id});\n", - " }\n", - " delete PyViz.plot_index[id];\n", - " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n", - " var doc = window.Bokeh.index[id].model.document\n", - " doc.clear();\n", - " const i = window.Bokeh.documents.indexOf(doc);\n", - " if (i > -1) {\n", - " window.Bokeh.documents.splice(i, 1);\n", - " }\n", - " }\n", - "}\n", - "\n", - "/**\n", - " * Handle kernel restart event\n", - " */\n", - "function handle_kernel_cleanup(event, handle) {\n", - " delete PyViz.comms[\"hv-extension-comm\"];\n", - " window.PyViz.plot_index = {}\n", - "}\n", - "\n", - "/**\n", - " * Handle update_display_data messages\n", - " */\n", - "function handle_update_output(event, handle) {\n", - " handle_clear_output(event, {cell: {output_area: handle.output_area}})\n", - " handle_add_output(event, handle)\n", - "}\n", - "\n", - "function register_renderer(events, OutputArea) {\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " var toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[0]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " events.on('output_added.OutputArea', handle_add_output);\n", - " events.on('output_updated.OutputArea', handle_update_output);\n", - " events.on('clear_output.CodeCell', handle_clear_output);\n", - " events.on('delete.Cell', handle_clear_output);\n", - " events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n", - "\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " safe: true,\n", - " index: 0\n", - " });\n", - "}\n", - "\n", - "if (window.Jupyter !== undefined) {\n", - " try {\n", - " var events = require('base/js/events');\n", - " var OutputArea = require('notebook/js/outputarea').OutputArea;\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " } catch(err) {\n", - " }\n", - "}\n" - ], + "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n const py_version = '3.6.2'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = false;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.5.4/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.6.2.min.js\", \"https://cdn.holoviz.org/panel/1.5.4/dist/panel.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));", "application/vnd.holoviews_load.v0+json": "" }, "metadata": {}, @@ -1945,1902 +81,122 @@ }, { "data": { - "text/html": [] + "application/javascript": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n", + "application/vnd.holoviews_load.v0+json": "" }, "metadata": {}, "output_type": "display_data" }, { "data": { - "application/javascript": [ - "\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", + "application/vnd.holoviews_exec.v0+json": "", + "text/html": [ + "
\n", + "
\n", + "
\n", + "" + ] + }, + "metadata": { + "application/vnd.holoviews_exec.v0+json": { + "id": "753125b6-ba61-4db9-bdd8-bdf609b3c706" + } }, - "metadata": {}, "output_type": "display_data" }, { "data": { - "application/javascript": [ - "\n", - "if ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n", - " window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n", - "}\n", - "\n", - "\n", - " function JupyterCommManager() {\n", - " }\n", - "\n", - " JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n", - " if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", - " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", - " comm_manager.register_target(comm_id, function(comm) {\n", - " comm.on_msg(msg_handler);\n", - " });\n", - " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", - " window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n", - " comm.onMsg = msg_handler;\n", - " });\n", - " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", - " google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n", - " var messages = comm.messages[Symbol.asyncIterator]();\n", - " function processIteratorResult(result) {\n", - " var message = result.value;\n", - " console.log(message)\n", - " var content = {data: message.data, comm_id};\n", - " var buffers = []\n", - " for (var buffer of message.buffers || []) {\n", - " buffers.push(new DataView(buffer))\n", - " }\n", - " var metadata = message.metadata || {};\n", - " var msg = {content, buffers, metadata}\n", - " msg_handler(msg);\n", - " return messages.next().then(processIteratorResult);\n", - " }\n", - " return messages.next().then(processIteratorResult);\n", - " })\n", - " }\n", - " }\n", - "\n", - " JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n", - " if (comm_id in window.PyViz.comms) {\n", - " return window.PyViz.comms[comm_id];\n", - " } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n", - " var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n", - " var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n", - " if (msg_handler) {\n", - " comm.on_msg(msg_handler);\n", - " }\n", - " } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n", - " var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n", - " comm.open();\n", - " if (msg_handler) {\n", - " comm.onMsg = msg_handler;\n", - " }\n", - " } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n", - " var comm_promise = google.colab.kernel.comms.open(comm_id)\n", - " comm_promise.then((comm) => {\n", - " window.PyViz.comms[comm_id] = comm;\n", - " if (msg_handler) {\n", - " var messages = comm.messages[Symbol.asyncIterator]();\n", - " function processIteratorResult(result) {\n", - " var message = result.value;\n", - " var content = {data: message.data};\n", - " var metadata = message.metadata || {comm_id};\n", - " var msg = {content, metadata}\n", - " msg_handler(msg);\n", - " return messages.next().then(processIteratorResult);\n", - " }\n", - " return messages.next().then(processIteratorResult);\n", - " }\n", - " }) \n", - " var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n", - " return comm_promise.then((comm) => {\n", - " comm.send(data, metadata, buffers, disposeOnDone);\n", - " });\n", - " };\n", - " var comm = {\n", - " send: sendClosure\n", - " };\n", - " }\n", - " window.PyViz.comms[comm_id] = comm;\n", - " return comm;\n", - " }\n", - " window.PyViz.comm_manager = new JupyterCommManager();\n", - " \n", - "\n", - "\n", - "var JS_MIME_TYPE = 'application/javascript';\n", - "var HTML_MIME_TYPE = 'text/html';\n", - "var EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\n", - "var CLASS_NAME = 'output';\n", - "\n", - "/**\n", - " * Render data to the DOM node\n", - " */\n", - "function render(props, node) {\n", - " var div = document.createElement(\"div\");\n", - " var script = document.createElement(\"script\");\n", - " node.appendChild(div);\n", - " node.appendChild(script);\n", - "}\n", - "\n", - "/**\n", - " * Handle when a new output is added\n", - " */\n", - "function handle_add_output(event, handle) {\n", - " var output_area = handle.output_area;\n", - " var output = handle.output;\n", - " if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - " var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - " if (id !== undefined) {\n", - " var nchildren = toinsert.length;\n", - " var html_node = toinsert[nchildren-1].children[0];\n", - " html_node.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var scripts = [];\n", - " var nodelist = html_node.querySelectorAll(\"script\");\n", - " for (var i in nodelist) {\n", - " if (nodelist.hasOwnProperty(i)) {\n", - " scripts.push(nodelist[i])\n", - " }\n", - " }\n", - "\n", - " scripts.forEach( function (oldScript) {\n", - " var newScript = document.createElement(\"script\");\n", - " var attrs = [];\n", - " var nodemap = oldScript.attributes;\n", - " for (var j in nodemap) {\n", - " if (nodemap.hasOwnProperty(j)) {\n", - " attrs.push(nodemap[j])\n", - " }\n", - " }\n", - " attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n", - " newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n", - " oldScript.parentNode.replaceChild(newScript, oldScript);\n", - " });\n", - " if (JS_MIME_TYPE in output.data) {\n", - " toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n", - " }\n", - " output_area._hv_plot_id = id;\n", - " if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n", - " window.PyViz.plot_index[id] = Bokeh.index[id];\n", - " } else {\n", - " window.PyViz.plot_index[id] = null;\n", - " }\n", - " } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " var bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " var script_attrs = bk_div.children[0].attributes;\n", - " for (var i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - "}\n", - "\n", - "/**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - "function handle_clear_output(event, handle) {\n", - " var id = handle.cell.output_area._hv_plot_id;\n", - " var server_id = handle.cell.output_area._bokeh_server_id;\n", - " if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n", - " var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n", - " if (server_id !== null) {\n", - " comm.send({event_type: 'server_delete', 'id': server_id});\n", - " return;\n", - " } else if (comm !== null) {\n", - " comm.send({event_type: 'delete', 'id': id});\n", - " }\n", - " delete PyViz.plot_index[id];\n", - " if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n", - " var doc = window.Bokeh.index[id].model.document\n", - " doc.clear();\n", - " const i = window.Bokeh.documents.indexOf(doc);\n", - " if (i > -1) {\n", - " window.Bokeh.documents.splice(i, 1);\n", - " }\n", - " }\n", - "}\n", - "\n", - "/**\n", - " * Handle kernel restart event\n", - " */\n", - "function handle_kernel_cleanup(event, handle) {\n", - " delete PyViz.comms[\"hv-extension-comm\"];\n", - " window.PyViz.plot_index = {}\n", + "text/html": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n const force = false;\n const py_version = '3.6.2'.replace('rc', '-rc.').replace('.dev', '-dev.');\n const reloading = true;\n const Bokeh = root.Bokeh;\n\n // Set a timeout for this load but only if we are not already initializing\n if (typeof (root._bokeh_timeout) === \"undefined\" || (force || !root._bokeh_is_initializing)) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n // Don't load bokeh if it is still initializing\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n } else if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n // There is nothing to load\n run_callbacks();\n return null;\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error(e) {\n const src_el = e.srcElement\n console.error(\"failed to load \" + (src_el.href || src_el.src));\n }\n\n const skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {}, 'shim': {}});\n root._bokeh_is_loading = css_urls.length + 0;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n const existing_stylesheets = []\n const links = document.getElementsByTagName('link')\n for (let i = 0; i < links.length; i++) {\n const link = links[i]\n if (link.href != null) {\n existing_stylesheets.push(link.href)\n }\n }\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const escaped = encodeURI(url)\n if (existing_stylesheets.indexOf(escaped) !== -1) {\n on_load()\n continue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } var existing_scripts = []\n const scripts = document.getElementsByTagName('script')\n for (let i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n existing_scripts.push(script.src)\n }\n }\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (let i = 0; i < js_modules.length; i++) {\n const url = js_modules[i];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) !== -1 || existing_scripts.indexOf(escaped) !== -1) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n const url = js_exports[name];\n const escaped = encodeURI(url)\n if (skip.indexOf(escaped) >= 0 || root[name] != null) {\n if (!window.requirejs) {\n on_load();\n }\n continue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.holoviz.org/panel/1.5.4/dist/bundled/reactiveesm/es-module-shims@^1.10.0/dist/es-module-shims.min.js\"];\n const js_modules = [];\n const js_exports = {};\n const css_urls = [];\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (let i = 0; i < inline_js.length; i++) {\n try {\n inline_js[i].call(root, root.Bokeh);\n } catch(e) {\n if (!reloading) {\n throw e;\n }\n }\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n var NewBokeh = root.Bokeh;\n if (Bokeh.versions === undefined) {\n Bokeh.versions = new Map();\n }\n if (NewBokeh.version !== Bokeh.version) {\n Bokeh.versions.set(NewBokeh.version, NewBokeh)\n }\n root.Bokeh = Bokeh;\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n // If the timeout and bokeh was not successfully loaded we reset\n // everything and try loading again\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n root._bokeh_is_loading = 0\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n const bokeh_loaded = root.Bokeh != null && (root.Bokeh.version === py_version || (root.Bokeh.versions !== undefined && root.Bokeh.versions.has(py_version)));\n if (!reloading && !bokeh_loaded) {\n if (root.Bokeh) {\n root.Bokeh = undefined;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));", "application/vnd.holoviews_load.v0+json": "" }, "metadata": {}, @@ -3848,90 +204,8 @@ }, { "data": { - "text/html": [ - "\n", - "
\n", - "\n", - "\n", - "\n", - " \n", - " \n", - "\n", - "\n", - "\n", - "\n", - "
\n" - ] + "application/javascript": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n", + "application/vnd.holoviews_load.v0+json": "" }, "metadata": {}, "output_type": "display_data" @@ -3955,7 +229,7 @@ { "data": { "text/plain": [ - "'hsp2_py38'" + "'hsp2_py310'" ] }, "execution_count": 3, @@ -4088,13 +362,18 @@ " \n", " \n", " \n", + " AVDEP\n", + " AVVEL\n", " DEP\n", + " HRAD\n", " IVOL\n", + " POTEV\n", " PRSUPY\n", " RO\n", " ROVOL\n", " SAREA\n", " TAU\n", + " TWID\n", " USTAR\n", " VOL\n", " VOLEV\n", @@ -4103,65 +382,90 @@ " \n", " \n", " 1976-01-01 01:00:00\n", + " 0.702923\n", + " 1.857768\n", " 0.822988\n", + " 0.562775\n", " 1.747608\n", + " 0.000583\n", " 0.0\n", " 7.371986\n", " 0.304628\n", " 2.052829\n", " 0.088680\n", + " 5.645279\n", " 0.213918\n", " 1.442980\n", " 0.000000\n", " \n", " \n", " 1976-01-01 02:00:00\n", + " 0.651220\n", + " 1.770455\n", " 0.754730\n", + " 0.526685\n", " 0.428585\n", + " 0.000583\n", " 0.0\n", " 6.350832\n", " 0.567059\n", " 2.003019\n", " 0.082993\n", + " 5.508303\n", " 0.206945\n", " 1.304407\n", " 0.000100\n", " \n", " \n", " 1976-01-01 03:00:00\n", + " 0.534142\n", + " 1.576605\n", " 0.604331\n", + " 0.443217\n", " 0.150780\n", + " 0.000583\n", " 0.0\n", " 4.385298\n", " 0.443642\n", " 1.893593\n", " 0.069840\n", + " 5.207382\n", " 0.189840\n", " 1.011448\n", " 0.000097\n", " \n", " \n", " 1976-01-01 04:00:00\n", + " 0.429286\n", + " 1.416886\n", " 0.474719\n", + " 0.365824\n", " 0.066827\n", + " 0.000583\n", " 0.0\n", " 3.010308\n", " 0.305604\n", " 1.799683\n", " 0.057645\n", + " 4.949128\n", " 0.172471\n", " 0.772579\n", " 0.000092\n", " \n", " \n", " 1976-01-01 05:00:00\n", + " 0.346840\n", + " 1.221629\n", " 0.376407\n", + " 0.302669\n", " 0.034621\n", + " 0.000583\n", " 0.0\n", " 2.013996\n", " 0.207616\n", " 1.728451\n", " 0.047693\n", + " 4.753240\n", " 0.156879\n", " 0.599497\n", " 0.000087\n", @@ -4171,19 +475,26 @@ "" ], "text/plain": [ - " DEP IVOL PRSUPY RO ROVOL SAREA \\\n", - "1976-01-01 01:00:00 0.822988 1.747608 0.0 7.371986 0.304628 2.052829 \n", - "1976-01-01 02:00:00 0.754730 0.428585 0.0 6.350832 0.567059 2.003019 \n", - "1976-01-01 03:00:00 0.604331 0.150780 0.0 4.385298 0.443642 1.893593 \n", - "1976-01-01 04:00:00 0.474719 0.066827 0.0 3.010308 0.305604 1.799683 \n", - "1976-01-01 05:00:00 0.376407 0.034621 0.0 2.013996 0.207616 1.728451 \n", - "\n", - " TAU USTAR VOL VOLEV \n", - "1976-01-01 01:00:00 0.088680 0.213918 1.442980 0.000000 \n", - "1976-01-01 02:00:00 0.082993 0.206945 1.304407 0.000100 \n", - "1976-01-01 03:00:00 0.069840 0.189840 1.011448 0.000097 \n", - "1976-01-01 04:00:00 0.057645 0.172471 0.772579 0.000092 \n", - "1976-01-01 05:00:00 0.047693 0.156879 0.599497 0.000087 " + " AVDEP AVVEL DEP HRAD IVOL \n", + "1976-01-01 01:00:00 0.702923 1.857768 0.822988 0.562775 1.747608 \\\n", + "1976-01-01 02:00:00 0.651220 1.770455 0.754730 0.526685 0.428585 \n", + "1976-01-01 03:00:00 0.534142 1.576605 0.604331 0.443217 0.150780 \n", + "1976-01-01 04:00:00 0.429286 1.416886 0.474719 0.365824 0.066827 \n", + "1976-01-01 05:00:00 0.346840 1.221629 0.376407 0.302669 0.034621 \n", + "\n", + " POTEV PRSUPY RO ROVOL SAREA TAU \n", + "1976-01-01 01:00:00 0.000583 0.0 7.371986 0.304628 2.052829 0.088680 \\\n", + "1976-01-01 02:00:00 0.000583 0.0 6.350832 0.567059 2.003019 0.082993 \n", + "1976-01-01 03:00:00 0.000583 0.0 4.385298 0.443642 1.893593 0.069840 \n", + "1976-01-01 04:00:00 0.000583 0.0 3.010308 0.305604 1.799683 0.057645 \n", + "1976-01-01 05:00:00 0.000583 0.0 2.013996 0.207616 1.728451 0.047693 \n", + "\n", + " TWID USTAR VOL VOLEV \n", + "1976-01-01 01:00:00 5.645279 0.213918 1.442980 0.000000 \n", + "1976-01-01 02:00:00 5.508303 0.206945 1.304407 0.000100 \n", + "1976-01-01 03:00:00 5.207382 0.189840 1.011448 0.000097 \n", + "1976-01-01 04:00:00 4.949128 0.172471 0.772579 0.000092 \n", + "1976-01-01 05:00:00 4.753240 0.156879 0.599497 0.000087 " ] }, "execution_count": 8, @@ -4232,33 +543,71 @@ "data": { "application/vnd.holoviews_exec.v0+json": "", "text/html": [ - "
\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n", + "
\n", + "
\n", "
\n", " - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-
-

HSP2 BUILD and RUN SIMULATION

Place this Jupyter Notebook in a directory with one UCI and one or more WDM files.

- -
-
-
-
-
-
-
-
-

Required Python Imports

-
-
-
-
-
-
In [1]:
-
-
-
import HSP2
-import HSP2tools
-
-from glob import glob
-
- -
-
-
- -
-
-
-
In [2]:
-
-
-
HSP2tools.versions()
-
- -
-
-
- -
-
- - -
-
Out[2]:
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Version
HSP20.7.2
HSP2tools0.7.1
PYTHON2.7.11 | 64-bit | (default, Jun 11 2016, 11:33...
IPYTHON5.3.0
H5PY2.7.0
MATPLOTLIB2.0.0
NETWORKX1.11
NUMBA0.31.0
NUMPY1.11.3
PANDAS0.19.2
PYTABLES3.3.0
WDMTOOLBOX0.8.2 MOD RTH
osWindows-10-10.0.15063
processorIntel64 Family 6 Model 94 Stepping 3, GenuineI...
-
-
- -
- -
-
- -
-
-
-
-
-
-

BUILD HDF5 FILE From UCI and WDM files

-
-
-
-
-
-
-
-
-

Get the name of the UCI file.

- -
-
-
-
-
-
In [3]:
-
-
-
uciname = glob('*.uci')[0]
-uciname
-
- -
-
-
- -
-
- - -
-
Out[3]:
- - - -
-
'calleg.uci'
-
- -
- -
-
- -
-
-
-
-
-
-

Create HDF5 filename from the leading part of the UCI filename.

- -
-
-
-
-
-
In [4]:
-
-
-
HDFname = uciname.split('.')[0] + '.h5'
-HDFname
-
- -
-
-
- -
-
- - -
-
Out[4]:
- - - -
-
'calleg.h5'
-
- -
- -
-
- -
-
-
-
In [5]:
-
-
-
!del {HDFname}
-
- -
-
-
- -
-
-
-
-
-
-

Create the HDF5 file filled with the UCI data

- -
-
-
-
-
-
In [6]:
-
-
-
HSP2tools.readUCI(uciname, HDFname)
-
- -
-
-
- -
-
- - -
-
- -
-
C:\Users\rober\Desktop\dev\HSP2tools\uciReader.py:445: FutureWarning: convert_objects is deprecated.  Use the data-type specific converters pd.to_datetime, pd.to_timedelta and pd.to_numeric.
-  df = df.convert_objects(convert_numeric=True)
-C:\Users\rober\Desktop\dev\HSP2tools\uciReader.py:442: FutureWarning: convert_objects is deprecated.  Use the data-type specific converters pd.to_datetime, pd.to_timedelta and pd.to_numeric.
-  dff = dff.convert_objects(convert_numeric=True)
-
-
-
- -
-
- -
-
uciReader is Done
-
-
-
- -
-
- -
-
-
-
In [7]:
-
-
-
HSP2tools.cleanup(HDFname)
-
- -
-
-
- -
-
- - -
-
- -
-
Cleanup done
-
-
-
- -
-
- -
-
-
-
-
-
-

Add the timeseries data to the HDF5 file.

- -
-
-
-
-
-
In [8]:
-
-
-
wdmnames = glob('*.wdm')
-wdmnames
-
- -
-
-
- -
-
- - -
-
Out[8]:
- - - -
-
['calleg.wdm']
-
- -
- -
-
- -
-
-
-
In [9]:
-
-
-
for name in wdmnames:
-    HSP2tools.ReadWDM(name, HDFname)
-
- -
-
-
- -
-
- - -
-
- -
-
Processing WDM file calleg.wdm
-/TIMESERIES/TS1169 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 EVAP
-/TIMESERIES/TS187 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS1171 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 EVAP
-/TIMESERIES/TS234 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS249 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS193 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 PREC
-/TIMESERIES/TS196 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 PREC
-/TIMESERIES/TS154 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS227 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 PREC
-/TIMESERIES/TS250 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 PREC
-/TIMESERIES/TS141 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS49 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 PREC
-/TIMESERIES/TS169 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 PREC
-/TIMESERIES/TS188 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS1239 H 1987-10-01T00:00:00 2003-12-01T00:00:00 141720 EVAP
-/TIMESERIES/TS194 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 PREC
-/TIMESERIES/TS190 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 PREC
-/TIMESERIES/TS175 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS259 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS177 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS6001 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS242 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 PREC
-/TIMESERIES/TS402 M 1987-10-01T00:00:00 2003-11-01T00:00:00 193 PUMPOUT
-/TIMESERIES/TS401 M 1987-10-01T00:00:00 2003-11-01T00:00:00 193 PUMPOUT
-/TIMESERIES/TS6250 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS6141 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS6049 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS6194 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS238 H 1987-09-30T00:00:00 2002-10-01T00:00:00 131520 PREC
-/TIMESERIES/TS6238 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS6190 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS6175 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS6259 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS6177 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 IRRIG
-/TIMESERIES/TS2239 H 1987-10-01T00:00:00 2002-10-01T00:00:00 131496 EVAP
-/TIMESERIES/TS403 M 1987-10-01T00:00:00 2003-11-01T00:00:00 193 PUMPIN
-/TIMESERIES/TS404 M 1987-10-01T00:00:00 2003-11-01T00:00:00 193 PUMPIN
-/TIMESERIES/TS406 M 1987-10-01T00:00:00 2003-11-01T00:00:00 193 PUMPIN
-/TIMESERIES/TS407 M 1987-10-01T00:00:00 2003-11-01T00:00:00 193 PUMPIN
-/TIMESERIES/TS405 M 1987-10-01T00:00:00 2003-11-01T00:00:00 193 PUMPIN
-/TIMESERIES/TS325 D 1987-01-01T00:00:00 2003-09-07T00:00:00 6093 FLOW
-/TIMESERIES/TS335 M 1987-01-01T00:00:00 2002-12-01T00:00:00 191 FLOW
-/TIMESERIES/TS307 M 1980-01-01T00:00:00 2003-01-01T00:00:00 276 FLOW
-/TIMESERIES/TS304 D 1987-01-01T00:00:00 2003-09-07T00:00:00 6093 FLOW
-/TIMESERIES/TS301 D 1987-01-01T00:00:00 2002-12-01T00:00:00 5813 FLOW
-/TIMESERIES/TS1311 D 1969-10-01T00:00:00 2002-10-01T00:00:00 12053 FLOW
-/TIMESERIES/TS311 D 1969-10-01T00:00:00 2003-10-01T00:00:00 12418 FLOW
-/TIMESERIES/TS303 D 1985-09-01T00:00:00 2003-10-01T00:00:00 6604 FLOW
-/TIMESERIES/TS302 D 1987-10-01T00:00:00 2003-10-01T00:00:00 5844 FLOW
-/TIMESERIES/TS305 D 1987-01-01T00:00:00 2002-10-23T00:00:00 5774 FLOW
-Done with calleg.wdm
-
-
-
- -
-
- -
-
-
-
In [10]:
-
-
-
!rename {HDFname} temp.h5
-!ptrepack temp.h5 {HDFname}
-!del temp.h5
-
- -
-
-
- -
-
-
-
-
-
-

RUN simulation

-
-
-
-
-
-
-
-
-

Get HDF5 filename (in case you didn't need to run the above)

- -
-
-
-
-
-
In [2]:
-
-
-
hdfname =  glob('*.h5')[0]
-hdfname
-
- -
-
-
- -
-
- - -
-
Out[2]:
- - - -
-
'calleg.h5'
-
- -
- -
-
- -
-
-
-
In [3]:
-
-
-
HSP2.run(hdfname,saveall=True)
-
- -
-
-
- -
-
- - -
-
- -
-
2017-04-21 22:24:06.80   Run Started for file calleg.h5
-2017-04-21 22:24:06.85     Start 1993-10-01 00:00    Stop 2002-09-30 23:59
-2017-04-21 22:24:07.20   Finished setup
-2017-04-21 22:24:07.20      PERLND P011   DELT=60
-2017-04-21 22:24:14.16      PERLND P012   DELT=60
-2017-04-21 22:24:14.28      PERLND P013   DELT=60
-2017-04-21 22:24:14.41      PERLND P014   DELT=60
-2017-04-21 22:24:14.53      PERLND P015   DELT=60
-2017-04-21 22:24:14.66      IMPLND I011   DELT=60
-2017-04-21 22:24:15.74      PERLND P021   DELT=60
-2017-04-21 22:24:15.86      PERLND P022   DELT=60
-2017-04-21 22:24:16.00      PERLND P023   DELT=60
-2017-04-21 22:24:16.11      PERLND P024   DELT=60
-2017-04-21 22:24:16.25      PERLND P025   DELT=60
-2017-04-21 22:24:16.38      IMPLND I021   DELT=60
-2017-04-21 22:24:16.43      RCHRES R001   DELT=60
-2017-04-21 22:24:22.66      PERLND P031   DELT=60
-2017-04-21 22:24:22.80      PERLND P041   DELT=60
-2017-04-21 22:24:22.93      PERLND P042   DELT=60
-2017-04-21 22:24:23.05      PERLND P043   DELT=60
-2017-04-21 22:24:23.18      IMPLND I041   DELT=60
-2017-04-21 22:24:23.22      RCHRES R021   DELT=60
-2017-04-21 22:24:23.32      RCHRES R022   DELT=60
-2017-04-21 22:24:23.41      RCHRES R023   DELT=60
-2017-04-21 22:24:23.51      PERLND P051   DELT=60
-2017-04-21 22:24:23.63      PERLND P052   DELT=60
-2017-04-21 22:24:23.76      PERLND P053   DELT=60
-2017-04-21 22:24:23.88      PERLND P054   DELT=60
-2017-04-21 22:24:24.01      PERLND P055   DELT=60
-2017-04-21 22:24:24.13      IMPLND I051   DELT=60
-2017-04-21 22:24:24.18      RCHRES R011   DELT=60
-2017-04-21 22:24:24.47      RCHRES R024   DELT=60
-2017-04-21 22:24:24.58      PERLND P061   DELT=60
-2017-04-21 22:24:24.72      PERLND P062   DELT=60
-2017-04-21 22:24:24.85      IMPLND I061   DELT=60
-2017-04-21 22:24:24.90      PERLND P071   DELT=60
-2017-04-21 22:24:25.04      PERLND P072   DELT=60
-2017-04-21 22:24:25.15      PERLND P073   DELT=60
-2017-04-21 22:24:25.29      PERLND P074   DELT=60
-2017-04-21 22:24:25.41      PERLND P075   DELT=60
-2017-04-21 22:24:25.54      IMPLND I071   DELT=60
-2017-04-21 22:24:25.58      RCHRES R031   DELT=60
-2017-04-21 22:24:25.77      RCHRES R071   DELT=60
-2017-04-21 22:24:25.88      PERLND P081   DELT=60
-2017-04-21 22:24:26.02      PERLND P082   DELT=60
-2017-04-21 22:24:26.15      PERLND P083   DELT=60
-2017-04-21 22:24:26.27      PERLND P084   DELT=60
-2017-04-21 22:24:26.40      PERLND P085   DELT=60
-2017-04-21 22:24:26.52      IMPLND I081   DELT=60
-2017-04-21 22:24:26.57      PERLND P091   DELT=60
-2017-04-21 22:24:26.69      RCHRES R043   DELT=60
-2017-04-21 22:24:26.79      PERLND P101   DELT=60
-2017-04-21 22:24:26.93         Message count 30   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:24:26.93         Message count 20285   Message PWATER: Reset AGWS to zero
-2017-04-21 22:24:26.93      PERLND P102   DELT=60
-2017-04-21 22:24:27.05      IMPLND I101   DELT=60
-2017-04-21 22:24:27.10      RCHRES R041   DELT=60
-2017-04-21 22:24:27.19      RCHRES R042   DELT=60
-2017-04-21 22:24:27.32      RCHRES R044   DELT=60
-2017-04-21 22:24:27.43      PERLND P111   DELT=60
-2017-04-21 22:24:27.55      PERLND P112   DELT=60
-2017-04-21 22:24:27.68      PERLND P113   DELT=60
-2017-04-21 22:24:27.82      IMPLND I111   DELT=60
-2017-04-21 22:24:27.86      RCHRES R045   DELT=60
-2017-04-21 22:24:27.99      PERLND P121   DELT=60
-2017-04-21 22:24:28.13      PERLND P122   DELT=60
-2017-04-21 22:24:28.26      PERLND P123   DELT=60
-2017-04-21 22:24:28.38      PERLND P124   DELT=60
-2017-04-21 22:24:28.51      PERLND P125   DELT=60
-2017-04-21 22:24:28.63      IMPLND I121   DELT=60
-2017-04-21 22:24:28.68      RCHRES R002   DELT=60
-2017-04-21 22:24:31.19      RCHRES R025   DELT=60
-2017-04-21 22:24:31.48      RCHRES R003   DELT=60
-2017-04-21 22:24:31.84      RCHRES R004   DELT=60
-2017-04-21 22:24:32.11      RCHRES R904   DELT=60
-2017-04-21 22:24:32.20      PERLND P131   DELT=60
-2017-04-21 22:24:32.33      PERLND P132   DELT=60
-2017-04-21 22:24:32.45      PERLND P133   DELT=60
-2017-04-21 22:24:32.58      PERLND P134   DELT=60
-2017-04-21 22:24:32.70      PERLND P135   DELT=60
-2017-04-21 22:24:32.83      IMPLND I131   DELT=60
-2017-04-21 22:24:32.87      RCHRES R061   DELT=60
-2017-04-21 22:24:32.97      RCHRES R062   DELT=60
-2017-04-21 22:24:33.10      RCHRES R063   DELT=60
-2017-04-21 22:24:33.22      RCHRES R064   DELT=60
-2017-04-21 22:24:33.36      RCHRES R964   DELT=60
-2017-04-21 22:24:33.49      RCHRES R091   DELT=60
-2017-04-21 22:24:33.65      PERLND P141   DELT=60
-2017-04-21 22:24:33.79      PERLND P142   DELT=60
-2017-04-21 22:24:33.91      PERLND P143   DELT=60
-2017-04-21 22:24:34.04      PERLND P144   DELT=60
-2017-04-21 22:24:34.17      PERLND P145   DELT=60
-2017-04-21 22:24:34.29      IMPLND I141   DELT=60
-2017-04-21 22:24:34.34      RCHRES R005   DELT=60
-2017-04-21 22:24:35.34      RCHRES R046   DELT=60
-2017-04-21 22:24:35.54      RCHRES R065   DELT=60
-2017-04-21 22:24:35.78      RCHRES R072   DELT=60
-2017-04-21 22:24:35.97      PERLND P151   DELT=60
-2017-04-21 22:24:36.11      PERLND P152   DELT=60
-2017-04-21 22:24:36.23      IMPLND I151   DELT=60
-2017-04-21 22:24:36.28      RCHRES R051   DELT=60
-2017-04-21 22:24:36.39      RCHRES R952   DELT=60
-2017-04-21 22:24:36.50      RCHRES R052   DELT=60
-2017-04-21 22:24:36.69      RCHRES R006   DELT=60
-2017-04-21 22:24:36.84      RCHRES R081   DELT=60
-2017-04-21 22:24:36.97      PERLND P161   DELT=60
-2017-04-21 22:24:37.09      PERLND P162   DELT=60
-2017-04-21 22:24:37.22      PERLND P163   DELT=60
-2017-04-21 22:24:37.34      PERLND P164   DELT=60
-2017-04-21 22:24:37.48      PERLND P165   DELT=60
-2017-04-21 22:24:37.59      IMPLND I161   DELT=60
-2017-04-21 22:24:37.64      RCHRES R101   DELT=60
-2017-04-21 22:24:37.78      RCHRES R102   DELT=60
-2017-04-21 22:24:37.87      RCHRES R103   DELT=60
-2017-04-21 22:24:37.98      RCHRES R104   DELT=60
-2017-04-21 22:24:38.08      RCHRES R105   DELT=60
-2017-04-21 22:24:38.17      PERLND P171   DELT=60
-2017-04-21 22:24:38.29      PERLND P172   DELT=60
-2017-04-21 22:24:38.42      PERLND P173   DELT=60
-2017-04-21 22:24:38.54      PERLND P174   DELT=60
-2017-04-21 22:24:38.67      PERLND P175   DELT=60
-2017-04-21 22:24:38.79      IMPLND I171   DELT=60
-2017-04-21 22:24:38.84      PERLND P181   DELT=60
-2017-04-21 22:24:38.97      PERLND P182   DELT=60
-2017-04-21 22:24:39.08      PERLND P183   DELT=60
-2017-04-21 22:24:39.20      PERLND P184   DELT=60
-2017-04-21 22:24:39.33      PERLND P185   DELT=60
-2017-04-21 22:24:39.47         Message count 1533   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:24:39.47         Message count 71712   Message PWATER: Reset AGWS to zero
-2017-04-21 22:24:39.47      IMPLND I181   DELT=60
-2017-04-21 22:24:39.51      RCHRES R107   DELT=60
-2017-04-21 22:24:39.73      RCHRES R106   DELT=60
-2017-04-21 22:24:39.89      RCHRES R108   DELT=60
-2017-04-21 22:24:40.00      RCHRES R007   DELT=60
-2017-04-21 22:24:40.16      RCHRES R082   DELT=60
-2017-04-21 22:24:40.42      RCHRES R092   DELT=60
-2017-04-21 22:24:40.66      RCHRES R008   DELT=60
-2017-04-21 22:24:40.83      RCHRES R009   DELT=60
-2017-04-21 22:24:40.95      RCHRES R109   DELT=60
-2017-04-21 22:24:41.17      RCHRES R010   DELT=60
-2017-04-21 22:24:41.39      PERLND P191   DELT=60
-2017-04-21 22:24:41.53      PERLND P192   DELT=60
-2017-04-21 22:24:41.66      PERLND P193   DELT=60
-2017-04-21 22:24:41.77      PERLND P194   DELT=60
-2017-04-21 22:24:41.89      PERLND P195   DELT=60
-2017-04-21 22:24:42.02      IMPLND I191   DELT=60
-2017-04-21 22:24:42.06      PERLND P201   DELT=60
-2017-04-21 22:24:42.20      PERLND P202   DELT=60
-2017-04-21 22:24:42.31      PERLND P203   DELT=60
-2017-04-21 22:24:42.43      PERLND P204   DELT=60
-2017-04-21 22:24:42.56      PERLND P205   DELT=60
-2017-04-21 22:24:42.68      PERLND P206   DELT=60
-2017-04-21 22:24:42.81      IMPLND I201   DELT=60
-2017-04-21 22:24:42.85      PERLND P211   DELT=60
-2017-04-21 22:24:43.00      PERLND P212   DELT=60
-2017-04-21 22:24:43.11      PERLND P213   DELT=60
-2017-04-21 22:24:43.23      PERLND P214   DELT=60
-2017-04-21 22:24:43.34      PERLND P215   DELT=60
-2017-04-21 22:24:43.47      PERLND P216   DELT=60
-2017-04-21 22:24:43.59      IMPLND I211   DELT=60
-2017-04-21 22:24:43.64      PERLND P221   DELT=60
-2017-04-21 22:24:43.76      PERLND P222   DELT=60
-2017-04-21 22:24:43.87      PERLND P224   DELT=60
-2017-04-21 22:24:44.00      PERLND P225   DELT=60
-2017-04-21 22:24:44.11      PERLND P226   DELT=60
-2017-04-21 22:24:44.25      IMPLND I221   DELT=60
-2017-04-21 22:24:44.28      PERLND P231   DELT=60
-2017-04-21 22:24:44.41      PERLND P232   DELT=60
-2017-04-21 22:24:44.53      PERLND P234   DELT=60
-2017-04-21 22:24:44.66      PERLND P235   DELT=60
-2017-04-21 22:24:44.78      IMPLND I231   DELT=60
-2017-04-21 22:24:44.81      PERLND P241   DELT=60
-2017-04-21 22:24:44.95      PERLND P242   DELT=60
-2017-04-21 22:24:45.06      PERLND P243   DELT=60
-2017-04-21 22:24:45.19      PERLND P244   DELT=60
-2017-04-21 22:24:45.30      PERLND P245   DELT=60
-2017-04-21 22:24:45.41      IMPLND I241   DELT=60
-2017-04-21 22:24:45.45      PERLND P251   DELT=60
-2017-04-21 22:24:45.58      PERLND P252   DELT=60
-2017-04-21 22:24:45.70      PERLND P253   DELT=60
-2017-04-21 22:24:45.83      PERLND P254   DELT=60
-2017-04-21 22:24:45.94      PERLND P255   DELT=60
-2017-04-21 22:24:46.05      PERLND P256   DELT=60
-2017-04-21 22:24:46.18      IMPLND I251   DELT=60
-2017-04-21 22:24:46.23      PERLND P261   DELT=60
-2017-04-21 22:24:46.35      PERLND P266   DELT=60
-2017-04-21 22:24:46.48      PERLND P271   DELT=60
-2017-04-21 22:24:46.60      PERLND P272   DELT=60
-2017-04-21 22:24:46.73      PERLND P275   DELT=60
-2017-04-21 22:24:46.84      PERLND P276   DELT=60
-2017-04-21 22:24:46.96      IMPLND I271   DELT=60
-2017-04-21 22:24:47.01      PERLND P281   DELT=60
-2017-04-21 22:24:47.15      PERLND P282   DELT=60
-2017-04-21 22:24:47.26      PERLND P283   DELT=60
-2017-04-21 22:24:47.38      PERLND P285   DELT=60
-2017-04-21 22:24:47.49      PERLND P286   DELT=60
-2017-04-21 22:24:47.63      IMPLND I281   DELT=60
-2017-04-21 22:24:47.68      PERLND P291   DELT=60
-2017-04-21 22:24:47.81      PERLND P292   DELT=60
-2017-04-21 22:24:47.93      PERLND P293   DELT=60
-2017-04-21 22:24:48.06      PERLND P294   DELT=60
-2017-04-21 22:24:48.18      PERLND P295   DELT=60
-2017-04-21 22:24:48.29      PERLND P296   DELT=60
-2017-04-21 22:24:48.43      IMPLND I291   DELT=60
-2017-04-21 22:24:48.46      PERLND P301   DELT=60
-2017-04-21 22:24:48.59      PERLND P302   DELT=60
-2017-04-21 22:24:48.71      PERLND P303   DELT=60
-2017-04-21 22:24:48.82      PERLND P304   DELT=60
-2017-04-21 22:24:48.93      PERLND P305   DELT=60
-2017-04-21 22:24:49.06      PERLND P306   DELT=60
-2017-04-21 22:24:49.19      IMPLND I301   DELT=60
-2017-04-21 22:24:49.24      RCHRES R201   DELT=60
-2017-04-21 22:24:49.38      RCHRES R190   DELT=60
-2017-04-21 22:24:49.50      RCHRES R202   DELT=60
-2017-04-21 22:24:49.63      RCHRES R191   DELT=60
-2017-04-21 22:24:49.79      RCHRES R203   DELT=60
-2017-04-21 22:24:49.94      RCHRES R211   DELT=60
-2017-04-21 22:24:50.05      RCHRES R212   DELT=60
-2017-04-21 22:24:50.19      RCHRES R192   DELT=60
-2017-04-21 22:24:50.33      RCHRES R204   DELT=60
-2017-04-21 22:24:50.50      RCHRES R221   DELT=60
-2017-04-21 22:24:50.66      RCHRES R222   DELT=60
-2017-04-21 22:24:50.74      RCHRES R223   DELT=60
-2017-04-21 22:24:50.91      RCHRES R193   DELT=60
-2017-04-21 22:24:51.02      RCHRES R205   DELT=60
-2017-04-21 22:24:51.17      RCHRES R225   DELT=60
-2017-04-21 22:24:51.33      RCHRES R194   DELT=60
-2017-04-21 22:24:51.42      RCHRES R206   DELT=60
-2017-04-21 22:24:51.57      RCHRES R227   DELT=60
-2017-04-21 22:24:51.74      RCHRES R207   DELT=60
-2017-04-21 22:24:51.86      RCHRES R231   DELT=60
-2017-04-21 22:24:52.00      RCHRES R232   DELT=60
-2017-04-21 22:24:52.10      RCHRES R233   DELT=60
-2017-04-21 22:24:52.24      RCHRES R241   DELT=60
-2017-04-21 22:24:52.38      RCHRES R242   DELT=60
-2017-04-21 22:24:52.47      RCHRES R243   DELT=60
-2017-04-21 22:24:52.60      RCHRES R301   DELT=60
-2017-04-21 22:24:52.75      RCHRES R311   DELT=60
-2017-04-21 22:24:52.85      RCHRES R302   DELT=60
-2017-04-21 22:24:53.00      RCHRES R303   DELT=60
-2017-04-21 22:24:53.16      RCHRES R401   DELT=60
-2017-04-21 22:24:53.30      RCHRES R411   DELT=60
-2017-04-21 22:24:53.42      RCHRES R402   DELT=60
-2017-04-21 22:24:53.57      RCHRES R421   DELT=60
-2017-04-21 22:24:53.69      RCHRES R422   DELT=60
-2017-04-21 22:24:53.80      RCHRES R423   DELT=60
-2017-04-21 22:24:53.92      RCHRES R403   DELT=60
-2017-04-21 22:24:54.07      RCHRES R431   DELT=60
-2017-04-21 22:24:54.21      RCHRES R404   DELT=60
-2017-04-21 22:24:54.34      RCHRES R441   DELT=60
-2017-04-21 22:24:54.48      RCHRES R443   DELT=60
-2017-04-21 22:24:54.59      RCHRES R442   DELT=60
-2017-04-21 22:24:54.75      RCHRES R405   DELT=60
-2017-04-21 22:24:54.90      RCHRES R406   DELT=60
-2017-04-21 22:24:55.06      RCHRES R407   DELT=60
-2017-04-21 22:24:55.21      RCHRES R408   DELT=60
-2017-04-21 22:24:55.37      RCHRES R195   DELT=60
-2017-04-21 22:24:55.46      RCHRES R304   DELT=60
-2017-04-21 22:24:55.64      RCHRES R305   DELT=60
-2017-04-21 22:24:55.81      RCHRES R306   DELT=60
-2017-04-21 22:24:55.93      RCHRES R500   DELT=60
-2017-04-21 22:24:56.04      RCHRES R501   DELT=60
-2017-04-21 22:24:56.21      RCHRES R513   DELT=60
-2017-04-21 22:24:56.36      RCHRES R514   DELT=60
-2017-04-21 22:24:56.45      RCHRES R502   DELT=60
-2017-04-21 22:24:56.72      RCHRES R510   DELT=60
-2017-04-21 22:24:56.86      RCHRES R511   DELT=60
-2017-04-21 22:24:57.06      RCHRES R512   DELT=60
-2017-04-21 22:24:57.23      RCHRES R503   DELT=60
-2017-04-21 22:24:57.50      RCHRES R523   DELT=60
-2017-04-21 22:24:57.62      RCHRES R524   DELT=60
-2017-04-21 22:24:57.72      RCHRES R525   DELT=60
-2017-04-21 22:24:57.82      RCHRES R526   DELT=60
-2017-04-21 22:24:57.93      RCHRES R521   DELT=60
-2017-04-21 22:24:58.12      RCHRES R522   DELT=60
-2017-04-21 22:24:58.29      RCHRES R531   DELT=60
-2017-04-21 22:24:58.43      RCHRES R504   DELT=60
-2017-04-21 22:24:58.55      RCHRES R505   DELT=60
-2017-04-21 22:24:58.69      RCHRES R506   DELT=60
-2017-04-21 22:24:58.83      RCHRES R541   DELT=60
-2017-04-21 22:24:58.96      RCHRES R542   DELT=60
-2017-04-21 22:24:59.10      RCHRES R307   DELT=60
-2017-04-21 22:24:59.24   Run completed
-
-
-
- -
-
- -
-
-
-
In [ ]:
-
-
-
 
-
- -
-
-
- -
-
-
-
In [5]:
-
-
-
%timeit HSP2.run(hdfname, saveall=True)
-
- -
-
-
- -
-
- - -
-
- -
-
2017-04-21 22:28:09.93   Run Started for file calleg.h5
-2017-04-21 22:28:09.95     Start 1993-10-01 00:00    Stop 2002-09-30 23:59
-2017-04-21 22:28:10.31   Finished setup
-2017-04-21 22:28:10.31      PERLND P011   DELT=60
-2017-04-21 22:28:10.46      PERLND P012   DELT=60
-2017-04-21 22:28:10.58      PERLND P013   DELT=60
-2017-04-21 22:28:10.71      PERLND P014   DELT=60
-2017-04-21 22:28:10.83      PERLND P015   DELT=60
-2017-04-21 22:28:10.94      IMPLND I011   DELT=60
-2017-04-21 22:28:11.00      PERLND P021   DELT=60
-2017-04-21 22:28:11.11      PERLND P022   DELT=60
-2017-04-21 22:28:11.22      PERLND P023   DELT=60
-2017-04-21 22:28:11.35      PERLND P024   DELT=60
-2017-04-21 22:28:11.46      PERLND P025   DELT=60
-2017-04-21 22:28:11.57      IMPLND I021   DELT=60
-2017-04-21 22:28:11.61      RCHRES R001   DELT=60
-2017-04-21 22:28:11.88      PERLND P031   DELT=60
-2017-04-21 22:28:12.00      PERLND P041   DELT=60
-2017-04-21 22:28:12.12      PERLND P042   DELT=60
-2017-04-21 22:28:12.23      PERLND P043   DELT=60
-2017-04-21 22:28:12.34      IMPLND I041   DELT=60
-2017-04-21 22:28:12.39      RCHRES R021   DELT=60
-2017-04-21 22:28:12.48      RCHRES R022   DELT=60
-2017-04-21 22:28:12.57      RCHRES R023   DELT=60
-2017-04-21 22:28:12.65      PERLND P051   DELT=60
-2017-04-21 22:28:12.78      PERLND P052   DELT=60
-2017-04-21 22:28:12.89      PERLND P053   DELT=60
-2017-04-21 22:28:13      PERLND P054   DELT=60
-2017-04-21 22:28:13.11      PERLND P055   DELT=60
-2017-04-21 22:28:13.23      IMPLND I051   DELT=60
-2017-04-21 22:28:13.26      RCHRES R011   DELT=60
-2017-04-21 22:28:13.56      RCHRES R024   DELT=60
-2017-04-21 22:28:13.67      PERLND P061   DELT=60
-2017-04-21 22:28:13.79      PERLND P062   DELT=60
-2017-04-21 22:28:13.92      IMPLND I061   DELT=60
-2017-04-21 22:28:13.96      PERLND P071   DELT=60
-2017-04-21 22:28:14.09      PERLND P072   DELT=60
-2017-04-21 22:28:14.20      PERLND P073   DELT=60
-2017-04-21 22:28:14.32      PERLND P074   DELT=60
-2017-04-21 22:28:14.43      PERLND P075   DELT=60
-2017-04-21 22:28:14.54      IMPLND I071   DELT=60
-2017-04-21 22:28:14.59      RCHRES R031   DELT=60
-2017-04-21 22:28:14.78      RCHRES R071   DELT=60
-2017-04-21 22:28:14.90      PERLND P081   DELT=60
-2017-04-21 22:28:15.03      PERLND P082   DELT=60
-2017-04-21 22:28:15.13      PERLND P083   DELT=60
-2017-04-21 22:28:15.24      PERLND P084   DELT=60
-2017-04-21 22:28:15.35      PERLND P085   DELT=60
-2017-04-21 22:28:15.48      IMPLND I081   DELT=60
-2017-04-21 22:28:15.53      PERLND P091   DELT=60
-2017-04-21 22:28:15.65      RCHRES R043   DELT=60
-2017-04-21 22:28:15.74      PERLND P101   DELT=60
-2017-04-21 22:28:15.87         Message count 30   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:28:15.87         Message count 20285   Message PWATER: Reset AGWS to zero
-2017-04-21 22:28:15.87      PERLND P102   DELT=60
-2017-04-21 22:28:15.99      IMPLND I101   DELT=60
-2017-04-21 22:28:16.04      RCHRES R041   DELT=60
-2017-04-21 22:28:16.13      RCHRES R042   DELT=60
-2017-04-21 22:28:16.24      RCHRES R044   DELT=60
-2017-04-21 22:28:16.36      PERLND P111   DELT=60
-2017-04-21 22:28:16.49      PERLND P112   DELT=60
-2017-04-21 22:28:16.60      PERLND P113   DELT=60
-2017-04-21 22:28:16.72      IMPLND I111   DELT=60
-2017-04-21 22:28:16.77      RCHRES R045   DELT=60
-2017-04-21 22:28:16.89      PERLND P121   DELT=60
-2017-04-21 22:28:17.02      PERLND P122   DELT=60
-2017-04-21 22:28:17.14      PERLND P123   DELT=60
-2017-04-21 22:28:17.27      PERLND P124   DELT=60
-2017-04-21 22:28:17.38      PERLND P125   DELT=60
-2017-04-21 22:28:17.50      IMPLND I121   DELT=60
-2017-04-21 22:28:17.55      RCHRES R002   DELT=60
-2017-04-21 22:28:18.28      RCHRES R025   DELT=60
-2017-04-21 22:28:18.58      RCHRES R003   DELT=60
-2017-04-21 22:28:18.96      RCHRES R004   DELT=60
-2017-04-21 22:28:19.25      RCHRES R904   DELT=60
-2017-04-21 22:28:19.35      PERLND P131   DELT=60
-2017-04-21 22:28:19.49      PERLND P132   DELT=60
-2017-04-21 22:28:19.60      PERLND P133   DELT=60
-2017-04-21 22:28:19.72      PERLND P134   DELT=60
-2017-04-21 22:28:19.85      PERLND P135   DELT=60
-2017-04-21 22:28:19.96      IMPLND I131   DELT=60
-2017-04-21 22:28:20.00      RCHRES R061   DELT=60
-2017-04-21 22:28:20.11      RCHRES R062   DELT=60
-2017-04-21 22:28:20.22      RCHRES R063   DELT=60
-2017-04-21 22:28:20.36      RCHRES R064   DELT=60
-2017-04-21 22:28:20.50      RCHRES R964   DELT=60
-2017-04-21 22:28:20.62      RCHRES R091   DELT=60
-2017-04-21 22:28:20.78      PERLND P141   DELT=60
-2017-04-21 22:28:20.90      PERLND P142   DELT=60
-2017-04-21 22:28:21.03      PERLND P143   DELT=60
-2017-04-21 22:28:21.14      PERLND P144   DELT=60
-2017-04-21 22:28:21.25      PERLND P145   DELT=60
-2017-04-21 22:28:21.36      IMPLND I141   DELT=60
-2017-04-21 22:28:21.40      RCHRES R005   DELT=60
-2017-04-21 22:28:22.40      RCHRES R046   DELT=60
-2017-04-21 22:28:22.61      RCHRES R065   DELT=60
-2017-04-21 22:28:22.86      RCHRES R072   DELT=60
-2017-04-21 22:28:23.06      PERLND P151   DELT=60
-2017-04-21 22:28:23.20      PERLND P152   DELT=60
-2017-04-21 22:28:23.31      IMPLND I151   DELT=60
-2017-04-21 22:28:23.36      RCHRES R051   DELT=60
-2017-04-21 22:28:23.47      RCHRES R952   DELT=60
-2017-04-21 22:28:23.58      RCHRES R052   DELT=60
-2017-04-21 22:28:23.76      RCHRES R006   DELT=60
-2017-04-21 22:28:23.90      RCHRES R081   DELT=60
-2017-04-21 22:28:24.03      PERLND P161   DELT=60
-2017-04-21 22:28:24.15      PERLND P162   DELT=60
-2017-04-21 22:28:24.29      PERLND P163   DELT=60
-2017-04-21 22:28:24.41      PERLND P164   DELT=60
-2017-04-21 22:28:24.52      PERLND P165   DELT=60
-2017-04-21 22:28:24.66      IMPLND I161   DELT=60
-2017-04-21 22:28:24.71      RCHRES R101   DELT=60
-2017-04-21 22:28:24.85      RCHRES R102   DELT=60
-2017-04-21 22:28:24.94      RCHRES R103   DELT=60
-2017-04-21 22:28:25.05      RCHRES R104   DELT=60
-2017-04-21 22:28:25.15      RCHRES R105   DELT=60
-2017-04-21 22:28:25.24      PERLND P171   DELT=60
-2017-04-21 22:28:25.37      PERLND P172   DELT=60
-2017-04-21 22:28:25.49      PERLND P173   DELT=60
-2017-04-21 22:28:25.60      PERLND P174   DELT=60
-2017-04-21 22:28:25.73      PERLND P175   DELT=60
-2017-04-21 22:28:25.85      IMPLND I171   DELT=60
-2017-04-21 22:28:25.90      PERLND P181   DELT=60
-2017-04-21 22:28:26.02      PERLND P182   DELT=60
-2017-04-21 22:28:26.15      PERLND P183   DELT=60
-2017-04-21 22:28:26.29      PERLND P184   DELT=60
-2017-04-21 22:28:26.40      PERLND P185   DELT=60
-2017-04-21 22:28:26.52         Message count 1533   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:28:26.52         Message count 71712   Message PWATER: Reset AGWS to zero
-2017-04-21 22:28:26.52      IMPLND I181   DELT=60
-2017-04-21 22:28:26.58      RCHRES R107   DELT=60
-2017-04-21 22:28:26.79      RCHRES R106   DELT=60
-2017-04-21 22:28:26.94      RCHRES R108   DELT=60
-2017-04-21 22:28:27.06      RCHRES R007   DELT=60
-2017-04-21 22:28:27.24      RCHRES R082   DELT=60
-2017-04-21 22:28:27.50      RCHRES R092   DELT=60
-2017-04-21 22:28:27.75      RCHRES R008   DELT=60
-2017-04-21 22:28:27.91      RCHRES R009   DELT=60
-2017-04-21 22:28:28.03      RCHRES R109   DELT=60
-2017-04-21 22:28:28.24      RCHRES R010   DELT=60
-2017-04-21 22:28:28.45      PERLND P191   DELT=60
-2017-04-21 22:28:28.59      PERLND P192   DELT=60
-2017-04-21 22:28:28.71      PERLND P193   DELT=60
-2017-04-21 22:28:28.84      PERLND P194   DELT=60
-2017-04-21 22:28:28.96      PERLND P195   DELT=60
-2017-04-21 22:28:29.09      IMPLND I191   DELT=60
-2017-04-21 22:28:29.13      PERLND P201   DELT=60
-2017-04-21 22:28:29.26      PERLND P202   DELT=60
-2017-04-21 22:28:29.38      PERLND P203   DELT=60
-2017-04-21 22:28:29.51      PERLND P204   DELT=60
-2017-04-21 22:28:29.63      PERLND P205   DELT=60
-2017-04-21 22:28:29.76      PERLND P206   DELT=60
-2017-04-21 22:28:29.90      IMPLND I201   DELT=60
-2017-04-21 22:28:29.95      PERLND P211   DELT=60
-2017-04-21 22:28:30.07      PERLND P212   DELT=60
-2017-04-21 22:28:30.20      PERLND P213   DELT=60
-2017-04-21 22:28:30.32      PERLND P214   DELT=60
-2017-04-21 22:28:30.43      PERLND P215   DELT=60
-2017-04-21 22:28:30.56      PERLND P216   DELT=60
-2017-04-21 22:28:30.70      IMPLND I211   DELT=60
-2017-04-21 22:28:30.74      PERLND P221   DELT=60
-2017-04-21 22:28:30.89      PERLND P222   DELT=60
-2017-04-21 22:28:30.99      PERLND P224   DELT=60
-2017-04-21 22:28:31.12      PERLND P225   DELT=60
-2017-04-21 22:28:31.24      PERLND P226   DELT=60
-2017-04-21 22:28:31.37      IMPLND I221   DELT=60
-2017-04-21 22:28:31.43      PERLND P231   DELT=60
-2017-04-21 22:28:31.54      PERLND P232   DELT=60
-2017-04-21 22:28:31.68      PERLND P234   DELT=60
-2017-04-21 22:28:31.81      PERLND P235   DELT=60
-2017-04-21 22:28:31.92      IMPLND I231   DELT=60
-2017-04-21 22:28:31.96      PERLND P241   DELT=60
-2017-04-21 22:28:32.09      PERLND P242   DELT=60
-2017-04-21 22:28:32.21      PERLND P243   DELT=60
-2017-04-21 22:28:32.33      PERLND P244   DELT=60
-2017-04-21 22:28:32.44      PERLND P245   DELT=60
-2017-04-21 22:28:32.57      IMPLND I241   DELT=60
-2017-04-21 22:28:32.61      PERLND P251   DELT=60
-2017-04-21 22:28:32.75      PERLND P252   DELT=60
-2017-04-21 22:28:32.88      PERLND P253   DELT=60
-2017-04-21 22:28:32.99      PERLND P254   DELT=60
-2017-04-21 22:28:33.11      PERLND P255   DELT=60
-2017-04-21 22:28:33.22      PERLND P256   DELT=60
-2017-04-21 22:28:33.35      IMPLND I251   DELT=60
-2017-04-21 22:28:33.39      PERLND P261   DELT=60
-2017-04-21 22:28:33.52      PERLND P266   DELT=60
-2017-04-21 22:28:33.66      PERLND P271   DELT=60
-2017-04-21 22:28:33.78      PERLND P272   DELT=60
-2017-04-21 22:28:33.91      PERLND P275   DELT=60
-2017-04-21 22:28:34.03      PERLND P276   DELT=60
-2017-04-21 22:28:34.16      IMPLND I271   DELT=60
-2017-04-21 22:28:34.21      PERLND P281   DELT=60
-2017-04-21 22:28:34.33      PERLND P282   DELT=60
-2017-04-21 22:28:34.44      PERLND P283   DELT=60
-2017-04-21 22:28:34.57      PERLND P285   DELT=60
-2017-04-21 22:28:34.69      PERLND P286   DELT=60
-2017-04-21 22:28:34.82      IMPLND I281   DELT=60
-2017-04-21 22:28:34.86      PERLND P291   DELT=60
-2017-04-21 22:28:34.99      PERLND P292   DELT=60
-2017-04-21 22:28:35.11      PERLND P293   DELT=60
-2017-04-21 22:28:35.22      PERLND P294   DELT=60
-2017-04-21 22:28:35.36      PERLND P295   DELT=60
-2017-04-21 22:28:35.47      PERLND P296   DELT=60
-2017-04-21 22:28:35.60      IMPLND I291   DELT=60
-2017-04-21 22:28:35.66      PERLND P301   DELT=60
-2017-04-21 22:28:35.79      PERLND P302   DELT=60
-2017-04-21 22:28:35.91      PERLND P303   DELT=60
-2017-04-21 22:28:36.02      PERLND P304   DELT=60
-2017-04-21 22:28:36.14      PERLND P305   DELT=60
-2017-04-21 22:28:36.25      PERLND P306   DELT=60
-2017-04-21 22:28:36.39      IMPLND I301   DELT=60
-2017-04-21 22:28:36.43      RCHRES R201   DELT=60
-2017-04-21 22:28:36.58      RCHRES R190   DELT=60
-2017-04-21 22:28:36.70      RCHRES R202   DELT=60
-2017-04-21 22:28:36.84      RCHRES R191   DELT=60
-2017-04-21 22:28:36.98      RCHRES R203   DELT=60
-2017-04-21 22:28:37.15      RCHRES R211   DELT=60
-2017-04-21 22:28:37.26      RCHRES R212   DELT=60
-2017-04-21 22:28:37.40      RCHRES R192   DELT=60
-2017-04-21 22:28:37.53      RCHRES R204   DELT=60
-2017-04-21 22:28:37.70      RCHRES R221   DELT=60
-2017-04-21 22:28:37.86      RCHRES R222   DELT=60
-2017-04-21 22:28:37.95      RCHRES R223   DELT=60
-2017-04-21 22:28:38.12      RCHRES R193   DELT=60
-2017-04-21 22:28:38.23      RCHRES R205   DELT=60
-2017-04-21 22:28:38.40      RCHRES R225   DELT=60
-2017-04-21 22:28:38.56      RCHRES R194   DELT=60
-2017-04-21 22:28:38.65      RCHRES R206   DELT=60
-2017-04-21 22:28:38.81      RCHRES R227   DELT=60
-2017-04-21 22:28:38.97      RCHRES R207   DELT=60
-2017-04-21 22:28:39.12      RCHRES R231   DELT=60
-2017-04-21 22:28:39.24      RCHRES R232   DELT=60
-2017-04-21 22:28:39.33      RCHRES R233   DELT=60
-2017-04-21 22:28:39.49      RCHRES R241   DELT=60
-2017-04-21 22:28:39.63      RCHRES R242   DELT=60
-2017-04-21 22:28:39.74      RCHRES R243   DELT=60
-2017-04-21 22:28:39.85      RCHRES R301   DELT=60
-2017-04-21 22:28:40.02      RCHRES R311   DELT=60
-2017-04-21 22:28:40.12      RCHRES R302   DELT=60
-2017-04-21 22:28:40.29      RCHRES R303   DELT=60
-2017-04-21 22:28:40.43      RCHRES R401   DELT=60
-2017-04-21 22:28:40.57      RCHRES R411   DELT=60
-2017-04-21 22:28:40.69      RCHRES R402   DELT=60
-2017-04-21 22:28:40.85      RCHRES R421   DELT=60
-2017-04-21 22:28:40.98      RCHRES R422   DELT=60
-2017-04-21 22:28:41.08      RCHRES R423   DELT=60
-2017-04-21 22:28:41.21      RCHRES R403   DELT=60
-2017-04-21 22:28:41.37      RCHRES R431   DELT=60
-2017-04-21 22:28:41.51      RCHRES R404   DELT=60
-2017-04-21 22:28:41.66      RCHRES R441   DELT=60
-2017-04-21 22:28:41.79      RCHRES R443   DELT=60
-2017-04-21 22:28:41.90      RCHRES R442   DELT=60
-2017-04-21 22:28:42.05      RCHRES R405   DELT=60
-2017-04-21 22:28:42.19      RCHRES R406   DELT=60
-2017-04-21 22:28:42.37      RCHRES R407   DELT=60
-2017-04-21 22:28:42.52      RCHRES R408   DELT=60
-2017-04-21 22:28:42.68      RCHRES R195   DELT=60
-2017-04-21 22:28:42.77      RCHRES R304   DELT=60
-2017-04-21 22:28:42.94      RCHRES R305   DELT=60
-2017-04-21 22:28:43.13      RCHRES R306   DELT=60
-2017-04-21 22:28:43.25      RCHRES R500   DELT=60
-2017-04-21 22:28:43.36      RCHRES R501   DELT=60
-2017-04-21 22:28:43.55      RCHRES R513   DELT=60
-2017-04-21 22:28:43.67      RCHRES R514   DELT=60
-2017-04-21 22:28:43.78      RCHRES R502   DELT=60
-2017-04-21 22:28:44.05      RCHRES R510   DELT=60
-2017-04-21 22:28:44.19      RCHRES R511   DELT=60
-2017-04-21 22:28:44.39      RCHRES R512   DELT=60
-2017-04-21 22:28:44.55      RCHRES R503   DELT=60
-2017-04-21 22:28:44.83      RCHRES R523   DELT=60
-2017-04-21 22:28:44.95      RCHRES R524   DELT=60
-2017-04-21 22:28:45.05      RCHRES R525   DELT=60
-2017-04-21 22:28:45.16      RCHRES R526   DELT=60
-2017-04-21 22:28:45.25      RCHRES R521   DELT=60
-2017-04-21 22:28:45.42      RCHRES R522   DELT=60
-2017-04-21 22:28:45.59      RCHRES R531   DELT=60
-2017-04-21 22:28:45.74      RCHRES R504   DELT=60
-2017-04-21 22:28:45.86      RCHRES R505   DELT=60
-2017-04-21 22:28:45.99      RCHRES R506   DELT=60
-2017-04-21 22:28:46.11      RCHRES R541   DELT=60
-2017-04-21 22:28:46.24      RCHRES R542   DELT=60
-2017-04-21 22:28:46.38      RCHRES R307   DELT=60
-2017-04-21 22:28:46.52   Run completed
-2017-04-21 22:28:47.22   Run Started for file calleg.h5
-2017-04-21 22:28:47.23     Start 1993-10-01 00:00    Stop 2002-09-30 23:59
-2017-04-21 22:28:47.59   Finished setup
-2017-04-21 22:28:47.61      PERLND P011   DELT=60
-2017-04-21 22:28:47.73      PERLND P012   DELT=60
-2017-04-21 22:28:47.84      PERLND P013   DELT=60
-2017-04-21 22:28:47.95      PERLND P014   DELT=60
-2017-04-21 22:28:48.06      PERLND P015   DELT=60
-2017-04-21 22:28:48.17      IMPLND I011   DELT=60
-2017-04-21 22:28:48.22      PERLND P021   DELT=60
-2017-04-21 22:28:48.34      PERLND P022   DELT=60
-2017-04-21 22:28:48.45      PERLND P023   DELT=60
-2017-04-21 22:28:48.56      PERLND P024   DELT=60
-2017-04-21 22:28:48.67      PERLND P025   DELT=60
-2017-04-21 22:28:48.78      IMPLND I021   DELT=60
-2017-04-21 22:28:48.83      RCHRES R001   DELT=60
-2017-04-21 22:28:49.09      PERLND P031   DELT=60
-2017-04-21 22:28:49.21      PERLND P041   DELT=60
-2017-04-21 22:28:49.34      PERLND P042   DELT=60
-2017-04-21 22:28:49.46      PERLND P043   DELT=60
-2017-04-21 22:28:49.56      IMPLND I041   DELT=60
-2017-04-21 22:28:49.61      RCHRES R021   DELT=60
-2017-04-21 22:28:49.69      RCHRES R022   DELT=60
-2017-04-21 22:28:49.78      RCHRES R023   DELT=60
-2017-04-21 22:28:49.88      PERLND P051   DELT=60
-2017-04-21 22:28:49.99      PERLND P052   DELT=60
-2017-04-21 22:28:50.10      PERLND P053   DELT=60
-2017-04-21 22:28:50.21      PERLND P054   DELT=60
-2017-04-21 22:28:50.33      PERLND P055   DELT=60
-2017-04-21 22:28:50.44      IMPLND I051   DELT=60
-2017-04-21 22:28:50.49      RCHRES R011   DELT=60
-2017-04-21 22:28:50.75      RCHRES R024   DELT=60
-2017-04-21 22:28:50.88      PERLND P061   DELT=60
-2017-04-21 22:28:51.00      PERLND P062   DELT=60
-2017-04-21 22:28:51.12      IMPLND I061   DELT=60
-2017-04-21 22:28:51.15      PERLND P071   DELT=60
-2017-04-21 22:28:51.28      PERLND P072   DELT=60
-2017-04-21 22:28:51.39      PERLND P073   DELT=60
-2017-04-21 22:28:51.50      PERLND P074   DELT=60
-2017-04-21 22:28:51.60      PERLND P075   DELT=60
-2017-04-21 22:28:51.71      IMPLND I071   DELT=60
-2017-04-21 22:28:51.76      RCHRES R031   DELT=60
-2017-04-21 22:28:51.95      RCHRES R071   DELT=60
-2017-04-21 22:28:52.06      PERLND P081   DELT=60
-2017-04-21 22:28:52.18      PERLND P082   DELT=60
-2017-04-21 22:28:52.29      PERLND P083   DELT=60
-2017-04-21 22:28:52.42      PERLND P084   DELT=60
-2017-04-21 22:28:52.53      PERLND P085   DELT=60
-2017-04-21 22:28:52.64      IMPLND I081   DELT=60
-2017-04-21 22:28:52.68      PERLND P091   DELT=60
-2017-04-21 22:28:52.81      RCHRES R043   DELT=60
-2017-04-21 22:28:52.90      PERLND P101   DELT=60
-2017-04-21 22:28:53.03         Message count 30   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:28:53.03         Message count 20285   Message PWATER: Reset AGWS to zero
-2017-04-21 22:28:53.03      PERLND P102   DELT=60
-2017-04-21 22:28:53.15      IMPLND I101   DELT=60
-2017-04-21 22:28:53.20      RCHRES R041   DELT=60
-2017-04-21 22:28:53.28      RCHRES R042   DELT=60
-2017-04-21 22:28:53.40      RCHRES R044   DELT=60
-2017-04-21 22:28:53.50      PERLND P111   DELT=60
-2017-04-21 22:28:53.64      PERLND P112   DELT=60
-2017-04-21 22:28:53.82      PERLND P113   DELT=60
-2017-04-21 22:28:54.01      IMPLND I111   DELT=60
-2017-04-21 22:28:54.07      RCHRES R045   DELT=60
-2017-04-21 22:28:54.26      PERLND P121   DELT=60
-2017-04-21 22:28:54.45      PERLND P122   DELT=60
-2017-04-21 22:28:54.57      PERLND P123   DELT=60
-2017-04-21 22:28:54.68      PERLND P124   DELT=60
-2017-04-21 22:28:54.79      PERLND P125   DELT=60
-2017-04-21 22:28:54.92      IMPLND I121   DELT=60
-2017-04-21 22:28:54.95      RCHRES R002   DELT=60
-2017-04-21 22:28:55.66      RCHRES R025   DELT=60
-2017-04-21 22:28:55.96      RCHRES R003   DELT=60
-2017-04-21 22:28:56.30      RCHRES R004   DELT=60
-2017-04-21 22:28:56.57      RCHRES R904   DELT=60
-2017-04-21 22:28:56.66      PERLND P131   DELT=60
-2017-04-21 22:28:56.79      PERLND P132   DELT=60
-2017-04-21 22:28:56.91      PERLND P133   DELT=60
-2017-04-21 22:28:57.02      PERLND P134   DELT=60
-2017-04-21 22:28:57.14      PERLND P135   DELT=60
-2017-04-21 22:28:57.27      IMPLND I131   DELT=60
-2017-04-21 22:28:57.30      RCHRES R061   DELT=60
-2017-04-21 22:28:57.41      RCHRES R062   DELT=60
-2017-04-21 22:28:57.52      RCHRES R063   DELT=60
-2017-04-21 22:28:57.64      RCHRES R064   DELT=60
-2017-04-21 22:28:57.79      RCHRES R964   DELT=60
-2017-04-21 22:28:57.89      RCHRES R091   DELT=60
-2017-04-21 22:28:58.05      PERLND P141   DELT=60
-2017-04-21 22:28:58.18      PERLND P142   DELT=60
-2017-04-21 22:28:58.30      PERLND P143   DELT=60
-2017-04-21 22:28:58.41      PERLND P144   DELT=60
-2017-04-21 22:28:58.54      PERLND P145   DELT=60
-2017-04-21 22:28:58.64      IMPLND I141   DELT=60
-2017-04-21 22:28:58.69      RCHRES R005   DELT=60
-2017-04-21 22:28:59.69      RCHRES R046   DELT=60
-2017-04-21 22:28:59.90      RCHRES R065   DELT=60
-2017-04-21 22:29:00.15      RCHRES R072   DELT=60
-2017-04-21 22:29:00.34      PERLND P151   DELT=60
-2017-04-21 22:29:00.47      PERLND P152   DELT=60
-2017-04-21 22:29:00.59      IMPLND I151   DELT=60
-2017-04-21 22:29:00.64      RCHRES R051   DELT=60
-2017-04-21 22:29:00.73      RCHRES R952   DELT=60
-2017-04-21 22:29:00.84      RCHRES R052   DELT=60
-2017-04-21 22:29:01.03      RCHRES R006   DELT=60
-2017-04-21 22:29:01.19      RCHRES R081   DELT=60
-2017-04-21 22:29:01.30      PERLND P161   DELT=60
-2017-04-21 22:29:01.44      PERLND P162   DELT=60
-2017-04-21 22:29:01.55      PERLND P163   DELT=60
-2017-04-21 22:29:01.67      PERLND P164   DELT=60
-2017-04-21 22:29:01.78      PERLND P165   DELT=60
-2017-04-21 22:29:01.89      IMPLND I161   DELT=60
-2017-04-21 22:29:01.94      RCHRES R101   DELT=60
-2017-04-21 22:29:02.08      RCHRES R102   DELT=60
-2017-04-21 22:29:02.17      RCHRES R103   DELT=60
-2017-04-21 22:29:02.28      RCHRES R104   DELT=60
-2017-04-21 22:29:02.37      RCHRES R105   DELT=60
-2017-04-21 22:29:02.45      PERLND P171   DELT=60
-2017-04-21 22:29:02.59      PERLND P172   DELT=60
-2017-04-21 22:29:02.72      PERLND P173   DELT=60
-2017-04-21 22:29:02.84      PERLND P174   DELT=60
-2017-04-21 22:29:02.95      PERLND P175   DELT=60
-2017-04-21 22:29:03.08      IMPLND I171   DELT=60
-2017-04-21 22:29:03.14      PERLND P181   DELT=60
-2017-04-21 22:29:03.25      PERLND P182   DELT=60
-2017-04-21 22:29:03.37      PERLND P183   DELT=60
-2017-04-21 22:29:03.50      PERLND P184   DELT=60
-2017-04-21 22:29:03.62      PERLND P185   DELT=60
-2017-04-21 22:29:03.75         Message count 1533   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:29:03.75         Message count 71712   Message PWATER: Reset AGWS to zero
-2017-04-21 22:29:03.75      IMPLND I181   DELT=60
-2017-04-21 22:29:03.80      RCHRES R107   DELT=60
-2017-04-21 22:29:04.01      RCHRES R106   DELT=60
-2017-04-21 22:29:04.17      RCHRES R108   DELT=60
-2017-04-21 22:29:04.28      RCHRES R007   DELT=60
-2017-04-21 22:29:04.45      RCHRES R082   DELT=60
-2017-04-21 22:29:04.70      RCHRES R092   DELT=60
-2017-04-21 22:29:04.94      RCHRES R008   DELT=60
-2017-04-21 22:29:05.11      RCHRES R009   DELT=60
-2017-04-21 22:29:05.23      RCHRES R109   DELT=60
-2017-04-21 22:29:05.45      RCHRES R010   DELT=60
-2017-04-21 22:29:05.65      PERLND P191   DELT=60
-2017-04-21 22:29:05.80      PERLND P192   DELT=60
-2017-04-21 22:29:05.92      PERLND P193   DELT=60
-2017-04-21 22:29:06.05      PERLND P194   DELT=60
-2017-04-21 22:29:06.17      PERLND P195   DELT=60
-2017-04-21 22:29:06.28      IMPLND I191   DELT=60
-2017-04-21 22:29:06.34      PERLND P201   DELT=60
-2017-04-21 22:29:06.47      PERLND P202   DELT=60
-2017-04-21 22:29:06.59      PERLND P203   DELT=60
-2017-04-21 22:29:06.72      PERLND P204   DELT=60
-2017-04-21 22:29:06.84      PERLND P205   DELT=60
-2017-04-21 22:29:06.97      PERLND P206   DELT=60
-2017-04-21 22:29:07.11      IMPLND I201   DELT=60
-2017-04-21 22:29:07.15      PERLND P211   DELT=60
-2017-04-21 22:29:07.29      PERLND P212   DELT=60
-2017-04-21 22:29:07.40      PERLND P213   DELT=60
-2017-04-21 22:29:07.52      PERLND P214   DELT=60
-2017-04-21 22:29:07.65      PERLND P215   DELT=60
-2017-04-21 22:29:07.77      PERLND P216   DELT=60
-2017-04-21 22:29:07.90      IMPLND I211   DELT=60
-2017-04-21 22:29:07.95      PERLND P221   DELT=60
-2017-04-21 22:29:08.09      PERLND P222   DELT=60
-2017-04-21 22:29:08.21      PERLND P224   DELT=60
-2017-04-21 22:29:08.32      PERLND P225   DELT=60
-2017-04-21 22:29:08.43      PERLND P226   DELT=60
-2017-04-21 22:29:08.57      IMPLND I221   DELT=60
-2017-04-21 22:29:08.62      PERLND P231   DELT=60
-2017-04-21 22:29:08.74      PERLND P232   DELT=60
-2017-04-21 22:29:08.87      PERLND P234   DELT=60
-2017-04-21 22:29:08.98      PERLND P235   DELT=60
-2017-04-21 22:29:09.11      IMPLND I231   DELT=60
-2017-04-21 22:29:09.14      PERLND P241   DELT=60
-2017-04-21 22:29:09.27      PERLND P242   DELT=60
-2017-04-21 22:29:09.39      PERLND P243   DELT=60
-2017-04-21 22:29:09.52      PERLND P244   DELT=60
-2017-04-21 22:29:09.63      PERLND P245   DELT=60
-2017-04-21 22:29:09.75      IMPLND I241   DELT=60
-2017-04-21 22:29:09.80      PERLND P251   DELT=60
-2017-04-21 22:29:09.92      PERLND P252   DELT=60
-2017-04-21 22:29:10.03      PERLND P253   DELT=60
-2017-04-21 22:29:10.16      PERLND P254   DELT=60
-2017-04-21 22:29:10.27      PERLND P255   DELT=60
-2017-04-21 22:29:10.38      PERLND P256   DELT=60
-2017-04-21 22:29:10.50      IMPLND I251   DELT=60
-2017-04-21 22:29:10.55      PERLND P261   DELT=60
-2017-04-21 22:29:10.67      PERLND P266   DELT=60
-2017-04-21 22:29:10.83      PERLND P271   DELT=60
-2017-04-21 22:29:10.96      PERLND P272   DELT=60
-2017-04-21 22:29:11.07      PERLND P275   DELT=60
-2017-04-21 22:29:11.17      PERLND P276   DELT=60
-2017-04-21 22:29:11.31      IMPLND I271   DELT=60
-2017-04-21 22:29:11.36      PERLND P281   DELT=60
-2017-04-21 22:29:11.48      PERLND P282   DELT=60
-2017-04-21 22:29:11.59      PERLND P283   DELT=60
-2017-04-21 22:29:11.72      PERLND P285   DELT=60
-2017-04-21 22:29:11.83      PERLND P286   DELT=60
-2017-04-21 22:29:11.96      IMPLND I281   DELT=60
-2017-04-21 22:29:12.01      PERLND P291   DELT=60
-2017-04-21 22:29:12.14      PERLND P292   DELT=60
-2017-04-21 22:29:12.25      PERLND P293   DELT=60
-2017-04-21 22:29:12.37      PERLND P294   DELT=60
-2017-04-21 22:29:12.48      PERLND P295   DELT=60
-2017-04-21 22:29:12.59      PERLND P296   DELT=60
-2017-04-21 22:29:12.73      IMPLND I291   DELT=60
-2017-04-21 22:29:12.78      PERLND P301   DELT=60
-2017-04-21 22:29:12.89      PERLND P302   DELT=60
-2017-04-21 22:29:13.01      PERLND P303   DELT=60
-2017-04-21 22:29:13.12      PERLND P304   DELT=60
-2017-04-21 22:29:13.25      PERLND P305   DELT=60
-2017-04-21 22:29:13.35      PERLND P306   DELT=60
-2017-04-21 22:29:13.50      IMPLND I301   DELT=60
-2017-04-21 22:29:13.54      RCHRES R201   DELT=60
-2017-04-21 22:29:13.68      RCHRES R190   DELT=60
-2017-04-21 22:29:13.79      RCHRES R202   DELT=60
-2017-04-21 22:29:13.93      RCHRES R191   DELT=60
-2017-04-21 22:29:14.07      RCHRES R203   DELT=60
-2017-04-21 22:29:14.24      RCHRES R211   DELT=60
-2017-04-21 22:29:14.35      RCHRES R212   DELT=60
-2017-04-21 22:29:14.49      RCHRES R192   DELT=60
-2017-04-21 22:29:14.61      RCHRES R204   DELT=60
-2017-04-21 22:29:14.79      RCHRES R221   DELT=60
-2017-04-21 22:29:14.96      RCHRES R222   DELT=60
-2017-04-21 22:29:15.05      RCHRES R223   DELT=60
-2017-04-21 22:29:15.21      RCHRES R193   DELT=60
-2017-04-21 22:29:15.32      RCHRES R205   DELT=60
-2017-04-21 22:29:15.49      RCHRES R225   DELT=60
-2017-04-21 22:29:15.63      RCHRES R194   DELT=60
-2017-04-21 22:29:15.74      RCHRES R206   DELT=60
-2017-04-21 22:29:15.90      RCHRES R227   DELT=60
-2017-04-21 22:29:16.04      RCHRES R207   DELT=60
-2017-04-21 22:29:16.18      RCHRES R231   DELT=60
-2017-04-21 22:29:16.32      RCHRES R232   DELT=60
-2017-04-21 22:29:16.41      RCHRES R233   DELT=60
-2017-04-21 22:29:16.55      RCHRES R241   DELT=60
-2017-04-21 22:29:16.69      RCHRES R242   DELT=60
-2017-04-21 22:29:16.80      RCHRES R243   DELT=60
-2017-04-21 22:29:16.91      RCHRES R301   DELT=60
-2017-04-21 22:29:17.08      RCHRES R311   DELT=60
-2017-04-21 22:29:17.18      RCHRES R302   DELT=60
-2017-04-21 22:29:17.35      RCHRES R303   DELT=60
-2017-04-21 22:29:17.49      RCHRES R401   DELT=60
-2017-04-21 22:29:17.65      RCHRES R411   DELT=60
-2017-04-21 22:29:17.77      RCHRES R402   DELT=60
-2017-04-21 22:29:17.91      RCHRES R421   DELT=60
-2017-04-21 22:29:18.05      RCHRES R422   DELT=60
-2017-04-21 22:29:18.14      RCHRES R423   DELT=60
-2017-04-21 22:29:18.27      RCHRES R403   DELT=60
-2017-04-21 22:29:18.42      RCHRES R431   DELT=60
-2017-04-21 22:29:18.56      RCHRES R404   DELT=60
-2017-04-21 22:29:18.70      RCHRES R441   DELT=60
-2017-04-21 22:29:18.84      RCHRES R443   DELT=60
-2017-04-21 22:29:18.95      RCHRES R442   DELT=60
-2017-04-21 22:29:19.11      RCHRES R405   DELT=60
-2017-04-21 22:29:19.25      RCHRES R406   DELT=60
-2017-04-21 22:29:19.41      RCHRES R407   DELT=60
-2017-04-21 22:29:19.58      RCHRES R408   DELT=60
-2017-04-21 22:29:19.73      RCHRES R195   DELT=60
-2017-04-21 22:29:19.83      RCHRES R304   DELT=60
-2017-04-21 22:29:20.00      RCHRES R305   DELT=60
-2017-04-21 22:29:20.17      RCHRES R306   DELT=60
-2017-04-21 22:29:20.31      RCHRES R500   DELT=60
-2017-04-21 22:29:20.44      RCHRES R501   DELT=60
-2017-04-21 22:29:20.59      RCHRES R513   DELT=60
-2017-04-21 22:29:20.73      RCHRES R514   DELT=60
-2017-04-21 22:29:20.84      RCHRES R502   DELT=60
-2017-04-21 22:29:21.09      RCHRES R510   DELT=60
-2017-04-21 22:29:21.25      RCHRES R511   DELT=60
-2017-04-21 22:29:21.45      RCHRES R512   DELT=60
-2017-04-21 22:29:21.62      RCHRES R503   DELT=60
-2017-04-21 22:29:21.91      RCHRES R523   DELT=60
-2017-04-21 22:29:22.03      RCHRES R524   DELT=60
-2017-04-21 22:29:22.13      RCHRES R525   DELT=60
-2017-04-21 22:29:22.24      RCHRES R526   DELT=60
-2017-04-21 22:29:22.35      RCHRES R521   DELT=60
-2017-04-21 22:29:22.51      RCHRES R522   DELT=60
-2017-04-21 22:29:22.71      RCHRES R531   DELT=60
-2017-04-21 22:29:22.85      RCHRES R504   DELT=60
-2017-04-21 22:29:22.99      RCHRES R505   DELT=60
-2017-04-21 22:29:23.13      RCHRES R506   DELT=60
-2017-04-21 22:29:23.26      RCHRES R541   DELT=60
-2017-04-21 22:29:23.37      RCHRES R542   DELT=60
-2017-04-21 22:29:23.51      RCHRES R307   DELT=60
-2017-04-21 22:29:23.65   Run completed
-2017-04-21 22:29:24.45   Run Started for file calleg.h5
-2017-04-21 22:29:24.46     Start 1993-10-01 00:00    Stop 2002-09-30 23:59
-2017-04-21 22:29:24.82   Finished setup
-2017-04-21 22:29:24.82      PERLND P011   DELT=60
-2017-04-21 22:29:24.95      PERLND P012   DELT=60
-2017-04-21 22:29:25.06      PERLND P013   DELT=60
-2017-04-21 22:29:25.17      PERLND P014   DELT=60
-2017-04-21 22:29:25.28      PERLND P015   DELT=60
-2017-04-21 22:29:25.40      IMPLND I011   DELT=60
-2017-04-21 22:29:25.43      PERLND P021   DELT=60
-2017-04-21 22:29:25.56      PERLND P022   DELT=60
-2017-04-21 22:29:25.67      PERLND P023   DELT=60
-2017-04-21 22:29:25.79      PERLND P024   DELT=60
-2017-04-21 22:29:25.90      PERLND P025   DELT=60
-2017-04-21 22:29:26.01      IMPLND I021   DELT=60
-2017-04-21 22:29:26.06      RCHRES R001   DELT=60
-2017-04-21 22:29:26.30      PERLND P031   DELT=60
-2017-04-21 22:29:26.43      PERLND P041   DELT=60
-2017-04-21 22:29:26.55      PERLND P042   DELT=60
-2017-04-21 22:29:26.66      PERLND P043   DELT=60
-2017-04-21 22:29:26.77      IMPLND I041   DELT=60
-2017-04-21 22:29:26.82      RCHRES R021   DELT=60
-2017-04-21 22:29:26.90      RCHRES R022   DELT=60
-2017-04-21 22:29:26.99      RCHRES R023   DELT=60
-2017-04-21 22:29:27.07      PERLND P051   DELT=60
-2017-04-21 22:29:27.20      PERLND P052   DELT=60
-2017-04-21 22:29:27.30      PERLND P053   DELT=60
-2017-04-21 22:29:27.43      PERLND P054   DELT=60
-2017-04-21 22:29:27.52      PERLND P055   DELT=60
-2017-04-21 22:29:27.65      IMPLND I051   DELT=60
-2017-04-21 22:29:27.70      RCHRES R011   DELT=60
-2017-04-21 22:29:27.96      RCHRES R024   DELT=60
-2017-04-21 22:29:28.09      PERLND P061   DELT=60
-2017-04-21 22:29:28.21      PERLND P062   DELT=60
-2017-04-21 22:29:28.32      IMPLND I061   DELT=60
-2017-04-21 22:29:28.37      PERLND P071   DELT=60
-2017-04-21 22:29:28.49      PERLND P072   DELT=60
-2017-04-21 22:29:28.60      PERLND P073   DELT=60
-2017-04-21 22:29:28.73      PERLND P074   DELT=60
-2017-04-21 22:29:28.84      PERLND P075   DELT=60
-2017-04-21 22:29:28.95      IMPLND I071   DELT=60
-2017-04-21 22:29:28.99      RCHRES R031   DELT=60
-2017-04-21 22:29:29.16      RCHRES R071   DELT=60
-2017-04-21 22:29:29.27      PERLND P081   DELT=60
-2017-04-21 22:29:29.40      PERLND P082   DELT=60
-2017-04-21 22:29:29.51      PERLND P083   DELT=60
-2017-04-21 22:29:29.63      PERLND P084   DELT=60
-2017-04-21 22:29:29.74      PERLND P085   DELT=60
-2017-04-21 22:29:29.87      IMPLND I081   DELT=60
-2017-04-21 22:29:29.91      PERLND P091   DELT=60
-2017-04-21 22:29:30.02      RCHRES R043   DELT=60
-2017-04-21 22:29:30.13      PERLND P101   DELT=60
-2017-04-21 22:29:30.24         Message count 30   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:29:30.24         Message count 20285   Message PWATER: Reset AGWS to zero
-2017-04-21 22:29:30.24      PERLND P102   DELT=60
-2017-04-21 22:29:30.37      IMPLND I101   DELT=60
-2017-04-21 22:29:30.41      RCHRES R041   DELT=60
-2017-04-21 22:29:30.49      RCHRES R042   DELT=60
-2017-04-21 22:29:30.60      RCHRES R044   DELT=60
-2017-04-21 22:29:30.76      PERLND P111   DELT=60
-2017-04-21 22:29:30.98      PERLND P112   DELT=60
-2017-04-21 22:29:31.16      PERLND P113   DELT=60
-2017-04-21 22:29:31.37      IMPLND I111   DELT=60
-2017-04-21 22:29:31.41      RCHRES R045   DELT=60
-2017-04-21 22:29:31.54      PERLND P121   DELT=60
-2017-04-21 22:29:31.68      PERLND P122   DELT=60
-2017-04-21 22:29:31.79      PERLND P123   DELT=60
-2017-04-21 22:29:31.91      PERLND P124   DELT=60
-2017-04-21 22:29:32.02      PERLND P125   DELT=60
-2017-04-21 22:29:32.13      IMPLND I121   DELT=60
-2017-04-21 22:29:32.18      RCHRES R002   DELT=60
-2017-04-21 22:29:32.87      RCHRES R025   DELT=60
-2017-04-21 22:29:33.15      RCHRES R003   DELT=60
-2017-04-21 22:29:33.48      RCHRES R004   DELT=60
-2017-04-21 22:29:33.74      RCHRES R904   DELT=60
-2017-04-21 22:29:33.84      PERLND P131   DELT=60
-2017-04-21 22:29:33.96      PERLND P132   DELT=60
-2017-04-21 22:29:34.07      PERLND P133   DELT=60
-2017-04-21 22:29:34.21      PERLND P134   DELT=60
-2017-04-21 22:29:34.32      PERLND P135   DELT=60
-2017-04-21 22:29:34.42      IMPLND I131   DELT=60
-2017-04-21 22:29:34.47      RCHRES R061   DELT=60
-2017-04-21 22:29:34.57      RCHRES R062   DELT=60
-2017-04-21 22:29:34.67      RCHRES R063   DELT=60
-2017-04-21 22:29:34.80      RCHRES R064   DELT=60
-2017-04-21 22:29:34.94      RCHRES R964   DELT=60
-2017-04-21 22:29:35.06      RCHRES R091   DELT=60
-2017-04-21 22:29:35.22      PERLND P141   DELT=60
-2017-04-21 22:29:35.35      PERLND P142   DELT=60
-2017-04-21 22:29:35.46      PERLND P143   DELT=60
-2017-04-21 22:29:35.58      PERLND P144   DELT=60
-2017-04-21 22:29:35.69      PERLND P145   DELT=60
-2017-04-21 22:29:35.80      IMPLND I141   DELT=60
-2017-04-21 22:29:35.85      RCHRES R005   DELT=60
-2017-04-21 22:29:36.83      RCHRES R046   DELT=60
-2017-04-21 22:29:37.04      RCHRES R065   DELT=60
-2017-04-21 22:29:37.27      RCHRES R072   DELT=60
-2017-04-21 22:29:37.46      PERLND P151   DELT=60
-2017-04-21 22:29:37.58      PERLND P152   DELT=60
-2017-04-21 22:29:37.71      IMPLND I151   DELT=60
-2017-04-21 22:29:37.76      RCHRES R051   DELT=60
-2017-04-21 22:29:37.87      RCHRES R952   DELT=60
-2017-04-21 22:29:37.97      RCHRES R052   DELT=60
-2017-04-21 22:29:38.17      RCHRES R006   DELT=60
-2017-04-21 22:29:38.31      RCHRES R081   DELT=60
-2017-04-21 22:29:38.44      PERLND P161   DELT=60
-2017-04-21 22:29:38.55      PERLND P162   DELT=60
-2017-04-21 22:29:38.67      PERLND P163   DELT=60
-2017-04-21 22:29:38.78      PERLND P164   DELT=60
-2017-04-21 22:29:38.89      PERLND P165   DELT=60
-2017-04-21 22:29:39.02      IMPLND I161   DELT=60
-2017-04-21 22:29:39.06      RCHRES R101   DELT=60
-2017-04-21 22:29:39.19      RCHRES R102   DELT=60
-2017-04-21 22:29:39.28      RCHRES R103   DELT=60
-2017-04-21 22:29:39.39      RCHRES R104   DELT=60
-2017-04-21 22:29:39.48      RCHRES R105   DELT=60
-2017-04-21 22:29:39.58      PERLND P171   DELT=60
-2017-04-21 22:29:39.70      PERLND P172   DELT=60
-2017-04-21 22:29:39.81      PERLND P173   DELT=60
-2017-04-21 22:29:39.94      PERLND P174   DELT=60
-2017-04-21 22:29:40.05      PERLND P175   DELT=60
-2017-04-21 22:29:40.16      IMPLND I171   DELT=60
-2017-04-21 22:29:40.20      PERLND P181   DELT=60
-2017-04-21 22:29:40.31      PERLND P182   DELT=60
-2017-04-21 22:29:40.44      PERLND P183   DELT=60
-2017-04-21 22:29:40.55      PERLND P184   DELT=60
-2017-04-21 22:29:40.66      PERLND P185   DELT=60
-2017-04-21 22:29:40.78         Message count 1533   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:29:40.78         Message count 71712   Message PWATER: Reset AGWS to zero
-2017-04-21 22:29:40.78      IMPLND I181   DELT=60
-2017-04-21 22:29:40.83      RCHRES R107   DELT=60
-2017-04-21 22:29:41.04      RCHRES R106   DELT=60
-2017-04-21 22:29:41.19      RCHRES R108   DELT=60
-2017-04-21 22:29:41.30      RCHRES R007   DELT=60
-2017-04-21 22:29:41.47      RCHRES R082   DELT=60
-2017-04-21 22:29:41.72      RCHRES R092   DELT=60
-2017-04-21 22:29:41.96      RCHRES R008   DELT=60
-2017-04-21 22:29:42.12      RCHRES R009   DELT=60
-2017-04-21 22:29:42.25      RCHRES R109   DELT=60
-2017-04-21 22:29:42.44      RCHRES R010   DELT=60
-2017-04-21 22:29:42.64      PERLND P191   DELT=60
-2017-04-21 22:29:42.79      PERLND P192   DELT=60
-2017-04-21 22:29:42.91      PERLND P193   DELT=60
-2017-04-21 22:29:43.04      PERLND P194   DELT=60
-2017-04-21 22:29:43.16      PERLND P195   DELT=60
-2017-04-21 22:29:43.29      IMPLND I191   DELT=60
-2017-04-21 22:29:43.35      PERLND P201   DELT=60
-2017-04-21 22:29:43.47      PERLND P202   DELT=60
-2017-04-21 22:29:43.61      PERLND P203   DELT=60
-2017-04-21 22:29:43.74      PERLND P204   DELT=60
-2017-04-21 22:29:43.88      PERLND P205   DELT=60
-2017-04-21 22:29:44.00      PERLND P206   DELT=60
-2017-04-21 22:29:44.13      IMPLND I201   DELT=60
-2017-04-21 22:29:44.19      PERLND P211   DELT=60
-2017-04-21 22:29:44.32      PERLND P212   DELT=60
-2017-04-21 22:29:44.44      PERLND P213   DELT=60
-2017-04-21 22:29:44.57      PERLND P214   DELT=60
-2017-04-21 22:29:44.69      PERLND P215   DELT=60
-2017-04-21 22:29:44.83      PERLND P216   DELT=60
-2017-04-21 22:29:44.97      IMPLND I211   DELT=60
-2017-04-21 22:29:45.02      PERLND P221   DELT=60
-2017-04-21 22:29:45.16      PERLND P222   DELT=60
-2017-04-21 22:29:45.27      PERLND P224   DELT=60
-2017-04-21 22:29:45.40      PERLND P225   DELT=60
-2017-04-21 22:29:45.52      PERLND P226   DELT=60
-2017-04-21 22:29:45.66      IMPLND I221   DELT=60
-2017-04-21 22:29:45.71      PERLND P231   DELT=60
-2017-04-21 22:29:45.83      PERLND P232   DELT=60
-2017-04-21 22:29:45.96      PERLND P234   DELT=60
-2017-04-21 22:29:46.08      PERLND P235   DELT=60
-2017-04-21 22:29:46.22      IMPLND I231   DELT=60
-2017-04-21 22:29:46.28      PERLND P241   DELT=60
-2017-04-21 22:29:46.40      PERLND P242   DELT=60
-2017-04-21 22:29:46.53      PERLND P243   DELT=60
-2017-04-21 22:29:46.64      PERLND P244   DELT=60
-2017-04-21 22:29:46.76      PERLND P245   DELT=60
-2017-04-21 22:29:46.87      IMPLND I241   DELT=60
-2017-04-21 22:29:46.92      PERLND P251   DELT=60
-2017-04-21 22:29:47.04      PERLND P252   DELT=60
-2017-04-21 22:29:47.17      PERLND P253   DELT=60
-2017-04-21 22:29:47.28      PERLND P254   DELT=60
-2017-04-21 22:29:47.40      PERLND P255   DELT=60
-2017-04-21 22:29:47.53      PERLND P256   DELT=60
-2017-04-21 22:29:47.67      IMPLND I251   DELT=60
-2017-04-21 22:29:47.72      PERLND P261   DELT=60
-2017-04-21 22:29:47.86      PERLND P266   DELT=60
-2017-04-21 22:29:47.98      PERLND P271   DELT=60
-2017-04-21 22:29:48.11      PERLND P272   DELT=60
-2017-04-21 22:29:48.23      PERLND P275   DELT=60
-2017-04-21 22:29:48.36      PERLND P276   DELT=60
-2017-04-21 22:29:48.48      IMPLND I271   DELT=60
-2017-04-21 22:29:48.53      PERLND P281   DELT=60
-2017-04-21 22:29:48.67      PERLND P282   DELT=60
-2017-04-21 22:29:48.78      PERLND P283   DELT=60
-2017-04-21 22:29:48.89      PERLND P285   DELT=60
-2017-04-21 22:29:49.01      PERLND P286   DELT=60
-2017-04-21 22:29:49.15      IMPLND I281   DELT=60
-2017-04-21 22:29:49.20      PERLND P291   DELT=60
-2017-04-21 22:29:49.32      PERLND P292   DELT=60
-2017-04-21 22:29:49.43      PERLND P293   DELT=60
-2017-04-21 22:29:49.54      PERLND P294   DELT=60
-2017-04-21 22:29:49.68      PERLND P295   DELT=60
-2017-04-21 22:29:49.79      PERLND P296   DELT=60
-2017-04-21 22:29:49.92      IMPLND I291   DELT=60
-2017-04-21 22:29:49.96      PERLND P301   DELT=60
-2017-04-21 22:29:50.09      PERLND P302   DELT=60
-2017-04-21 22:29:50.20      PERLND P303   DELT=60
-2017-04-21 22:29:50.32      PERLND P304   DELT=60
-2017-04-21 22:29:50.45      PERLND P305   DELT=60
-2017-04-21 22:29:50.56      PERLND P306   DELT=60
-2017-04-21 22:29:50.68      IMPLND I301   DELT=60
-2017-04-21 22:29:50.73      RCHRES R201   DELT=60
-2017-04-21 22:29:50.88      RCHRES R190   DELT=60
-2017-04-21 22:29:50.99      RCHRES R202   DELT=60
-2017-04-21 22:29:51.13      RCHRES R191   DELT=60
-2017-04-21 22:29:51.28      RCHRES R203   DELT=60
-2017-04-21 22:29:51.45      RCHRES R211   DELT=60
-2017-04-21 22:29:51.54      RCHRES R212   DELT=60
-2017-04-21 22:29:51.70      RCHRES R192   DELT=60
-2017-04-21 22:29:51.82      RCHRES R204   DELT=60
-2017-04-21 22:29:51.99      RCHRES R221   DELT=60
-2017-04-21 22:29:52.13      RCHRES R222   DELT=60
-2017-04-21 22:29:52.24      RCHRES R223   DELT=60
-2017-04-21 22:29:52.40      RCHRES R193   DELT=60
-2017-04-21 22:29:52.51      RCHRES R205   DELT=60
-2017-04-21 22:29:52.68      RCHRES R225   DELT=60
-2017-04-21 22:29:52.84      RCHRES R194   DELT=60
-2017-04-21 22:29:52.95      RCHRES R206   DELT=60
-2017-04-21 22:29:53.12      RCHRES R227   DELT=60
-2017-04-21 22:29:53.25      RCHRES R207   DELT=60
-2017-04-21 22:29:53.41      RCHRES R231   DELT=60
-2017-04-21 22:29:53.54      RCHRES R232   DELT=60
-2017-04-21 22:29:53.65      RCHRES R233   DELT=60
-2017-04-21 22:29:53.78      RCHRES R241   DELT=60
-2017-04-21 22:29:53.92      RCHRES R242   DELT=60
-2017-04-21 22:29:54.03      RCHRES R243   DELT=60
-2017-04-21 22:29:54.15      RCHRES R301   DELT=60
-2017-04-21 22:29:54.36      RCHRES R311   DELT=60
-2017-04-21 22:29:54.45      RCHRES R302   DELT=60
-2017-04-21 22:29:54.64      RCHRES R303   DELT=60
-2017-04-21 22:29:54.81      RCHRES R401   DELT=60
-2017-04-21 22:29:54.95      RCHRES R411   DELT=60
-2017-04-21 22:29:55.09      RCHRES R402   DELT=60
-2017-04-21 22:29:55.23      RCHRES R421   DELT=60
-2017-04-21 22:29:55.37      RCHRES R422   DELT=60
-2017-04-21 22:29:55.48      RCHRES R423   DELT=60
-2017-04-21 22:29:55.62      RCHRES R403   DELT=60
-2017-04-21 22:29:55.79      RCHRES R431   DELT=60
-2017-04-21 22:29:55.93      RCHRES R404   DELT=60
-2017-04-21 22:29:56.08      RCHRES R441   DELT=60
-2017-04-21 22:29:56.22      RCHRES R443   DELT=60
-2017-04-21 22:29:56.33      RCHRES R442   DELT=60
-2017-04-21 22:29:56.49      RCHRES R405   DELT=60
-2017-04-21 22:29:56.64      RCHRES R406   DELT=60
-2017-04-21 22:29:56.80      RCHRES R407   DELT=60
-2017-04-21 22:29:56.97      RCHRES R408   DELT=60
-2017-04-21 22:29:57.15      RCHRES R195   DELT=60
-2017-04-21 22:29:57.26      RCHRES R304   DELT=60
-2017-04-21 22:29:57.45      RCHRES R305   DELT=60
-2017-04-21 22:29:57.62      RCHRES R306   DELT=60
-2017-04-21 22:29:57.77      RCHRES R500   DELT=60
-2017-04-21 22:29:57.90      RCHRES R501   DELT=60
-2017-04-21 22:29:58.07      RCHRES R513   DELT=60
-2017-04-21 22:29:58.20      RCHRES R514   DELT=60
-2017-04-21 22:29:58.31      RCHRES R502   DELT=60
-2017-04-21 22:29:58.59      RCHRES R510   DELT=60
-2017-04-21 22:29:58.74      RCHRES R511   DELT=60
-2017-04-21 22:29:58.96      RCHRES R512   DELT=60
-2017-04-21 22:29:59.11      RCHRES R503   DELT=60
-2017-04-21 22:29:59.39      RCHRES R523   DELT=60
-2017-04-21 22:29:59.52      RCHRES R524   DELT=60
-2017-04-21 22:29:59.63      RCHRES R525   DELT=60
-2017-04-21 22:29:59.75      RCHRES R526   DELT=60
-2017-04-21 22:29:59.86      RCHRES R521   DELT=60
-2017-04-21 22:30:00.04      RCHRES R522   DELT=60
-2017-04-21 22:30:00.21      RCHRES R531   DELT=60
-2017-04-21 22:30:00.36      RCHRES R504   DELT=60
-2017-04-21 22:30:00.49      RCHRES R505   DELT=60
-2017-04-21 22:30:00.61      RCHRES R506   DELT=60
-2017-04-21 22:30:00.75      RCHRES R541   DELT=60
-2017-04-21 22:30:00.86      RCHRES R542   DELT=60
-2017-04-21 22:30:01.00      RCHRES R307   DELT=60
-2017-04-21 22:30:01.14   Run completed
-2017-04-21 22:30:02.01   Run Started for file calleg.h5
-2017-04-21 22:30:02.03     Start 1993-10-01 00:00    Stop 2002-09-30 23:59
-2017-04-21 22:30:02.37   Finished setup
-2017-04-21 22:30:02.39      PERLND P011   DELT=60
-2017-04-21 22:30:02.51      PERLND P012   DELT=60
-2017-04-21 22:30:02.64      PERLND P013   DELT=60
-2017-04-21 22:30:02.75      PERLND P014   DELT=60
-2017-04-21 22:30:02.87      PERLND P015   DELT=60
-2017-04-21 22:30:02.98      IMPLND I011   DELT=60
-2017-04-21 22:30:03.03      PERLND P021   DELT=60
-2017-04-21 22:30:03.15      PERLND P022   DELT=60
-2017-04-21 22:30:03.26      PERLND P023   DELT=60
-2017-04-21 22:30:03.39      PERLND P024   DELT=60
-2017-04-21 22:30:03.50      PERLND P025   DELT=60
-2017-04-21 22:30:03.62      IMPLND I021   DELT=60
-2017-04-21 22:30:03.67      RCHRES R001   DELT=60
-2017-04-21 22:30:03.94      PERLND P031   DELT=60
-2017-04-21 22:30:04.08      PERLND P041   DELT=60
-2017-04-21 22:30:04.19      PERLND P042   DELT=60
-2017-04-21 22:30:04.31      PERLND P043   DELT=60
-2017-04-21 22:30:04.42      IMPLND I041   DELT=60
-2017-04-21 22:30:04.47      RCHRES R021   DELT=60
-2017-04-21 22:30:04.54      RCHRES R022   DELT=60
-2017-04-21 22:30:04.64      RCHRES R023   DELT=60
-2017-04-21 22:30:04.73      PERLND P051   DELT=60
-2017-04-21 22:30:04.86      PERLND P052   DELT=60
-2017-04-21 22:30:04.97      PERLND P053   DELT=60
-2017-04-21 22:30:05.09      PERLND P054   DELT=60
-2017-04-21 22:30:05.20      PERLND P055   DELT=60
-2017-04-21 22:30:05.33      IMPLND I051   DELT=60
-2017-04-21 22:30:05.37      RCHRES R011   DELT=60
-2017-04-21 22:30:05.67      RCHRES R024   DELT=60
-2017-04-21 22:30:05.78      PERLND P061   DELT=60
-2017-04-21 22:30:05.92      PERLND P062   DELT=60
-2017-04-21 22:30:06.03      IMPLND I061   DELT=60
-2017-04-21 22:30:06.08      PERLND P071   DELT=60
-2017-04-21 22:30:06.19      PERLND P072   DELT=60
-2017-04-21 22:30:06.31      PERLND P073   DELT=60
-2017-04-21 22:30:06.44      PERLND P074   DELT=60
-2017-04-21 22:30:06.55      PERLND P075   DELT=60
-2017-04-21 22:30:06.65      IMPLND I071   DELT=60
-2017-04-21 22:30:06.70      RCHRES R031   DELT=60
-2017-04-21 22:30:06.89      RCHRES R071   DELT=60
-2017-04-21 22:30:07.00      PERLND P081   DELT=60
-2017-04-21 22:30:07.12      PERLND P082   DELT=60
-2017-04-21 22:30:07.23      PERLND P083   DELT=60
-2017-04-21 22:30:07.34      PERLND P084   DELT=60
-2017-04-21 22:30:07.45      PERLND P085   DELT=60
-2017-04-21 22:30:07.58      IMPLND I081   DELT=60
-2017-04-21 22:30:07.61      PERLND P091   DELT=60
-2017-04-21 22:30:07.73      RCHRES R043   DELT=60
-2017-04-21 22:30:07.83      PERLND P101   DELT=60
-2017-04-21 22:30:07.95         Message count 30   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:30:07.97         Message count 20285   Message PWATER: Reset AGWS to zero
-2017-04-21 22:30:07.97      PERLND P102   DELT=60
-2017-04-21 22:30:08.09      IMPLND I101   DELT=60
-2017-04-21 22:30:08.14      RCHRES R041   DELT=60
-2017-04-21 22:30:08.22      RCHRES R042   DELT=60
-2017-04-21 22:30:08.33      RCHRES R044   DELT=60
-2017-04-21 22:30:08.44      PERLND P111   DELT=60
-2017-04-21 22:30:08.56      PERLND P112   DELT=60
-2017-04-21 22:30:08.67      PERLND P113   DELT=60
-2017-04-21 22:30:08.78      IMPLND I111   DELT=60
-2017-04-21 22:30:08.83      RCHRES R045   DELT=60
-2017-04-21 22:30:08.95      PERLND P121   DELT=60
-2017-04-21 22:30:09.08      PERLND P122   DELT=60
-2017-04-21 22:30:09.19      PERLND P123   DELT=60
-2017-04-21 22:30:09.30      PERLND P124   DELT=60
-2017-04-21 22:30:09.43      PERLND P125   DELT=60
-2017-04-21 22:30:09.54      IMPLND I121   DELT=60
-2017-04-21 22:30:09.59      RCHRES R002   DELT=60
-2017-04-21 22:30:10.29      RCHRES R025   DELT=60
-2017-04-21 22:30:10.57      RCHRES R003   DELT=60
-2017-04-21 22:30:10.93      RCHRES R004   DELT=60
-2017-04-21 22:30:11.20      RCHRES R904   DELT=60
-2017-04-21 22:30:11.29      PERLND P131   DELT=60
-2017-04-21 22:30:11.43      PERLND P132   DELT=60
-2017-04-21 22:30:11.54      PERLND P133   DELT=60
-2017-04-21 22:30:11.66      PERLND P134   DELT=60
-2017-04-21 22:30:11.77      PERLND P135   DELT=60
-2017-04-21 22:30:11.90      IMPLND I131   DELT=60
-2017-04-21 22:30:11.95      RCHRES R061   DELT=60
-2017-04-21 22:30:12.04      RCHRES R062   DELT=60
-2017-04-21 22:30:12.15      RCHRES R063   DELT=60
-2017-04-21 22:30:12.27      RCHRES R064   DELT=60
-2017-04-21 22:30:12.41      RCHRES R964   DELT=60
-2017-04-21 22:30:12.54      RCHRES R091   DELT=60
-2017-04-21 22:30:12.68      PERLND P141   DELT=60
-2017-04-21 22:30:12.82      PERLND P142   DELT=60
-2017-04-21 22:30:12.93      PERLND P143   DELT=60
-2017-04-21 22:30:13.04      PERLND P144   DELT=60
-2017-04-21 22:30:13.18      PERLND P145   DELT=60
-2017-04-21 22:30:13.29      IMPLND I141   DELT=60
-2017-04-21 22:30:13.33      RCHRES R005   DELT=60
-2017-04-21 22:30:14.33      RCHRES R046   DELT=60
-2017-04-21 22:30:14.52      RCHRES R065   DELT=60
-2017-04-21 22:30:14.79      RCHRES R072   DELT=60
-2017-04-21 22:30:14.99      PERLND P151   DELT=60
-2017-04-21 22:30:15.13      PERLND P152   DELT=60
-2017-04-21 22:30:15.24      IMPLND I151   DELT=60
-2017-04-21 22:30:15.29      RCHRES R051   DELT=60
-2017-04-21 22:30:15.39      RCHRES R952   DELT=60
-2017-04-21 22:30:15.50      RCHRES R052   DELT=60
-2017-04-21 22:30:15.68      RCHRES R006   DELT=60
-2017-04-21 22:30:15.83      RCHRES R081   DELT=60
-2017-04-21 22:30:15.96      PERLND P161   DELT=60
-2017-04-21 22:30:16.08      PERLND P162   DELT=60
-2017-04-21 22:30:16.21      PERLND P163   DELT=60
-2017-04-21 22:30:16.33      PERLND P164   DELT=60
-2017-04-21 22:30:16.44      PERLND P165   DELT=60
-2017-04-21 22:30:16.57      IMPLND I161   DELT=60
-2017-04-21 22:30:16.61      RCHRES R101   DELT=60
-2017-04-21 22:30:16.74      RCHRES R102   DELT=60
-2017-04-21 22:30:16.83      RCHRES R103   DELT=60
-2017-04-21 22:30:16.94      RCHRES R104   DELT=60
-2017-04-21 22:30:17.04      RCHRES R105   DELT=60
-2017-04-21 22:30:17.13      PERLND P171   DELT=60
-2017-04-21 22:30:17.27      PERLND P172   DELT=60
-2017-04-21 22:30:17.39      PERLND P173   DELT=60
-2017-04-21 22:30:17.52      PERLND P174   DELT=60
-2017-04-21 22:30:17.63      PERLND P175   DELT=60
-2017-04-21 22:30:17.75      IMPLND I171   DELT=60
-2017-04-21 22:30:17.80      PERLND P181   DELT=60
-2017-04-21 22:30:17.91      PERLND P182   DELT=60
-2017-04-21 22:30:18.03      PERLND P183   DELT=60
-2017-04-21 22:30:18.16      PERLND P184   DELT=60
-2017-04-21 22:30:18.27      PERLND P185   DELT=60
-2017-04-21 22:30:18.39         Message count 1533   Message PWATER: Reduced AGWO value to available
-2017-04-21 22:30:18.39         Message count 71712   Message PWATER: Reset AGWS to zero
-2017-04-21 22:30:18.39      IMPLND I181   DELT=60
-2017-04-21 22:30:18.44      RCHRES R107   DELT=60
-2017-04-21 22:30:18.64      RCHRES R106   DELT=60
-2017-04-21 22:30:18.80      RCHRES R108   DELT=60
-2017-04-21 22:30:18.91      RCHRES R007   DELT=60
-2017-04-21 22:30:19.08      RCHRES R082   DELT=60
-2017-04-21 22:30:19.35      RCHRES R092   DELT=60
-2017-04-21 22:30:19.59      RCHRES R008   DELT=60
-2017-04-21 22:30:19.76      RCHRES R009   DELT=60
-2017-04-21 22:30:19.88      RCHRES R109   DELT=60
-2017-04-21 22:30:20.09      RCHRES R010   DELT=60
-2017-04-21 22:30:20.30      PERLND P191   DELT=60
-2017-04-21 22:30:20.43      PERLND P192   DELT=60
-2017-04-21 22:30:20.56      PERLND P193   DELT=60
-2017-04-21 22:30:20.70      PERLND P194   DELT=60
-2017-04-21 22:30:20.82      PERLND P195   DELT=60
-2017-04-21 22:30:20.95      IMPLND I191   DELT=60
-2017-04-21 22:30:20.99      PERLND P201   DELT=60
-2017-04-21 22:30:21.13      PERLND P202   DELT=60
-2017-04-21 22:30:21.25      PERLND P203   DELT=60
-2017-04-21 22:30:21.38      PERLND P204   DELT=60
-2017-04-21 22:30:21.50      PERLND P205   DELT=60
-2017-04-21 22:30:21.63      PERLND P206   DELT=60
-2017-04-21 22:30:21.77      IMPLND I201   DELT=60
-2017-04-21 22:30:21.82      PERLND P211   DELT=60
-2017-04-21 22:30:21.94      PERLND P212   DELT=60
-2017-04-21 22:30:22.07      PERLND P213   DELT=60
-2017-04-21 22:30:22.19      PERLND P214   DELT=60
-2017-04-21 22:30:22.32      PERLND P215   DELT=60
-2017-04-21 22:30:22.44      PERLND P216   DELT=60
-2017-04-21 22:30:22.58      IMPLND I211   DELT=60
-2017-04-21 22:30:22.63      PERLND P221   DELT=60
-2017-04-21 22:30:22.77      PERLND P222   DELT=60
-2017-04-21 22:30:22.90      PERLND P224   DELT=60
-2017-04-21 22:30:23.02      PERLND P225   DELT=60
-2017-04-21 22:30:23.15      PERLND P226   DELT=60
-2017-04-21 22:30:23.29      IMPLND I221   DELT=60
-2017-04-21 22:30:23.33      PERLND P231   DELT=60
-2017-04-21 22:30:23.46      PERLND P232   DELT=60
-2017-04-21 22:30:23.57      PERLND P234   DELT=60
-2017-04-21 22:30:23.71      PERLND P235   DELT=60
-2017-04-21 22:30:23.83      IMPLND I231   DELT=60
-2017-04-21 22:30:23.88      PERLND P241   DELT=60
-2017-04-21 22:30:24.00      PERLND P242   DELT=60
-2017-04-21 22:30:24.11      PERLND P243   DELT=60
-2017-04-21 22:30:24.22      PERLND P244   DELT=60
-2017-04-21 22:30:24.35      PERLND P245   DELT=60
-2017-04-21 22:30:24.47      IMPLND I241   DELT=60
-2017-04-21 22:30:24.52      PERLND P251   DELT=60
-2017-04-21 22:30:24.65      PERLND P252   DELT=60
-2017-04-21 22:30:24.77      PERLND P253   DELT=60
-2017-04-21 22:30:24.90      PERLND P254   DELT=60
-2017-04-21 22:30:25.00      PERLND P255   DELT=60
-2017-04-21 22:30:25.12      PERLND P256   DELT=60
-2017-04-21 22:30:25.26      IMPLND I251   DELT=60
-2017-04-21 22:30:25.31      PERLND P261   DELT=60
-2017-04-21 22:30:25.44      PERLND P266   DELT=60
-2017-04-21 22:30:25.58      PERLND P271   DELT=60
-2017-04-21 22:30:25.72      PERLND P272   DELT=60
-2017-04-21 22:30:25.84      PERLND P275   DELT=60
-2017-04-21 22:30:25.95      PERLND P276   DELT=60
-2017-04-21 22:30:26.09      IMPLND I271   DELT=60
-2017-04-21 22:30:26.12      PERLND P281   DELT=60
-2017-04-21 22:30:26.26      PERLND P282   DELT=60
-2017-04-21 22:30:26.37      PERLND P283   DELT=60
-2017-04-21 22:30:26.50      PERLND P285   DELT=60
-2017-04-21 22:30:26.61      PERLND P286   DELT=60
-2017-04-21 22:30:26.76      IMPLND I281   DELT=60
-2017-04-21 22:30:26.80      PERLND P291   DELT=60
-2017-04-21 22:30:26.92      PERLND P292   DELT=60
-2017-04-21 22:30:27.05      PERLND P293   DELT=60
-2017-04-21 22:30:27.17      PERLND P294   DELT=60
-2017-04-21 22:30:27.30      PERLND P295   DELT=60
-2017-04-21 22:30:27.42      PERLND P296   DELT=60
-2017-04-21 22:30:27.55      IMPLND I291   DELT=60
-2017-04-21 22:30:27.59      PERLND P301   DELT=60
-2017-04-21 22:30:27.72      PERLND P302   DELT=60
-2017-04-21 22:30:27.84      PERLND P303   DELT=60
-2017-04-21 22:30:27.95      PERLND P304   DELT=60
-2017-04-21 22:30:28.08      PERLND P305   DELT=60
-2017-04-21 22:30:28.19      PERLND P306   DELT=60
-2017-04-21 22:30:28.33      IMPLND I301   DELT=60
-2017-04-21 22:30:28.36      RCHRES R201   DELT=60
-2017-04-21 22:30:28.52      RCHRES R190   DELT=60
-2017-04-21 22:30:28.64      RCHRES R202   DELT=60
-2017-04-21 22:30:28.78      RCHRES R191   DELT=60
-2017-04-21 22:30:28.92      RCHRES R203   DELT=60
-2017-04-21 22:30:29.08      RCHRES R211   DELT=60
-2017-04-21 22:30:29.18      RCHRES R212   DELT=60
-2017-04-21 22:30:29.34      RCHRES R192   DELT=60
-2017-04-21 22:30:29.46      RCHRES R204   DELT=60
-2017-04-21 22:30:29.63      RCHRES R221   DELT=60
-2017-04-21 22:30:29.81      RCHRES R222   DELT=60
-2017-04-21 22:30:29.90      RCHRES R223   DELT=60
-2017-04-21 22:30:30.06      RCHRES R193   DELT=60
-2017-04-21 22:30:30.18      RCHRES R205   DELT=60
-2017-04-21 22:30:30.35      RCHRES R225   DELT=60
-2017-04-21 22:30:30.49      RCHRES R194   DELT=60
-2017-04-21 22:30:30.59      RCHRES R206   DELT=60
-2017-04-21 22:30:30.74      RCHRES R227   DELT=60
-2017-04-21 22:30:30.90      RCHRES R207   DELT=60
-2017-04-21 22:30:31.04      RCHRES R231   DELT=60
-2017-04-21 22:30:31.18      RCHRES R232   DELT=60
-2017-04-21 22:30:31.27      RCHRES R233   DELT=60
-2017-04-21 22:30:31.40      RCHRES R241   DELT=60
-2017-04-21 22:30:31.56      RCHRES R242   DELT=60
-2017-04-21 22:30:31.65      RCHRES R243   DELT=60
-2017-04-21 22:30:31.77      RCHRES R301   DELT=60
-2017-04-21 22:30:31.95      RCHRES R311   DELT=60
-2017-04-21 22:30:32.04      RCHRES R302   DELT=60
-2017-04-21 22:30:32.21      RCHRES R303   DELT=60
-2017-04-21 22:30:32.37      RCHRES R401   DELT=60
-2017-04-21 22:30:32.53      RCHRES R411   DELT=60
-2017-04-21 22:30:32.65      RCHRES R402   DELT=60
-2017-04-21 22:30:32.79      RCHRES R421   DELT=60
-2017-04-21 22:30:32.93      RCHRES R422   DELT=60
-2017-04-21 22:30:33.03      RCHRES R423   DELT=60
-2017-04-21 22:30:33.17      RCHRES R403   DELT=60
-2017-04-21 22:30:33.32      RCHRES R431   DELT=60
-2017-04-21 22:30:33.46      RCHRES R404   DELT=60
-2017-04-21 22:30:33.60      RCHRES R441   DELT=60
-2017-04-21 22:30:33.74      RCHRES R443   DELT=60
-2017-04-21 22:30:33.85      RCHRES R442   DELT=60
-2017-04-21 22:30:34.01      RCHRES R405   DELT=60
-2017-04-21 22:30:34.15      RCHRES R406   DELT=60
-2017-04-21 22:30:34.32      RCHRES R407   DELT=60
-2017-04-21 22:30:34.49      RCHRES R408   DELT=60
-2017-04-21 22:30:34.65      RCHRES R195   DELT=60
-2017-04-21 22:30:34.74      RCHRES R304   DELT=60
-2017-04-21 22:30:34.92      RCHRES R305   DELT=60
-2017-04-21 22:30:35.09      RCHRES R306   DELT=60
-2017-04-21 22:30:35.23      RCHRES R500   DELT=60
-2017-04-21 22:30:35.34      RCHRES R501   DELT=60
-2017-04-21 22:30:35.51      RCHRES R513   DELT=60
-2017-04-21 22:30:35.63      RCHRES R514   DELT=60
-2017-04-21 22:30:35.74      RCHRES R502   DELT=60
-2017-04-21 22:30:36.01      RCHRES R510   DELT=60
-2017-04-21 22:30:36.15      RCHRES R511   DELT=60
-2017-04-21 22:30:36.37      RCHRES R512   DELT=60
-2017-04-21 22:30:36.53      RCHRES R503   DELT=60
-2017-04-21 22:30:36.81      RCHRES R523   DELT=60
-2017-04-21 22:30:36.93      RCHRES R524   DELT=60
-2017-04-21 22:30:37.04      RCHRES R525   DELT=60
-2017-04-21 22:30:37.15      RCHRES R526   DELT=60
-2017-04-21 22:30:37.24      RCHRES R521   DELT=60
-2017-04-21 22:30:37.41      RCHRES R522   DELT=60
-2017-04-21 22:30:37.58      RCHRES R531   DELT=60
-2017-04-21 22:30:37.74      RCHRES R504   DELT=60
-2017-04-21 22:30:37.86      RCHRES R505   DELT=60
-2017-04-21 22:30:37.99      RCHRES R506   DELT=60
-2017-04-21 22:30:38.11      RCHRES R541   DELT=60
-2017-04-21 22:30:38.24      RCHRES R542   DELT=60
-2017-04-21 22:30:38.38      RCHRES R307   DELT=60
-2017-04-21 22:30:38.52   Run completed
-1 loop, best of 3: 36.5 s per loop
-
-
-
- -
-
- -
Development note (SAVEALL = FALSE) - -SAVEALL = FALSE -2017-04-21 22:27:24.17 Run completed -1 loop, best of 3: 31.4 s per loop -Ratio of HSP2/HSPF 31.4/24.4 = 1.3 - -SAVEALL = TRUE -2017-04-21 22:30:38.52 Run completed -1 loop, best of 3: 36.5 s per loop -Ratio of HSP2/HSPF 38.1/24.4 = 1.5 -
-
- - - - - - diff --git a/tests/Calleg/notebooks-py2/Build_and_Run.ipynb b/tests/Calleg/notebooks-py2/Build_and_Run.ipynb deleted file mode 100755 index 6bfb6fc7..00000000 --- a/tests/Calleg/notebooks-py2/Build_and_Run.ipynb +++ /dev/null @@ -1,524 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "# HSP2 BUILD and RUN SIMULATION\n", - "\n", - "Place this Jupyter Notebook in a directory with one UCI and one or more WDM files." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "## Required Python Imports" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.execute_input": "2024-04-26T01:48:10.243437Z", - "iopub.status.busy": "2024-04-26T01:48:10.243107Z", - "iopub.status.idle": "2024-04-26T01:48:10.246213Z", - "shell.execute_reply": "2024-04-26T01:48:10.245737Z", - "shell.execute_reply.started": "2024-04-26T01:48:10.243419Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "from glob import glob\n", - "\n", - "import HSP2\n", - "import HSP2tools\n", - "from HSP2.utilities import versions" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.execute_input": "2024-04-26T01:48:11.182429Z", - "iopub.status.busy": "2024-04-26T01:48:11.181849Z", - "iopub.status.idle": "2024-04-26T01:48:11.189802Z", - "shell.execute_reply": "2024-04-26T01:48:11.189330Z", - "shell.execute_reply.started": "2024-04-26T01:48:11.182411Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
version
Python3.10.14 | packaged by conda-forge | (main, Mar...
HSP20.11.0a1
numpy1.26.4
numba0.59.1
pandas2.2.2
osLinux-5.15.0-91-generic-x86_64-with-glibc2.35
processorx86_64
Date/Time2024-04-25 21:48:11
\n", - "
" - ], - "text/plain": [ - " version\n", - "Python 3.10.14 | packaged by conda-forge | (main, Mar...\n", - "HSP2 0.11.0a1\n", - "numpy 1.26.4\n", - "numba 0.59.1\n", - "pandas 2.2.2\n", - "os Linux-5.15.0-91-generic-x86_64-with-glibc2.35\n", - "processor x86_64\n", - "Date/Time 2024-04-25 21:48:11" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "versions()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "## BUILD HDF5 FILE From UCI and WDM files" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Get the name of the UCI file." - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.execute_input": "2024-04-26T01:48:16.797185Z", - "iopub.status.busy": "2024-04-26T01:48:16.796938Z", - "iopub.status.idle": "2024-04-26T01:48:16.809263Z", - "shell.execute_reply": "2024-04-26T01:48:16.808709Z", - "shell.execute_reply.started": "2024-04-26T01:48:16.797169Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [ - { - "ename": "IndexError", - "evalue": "list index out of range", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mIndexError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[5], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m uciname \u001b[38;5;241m=\u001b[39m \u001b[43mglob\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m*.uci\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m0\u001b[39;49m\u001b[43m]\u001b[49m\n\u001b[1;32m 2\u001b[0m uciname\n", - "\u001b[0;31mIndexError\u001b[0m: list index out of range" - ] - } - ], - "source": [ - "uciname = glob(\"*.uci\")[0]\n", - "uciname" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Create HDF5 filename from the leading part of the UCI filename." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.180497Z", - "iopub.status.idle": "2024-04-26T01:45:40.180657Z", - "shell.execute_reply": "2024-04-26T01:45:40.180580Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.180573Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HDFname = uciname.split(\".\")[0] + \".h5\"\n", - "HDFname" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.181277Z", - "iopub.status.idle": "2024-04-26T01:45:40.181534Z", - "shell.execute_reply": "2024-04-26T01:45:40.181446Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.181437Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "!del {HDFname}" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Create the HDF5 file filled with the UCI data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.182018Z", - "iopub.status.idle": "2024-04-26T01:45:40.182191Z", - "shell.execute_reply": "2024-04-26T01:45:40.182108Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.182100Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HSP2tools.readUCI(uciname, HDFname)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.182597Z", - "iopub.status.idle": "2024-04-26T01:45:40.182739Z", - "shell.execute_reply": "2024-04-26T01:45:40.182681Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.182675Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HSP2tools.cleanup(HDFname)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Add the timeseries data to the HDF5 file." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.183177Z", - "iopub.status.idle": "2024-04-26T01:45:40.183294Z", - "shell.execute_reply": "2024-04-26T01:45:40.183241Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.183235Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "wdmnames = glob(\"*.wdm\")\n", - "wdmnames" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.183569Z", - "iopub.status.idle": "2024-04-26T01:45:40.183678Z", - "shell.execute_reply": "2024-04-26T01:45:40.183628Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.183623Z" - }, - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "for name in wdmnames:\n", - " HSP2tools.ReadWDM(name, HDFname)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.184025Z", - "iopub.status.idle": "2024-04-26T01:45:40.184126Z", - "shell.execute_reply": "2024-04-26T01:45:40.184078Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.184073Z" - } - }, - "outputs": [], - "source": [ - "!rename {HDFname} temp.h5\n", - "!ptrepack temp.h5 {HDFname}\n", - "!del temp.h5" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "## RUN simulation" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Get HDF5 filename (in case you didn't need to run the above)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.184543Z", - "iopub.status.idle": "2024-04-26T01:45:40.184642Z", - "shell.execute_reply": "2024-04-26T01:45:40.184595Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.184590Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "hdfname = glob(\"*.h5\")[0]\n", - "hdfname" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.184883Z", - "iopub.status.idle": "2024-04-26T01:45:40.184981Z", - "shell.execute_reply": "2024-04-26T01:45:40.184934Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.184929Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HSP2.run(hdfname, saveall=True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T01:45:40.185177Z", - "iopub.status.idle": "2024-04-26T01:45:40.185282Z", - "shell.execute_reply": "2024-04-26T01:45:40.185234Z", - "shell.execute_reply.started": "2024-04-26T01:45:40.185229Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "%timeit HSP2.run(hdfname, saveall=True)" - ] - }, - { - "cell_type": "raw", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Development note (SAVEALL = FALSE)\n", - "\n", - "SAVEALL = FALSE\n", - "2017-04-21 22:27:24.17 Run completed\n", - "1 loop, best of 3: 31.4 s per loop\n", - "Ratio of HSP2/HSPF 31.4/24.4 = 1.3\n", - "\n", - "SAVEALL = TRUE\n", - "2017-04-21 22:30:38.52 Run completed\n", - "1 loop, best of 3: 36.5 s per loop\n", - "Ratio of HSP2/HSPF 36.5/24.4 = 1.5" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.14" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/tests/Calleg/notebooks-py2/TESTcalleg.html b/tests/Calleg/notebooks-py2/TESTcalleg.html deleted file mode 100644 index 393f9e89..00000000 --- a/tests/Calleg/notebooks-py2/TESTcalleg.html +++ /dev/null @@ -1,37161 +0,0 @@ - - - -TESTcalleg - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-
-

-This Jupyter Notebook Copyright 2016 by RESPEC, INC. All rights reserved.

-

$\textbf{HSP}^{\textbf{2}}\ \text{and}\ \textbf{HSP2}\ $ Copyright 2016 by RESPEC INC. and released under this License

- -
-
-
-
-
-
-
-
-

Calleg TEST NOTEBOOK for HSP$^2$ (WORST CASE COMPARISONS)

This Notebook will compare the results of running HSPF and HSP$^2$ for the basic hydrology (PWATER, IWATER, and HYDR) to confirm the proper calculations of HSP$^2$

-

Calleg is a real watershed and has

-
    -
  • 27 IMPLND segments,
  • -
  • 129 PERLND segments,
  • -
  • 119 RCHRES segments,
  • -
  • 9 years of simulation time with hourly time steps (78,888 timesteps)
  • -
- -
-
-
-
-
-
-
-
-

Required Python imports and setup

-
-
-
-
-
-
In [1]:
-
-
-
import numpy as np
-import pandas as pd
-
-pd.options.display.max_rows    = 25
-pd.options.display.max_columns = 20
-pd.options.display.float_format = '{:.4f}'.format  # display 2 digits after the decimal point
-
-import matplotlib.pyplot as plt
-%matplotlib inline
-
-import hspfbintoolbox
-import HSP2
-import HSP2tools
-HSP2tools.versions()
-
- -
-
-
- -
-
- - -
-
Out[1]:
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Version
HSP20.7.2
HSP2tools0.7.1
PYTHON2.7.11 | 64-bit | (default, Jun 11 2016, 11:33...
IPYTHON5.3.0
H5PY2.7.0
MATPLOTLIB2.0.0
NETWORKX1.11
NUMBA0.31.0
NUMPY1.11.3
PANDAS0.19.2
PYTABLES3.3.0
WDMTOOLBOX0.8.2 MOD RTH
osWindows-10-10.0.15063
processorIntel64 Family 6 Model 94 Stepping 3, GenuineI...
-
-
- -
- -
-
- -
-
-
-
-
-
-

Setup paths to the necessary datafiles

This assumes the calleg.uci and calleg.wdm files are located in the current working directory for this Notebook. This will create the binary output file, calleg.hbn, along with a number of other standard HSPF outputs.

- -
-
-
-
-
-
In [2]:
-
-
-
wdmpath = 'calleg.wdm'
-ucipath = 'calleg.uci'
-hdfpathx = 'callegx.h5'
-hdfpath = 'calleg.h5'
-hbnpath = 'calleg.hbn'
-
- -
-
-
- -
-
-
-
-
-
-

Run HSPF

Using the Basins 4.1 WinHspfLt executable to run calleg.uci.

-

This assumes the calleg.uci and calleg.wdm files are located in the current working directory for this Notebook. This will create the binary output file, calleg.hbn, along with a number of other standard HSPF outputs.

- -
-
-
-
-
-
In [3]:
-
-
-
!echo %date% - %time%
-
-!C:\BASINS41\models\HSPF\bin\WinHspfLt.exe {ucipath}
-    
-!echo %date% - %time%
-
- -
-
-
- -
-
- - -
-
- -
-
Fri 04/14/2017 - 16:20:53.76
-Fri 04/14/2017 - 16:21:17.46
-
-
-
- -
-
- -
-
-
-
-
-
-

For development, save the best time for reference:

- -
-
-
1 loop, best of 3: 24.4 s per loop -
-
-
-
-
-

Now run HSP$^2$ on the calleg watershed

- -
-
-
-
-
-
In [ ]:
-
-
-
HSP2.run(hdfpath)
-
- -
-
-
- -
-
-
-
In [ ]:
-
-
-
%timeit HSP2.run(hdfpath)
-
- -
-
-
- -
Development note: - -SAVEALL = FALSE (new SAVE table for hot restart by default) -2017-04-16 09:05:26.10 Run completed -1 loop, best of 3: 32.3 s per loop -Ratio of HSP2/HSPF 32.3/24.4 = 1.3 - -SAVEALL = TRUE -2017-04-11 10:18:22.86 Run completed -1 loop, best of 3: 38.1 s per loop -Ratio of HSP2/HSPF 38.1/24.4 = 1.6 -
-
-
-
-
-

Determine Available Calculated Results

Now use Tim Cera's hspfbintoolbox.py to determine the available timeseries created by HSPF and stored into the HBN binary file.

-

Time interval codes: {5: 'yearly', 4: 'monthly', 3: 'daily', 2: 'bivl'}.

-

No daily available, so use monthly (4) timeseries for analysis.

- -
-
-
-
-
-
In [3]:
-
-
-
keys = hspfbintoolbox.catalog(hbnpath).keys()
-keys[:5]  # show only the first 5 as a check
-
- -
-
-
- -
-
- - -
-
Out[3]:
- - - -
-
[(u'IMPLND', 51, u'IWATER', u'PET', 5),
- (u'PERLND', 72, u'PWATER', u'UZI', 5),
- (u'PERLND', 101, u'PWATER', u'BASET', 4),
- (u'PERLND', 242, u'PWATER', u'PERO', 4),
- (u'PERLND', 296, u'PWATER', u'SUPY', 5)]
-
- -
- -
-
- -
-
-
-
-
-
-

Automate checking IMPLNDs for SURO

Extract the keys (calculated above) for IMPLD + IWATER + SURO. For each key, compute several columns. The final column shows the percent difference of the sum of the SURO for the entire run between HSPF and HSP2.

- -
-
-
-
-
-
In [170]:
-
-
-
segments = [str(key[1]) for key in keys if key[0]=='IMPLND' and key[2]=='IWATER' and key[3]=='SURO' and key[4]==4]
-
-dfimplnd = pd.DataFrame()
-for seg in segments:  
-    path = 'IMPLND,' + seg + ',IWATER,SURO'
-    hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path).values
-           
-    path = 'RESULTS/IMPLND' + '_I' + '{:0>3s}'.format(seg) + '/IWATER'
-    hsp2 = pd.read_hdf(hdfpath, path)['SURO'].resample('MS').sum().values
-    
-    #dfimplnd.at[seg, 'Max Diff'] =  (hspf - hsp2).max()
-    dfimplnd.at[seg, 'Sum of HSPF'] = hspf.sum()
-    dfimplnd.at[seg, 'Sum of HSP2'] = hsp2.sum()
-    dfimplnd.at[seg, '%diff of Sum'] = 100.0 * (hspf.sum() - hsp2.sum()) / hspf.sum()
-    dfimplnd.at[seg, 'abs(%diff of Sum)'] = 100.0 * abs(hspf.sum() - hsp2.sum()) / hspf.sum()
-
-dfimplnd = dfimplnd.sort_values(by=['abs(%diff of Sum)'])
-dfimplnd
-
- -
-
-
- -
-
- - -
-
Out[170]:
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Sum of HSPFSum of HSP2%diff of Sumabs(%diff of Sum)
291117.5699117.5699-0.00000.0000
281137.7904137.79040.00000.0000
101144.1288144.1288-0.00000.0000
21122.5966122.59660.00000.0000
51120.2708120.27080.00000.0000
81118.7938118.7938-0.00000.0000
41141.2890141.28900.00000.0000
271136.4228136.42280.00000.0000
251116.6337116.63370.00000.0000
201172.5608172.5608-0.00000.0000
191125.6937125.69370.00000.0000
221126.6460126.64600.00000.0000
...............
121126.2947126.29470.00000.0000
131126.2947126.29470.00000.0000
161131.2695131.26950.00000.0000
211125.3008125.3008-0.00000.0000
11131.6821131.68210.00000.0000
61133.6036133.60360.00000.0000
151133.6036133.60360.00000.0000
301119.8081119.8081-0.00000.0000
171115.9610115.96100.00000.0000
181115.9610115.96100.00000.0000
241120.2066120.20660.00000.0000
231135.5890135.58900.00000.0000
-

27 rows × 4 columns

-
-
- -
- -
-
- -
-
-
-
-
-
-

Look at the statistics for the percent difference column

- -
-
-
-
-
-
In [171]:
-
-
-
dfimplnd['%diff of Sum'].hist()
-
- -
-
-
- -
-
- - -
-
Out[171]:
- - - -
-
<matplotlib.axes._subplots.AxesSubplot at 0x1b0466d8>
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [172]:
-
-
-
dfimplnd['%diff of Sum'].describe()
-
- -
-
-
- -
-
- - -
-
Out[172]:
- - - -
-
count   27.0000
-mean     0.0000
-std      0.0000
-min     -0.0000
-25%      0.0000
-50%      0.0000
-75%      0.0000
-max      0.0000
-Name: %diff of Sum, dtype: float64
-
- -
- -
-
- -
-
-
-
In [173]:
-
-
-
ils = dfimplnd.index[-1]
-print 'WORST IMPLND SEGMENT IS', ils
-print '%diff of the total SURO sum of', dfimplnd.loc[ils,'%diff of Sum']
-
- -
-
-
- -
-
- - -
-
- -
-
WORST IMPLND SEGMENT IS 231
-%diff of the total SURO sum of 7.81454022292e-06
-
-
-
- -
-
- -
-
-
-
-
-
-

Define a function to read HSPF and HSP2 data, and plot together for IMPLND

-
-
-
-
-
-
In [174]:
-
-
-
def imp(ils, name, how='sum'):
-    # Use Tim Cera's HBN reader to get the HSPF data  
-    path = 'IMPLND,' + str(ils) + ',IWATER,' + name
-    hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path)
-
-    # Now read the corresponding HSP2 data and comvert to monthly, MS (Month Start) to match hspfbintoolbox data.
-    path = '/RESULTS/IMPLND' + '_I' + '{:0>3s}'.format(str(ils)) + '/IWATER'                                                   
-    hsp2 = pd.read_hdf(hdfpath, path)
-    if how == 'sum':
-        hsp2 = hsp2.resample('MS').sum()
-    elif how == 'last':
-        hsp2 = hsp2.resample('MS').last()
-        
-    hsp2 = hsp2[name]
-    
-    plt.figure(figsize=(10,8))
-    plt.plot(hspf.index, hspf, label='HSPF', color='r')
-    plt.plot(hsp2.index, hsp2, label='HSP2', color='b')
-    plt.legend()
-    plt.title('IMPLND ' + 'I' + '{:0>3s}'.format(str(ils)) + ', IWATER ' +  name)
-    
-    return hspf, hsp2
-
- -
-
-
- -
-
-
-
-
-
-

IMPLND IWATER SURO, Monthly

-
-
-
-
-
-
In [175]:
-
-
-
hspf, hsp2 = imp(ils, 'SURO', 'sum')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [176]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[176]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1b18bb70>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

IMPLND IWATER IMPEV, Monthly

-
-
-
-
-
-
In [177]:
-
-
-
hspf, hsp2 = imp(ils, 'IMPEV')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [178]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[178]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1bca6be0>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

IMPLND IWATER PET, Monthly

-
-
-
-
-
-
In [179]:
-
-
-
hspf, hsp2 = imp(ils, 'PET')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [180]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[180]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1bae7438>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

IMPLND IWATER RETS, Monthly

-
-
-
-
-
-
In [181]:
-
-
-
hspf, hsp2 = imp(ils, 'RETS', 'last')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [182]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[182]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1b024ac8>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

IMPLND IWATER SUPY, Monthly

-
-
-
-
-
-
In [183]:
-
-
-
hspf, hsp2 = imp(ils, 'SUPY')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [184]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[184]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1bcd17b8>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

IMPLND IWATER SURS, Monthly

-
-
-
-
-
-
In [185]:
-
-
-
hspf, hsp2 = imp(ils, 'SURS', 'last')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [186]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[186]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1a791978>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [ ]:
-
-
-
 
-
- -
-
-
- -
-
-
-
-
-
-

Automate checking PERLNDs for PERO

Define routine to read HSPF and HSP2 data and plot together

-
-
-
-
-
-
In [45]:
-
-
-
def per(pls, name, how='sum'):
-    # Use Tim Cera's HBN reader to get the HSPF data  
-    path = 'PERLND,' + str(pls) + ',PWATER,' + name
-    hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path)
-    
-    # Now read the corresponding HSP2 data and comvert to monthly
-    path = '/RESULTS/PERLND' +  '_P' + '{:0>3s}'.format(str(pls)) + '/PWATER'
-    if how == 'sum':
-        hsp2 = pd.read_hdf(hdfpath, path)[name].resample('MS').sum()
-    elif how == 'last':
-        hsp2 = pd.read_hdf(hdfpath, path)[name].resample('MS').last()
-    
-    plt.figure(figsize=(10,8))
-    plt.plot(hspf.index, hspf, label='HSPF', color='r')
-    plt.plot(hsp2.index, hsp2, label='HSP2', color='b')
-    plt.legend()
-    plt.title('PERLND ' + 'P' + '{:0>3s}'.format(str(pls))+ ', PWATER ' +  name)
-    
-    return hspf, hsp2
-
- -
-
-
- -
-
-
-
-
-
-

Now find all available monthly data

-
-
-
-
-
-
In [46]:
-
-
-
segments = [str(key[1]) for key in keys if key[0]=='PERLND' and key[2]=='PWATER' and key[3]=='PERO' and key[4]==4]
-
-dfperlnd = pd.DataFrame()
-for seg in segments:  
-    path = 'PERLND,' + seg + ',PWATER,PERO'
-    hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path).values
-  
-    path =  'RESULTS/PERLND' +  '_P' + '{:0>3s}'.format(str(seg)) + '/PWATER'   
-    hsp2 = pd.read_hdf(hdfpath, path)['PERO'].resample('MS').sum().values
-
-    #dfperlnd.at[seg, 'Max Diff'] =  (hspf - hsp2).max()
-    dfperlnd.at[seg, 'Sum of HSPF'] = hspf.sum()
-    dfperlnd.at[seg, 'Sum of HSP2'] = hsp2.sum()
-    dfperlnd.at[seg, '%diff of Sum'] = 100.0 * (hspf.sum() - hsp2.sum()) / hspf.sum()
-    dfperlnd.at[seg, 'abs(%diff of Sum)'] = 100.0 * abs(hspf.sum() - hsp2.sum()) / hspf.sum()
-
-dfperlnd = dfperlnd.sort_values(by=['abs(%diff of Sum)'])    
-dfperlnd
-
- -
-
-
- -
-
- - -
-
Out[46]:
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Sum of HSPFSum of HSP2%diff of Sumabs(%diff of Sum)
5564.785964.7859-0.00000.0000
22629.427029.4270-0.00000.0000
22245.914545.9145-0.00000.0000
12456.812956.8129-0.00000.0000
23585.654385.6543-0.00000.0000
7113.870913.8709-0.00000.0000
27544.851944.85190.00000.0000
13549.447249.4472-0.00000.0000
2357.903557.9035-0.00000.0000
20110.971510.9715-0.00000.0000
8245.838645.83860.00000.0000
28597.231497.2315-0.00000.0000
...............
18234.972734.9728-0.00010.0001
23480.864480.8645-0.00010.0001
24361.399461.39930.00010.0001
2516.86826.8682-0.00010.0001
28636.991136.9912-0.00020.0002
15234.490534.4905-0.00020.0002
1117.12597.12590.00020.0002
19578.479578.47940.00020.0002
30672.724872.7249-0.00020.0002
12559.803559.8037-0.00030.0003
18514.789814.7901-0.00250.0025
1016.13336.13250.01280.0128
-

129 rows × 4 columns

-
-
- -
- -
-
- -
-
-
-
In [47]:
-
-
-
dfperlnd['%diff of Sum'].hist(bins=40)
-
- -
-
-
- -
-
- - -
-
Out[47]:
- - - -
-
<matplotlib.axes._subplots.AxesSubplot at 0x10a98ba8>
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [48]:
-
-
-
dfperlnd['%diff of Sum'].describe()
-
- -
-
-
- -
-
- - -
-
Out[48]:
- - - -
-
count   129.0000
-mean      0.0001
-std       0.0012
-min      -0.0025
-25%      -0.0001
-50%      -0.0000
-75%      -0.0000
-max       0.0128
-Name: %diff of Sum, dtype: float64
-
- -
- -
-
- -
-
-
-
-
-
-

The PERLND segments are ordered in assending "abs(%diff of Sum)", so the last entry is the worst case (by this measure.)

- -
-
-
-
-
-
In [49]:
-
-
-
pls = dfperlnd.index[-1]
-print 'WORST PERLND SEGMENT IS', pls
-print '%diff of the total PERO sum of', dfperlnd.loc[pls,'%diff of Sum']
-
- -
-
-
- -
-
- - -
-
- -
-
WORST PERLND SEGMENT IS 101
-%diff of the total PERO sum of 0.0128203408491
-
-
-
- -
-
- -
-
-
-
-
-
-

PERLND PWATER AGWO

-
-
-
-
-
-
In [50]:
-
-
-
hspf, hsp2 = per(pls, 'AGWO')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [51]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[51]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1337ee80>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER BASET

-
-
-
-
-
-
In [52]:
-
-
-
hspf, hsp2 = per(pls, 'BASET')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [53]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[53]:
- - - -
-
[<matplotlib.lines.Line2D at 0x110a2da0>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-
PERLND PWATER CEPE
-
-
-
-
-
-
In [54]:
-
-
-
hspf, hsp2 = per(pls, 'CEPE')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [55]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[55]:
- - - -
-
[<matplotlib.lines.Line2D at 0xf638dd8>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER IFWI

-
-
-
-
-
-
In [56]:
-
-
-
hspf, hsp2 = per(pls, 'IFWI')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [57]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[57]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1322bef0>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER IFWO

-
-
-
-
-
-
In [58]:
-
-
-
hspf, hsp2 = per(pls, 'IFWO')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [59]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[59]:
- - - -
-
[<matplotlib.lines.Line2D at 0x139c9a58>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER IGWI

-
-
-
-
-
-
In [60]:
-
-
-
hspf, hsp2 = per(pls, 'IGWI')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [61]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[61]:
- - - -
-
[<matplotlib.lines.Line2D at 0x13716e80>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER INFIL

-
-
-
-
-
-
In [62]:
-
-
-
hspf, hsp2 = per(pls, 'INFIL')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [63]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[63]:
- - - -
-
[<matplotlib.lines.Line2D at 0x13f7a320>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER LZET

-
-
-
-
-
-
In [64]:
-
-
-
hspf, hsp2 = per(pls, 'LZET')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [65]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[65]:
- - - -
-
[<matplotlib.lines.Line2D at 0x139c9828>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER PERC

-
-
-
-
-
-
In [66]:
-
-
-
hspf, hsp2 = per(pls, 'PERC')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [67]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[67]:
- - - -
-
[<matplotlib.lines.Line2D at 0x117be2e8>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER PERO

-
-
-
-
-
-
In [68]:
-
-
-
hspf, hsp2 = per(pls, 'PERO')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [69]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[69]:
- - - -
-
[<matplotlib.lines.Line2D at 0x120dce80>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER PERS

-
-
-
-
-
-
In [70]:
-
-
-
hspf, hsp2 = per(pls, 'PERS', 'last')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [71]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[71]:
- - - -
-
[<matplotlib.lines.Line2D at 0x14857978>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER PET, Monthly

-
-
-
-
-
-
In [72]:
-
-
-
hspf, hsp2 = per(pls, 'PET')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [73]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[73]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1499a400>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER SUPY

-
-
-
-
-
-
In [74]:
-
-
-
hspf, hsp2 = per(pls, 'SUPY')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [75]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[75]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1505fa90>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER SURO

-
-
-
-
-
-
In [76]:
-
-
-
hspf, hsp2 = per(pls, 'SURO')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [77]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[77]:
- - - -
-
[<matplotlib.lines.Line2D at 0x11e5a9e8>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER TAET

-
-
-
-
-
-
In [78]:
-
-
-
hspf, hsp2 = per(pls, 'TAET')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [79]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[79]:
- - - -
-
[<matplotlib.lines.Line2D at 0x13e36cf8>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER UZET

-
-
-
-
-
-
In [80]:
-
-
-
hspf, hsp2 = per(pls, 'UZET')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [81]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[81]:
- - - -
-
[<matplotlib.lines.Line2D at 0x13f7e4a8>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

PERLND PWATER UZI

-
-
-
-
-
-
In [82]:
-
-
-
hspf, hsp2 = per(pls, 'UZI')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [83]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[83]:
- - - -
-
[<matplotlib.lines.Line2D at 0x154cf4a8>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [ ]:
-
-
-
 
-
- -
-
-
- -
-
-
-
-
-
-

RCHRES

-
-
-
-
-
-
-
-
-

Define routine to read HSPF and HSP2, plot together for RCHRES

-
-
-
-
-
-
In [244]:
-
-
-
def rch(rid, name, how='sum'):
-    # Use Tim Cera's HBN reader to get the HSPF data  
-    path = 'RCHRES,' + str(rid) + ',HYDR,' + name
-    hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path)
-    
-    # Now read the corresponding HSP2 data and comvert to monthly
-    path = '/RESULTS/RCHRES' +   '_R' + '{:0>3s}'.format(str(rid)) + '/HYDR'
-    if how == 'sum':
-        hsp2 = pd.read_hdf(hdfpath, path)[name].resample('MS').sum()
-    elif how == 'last':
-        hsp2 = pd.read_hdf(hdfpath, path)[name].resample('MS').last()
-    
-    plt.figure(figsize=(10,8))
-    plt.plot(hspf.index, hspf, label='HSPF', color='r')
-    plt.plot(hsp2.index, hsp2, label='HSP2', color='b')
-    plt.legend()
-    plt.title('RCHRES ' +   'R' + '{:0>3s}'.format(str(rid)) + ', HYDR ' +  name)
-    
-    return hspf, hsp2
-
- -
-
-
- -
-
-
-
-
-
-

Automate checking RCHRESs for ROVOL

-
-
-
-
-
-
In [245]:
-
-
-
segments = [str(key[1]) for key in keys if key[0]=='RCHRES' and key[2]=='HYDR' and key[3]=='ROVOL' and key[4]==4]
-
-dfrchres = pd.DataFrame()
-for seg in segments:  
-    path = 'RCHRES,' + seg + ',HYDR,ROVOL'
-    hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path).values
-
-    path = 'RESULTS/RCHRES'+   '_R' + '{:0>3s}'.format(str(seg)) +'/HYDR' 
-    hsp2 = pd.read_hdf(hdfpath, path)['ROVOL'].resample('MS').sum().values
-    
-    #dfrchres.at[seg, 'Max Diff'] =  (hspf - hsp2).max()
-    dfrchres.at[seg, 'Sum of HSPF'] = hspf.sum()
-    dfrchres.at[seg, 'Sum of HSP2'] = hsp2.sum()
-    dfrchres.at[seg, '%diff of Sum'] = 100.0 * (hspf.sum() - hsp2.sum()) / hspf.sum()
-    dfrchres.at[seg, 'abs(%diff of Sum)'] = 100.0 * abs(hspf.sum() - hsp2.sum()) / hspf.sum()    
-
-dfrchres = dfrchres.sort_values(by ='abs(%diff of Sum)')    
-dfrchres
-
- -
-
-
- -
-
- - -
-
Out[245]:
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Sum of HSPFSum of HSP2%diff of Sumabs(%diff of Sum)
525755.3912755.3912-0.00000.0000
1934381.47304381.47270.00000.0000
952709.6680709.66780.00000.0000
50472021.951972021.93750.00000.0000
964754.5005754.50030.00000.0000
40124895.403524895.39650.00000.0000
114362.42494362.42330.00000.0000
64659.7574659.7577-0.00000.0000
4214785.92454785.9263-0.00000.0000
50358696.583458696.6055-0.00000.0000
40254092.217054092.2383-0.00000.0000
52127894.395727894.38480.00000.0000
...............
2116396.13286395.64210.00770.0077
22310951.649910950.78030.00790.0079
2279763.93449763.13180.00820.0082
1955182.86345183.3047-0.00850.0085
1917559.51057558.62160.01180.0118
421649.16481648.96730.01200.0120
411284.56061284.40430.01220.0122
2224995.35784994.42680.01860.0186
2215001.44455000.51120.01870.0187
1909018.73649016.99510.01930.0193
2256018.11286016.86820.02070.0207
407254032.0347251524.59380.98710.9871
-

119 rows × 4 columns

-
-
- -
- -
-
- -
-
-
-
In [246]:
-
-
-
dfrchres['%diff of Sum'].hist(bins=40)
-
- -
-
-
- -
-
- - -
-
Out[246]:
- - - -
-
<matplotlib.axes._subplots.AxesSubplot at 0x211bb828>
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [247]:
-
-
-
dfrchres['%diff of Sum'].describe()
-
- -
-
-
- -
-
- - -
-
Out[247]:
- - - -
-
count   119.0000
-mean      0.0094
-std       0.0905
-min      -0.0085
-25%      -0.0002
-50%      -0.0000
-75%       0.0003
-max       0.9871
-Name: %diff of Sum, dtype: float64
-
- -
- -
-
- -
-
-
-
-
-
-

The RCHRES segments are ordered in assending "abs(%diff of Sum)", so the last entry is the worst case (by this measure.)

- -
-
-
-
-
-
In [248]:
-
-
-
rid = dfrchres.index[-1]
-print 'WORST RCHRES SEGMENT IS', rid
-print '%diff of the total PERO sum of', dfrchres.loc[rid,'%diff of Sum']
-
- -
-
-
- -
-
- - -
-
- -
-
WORST RCHRES SEGMENT IS 407
-%diff of the total PERO sum of 0.987056975411
-
-
-
- -
-
- -
-
-
-
In [249]:
-
-
-
dfrchres.loc[str(rid),:]    #['%diff of Sum'].describe()
-
- -
-
-
- -
-
- - -
-
Out[249]:
- - - -
-
Sum of HSPF         254032.0347
-Sum of HSP2         251524.5938
-%diff of Sum             0.9871
-abs(%diff of Sum)        0.9871
-Name: 407, dtype: float64
-
- -
- -
-
- -
-
-
-
-
-
-

RCHRES HYDR IVOL

-
-
-
-
-
-
In [250]:
-
-
-
hspf, hsp2 = rch(rid, 'IVOL')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [251]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[251]:
- - - -
-
[<matplotlib.lines.Line2D at 0x199ca240>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

RCHRES HYDR PRSUPY

-
-
-
-
-
-
In [252]:
-
-
-
hspf, hsp2 = rch(rid, 'PRSUPY')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [253]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[253]:
- - - -
-
[<matplotlib.lines.Line2D at 0x19aaf9b0>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

RCHRES HYDR ROVOL

-
-
-
-
-
-
In [254]:
-
-
-
hspf, hsp2 = rch(rid, 'ROVOL')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [255]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[255]:
- - - -
-
[<matplotlib.lines.Line2D at 0x1f4eaf98>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

RCHRES HYDR VOL

-
-
-
-
-
-
In [256]:
-
-
-
hspf, hsp2 = rch(rid, 'VOL', 'last')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [257]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[257]:
- - - -
-
[<matplotlib.lines.Line2D at 0x2152f3c8>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
-

RCHRES HYDR VOLEV

-
-
-
-
-
-
In [258]:
-
-
-
hspf, hsp2 = rch(rid, 'VOLEV')
-
- -
-
-
- -
-
- - -
-
- - - -
- -
- -
- -
-
- -
-
-
-
In [259]:
-
-
-
plt.scatter(hspf, hsp2)
-top = 1.05 * max(hspf.values.max(), hsp2.values.max())
-plt.plot([0.0, top], [0.0, top])
-
- -
-
-
- -
-
- - -
-
Out[259]:
- - - -
-
[<matplotlib.lines.Line2D at 0x21906fd0>]
-
- -
- -
-
- - - -
- -
- -
- -
-
- -
-
-
-
-
-
- -
-
-
-
-
-
In [ ]:
-
-
-
 
-
- -
-
-
- -
-
-
- - - - - - diff --git a/tests/Calleg/notebooks-py2/TESTcalleg.ipynb b/tests/Calleg/notebooks-py2/TESTcalleg.ipynb deleted file mode 100755 index 783d9644..00000000 --- a/tests/Calleg/notebooks-py2/TESTcalleg.ipynb +++ /dev/null @@ -1,1325 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n", - "This Jupyter Notebook Copyright 2016 by RESPEC, INC. All rights reserved.\n", - "\n", - "$\\textbf{HSP}^{\\textbf{2}}\\ \\text{and}\\ \\textbf{HSP2}\\ $ Copyright 2016 by RESPEC INC. and released under this [License](LegalInformation/License.txt)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Calleg TEST NOTEBOOK for HSP$^2$ (WORST CASE COMPARISONS)\n", - "\n", - "This Notebook will compare the results of running HSPF and HSP$^2$ for the basic hydrology (PWATER, IWATER, and HYDR) to confirm the proper calculations of HSP$^2$\n", - "\n", - "Calleg is a real watershed and has\n", - "+ 27 IMPLND segments,\n", - "+ 129 PERLND segments,\n", - "+ 119 RCHRES segments,\n", - "+ 9 years of simulation time with hourly time steps (78,888 timesteps)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Required Python imports and setup" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "\n", - "pd.options.display.max_rows = 25\n", - "pd.options.display.max_columns = 20\n", - "pd.options.display.float_format = '{:.4f}'.format # display 2 digits after the decimal point\n", - "\n", - "import matplotlib.pyplot as plt\n", - "%matplotlib inline\n", - "\n", - "import hspfbintoolbox\n", - "import HSP2\n", - "import HSP2tools\n", - "HSP2tools.versions()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Setup paths to the necessary datafiles\n", - "This assumes the calleg.uci and calleg.wdm files are located in the current working directory for this Notebook. This will create the binary output file, calleg.hbn, along with a number of other standard HSPF outputs." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "wdmpath = 'calleg.wdm'\n", - "ucipath = 'calleg.uci'\n", - "hdfpathx = 'callegx.h5'\n", - "hdfpath = 'calleg.h5'\n", - "hbnpath = 'calleg.hbn'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Run HSPF\n", - "\n", - "Using the Basins 4.1 WinHspfLt executable to run calleg.uci.\n", - "\n", - "This assumes the calleg.uci and calleg.wdm files are located in the current working directory for this Notebook. This will create the binary output file, calleg.hbn, along with a number of other standard HSPF outputs." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!echo %date% - %time%\n", - "\n", - "!C:\\BASINS41\\models\\HSPF\\bin\\WinHspfLt.exe {ucipath}\n", - " \n", - "!echo %date% - %time%" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For development, save the best time for reference:" - ] - }, - { - "cell_type": "raw", - "metadata": {}, - "source": [ - "1 loop, best of 3: 24.4 s per loop" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now run HSP$^2$ on the calleg watershed" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "HSP2.run(hdfpath)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "%timeit HSP2.run(hdfpath)" - ] - }, - { - "cell_type": "raw", - "metadata": {}, - "source": [ - "Development note:\n", - "\n", - "SAVEALL = FALSE (new SAVE table for hot restart by default)\n", - "2017-04-16 09:05:26.10 Run completed\n", - "1 loop, best of 3: 32.3 s per loop\n", - "Ratio of HSP2/HSPF 32.3/24.4 = 1.3\n", - "\n", - "SAVEALL = TRUE\n", - "2017-04-11 10:18:22.86 Run completed\n", - "1 loop, best of 3: 38.1 s per loop\n", - "Ratio of HSP2/HSPF 38.1/24.4 = 1.6" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Determine Available Calculated Results\n", - "\n", - "Now use Tim Cera's hspfbintoolbox.py to determine the available timeseries created by HSPF and stored into the HBN binary file.\n", - "\n", - "Time interval codes: {5: 'yearly', 4: 'monthly', 3: 'daily', 2: 'bivl'}.\n", - "\n", - "No daily available, so use monthly (4) timeseries for analysis." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "keys = hspfbintoolbox.catalog(hbnpath).keys()\n", - "keys[:5] # show only the first 5 as a check" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Automate checking IMPLNDs for SURO\n", - "\n", - "Extract the keys (calculated above) for IMPLD + IWATER + SURO. For each key, compute several columns. The final column shows the percent difference of the sum of the SURO for the entire run between HSPF and HSP2." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "segments = [str(key[1]) for key in keys if key[0]=='IMPLND' and key[2]=='IWATER' and key[3]=='SURO' and key[4]==4]\n", - "\n", - "dfimplnd = pd.DataFrame()\n", - "for seg in segments: \n", - " path = 'IMPLND,' + seg + ',IWATER,SURO'\n", - " hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path).values\n", - " \n", - " path = 'RESULTS/IMPLND' + '_I' + '{:0>3s}'.format(seg) + '/IWATER'\n", - " hsp2 = pd.read_hdf(hdfpath, path)['SURO'].resample('MS').sum().values\n", - " \n", - " #dfimplnd.at[seg, 'Max Diff'] = (hspf - hsp2).max()\n", - " dfimplnd.at[seg, 'Sum of HSPF'] = hspf.sum()\n", - " dfimplnd.at[seg, 'Sum of HSP2'] = hsp2.sum()\n", - " dfimplnd.at[seg, '%diff of Sum'] = 100.0 * (hspf.sum() - hsp2.sum()) / hspf.sum()\n", - " dfimplnd.at[seg, 'abs(%diff of Sum)'] = 100.0 * abs(hspf.sum() - hsp2.sum()) / hspf.sum()\n", - "\n", - "dfimplnd = dfimplnd.sort_values(by=['abs(%diff of Sum)'])\n", - "dfimplnd" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Look at the statistics for the percent difference column" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "dfimplnd['%diff of Sum'].hist()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "dfimplnd['%diff of Sum'].describe()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "ils = dfimplnd.index[-1]\n", - "print 'WORST IMPLND SEGMENT IS', ils\n", - "print '%diff of the total SURO sum of', dfimplnd.loc[ils,'%diff of Sum']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define a function to read HSPF and HSP2 data, and plot together for IMPLND" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def imp(ils, name, how='sum'):\n", - " # Use Tim Cera's HBN reader to get the HSPF data \n", - " path = 'IMPLND,' + str(ils) + ',IWATER,' + name\n", - " hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path)\n", - "\n", - " # Now read the corresponding HSP2 data and comvert to monthly, MS (Month Start) to match hspfbintoolbox data.\n", - " path = '/RESULTS/IMPLND' + '_I' + '{:0>3s}'.format(str(ils)) + '/IWATER' \n", - " hsp2 = pd.read_hdf(hdfpath, path)\n", - " if how == 'sum':\n", - " hsp2 = hsp2.resample('MS').sum()\n", - " elif how == 'last':\n", - " hsp2 = hsp2.resample('MS').last()\n", - " \n", - " hsp2 = hsp2[name]\n", - " \n", - " plt.figure(figsize=(10,8))\n", - " plt.plot(hspf.index, hspf, label='HSPF', color='r')\n", - " plt.plot(hsp2.index, hsp2, label='HSP2', color='b')\n", - " plt.legend()\n", - " plt.title('IMPLND ' + 'I' + '{:0>3s}'.format(str(ils)) + ', IWATER ' + name)\n", - " \n", - " return hspf, hsp2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### IMPLND IWATER SURO, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, 'SURO', 'sum')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### IMPLND IWATER IMPEV, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, 'IMPEV')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### IMPLND IWATER PET, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, 'PET')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### IMPLND IWATER RETS, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, 'RETS', 'last')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### IMPLND IWATER SUPY, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, 'SUPY')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### IMPLND IWATER SURS, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, 'SURS', 'last')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Automate checking PERLNDs for PERO\n", - "\n", - "### Define routine to read HSPF and HSP2 data and plot together" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def per(pls, name, how='sum'):\n", - " # Use Tim Cera's HBN reader to get the HSPF data \n", - " path = 'PERLND,' + str(pls) + ',PWATER,' + name\n", - " hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path)\n", - " \n", - " # Now read the corresponding HSP2 data and comvert to monthly\n", - " path = '/RESULTS/PERLND' + '_P' + '{:0>3s}'.format(str(pls)) + '/PWATER'\n", - " if how == 'sum':\n", - " hsp2 = pd.read_hdf(hdfpath, path)[name].resample('MS').sum()\n", - " elif how == 'last':\n", - " hsp2 = pd.read_hdf(hdfpath, path)[name].resample('MS').last()\n", - " \n", - " plt.figure(figsize=(10,8))\n", - " plt.plot(hspf.index, hspf, label='HSPF', color='r')\n", - " plt.plot(hsp2.index, hsp2, label='HSP2', color='b')\n", - " plt.legend()\n", - " plt.title('PERLND ' + 'P' + '{:0>3s}'.format(str(pls))+ ', PWATER ' + name)\n", - " \n", - " return hspf, hsp2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Now find all available monthly data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "segments = [str(key[1]) for key in keys if key[0]=='PERLND' and key[2]=='PWATER' and key[3]=='PERO' and key[4]==4]\n", - "\n", - "dfperlnd = pd.DataFrame()\n", - "for seg in segments: \n", - " path = 'PERLND,' + seg + ',PWATER,PERO'\n", - " hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path).values\n", - " \n", - " path = 'RESULTS/PERLND' + '_P' + '{:0>3s}'.format(str(seg)) + '/PWATER' \n", - " hsp2 = pd.read_hdf(hdfpath, path)['PERO'].resample('MS').sum().values\n", - "\n", - " #dfperlnd.at[seg, 'Max Diff'] = (hspf - hsp2).max()\n", - " dfperlnd.at[seg, 'Sum of HSPF'] = hspf.sum()\n", - " dfperlnd.at[seg, 'Sum of HSP2'] = hsp2.sum()\n", - " dfperlnd.at[seg, '%diff of Sum'] = 100.0 * (hspf.sum() - hsp2.sum()) / hspf.sum()\n", - " dfperlnd.at[seg, 'abs(%diff of Sum)'] = 100.0 * abs(hspf.sum() - hsp2.sum()) / hspf.sum()\n", - "\n", - "dfperlnd = dfperlnd.sort_values(by=['abs(%diff of Sum)']) \n", - "dfperlnd" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "dfperlnd['%diff of Sum'].hist(bins=40)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "dfperlnd['%diff of Sum'].describe()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The PERLND segments are ordered in assending \"abs(%diff of Sum)\", so the last entry is the worst case (by this measure.)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "pls = dfperlnd.index[-1]\n", - "print 'WORST PERLND SEGMENT IS', pls\n", - "print '%diff of the total PERO sum of', dfperlnd.loc[pls,'%diff of Sum']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER AGWO" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'AGWO')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER BASET" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'BASET')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### PERLND PWATER CEPE" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'CEPE')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER IFWI" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'IFWI')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER IFWO" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'IFWO')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER IGWI" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'IGWI')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER INFIL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'INFIL')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER LZET" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'LZET')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER PERC" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'PERC')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER PERO" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'PERO')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER PERS" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'PERS', 'last')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER PET, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'PET')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER SUPY" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'SUPY')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER SURO" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'SURO')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER TAET" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'TAET')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER UZET" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'UZET')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER UZI" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, 'UZI')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## RCHRES" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define routine to read HSPF and HSP2, plot together for RCHRES" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def rch(rid, name, how='sum'):\n", - " # Use Tim Cera's HBN reader to get the HSPF data \n", - " path = 'RCHRES,' + str(rid) + ',HYDR,' + name\n", - " hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path)\n", - " \n", - " # Now read the corresponding HSP2 data and comvert to monthly\n", - " path = '/RESULTS/RCHRES' + '_R' + '{:0>3s}'.format(str(rid)) + '/HYDR'\n", - " if how == 'sum':\n", - " hsp2 = pd.read_hdf(hdfpath, path)[name].resample('MS').sum()\n", - " elif how == 'last':\n", - " hsp2 = pd.read_hdf(hdfpath, path)[name].resample('MS').last()\n", - " \n", - " plt.figure(figsize=(10,8))\n", - " plt.plot(hspf.index, hspf, label='HSPF', color='r')\n", - " plt.plot(hsp2.index, hsp2, label='HSP2', color='b')\n", - " plt.legend()\n", - " plt.title('RCHRES ' + 'R' + '{:0>3s}'.format(str(rid)) + ', HYDR ' + name)\n", - " \n", - " return hspf, hsp2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Automate checking RCHRESs for ROVOL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "segments = [str(key[1]) for key in keys if key[0]=='RCHRES' and key[2]=='HYDR' and key[3]=='ROVOL' and key[4]==4]\n", - "\n", - "dfrchres = pd.DataFrame()\n", - "for seg in segments: \n", - " path = 'RCHRES,' + seg + ',HYDR,ROVOL'\n", - " hspf = hspfbintoolbox.extract(hbnpath, 'monthly', path).values\n", - "\n", - " path = 'RESULTS/RCHRES'+ '_R' + '{:0>3s}'.format(str(seg)) +'/HYDR' \n", - " hsp2 = pd.read_hdf(hdfpath, path)['ROVOL'].resample('MS').sum().values\n", - " \n", - " #dfrchres.at[seg, 'Max Diff'] = (hspf - hsp2).max()\n", - " dfrchres.at[seg, 'Sum of HSPF'] = hspf.sum()\n", - " dfrchres.at[seg, 'Sum of HSP2'] = hsp2.sum()\n", - " dfrchres.at[seg, '%diff of Sum'] = 100.0 * (hspf.sum() - hsp2.sum()) / hspf.sum()\n", - " dfrchres.at[seg, 'abs(%diff of Sum)'] = 100.0 * abs(hspf.sum() - hsp2.sum()) / hspf.sum() \n", - "\n", - "dfrchres = dfrchres.sort_values(by ='abs(%diff of Sum)') \n", - "dfrchres" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "dfrchres['%diff of Sum'].hist(bins=40)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "dfrchres['%diff of Sum'].describe()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The RCHRES segments are ordered in assending \"abs(%diff of Sum)\", so the last entry is the worst case (by this measure.)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "rid = dfrchres.index[-1]\n", - "print 'WORST RCHRES SEGMENT IS', rid\n", - "print '%diff of the total PERO sum of', dfrchres.loc[rid,'%diff of Sum']" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "dfrchres.loc[str(rid),:] #['%diff of Sum'].describe()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR IVOL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, 'IVOL')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR PRSUPY" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, 'PRSUPY')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR ROVOL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, 'ROVOL')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR VOL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, 'VOL', 'last')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR VOLEV" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, 'VOLEV')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.values.max(), hsp2.values.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/tests/Calleg/notebooks-py2/Test_Migration_of_HSPF_to_HSP2.ipynb b/tests/Calleg/notebooks-py2/Test_Migration_of_HSPF_to_HSP2.ipynb deleted file mode 100644 index c3be60fe..00000000 --- a/tests/Calleg/notebooks-py2/Test_Migration_of_HSPF_to_HSP2.ipynb +++ /dev/null @@ -1,1873 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n", - "This Jupyter Notebook Copyright 2017 by RESPEC, INC. All rights reserved." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Calleg TEST NOTEBOOK for HSP$^2$ \n", - "# Developed for Windows Plaform\n", - "\n", - "This Notebook will compare the results of running HSPF and HSP$^2$ for the basic hydrology (PWATER, IWATER, and HYDR) to confirm the proper calculations of HSP$^2$. This notebook requires HSPF to be installed and currently runs WinHSPF Lite from BASINS install C:\\BASINS41\\models\\HSPF\\bin\\WinHspfLt.exe. It is setup to run using the Calleguas example provided in the repo at " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Required Python imports and setup" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "execution": { - "iopub.execute_input": "2024-04-26T01:50:57.850746Z", - "iopub.status.busy": "2024-04-26T01:50:57.850179Z", - "iopub.status.idle": "2024-04-26T01:50:58.427802Z", - "shell.execute_reply": "2024-04-26T01:50:58.427342Z", - "shell.execute_reply.started": "2024-04-26T01:50:57.850724Z" - }, - "scrolled": true - }, - "outputs": [ - { - "ename": "AttributeError", - "evalue": "module 'HSP2tools' has no attribute 'reset_tutorial'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[3], line 26\u001b[0m\n\u001b[1;32m 22\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mHSP2tools\u001b[39;00m\n\u001b[1;32m 24\u001b[0m get_ipython()\u001b[38;5;241m.\u001b[39mrun_line_magic(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mmatplotlib\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124minline\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[0;32m---> 26\u001b[0m \u001b[43mHSP2tools\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mreset_tutorial\u001b[49m() \u001b[38;5;66;03m# make a new copy of the tutorial's data\u001b[39;00m\n\u001b[1;32m 27\u001b[0m HSP2tools\u001b[38;5;241m.\u001b[39mversions() \u001b[38;5;66;03m# display version information below\u001b[39;00m\n", - "\u001b[0;31mAttributeError\u001b[0m: module 'HSP2tools' has no attribute 'reset_tutorial'" - ] - } - ], - "source": [ - "import os\n", - "import site\n", - "\n", - "site.addsitedir(\n", - " os.getcwd().rsplit(\"\\\\\", 1)[0] + \"\\\\\"\n", - ") # adds your path to the HSP2 software.\n", - "\n", - "import shutil\n", - "\n", - "import numpy as np\n", - "import pandas as pd\n", - "\n", - "pd.options.display.max_rows = 18\n", - "pd.options.display.max_columns = 10\n", - "pd.options.display.float_format = (\n", - " \"{:.2f}\".format\n", - ") # display 2 digits after the decimal point\n", - "\n", - "import matplotlib.pyplot as plt\n", - "\n", - "import HSP2\n", - "import HSP2tools\n", - "\n", - "%matplotlib inline\n", - "\n", - "HSP2tools.reset_tutorial() # make a new copy of the tutorial's data\n", - "HSP2tools.versions() # display version information below" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Setup paths to the necessary datafiles\n", - "This assumes the calleg.uci and calleg.wdm files are located in the current working directory for this Notebook. This will create the binary output file, calleg.hbn, along with a number of other standard HSPF outputs." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.569525Z", - "iopub.status.idle": "2024-04-26T01:48:56.569838Z", - "shell.execute_reply": "2024-04-26T01:48:56.569725Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.569713Z" - } - }, - "outputs": [], - "source": [ - "wdmname = \"TutorialData/calleg.wdm\"\n", - "uciname = \"TutorialData/calleg.uci\"\n", - "hdfname = \"TutorialData/calleg.h5\"\n", - "hbnname = \"TutorialData/calleg.hbn\"" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Run HSPF\n", - "\n", - "Using the Basins 4.1 WinHspfLt executable to run calleg.uci.\n", - "\n", - "This assumes the calleg.uci and calleg.wdm files are located in the current working directory for this Notebook. This will create the binary output file, calleg.hbn, along with a number of other standard HSPF outputs." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.570553Z", - "iopub.status.idle": "2024-04-26T01:48:56.570777Z", - "shell.execute_reply": "2024-04-26T01:48:56.570682Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.570673Z" - } - }, - "outputs": [], - "source": [ - "%time !C:\\BASINS41\\models\\HSPF\\bin\\WinHspfLt.exe {uciname}" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Run HSP$^2$\n", - "\n", - "This assumes the calleg.h5 file has been created. If not, the following lines can be used to create the HDF5 file (see Tutorial 4 for details.)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.571304Z", - "iopub.status.idle": "2024-04-26T01:48:56.571467Z", - "shell.execute_reply": "2024-04-26T01:48:56.571397Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.571390Z" - } - }, - "outputs": [], - "source": [ - "HSP2tools.makeH5()\n", - "HSP2tools.readUCI(uciname, hdfname)\n", - "HSP2tools.ReadWDM(wdmname, hdfname)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now run HSP$^2$ on the calleg watershed" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.572074Z", - "iopub.status.idle": "2024-04-26T01:48:56.572333Z", - "shell.execute_reply": "2024-04-26T01:48:56.572235Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.572227Z" - } - }, - "outputs": [], - "source": [ - "%time HSP2.run(hdfname, saveall=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Determine Available Calculated Results\n", - "\n", - "Now use Tim Cera's hspfbintoolbox.py to determine the available timeseries created by HSPF and stored into the HBN binary file." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.572834Z", - "iopub.status.idle": "2024-04-26T01:48:56.573025Z", - "shell.execute_reply": "2024-04-26T01:48:56.572933Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.572924Z" - } - }, - "outputs": [], - "source": [ - "!ptrepack TutorialData\\calleg.h5 TutorialData\\packedCalleg.h5" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.573537Z", - "iopub.status.idle": "2024-04-26T01:48:56.573826Z", - "shell.execute_reply": "2024-04-26T01:48:56.573728Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.573719Z" - } - }, - "outputs": [], - "source": [ - "import hspfbintoolbox" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.574249Z", - "iopub.status.idle": "2024-04-26T01:48:56.574508Z", - "shell.execute_reply": "2024-04-26T01:48:56.574416Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.574408Z" - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "keys = sorted(hspfbintoolbox.catalog(hbnname).keys())\n", - "df_keys = pd.DataFrame(data=keys)\n", - "df_keys" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Automate checking IMPLNDs for SURO\n", - "\n", - "Extract the keys (calculated above) for IMPLD + IWATER + SURO. For each key, compute several columns. The final column shows the percent difference of the sum of the SURO for the entire run between HSPF and HSP2." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.574929Z", - "iopub.status.idle": "2024-04-26T01:48:56.575107Z", - "shell.execute_reply": "2024-04-26T01:48:56.575023Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.575015Z" - } - }, - "outputs": [], - "source": [ - "segments = []\n", - "for operation, segment, optype, variable, freq in keys:\n", - " if (\n", - " str(operation) == \"IMPLND\"\n", - " and str(optype) == \"IWATER\"\n", - " and str(variable) == \"SURO\"\n", - " and freq == 4\n", - " ):\n", - " segments.append(str(segment))\n", - "\n", - "dfimplnd = pd.DataFrame()\n", - "for seg in segments:\n", - " path = \"IMPLND,\" + seg + \",IWATER,SURO\"\n", - " hspf, units_flag = HSP2tools.get_HBNdata(hbnname, path)\n", - " hspf = hspf[\"M\"].values\n", - "\n", - " path = \"/RESULTS/IMPLND\" + \"_I\" + \"{:0>3s}\".format(str(seg)) + \"/IWATER\"\n", - " hsp2 = pd.read_hdf(hdfname, path)[\"SURO\"]\n", - " hsp2 = hsp2.resample(\"M\").sum().values\n", - "\n", - " dfimplnd.at[seg, \"Max Diff\"] = (hspf - hsp2).max()\n", - " dfimplnd.at[seg, \"Sum of HSPF\"] = hspf.sum()\n", - " dfimplnd.at[seg, \"Sum of HSP2\"] = hsp2.sum()\n", - " dfimplnd.at[seg, \"%diff of Sum\"] = 100.0 * (hspf.sum() - hsp2.sum()) / hspf.sum()\n", - " dfimplnd.at[seg, \"abs(%diff of Sum)\"] = (\n", - " 100.0 * abs(hspf.sum() - hsp2.sum()) / hspf.sum()\n", - " )\n", - "\n", - "dfimplnd = dfimplnd.sort_values(by=[\"abs(%diff of Sum)\"])\n", - "dfimplnd" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Look at the statistics for the percent difference column" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.575628Z", - "iopub.status.idle": "2024-04-26T01:48:56.575764Z", - "shell.execute_reply": "2024-04-26T01:48:56.575705Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.575699Z" - } - }, - "outputs": [], - "source": [ - "dfimplnd[\"%diff of Sum\"].describe()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "collapsed": true, - "jupyter": { - "outputs_hidden": true - } - }, - "source": [ - "### Now look at the worst case\n", - "The IMPLND segments are ordered in assending \"abs(%diff of Sum)\", so the last entry is the worst case (by this measure.)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.576241Z", - "iopub.status.idle": "2024-04-26T01:48:56.576408Z", - "shell.execute_reply": "2024-04-26T01:48:56.576354Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.576348Z" - } - }, - "outputs": [], - "source": [ - "ils = dfimplnd.index[-1]\n", - "print(\"WORST IMPLND SEGMENT IS \", ils)\n", - "print(\"%diff of the total SURO sum of\", dfimplnd.loc[ils, \"%diff of Sum\"])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define a function to read HSPF and HSP2 data, and plot together for IMPLND" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.576720Z", - "iopub.status.idle": "2024-04-26T01:48:56.576826Z", - "shell.execute_reply": "2024-04-26T01:48:56.576776Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.576771Z" - } - }, - "outputs": [], - "source": [ - "def imp(ils, name, how=\"sum\"):\n", - " # Use Tim Cera's HBN reader to get the HSPF data\n", - " path = \"IMPLND,\" + str(ils) + \",IWATER,\" + name\n", - " hspf, units_flag = HSP2tools.get_HBNdata(hbnname, path)\n", - " # There may be both monthly and annual timeseries available. Get the monthly timeseries.\n", - " hspf = hspf[\"M\"]\n", - "\n", - " # Now read the corresponding HSP2 data and comvert to monthly\n", - " path = \"/RESULTS/IMPLND\" + \"_I\" + \"{:0>3s}\".format(str(ils)) + \"/IWATER\"\n", - " hsp2 = pd.read_hdf(hdfname, path)\n", - " if how == \"sum\":\n", - " hsp2 = hsp2.resample(\"M\").sum()\n", - " elif how == \"last\":\n", - " hsp2 = hsp2.resample(\"M\").last()\n", - "\n", - " hsp2 = hsp2[name]\n", - "\n", - " plt.figure(figsize=(16, 8))\n", - " plt.plot(hspf.index, hspf, label=\"HSPF\", color=\"r\")\n", - " plt.plot(hsp2.index, hsp2, label=\"HSP2\", color=\"b\", linestyle=\"--\")\n", - " plt.legend()\n", - " plt.title(\"IMPLND \" + \"I\" + \"{:0>3s}\".format(str(ils)) + \", IWATER \" + name)\n", - "\n", - " return hspf, hsp2" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "collapsed": true, - "jupyter": { - "outputs_hidden": true - } - }, - "source": [ - "#### IMPLND IWATER SURO, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.577176Z", - "iopub.status.idle": "2024-04-26T01:48:56.577285Z", - "shell.execute_reply": "2024-04-26T01:48:56.577232Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.577227Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, \"SURO\", \"sum\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.577591Z", - "iopub.status.idle": "2024-04-26T01:48:56.577694Z", - "shell.execute_reply": "2024-04-26T01:48:56.577645Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.577641Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "collapsed": true, - "jupyter": { - "outputs_hidden": true - } - }, - "source": [ - "#### IMPLND IWATER IMPEV, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.578053Z", - "iopub.status.idle": "2024-04-26T01:48:56.578171Z", - "shell.execute_reply": "2024-04-26T01:48:56.578116Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.578111Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, \"IMPEV\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.578574Z", - "iopub.status.idle": "2024-04-26T01:48:56.578689Z", - "shell.execute_reply": "2024-04-26T01:48:56.578635Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.578630Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### IMPLND IWATER PET, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.579059Z", - "iopub.status.idle": "2024-04-26T01:48:56.579165Z", - "shell.execute_reply": "2024-04-26T01:48:56.579115Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.579110Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, \"PET\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.579402Z", - "iopub.status.idle": "2024-04-26T01:48:56.579504Z", - "shell.execute_reply": "2024-04-26T01:48:56.579455Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.579450Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### IMPLND IWATER RETS, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.579884Z", - "iopub.status.idle": "2024-04-26T01:48:56.579989Z", - "shell.execute_reply": "2024-04-26T01:48:56.579938Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.579934Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, \"RETS\", \"last\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.580300Z", - "iopub.status.idle": "2024-04-26T01:48:56.580416Z", - "shell.execute_reply": "2024-04-26T01:48:56.580362Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.580356Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### IMPLND IWATER SUPY, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.580679Z", - "iopub.status.idle": "2024-04-26T01:48:56.580784Z", - "shell.execute_reply": "2024-04-26T01:48:56.580734Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.580729Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, \"SUPY\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.581131Z", - "iopub.status.idle": "2024-04-26T01:48:56.581239Z", - "shell.execute_reply": "2024-04-26T01:48:56.581187Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.581182Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "collapsed": true, - "jupyter": { - "outputs_hidden": true - } - }, - "source": [ - "#### IMPLND IWATER SURS, Monthly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.581538Z", - "iopub.status.idle": "2024-04-26T01:48:56.581656Z", - "shell.execute_reply": "2024-04-26T01:48:56.581602Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.581596Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = imp(ils, \"SURS\", \"last\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.581995Z", - "iopub.status.idle": "2024-04-26T01:48:56.582128Z", - "shell.execute_reply": "2024-04-26T01:48:56.582053Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.582048Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Automate checking PERLNDs for PERO" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.582729Z", - "iopub.status.idle": "2024-04-26T01:48:56.582908Z", - "shell.execute_reply": "2024-04-26T01:48:56.582825Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.582818Z" - } - }, - "outputs": [], - "source": [ - "# With Large HBNs this currently takes a while (need to speed up the HBN Read)\n", - "segments = []\n", - "for operation, segment, optype, variable, freq in keys:\n", - " if (\n", - " str(operation) == \"PERLND\"\n", - " and str(optype) == \"PWATER\"\n", - " and str(variable) == \"PERO\"\n", - " and freq == 4\n", - " ):\n", - " segments.append(str(segment))\n", - "\n", - "dfperlnd = pd.DataFrame()\n", - "for seg in segments:\n", - " path = \"PERLND,\" + seg + \",PWATER,PERO\"\n", - " hspf, units_flag = HSP2tools.get_HBNdata(hbnname, path)\n", - " hspf = hspf[\"M\"].values\n", - "\n", - " path = \"RESULTS/PERLND\" + \"_P\" + \"{:0>3s}\".format(str(seg)) + \"/PWATER\"\n", - " hsp2 = pd.read_hdf(hdfname, path)[\"PERO\"]\n", - " hsp2 = hsp2.resample(\"M\").sum().values\n", - "\n", - " dfperlnd.at[seg, \"Max Diff\"] = (hspf - hsp2).max()\n", - " dfperlnd.at[seg, \"Sum of HSPF\"] = hspf.sum()\n", - " dfperlnd.at[seg, \"Sum of HSP2\"] = hsp2.sum()\n", - " dfperlnd.at[seg, \"%diff of Sum\"] = 100.0 * (hspf.sum() - hsp2.sum()) / hspf.sum()\n", - " dfperlnd.at[seg, \"abs(%diff of Sum)\"] = (\n", - " 100.0 * abs(hspf.sum() - hsp2.sum()) / hspf.sum()\n", - " )\n", - "\n", - "dfperlnd = dfperlnd.sort_values(by=[\"abs(%diff of Sum)\"])\n", - "dfperlnd" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.583534Z", - "iopub.status.idle": "2024-04-26T01:48:56.583705Z", - "shell.execute_reply": "2024-04-26T01:48:56.583629Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.583622Z" - } - }, - "outputs": [], - "source": [ - "dfperlnd[\"%diff of Sum\"].describe()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The PERLND segments are ordered in assending \"abs(%diff of Sum)\", so the last entry is the worst case (by this measure.)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.584164Z", - "iopub.status.idle": "2024-04-26T01:48:56.584307Z", - "shell.execute_reply": "2024-04-26T01:48:56.584241Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.584234Z" - } - }, - "outputs": [], - "source": [ - "pls = dfperlnd.index[-1]\n", - "print(\"WORST PERLND SEGMENT IS \", pls)\n", - "print(\"%diff of the total PERO sum of\", dfperlnd.loc[pls, \"%diff of Sum\"])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define routine to read HSPF and HSP2 data and plot together" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.584635Z", - "iopub.status.idle": "2024-04-26T01:48:56.584768Z", - "shell.execute_reply": "2024-04-26T01:48:56.584705Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.584699Z" - } - }, - "outputs": [], - "source": [ - "def per(pls, name, how=\"sum\"):\n", - " # Use Tim Cera's HBN reader to get the HSPF data\n", - " path = \"PERLND,\" + str(pls) + \",PWATER,\" + name\n", - " hspf, units_flag = HSP2tools.get_HBNdata(hbnname, path)\n", - " # There may be both monthly and annual timeseries available. Get the monthly timeseries.\n", - " hspf = hspf[\"M\"]\n", - "\n", - " # Now read the corresponding HSP2 data and comvert to monthly\n", - " path = \"/RESULTS/PERLND\" + \"_P\" + \"{:0>3s}\".format(str(pls)) + \"/PWATER\"\n", - " if how == \"sum\":\n", - " hsp2 = pd.read_hdf(hdfname, path)[name].resample(\"M\").sum()\n", - " elif how == \"last\":\n", - " hsp2 = pd.read_hdf(hdfname, path)[name].resample(\"M\").last()\n", - "\n", - " plt.figure(figsize=(16, 8))\n", - " plt.plot(hspf.index, hspf, label=\"HSPF\", color=\"r\")\n", - " plt.plot(hsp2.index, hsp2, label=\"HSP2\", color=\"b\", linestyle=\"--\")\n", - " plt.legend()\n", - " plt.title(\"PERLND \" + \"P\" + \"{:0>3s}\".format(str(pls)) + \", PWATER \" + name)\n", - "\n", - " return hspf, hsp2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER AGWO" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.585131Z", - "iopub.status.idle": "2024-04-26T01:48:56.585238Z", - "shell.execute_reply": "2024-04-26T01:48:56.585188Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.585183Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"AGWO\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.585742Z", - "iopub.status.idle": "2024-04-26T01:48:56.586151Z", - "shell.execute_reply": "2024-04-26T01:48:56.586065Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.586054Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER BASET" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.586640Z", - "iopub.status.idle": "2024-04-26T01:48:56.586812Z", - "shell.execute_reply": "2024-04-26T01:48:56.586743Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.586734Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"BASET\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.588417Z", - "iopub.status.idle": "2024-04-26T01:48:56.588717Z", - "shell.execute_reply": "2024-04-26T01:48:56.588624Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.588614Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### PERLND PWATER CEPE" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.589294Z", - "iopub.status.idle": "2024-04-26T01:48:56.589452Z", - "shell.execute_reply": "2024-04-26T01:48:56.589384Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.589378Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"CEPE\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.589817Z", - "iopub.status.idle": "2024-04-26T01:48:56.589955Z", - "shell.execute_reply": "2024-04-26T01:48:56.589890Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.589884Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER IFWI" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.590363Z", - "iopub.status.idle": "2024-04-26T01:48:56.590497Z", - "shell.execute_reply": "2024-04-26T01:48:56.590434Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.590428Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"IFWI\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.590957Z", - "iopub.status.idle": "2024-04-26T01:48:56.591069Z", - "shell.execute_reply": "2024-04-26T01:48:56.591017Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.591011Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER IFWO" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.591592Z", - "iopub.status.idle": "2024-04-26T01:48:56.591730Z", - "shell.execute_reply": "2024-04-26T01:48:56.591664Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.591658Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"IFWO\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.592185Z", - "iopub.status.idle": "2024-04-26T01:48:56.592326Z", - "shell.execute_reply": "2024-04-26T01:48:56.592260Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.592254Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER IGWI" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.592705Z", - "iopub.status.idle": "2024-04-26T01:48:56.592817Z", - "shell.execute_reply": "2024-04-26T01:48:56.592766Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.592760Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"IGWI\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.593228Z", - "iopub.status.idle": "2024-04-26T01:48:56.593353Z", - "shell.execute_reply": "2024-04-26T01:48:56.593287Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.593280Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER INFIL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.594170Z", - "iopub.status.idle": "2024-04-26T01:48:56.594369Z", - "shell.execute_reply": "2024-04-26T01:48:56.594300Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.594293Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"INFIL\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.594832Z", - "iopub.status.idle": "2024-04-26T01:48:56.595272Z", - "shell.execute_reply": "2024-04-26T01:48:56.595160Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.595149Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER LZET" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.595768Z", - "iopub.status.idle": "2024-04-26T01:48:56.595995Z", - "shell.execute_reply": "2024-04-26T01:48:56.595887Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.595876Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"LZET\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.596573Z", - "iopub.status.idle": "2024-04-26T01:48:56.596757Z", - "shell.execute_reply": "2024-04-26T01:48:56.596673Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.596664Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER PERC" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.597129Z", - "iopub.status.idle": "2024-04-26T01:48:56.597299Z", - "shell.execute_reply": "2024-04-26T01:48:56.597218Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.597210Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"PERC\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.597912Z", - "iopub.status.idle": "2024-04-26T01:48:56.598169Z", - "shell.execute_reply": "2024-04-26T01:48:56.598085Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.598077Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER PERO" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.598596Z", - "iopub.status.idle": "2024-04-26T01:48:56.598774Z", - "shell.execute_reply": "2024-04-26T01:48:56.598688Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.598680Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"PERO\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.599335Z", - "iopub.status.idle": "2024-04-26T01:48:56.599503Z", - "shell.execute_reply": "2024-04-26T01:48:56.599423Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.599415Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER PERS" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.600009Z", - "iopub.status.idle": "2024-04-26T01:48:56.600192Z", - "shell.execute_reply": "2024-04-26T01:48:56.600098Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.600090Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"PERS\", \"last\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.600770Z", - "iopub.status.idle": "2024-04-26T01:48:56.600942Z", - "shell.execute_reply": "2024-04-26T01:48:56.600859Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.600852Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER PET" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.601759Z", - "iopub.status.idle": "2024-04-26T01:48:56.601984Z", - "shell.execute_reply": "2024-04-26T01:48:56.601901Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.601893Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"PET\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.602414Z", - "iopub.status.idle": "2024-04-26T01:48:56.602582Z", - "shell.execute_reply": "2024-04-26T01:48:56.602503Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.602495Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "collapsed": true, - "jupyter": { - "outputs_hidden": true - } - }, - "source": [ - "#### PERLND PWATER SUPY" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.603013Z", - "iopub.status.idle": "2024-04-26T01:48:56.603200Z", - "shell.execute_reply": "2024-04-26T01:48:56.603108Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.603099Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"SUPY\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.603882Z", - "iopub.status.idle": "2024-04-26T01:48:56.604080Z", - "shell.execute_reply": "2024-04-26T01:48:56.603994Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.603986Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER SURO" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.604721Z", - "iopub.status.idle": "2024-04-26T01:48:56.604884Z", - "shell.execute_reply": "2024-04-26T01:48:56.604815Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.604808Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"SURO\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.605318Z", - "iopub.status.idle": "2024-04-26T01:48:56.605446Z", - "shell.execute_reply": "2024-04-26T01:48:56.605389Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.605383Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER TAET" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.605829Z", - "iopub.status.idle": "2024-04-26T01:48:56.605974Z", - "shell.execute_reply": "2024-04-26T01:48:56.605904Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.605898Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"TAET\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.606654Z", - "iopub.status.idle": "2024-04-26T01:48:56.606884Z", - "shell.execute_reply": "2024-04-26T01:48:56.606775Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.606766Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER UZET" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.607728Z", - "iopub.status.idle": "2024-04-26T01:48:56.608020Z", - "shell.execute_reply": "2024-04-26T01:48:56.607887Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.607873Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"UZET\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.608595Z", - "iopub.status.idle": "2024-04-26T01:48:56.608740Z", - "shell.execute_reply": "2024-04-26T01:48:56.608677Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.608671Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### PERLND PWATER UZI" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.609227Z", - "iopub.status.idle": "2024-04-26T01:48:56.609346Z", - "shell.execute_reply": "2024-04-26T01:48:56.609290Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.609284Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = per(pls, \"UZI\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.609606Z", - "iopub.status.idle": "2024-04-26T01:48:56.609744Z", - "shell.execute_reply": "2024-04-26T01:48:56.609679Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.609672Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## RCHRES" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Automate checking RCHRESs for ROVOL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.610125Z", - "iopub.status.idle": "2024-04-26T01:48:56.610258Z", - "shell.execute_reply": "2024-04-26T01:48:56.610198Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.610193Z" - } - }, - "outputs": [], - "source": [ - "# With Large HBNs this currently takes a while (need to speed up the HBN Read)\n", - "segments = []\n", - "for operation, segment, optype, variable, freq in keys:\n", - " if (\n", - " str(operation) == \"RCHRES\"\n", - " and str(optype) == \"HYDR\"\n", - " and str(variable) == \"ROVOL\"\n", - " and freq == 4\n", - " ):\n", - " segments.append(str(segment))\n", - "\n", - "dfrchres = pd.DataFrame()\n", - "for seg in segments:\n", - " string = \"RCHRES,\" + seg + \",HYDR,ROVOL\"\n", - " hspf, units_flag = HSP2tools.get_HBNdata(hbnname, string)\n", - " hspf = hspf[\"M\"].values\n", - "\n", - " string = \"RESULTS/RCHRES\" + \"_R\" + \"{:0>3s}\".format(str(seg)) + \"/HYDR\"\n", - " hsp2 = pd.read_hdf(hdfname, string)[\"ROVOL\"]\n", - " hsp2 = hsp2.resample(\"M\").sum().values\n", - "\n", - " dfrchres.at[seg, \"Max Diff\"] = (hspf - hsp2).max()\n", - " dfrchres.at[seg, \"Sum of HSPF\"] = hspf.sum()\n", - " dfrchres.at[seg, \"Sum of HSP2\"] = hsp2.sum()\n", - " dfrchres.at[seg, \"%diff of Sum\"] = 100.0 * (hspf.sum() - hsp2.sum()) / hspf.sum()\n", - " dfrchres.at[seg, \"abs(%diff of Sum)\"] = (\n", - " 100.0 * abs(hspf.sum() - hsp2.sum()) / hspf.sum()\n", - " )\n", - "\n", - "dfrchres = dfrchres.sort_values(by=[\"abs(%diff of Sum)\"])\n", - "dfrchres" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.610923Z", - "iopub.status.idle": "2024-04-26T01:48:56.611101Z", - "shell.execute_reply": "2024-04-26T01:48:56.611036Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.611029Z" - } - }, - "outputs": [], - "source": [ - "dfrchres[\"%diff of Sum\"].describe()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The RCHRES segments are ordered in assending \"abs(%diff of Sum)\", so the last entry is the worst case (by this measure.)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.611633Z", - "iopub.status.idle": "2024-04-26T01:48:56.611867Z", - "shell.execute_reply": "2024-04-26T01:48:56.611766Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.611756Z" - } - }, - "outputs": [], - "source": [ - "rid = dfrchres.index[-1]\n", - "print(\"WORST RCHRES SEGMENT IS \", rid)\n", - "print(\"%diff of the total ROVOL sum of\", dfrchres.loc[rid, \"%diff of Sum\"])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Define routine to read HSPF and HSP2, plot together for RCHRES" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.612743Z", - "iopub.status.idle": "2024-04-26T01:48:56.612890Z", - "shell.execute_reply": "2024-04-26T01:48:56.612831Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.612825Z" - } - }, - "outputs": [], - "source": [ - "def rch(rid, name, how=\"sum\"):\n", - " # Use Tim Cera's HBN reader to get the HSPF data\n", - " path = \"RCHRES,\" + str(rid) + \",HYDR,\" + name\n", - " hspf, units_flag = HSP2tools.get_HBNdata(hbnname, path)\n", - " # There may be both monthly and annual timeseries available. Get the monthly timeseries.\n", - " hspf = hspf[\"M\"]\n", - "\n", - " # Now read the corresponding HSP2 data and comvert to monthly\n", - " path = \"/RESULTS/RCHRES\" + \"_R\" + \"{:0>3s}\".format(str(rid)) + \"/HYDR\"\n", - " if how == \"sum\":\n", - " hsp2 = pd.read_hdf(hdfname, path)[name].resample(\"M\").sum()\n", - " elif how == \"last\":\n", - " hsp2 = pd.read_hdf(hdfname, path)[name].resample(\"M\").last()\n", - "\n", - " plt.figure(figsize=(16, 8))\n", - " plt.plot(hspf.index, hspf, label=\"HSPF\", color=\"r\")\n", - " plt.plot(hsp2.index, hsp2, label=\"HSP2\", color=\"b\", linestyle=\"--\")\n", - " plt.legend()\n", - " plt.title(\"RCHRES \" + \"R\" + \"{:0>3s}\".format(str(rid)) + \", HYDR \" + name)\n", - "\n", - " return hspf, hsp2" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR IVOL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.613459Z", - "iopub.status.idle": "2024-04-26T01:48:56.613600Z", - "shell.execute_reply": "2024-04-26T01:48:56.613536Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.613530Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, \"IVOL\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.614093Z", - "iopub.status.idle": "2024-04-26T01:48:56.614237Z", - "shell.execute_reply": "2024-04-26T01:48:56.614172Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.614166Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR PRSUPY" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.614641Z", - "iopub.status.idle": "2024-04-26T01:48:56.614835Z", - "shell.execute_reply": "2024-04-26T01:48:56.614743Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.614734Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, \"PRSUPY\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.615194Z", - "iopub.status.idle": "2024-04-26T01:48:56.615349Z", - "shell.execute_reply": "2024-04-26T01:48:56.615276Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.615269Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR ROVOL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.615755Z", - "iopub.status.idle": "2024-04-26T01:48:56.615904Z", - "shell.execute_reply": "2024-04-26T01:48:56.615834Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.615827Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, \"ROVOL\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.616294Z", - "iopub.status.idle": "2024-04-26T01:48:56.616433Z", - "shell.execute_reply": "2024-04-26T01:48:56.616368Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.616362Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR VOL" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.616710Z", - "iopub.status.idle": "2024-04-26T01:48:56.616842Z", - "shell.execute_reply": "2024-04-26T01:48:56.616778Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.616772Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, \"VOL\", \"last\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.617154Z", - "iopub.status.idle": "2024-04-26T01:48:56.617293Z", - "shell.execute_reply": "2024-04-26T01:48:56.617227Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.617220Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### RCHRES HYDR VOLEV" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.617656Z", - "iopub.status.idle": "2024-04-26T01:48:56.617788Z", - "shell.execute_reply": "2024-04-26T01:48:56.617724Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.617718Z" - } - }, - "outputs": [], - "source": [ - "hspf, hsp2 = rch(rid, \"VOLEV\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "execution": { - "iopub.status.busy": "2024-04-26T01:48:56.618107Z", - "iopub.status.idle": "2024-04-26T01:48:56.618232Z", - "shell.execute_reply": "2024-04-26T01:48:56.618172Z", - "shell.execute_reply.started": "2024-04-26T01:48:56.618166Z" - } - }, - "outputs": [], - "source": [ - "plt.scatter(hspf, hsp2)\n", - "top = 1.05 * max(hspf.max(), hsp2.max())\n", - "plt.plot([0.0, top], [0.0, top])" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.14" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/tests/GLWACSO/WDM_Testing/rpo772/rpo772.OUT.txt b/tests/GLWACSO/WDM_Testing/rpo772/rpo772.OUT.txt index f7eb471c..a7491a68 100644 --- a/tests/GLWACSO/WDM_Testing/rpo772/rpo772.OUT.txt +++ b/tests/GLWACSO/WDM_Testing/rpo772/rpo772.OUT.txt @@ -1,7 +1,7 @@ - OUTPUT LEVEL IS BLOCK - UPDATE OPTION IS NO + OUTPUT LEVEL IS BLOCK + UPDATE OPTION IS NO - WDM FILE: rpo772.wdm + WDM FILE: rpo772.wdm MAXREC : 20 FREREC : 15 diff --git a/tests/GLWACSO/WDM_Testing/rpo772/rpo772.exp b/tests/GLWACSO/WDM_Testing/rpo772/rpo772.exp index 39d2c0c5..ae9ec52e 100644 --- a/tests/GLWACSO/WDM_Testing/rpo772/rpo772.exp +++ b/tests/GLWACSO/WDM_Testing/rpo772/rpo772.exp @@ -1,88 +1,88 @@ -DATE -WDMSFL -SYSTEM -COMMENT -END COMMENT +DATE +WDMSFL +SYSTEM +COMMENT +END COMMENT DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 - LABEL - DATCRE 20180725155945 - DATMOD 20201203103319 - TCODE 2 - TSSTEP 15 - IDSCEN RPO_SWMM - IDLOCN RCH472 - IDCONS PO4P - TSTYPE PO4P - TGROUP 6 - COMPFG 1 - TSFORM 1 - TSFILL -999.0 - VBTIME 2 - TSBYR 2000 - DESCRP - - NONZRO 20640 - NUMZRO 0 - MAXVAL 2186.987 - MINVAL 36.72578 - MEANVL 63.24305 - STDDEV 141.3873 - SKEWCF 9.005717 - END LABEL + LABEL + DATCRE 20180725155945 + DATMOD 20201203103319 + TCODE 2 + TSSTEP 15 + IDSCEN RPO_SWMM + IDLOCN RCH472 + IDCONS PO4P + TSTYPE PO4P + TGROUP 6 + COMPFG 1 + TSFORM 1 + TSFILL -999.0 + VBTIME 2 + TSBYR 2000 + DESCRP + + NONZRO 20640 + NUMZRO 0 + MAXVAL 2186.987 + MINVAL 36.72578 + MEANVL 63.24305 + STDDEV 141.3873 + SKEWCF 9.005717 + END LABEL DATA STARTS: 2004 3 31 0 0 0 ENDS: 2017 10 31 24 0 0 - 2004 3 30 24 0 0 2 15 0 1 0 41.3837 - 2004 3 30 24 15 0 2 15 0 169 1 0.00000 - 2004 4 1 18 30 0 2 15 0 6 0 8.480000E-020.166700 - 0.167000 0.166700 0.166500 0.166200 + 2004 3 30 24 0 0 2 15 0 1 0 41.3837 + 2004 3 30 24 15 0 2 15 0 169 1 0.00000 + 2004 4 1 18 30 0 2 15 0 6 0 8.480000E-020.166700 + 0.167000 0.166700 0.166500 0.166200 2004 4 1 20 0 0 2 15 0 2 0 6.600000E-033.000000E-04 - 2004 4 1 20 30 0 2 15 0 1060 1 0.00000 - 2004 4 12 21 30 0 2 15 0 21 0 8.950000E-020.176000 - 0.176300 0.175800 0.175100 0.173800 0.171500 0.167900 - 0.163800 0.159700 0.156300 0.153800 0.151700 0.149700 + 2004 4 1 20 30 0 2 15 0 1060 1 0.00000 + 2004 4 12 21 30 0 2 15 0 21 0 8.950000E-020.176000 + 0.176300 0.175800 0.175100 0.173800 0.171500 0.167900 + 0.163800 0.159700 0.156300 0.153800 0.151700 0.149700 0.148300 0.147800 2.700000E-022.300000E-039.000000E-045.000000E-04 3.000000E-04 2004 4 13 2 45 0 2 15 0 2 1 2.000000E-04 2004 4 13 3 15 0 2 15 0 2 1 1.000000E-04 - 2004 4 13 3 45 0 2 15 0 751 1 0.00000 + 2004 4 13 3 45 0 2 15 0 751 1 0.00000 2004 4 20 23 30 0 2 15 0 1 0 8.290000E-02 - 2004 4 20 23 45 0 2 15 0 2 1 0.162900 - 2004 4 21 0 15 0 2 15 0 15 0 0.161000 0.157200 - 0.152500 0.145900 0.136600 0.127300 0.118600 0.113300 + 2004 4 20 23 45 0 2 15 0 2 1 0.162900 + 2004 4 21 0 15 0 2 15 0 15 0 0.161000 0.157200 + 0.152500 0.145900 0.136600 0.127300 0.118600 0.113300 0.111900 0.111500 1.890000E-021.300000E-035.000000E-043.000000E-04 2.000000E-04 2004 4 21 4 0 0 2 15 0 3 1 1.000000E-04 - 2004 4 21 4 45 0 2 15 0 38 1 0.00000 - 2004 4 21 14 15 0 2 15 0 6 0 0.113000 0.113800 + 2004 4 21 4 45 0 2 15 0 38 1 0.00000 + 2004 4 21 14 15 0 2 15 0 6 0 0.113000 0.113800 0.113400 6.570000E-021.600000E-031.000000E-04 - 2004 4 21 15 45 0 2 15 0 2 1 0.00000 - 2004 4 21 16 15 0 2 15 0 9 0 6.760000E-020.113100 + 2004 4 21 15 45 0 2 15 0 2 1 0.00000 + 2004 4 21 16 15 0 2 15 0 9 0 6.760000E-020.113100 0.112800 0.112400 1.950000E-021.400000E-035.000000E-043.000000E-04 2.000000E-04 2004 4 21 18 30 0 2 15 0 3 1 1.000000E-04 - 2004 4 21 19 15 0 2 15 0 313 1 0.00000 - 2004 4 25 1 30 0 2 15 0 4 0 6.560000E-020.128900 + 2004 4 21 19 15 0 2 15 0 313 1 0.00000 + 2004 4 25 1 30 0 2 15 0 4 0 6.560000E-020.128900 5.600000E-033.000000E-04 - 2004 4 25 2 30 0 2 15 0 10 1 0.00000 - 2004 4 25 5 0 0 2 15 0 12 0 0.129300 0.125900 - 0.119100 0.111800 0.107000 0.105100 0.104100 0.103300 + 2004 4 25 2 30 0 2 15 0 10 1 0.00000 + 2004 4 25 5 0 0 2 15 0 12 0 0.129300 0.125900 + 0.119100 0.111800 0.107000 0.105100 0.104100 0.103300 0.102700 6.110000E-022.200000E-035.000000E-04 2004 4 25 8 0 0 2 15 0 2 1 2.000000E-04 2004 4 25 8 30 0 2 15 0 2 1 1.000000E-04 - 2004 4 25 9 0 0 2 15 0 15 0 0.102100 0.101600 + 2004 4 25 9 0 0 2 15 0 15 0 0.102100 0.101600 9.950000E-029.710000E-029.500000E-029.360000E-029.230000E-029.110000E-02 9.020000E-028.990000E-021.640000E-021.400000E-035.000000E-043.000000E-04 2.000000E-04 2004 4 25 12 45 0 2 15 0 3 1 1.000000E-04 - 2004 4 25 13 30 0 2 15 0 100 1 0.00000 + 2004 4 25 13 30 0 2 15 0 100 1 0.00000 2004 4 26 14 30 0 2 15 0 4 0 4.990000E-029.810000E-02 4.200000E-032.000000E-04 - 2004 4 26 15 30 0 2 15 0 430 1 0.00000 - 2004 5 1 3 0 0 2 15 0 20 0 0.121600 0.105100 + 2004 4 26 15 30 0 2 15 0 430 1 0.00000 + 2004 5 1 3 0 0 2 15 0 20 0 0.121600 0.105100 8.820000E-027.390000E-026.500000E-026.050000E-025.660000E-025.310000E-02 5.050000E-024.890000E-024.760000E-024.640000E-024.550000E-024.490000E-02 4.460000E-024.420000E-024.400000E-027.100000E-036.000000E-042.000000E-04 2004 5 1 8 0 0 2 15 0 3 1 1.000000E-04 - 2004 5 1 8 45 0 2 15 0 25 1 0.00000 + 2004 5 1 8 45 0 2 15 0 25 1 0.00000 2004 5 1 15 0 0 2 15 0 68 0 4.650000E-024.790000E-02 4.770000E-024.730000E-024.680000E-024.640000E-024.610000E-024.570000E-02 4.540000E-024.520000E-024.490000E-024.460000E-024.360000E-024.130000E-02 @@ -105,7 +105,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 5 2 11 30 0 2 15 0 2 1 4.800000E-03 2004 5 2 12 0 0 2 15 0 2 1 4.700000E-03 2004 5 2 12 30 0 2 15 0 2 0 3.000000E-041.000000E-04 - 2004 5 2 13 0 0 2 15 0 428 1 0.00000 + 2004 5 2 13 0 0 2 15 0 428 1 0.00000 2004 5 6 24 0 0 2 15 0 10 0 6.470000E-026.170000E-02 5.710000E-025.260000E-024.990000E-024.920000E-024.900000E-022.500000E-03 4.000000E-042.000000E-04 @@ -114,21 +114,21 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.330000E-022.770000E-022.490000E-022.440000E-022.430000E-023.900000E-03 3.000000E-04 2004 5 7 5 15 0 2 15 0 2 1 1.000000E-04 - 2004 5 7 5 45 0 2 15 0 73 1 0.00000 + 2004 5 7 5 45 0 2 15 0 73 1 0.00000 2004 5 7 24 0 0 2 15 0 13 0 3.540000E-023.450000E-02 3.260000E-023.060000E-022.910000E-022.800000E-022.710000E-022.620000E-02 2.570000E-022.550000E-021.550000E-028.000000E-043.000000E-04 2004 5 8 3 15 0 2 15 0 3 1 1.000000E-04 - 2004 5 8 4 0 0 2 15 0 10 1 0.00000 + 2004 5 8 4 0 0 2 15 0 10 1 0.00000 2004 5 8 6 30 0 2 15 0 4 0 1.410000E-022.770000E-02 1.300000E-031.000000E-04 - 2004 5 8 7 30 0 2 15 0 70 1 0.00000 + 2004 5 8 7 30 0 2 15 0 70 1 0.00000 2004 5 9 1 0 0 2 15 0 16 0 3.700000E-023.810000E-02 3.800000E-023.770000E-023.720000E-023.650000E-023.580000E-023.520000E-02 3.460000E-023.430000E-023.400000E-023.380000E-023.360000E-025.500000E-03 4.000000E-042.000000E-04 2004 5 9 5 0 0 2 15 0 2 1 1.000000E-04 - 2004 5 9 5 30 0 2 15 0 54 1 0.00000 + 2004 5 9 5 30 0 2 15 0 54 1 0.00000 2004 5 9 19 0 0 2 15 0 31 0 4.150000E-023.930000E-02 3.610000E-023.300000E-023.110000E-023.050000E-023.020000E-022.990000E-02 2.690000E-022.070000E-021.580000E-021.200000E-029.500000E-037.900000E-03 @@ -140,28 +140,28 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 5 10 4 15 0 2 15 0 2 1 2.100000E-03 2004 5 10 4 45 0 2 15 0 3 1 2.000000E-03 2004 5 10 5 30 0 2 15 0 1 0 3.000000E-04 - 2004 5 10 5 45 0 2 15 0 55 1 0.00000 + 2004 5 10 5 45 0 2 15 0 55 1 0.00000 2004 5 10 19 30 0 2 15 0 3 0 5.900000E-031.160000E-02 5.000000E-04 - 2004 5 10 20 15 0 2 15 0 11 1 0.00000 + 2004 5 10 20 15 0 2 15 0 11 1 0.00000 2004 5 10 23 0 0 2 15 0 9 0 1.360000E-021.340000E-02 1.300000E-021.250000E-021.210000E-021.200000E-027.000000E-032.000000E-04 1.000000E-04 - 2004 5 11 1 15 0 2 15 0 3 1 0.00000 + 2004 5 11 1 15 0 2 15 0 3 1 0.00000 2004 5 11 2 0 0 2 15 0 8 0 1.280000E-021.250000E-02 1.210000E-021.170000E-021.130000E-021.110000E-021.100000E-021.080000E-02 2004 5 11 4 0 0 2 15 0 2 1 1.070000E-02 2004 5 11 4 30 0 2 15 0 1 0 7.000000E-04 2004 5 11 4 45 0 2 15 0 2 1 1.000000E-04 - 2004 5 11 5 15 0 2 15 0 236 1 0.00000 + 2004 5 11 5 15 0 2 15 0 236 1 0.00000 2004 5 13 16 15 0 2 15 0 6 0 4.570000E-024.600000E-02 4.590000E-022.700000E-028.000000E-041.000000E-04 - 2004 5 13 17 45 0 2 15 0 10 1 0.00000 + 2004 5 13 17 45 0 2 15 0 10 1 0.00000 2004 5 13 20 15 0 2 15 0 9 0 4.690000E-024.720000E-02 4.700000E-024.670000E-022.870000E-021.500000E-035.000000E-043.000000E-04 2.000000E-04 2004 5 13 22 30 0 2 15 0 3 1 1.000000E-04 - 2004 5 13 23 15 0 2 15 0 63 1 0.00000 + 2004 5 13 23 15 0 2 15 0 63 1 0.00000 2004 5 14 15 0 0 2 15 0 14 0 5.510000E-025.260000E-02 4.870000E-024.480000E-024.220000E-024.100000E-024.010000E-023.930000E-02 3.880000E-023.860000E-027.000000E-037.000000E-043.000000E-042.000000E-04 @@ -171,25 +171,25 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.210000E-023.170000E-023.150000E-023.120000E-023.110000E-025.000000E-03 4.000000E-04 2004 5 14 22 45 0 2 15 0 3 1 1.000000E-04 - 2004 5 14 23 30 0 2 15 0 250 1 0.00000 + 2004 5 14 23 30 0 2 15 0 250 1 0.00000 2004 5 17 14 0 0 2 15 0 18 0 6.370000E-026.270000E-02 6.020000E-025.730000E-025.420000E-025.090000E-024.780000E-024.480000E-02 4.250000E-024.100000E-023.960000E-023.840000E-023.750000E-023.730000E-02 2.270000E-021.100000E-034.000000E-042.000000E-04 2004 5 17 18 30 0 2 15 0 4 1 1.000000E-04 - 2004 5 17 19 30 0 2 15 0 306 1 0.00000 + 2004 5 17 19 30 0 2 15 0 306 1 0.00000 2004 5 20 24 0 0 2 15 0 11 0 6.480000E-024.270000E-02 2.760000E-021.780000E-021.250000E-029.400000E-037.000000E-035.100000E-03 4.100000E-033.900000E-033.800000E-03 2004 5 21 2 45 0 2 15 0 2 1 3.700000E-03 2004 5 21 3 15 0 2 15 0 2 0 3.600000E-036.000000E-04 - 2004 5 21 3 45 0 2 15 0 41 1 0.00000 + 2004 5 21 3 45 0 2 15 0 41 1 0.00000 2004 5 21 14 0 0 2 15 0 4 0 8.800000E-035.000000E-03 2.500000E-031.000000E-03 2004 5 21 15 0 0 2 15 0 2 0 6.000000E-044.000000E-04 2004 5 21 15 30 0 2 15 0 2 1 3.000000E-04 2004 5 21 16 0 0 2 15 0 6 1 2.000000E-04 - 2004 5 21 17 30 0 2 15 0 22 1 0.00000 + 2004 5 21 17 30 0 2 15 0 22 1 0.00000 2004 5 21 23 0 0 2 15 0 4 0 4.000000E-033.800000E-03 3.500000E-033.100000E-03 2004 5 21 24 0 0 2 15 0 3 1 2.900000E-03 @@ -197,65 +197,65 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 5 22 1 30 0 2 15 0 4 1 2.700000E-03 2004 5 22 2 30 0 2 15 0 3 1 2.600000E-03 2004 5 22 3 15 0 2 15 0 1 0 4.000000E-04 - 2004 5 22 3 30 0 2 15 0 6 1 0.00000 + 2004 5 22 3 30 0 2 15 0 6 1 0.00000 2004 5 22 5 0 0 2 15 0 2 1 3.800000E-03 2004 5 22 5 30 0 2 15 0 6 0 3.700000E-033.600000E-03 3.100000E-032.300000E-031.600000E-031.200000E-03 2004 5 22 7 0 0 2 15 0 4 1 9.000000E-04 2004 5 22 8 0 0 2 15 0 2 0 8.000000E-045.000000E-04 - 2004 5 22 8 30 0 2 15 0 58 1 0.00000 + 2004 5 22 8 30 0 2 15 0 58 1 0.00000 2004 5 22 23 0 0 2 15 0 5 0 1.090000E-021.050000E-02 9.700000E-039.000000E-038.600000E-03 2004 5 23 0 15 0 2 15 0 2 1 8.500000E-03 2004 5 23 0 45 0 2 15 0 2 0 5.000000E-041.000000E-04 - 2004 5 23 1 15 0 2 15 0 67 1 0.00000 + 2004 5 23 1 15 0 2 15 0 67 1 0.00000 2004 5 23 18 0 0 2 15 0 12 0 1.910000E-021.610000E-02 1.330000E-021.090000E-028.500000E-036.200000E-034.400000E-033.000000E-03 2.400000E-032.300000E-032.200000E-031.400000E-03 2004 5 23 21 0 0 2 15 0 3 1 2.300000E-03 2004 5 23 21 45 0 2 15 0 3 1 2.200000E-03 - 2004 5 23 22 30 0 2 15 0 3 0 1.000000E-04 0.00000 + 2004 5 23 22 30 0 2 15 0 3 0 1.000000E-04 0.00000 1.700000E-03 2004 5 23 23 15 0 2 15 0 2 1 2.700000E-03 2004 5 23 23 45 0 2 15 0 2 1 2.600000E-03 2004 5 24 0 15 0 2 15 0 2 0 5.000000E-041.000000E-04 - 2004 5 24 0 45 0 2 15 0 5 1 0.00000 + 2004 5 24 0 45 0 2 15 0 5 1 0.00000 2004 5 24 2 0 0 2 15 0 4 0 3.400000E-032.600000E-03 1.900000E-031.300000E-03 2004 5 24 3 0 0 2 15 0 5 1 1.000000E-03 2004 5 24 4 15 0 2 15 0 1 0 6.000000E-04 - 2004 5 24 4 30 0 2 15 0 114 1 0.00000 + 2004 5 24 4 30 0 2 15 0 114 1 0.00000 2004 5 25 9 0 0 2 15 0 8 0 1.970000E-022.010000E-02 1.990000E-021.960000E-021.930000E-021.920000E-023.200000E-033.000000E-04 2004 5 25 11 0 0 2 15 0 2 1 1.000000E-04 - 2004 5 25 11 30 0 2 15 0 196 1 0.00000 + 2004 5 25 11 30 0 2 15 0 196 1 0.00000 2004 5 27 12 30 0 2 15 0 3 0 2.430000E-024.770000E-02 4.780000E-02 2004 5 27 13 15 0 2 15 0 2 1 4.770000E-02 2004 5 27 13 45 0 2 15 0 3 0 4.760000E-022.000000E-03 1.000000E-04 - 2004 5 27 14 30 0 2 15 0 302 1 0.00000 + 2004 5 27 14 30 0 2 15 0 302 1 0.00000 2004 5 30 18 0 0 2 15 0 18 0 8.110000E-027.980000E-02 7.670000E-027.300000E-026.910000E-026.480000E-026.080000E-025.700000E-02 5.440000E-025.330000E-025.240000E-025.170000E-025.120000E-025.110000E-02 3.200000E-036.000000E-043.000000E-042.000000E-04 2004 5 30 22 30 0 2 15 0 3 1 1.000000E-04 - 2004 5 30 23 15 0 2 15 0 13 1 0.00000 + 2004 5 30 23 15 0 2 15 0 13 1 0.00000 2004 5 31 2 30 0 2 15 0 4 0 2.720000E-025.340000E-02 2.500000E-032.000000E-04 - 2004 5 31 3 30 0 2 15 0 15 1 0.00000 + 2004 5 31 3 30 0 2 15 0 15 1 0.00000 2004 5 31 7 15 0 2 15 0 6 0 5.500000E-025.540000E-02 5.520000E-023.250000E-029.000000E-041.000000E-04 - 2004 5 31 8 45 0 2 15 0 9 1 0.00000 + 2004 5 31 8 45 0 2 15 0 9 1 0.00000 2004 5 31 11 0 0 2 15 0 12 0 5.640000E-025.570000E-02 5.400000E-025.210000E-025.060000E-024.990000E-024.950000E-024.910000E-02 4.890000E-027.800000E-036.000000E-042.000000E-04 2004 5 31 14 0 0 2 15 0 3 1 1.000000E-04 - 2004 5 31 14 45 0 2 15 0 131 1 0.00000 + 2004 5 31 14 45 0 2 15 0 131 1 0.00000 2004 6 1 23 30 0 2 15 0 4 0 3.300000E-026.490000E-02 3.300000E-033.000000E-04 2004 6 2 0 30 0 2 15 0 2 1 1.000000E-04 - 2004 6 2 1 0 0 2 15 0 52 1 0.00000 + 2004 6 2 1 0 0 2 15 0 52 1 0.00000 2004 6 2 14 0 0 2 15 0 29 0 6.970000E-026.200000E-02 5.350000E-024.600000E-024.190000E-024.070000E-024.000000E-023.950000E-02 3.880000E-023.790000E-023.700000E-023.610000E-023.550000E-023.530000E-02 @@ -264,22 +264,22 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 1.000000E-035.000000E-043.000000E-04 2004 6 2 21 15 0 2 15 0 2 1 2.000000E-04 2004 6 2 21 45 0 2 15 0 2 1 1.000000E-04 - 2004 6 2 22 15 0 2 15 0 17 1 0.00000 + 2004 6 2 22 15 0 2 15 0 17 1 0.00000 2004 6 3 2 30 0 2 15 0 3 0 1.590000E-023.130000E-02 1.600000E-03 2004 6 3 3 15 0 2 15 0 2 1 1.000000E-04 - 2004 6 3 3 45 0 2 15 0 615 1 0.00000 + 2004 6 3 3 45 0 2 15 0 615 1 0.00000 2004 6 9 13 30 0 2 15 0 16 0 4.970000E-029.770000E-02 8.520000E-025.850000E-023.940000E-022.660000E-022.110000E-021.970000E-02 1.870000E-021.770000E-021.710000E-021.700000E-021.060000E-028.000000E-04 3.000000E-042.000000E-04 2004 6 9 17 30 0 2 15 0 3 1 1.000000E-04 - 2004 6 9 18 15 0 2 15 0 3 1 0.00000 + 2004 6 9 18 15 0 2 15 0 3 1 0.00000 2004 6 9 19 0 0 2 15 0 12 0 1.800000E-021.610000E-02 1.410000E-021.230000E-021.120000E-021.070000E-021.030000E-021.000000E-02 9.800000E-039.700000E-031.800000E-033.000000E-04 2004 6 9 22 0 0 2 15 0 2 1 1.000000E-04 - 2004 6 9 22 30 0 2 15 0 10 1 0.00000 + 2004 6 9 22 30 0 2 15 0 10 1 0.00000 2004 6 10 1 0 0 2 15 0 8 0 1.200000E-021.190000E-02 1.150000E-021.110000E-021.080000E-021.070000E-021.060000E-021.050000E-02 2004 6 10 3 0 0 2 15 0 2 1 1.040000E-02 @@ -290,7 +290,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 6 10 6 15 0 2 15 0 3 0 1.900000E-034.000000E-04 2.000000E-04 2004 6 10 7 0 0 2 15 0 3 1 1.000000E-04 - 2004 6 10 7 45 0 2 15 0 6 1 0.00000 + 2004 6 10 7 45 0 2 15 0 6 1 0.00000 2004 6 10 9 15 0 2 15 0 9 0 1.080000E-021.090000E-02 1.080000E-021.070000E-021.050000E-021.040000E-021.020000E-021.000000E-02 9.900000E-03 @@ -298,7 +298,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 6 10 12 0 0 2 15 0 4 0 9.700000E-032.100000E-03 4.000000E-042.000000E-04 2004 6 10 13 0 0 2 15 0 3 1 1.000000E-04 - 2004 6 10 13 45 0 2 15 0 6 1 0.00000 + 2004 6 10 13 45 0 2 15 0 6 1 0.00000 2004 6 10 15 15 0 2 15 0 1 0 1.150000E-02 2004 6 10 15 30 0 2 15 0 2 1 1.160000E-02 2004 6 10 16 0 0 2 15 0 10 0 1.140000E-021.120000E-02 @@ -326,91 +326,91 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 6 11 13 15 0 2 15 0 4 1 3.100000E-03 2004 6 11 14 15 0 2 15 0 1 0 7.000000E-04 2004 6 11 14 30 0 2 15 0 2 1 1.000000E-04 - 2004 6 11 15 0 0 2 15 0 70 1 0.00000 + 2004 6 11 15 0 0 2 15 0 70 1 0.00000 2004 6 12 8 30 0 2 15 0 1 0 7.900000E-03 2004 6 12 8 45 0 2 15 0 2 1 1.540000E-02 2004 6 12 9 15 0 2 15 0 8 0 1.520000E-021.490000E-02 1.440000E-021.410000E-021.400000E-022.600000E-034.000000E-042.000000E-04 2004 6 12 11 15 0 2 15 0 3 1 1.000000E-04 - 2004 6 12 12 0 0 2 15 0 126 1 0.00000 + 2004 6 12 12 0 0 2 15 0 126 1 0.00000 2004 6 13 19 30 0 2 15 0 1 0 1.740000E-02 2004 6 13 19 45 0 2 15 0 3 1 3.420000E-02 2004 6 13 20 30 0 2 15 0 8 0 3.400000E-023.380000E-02 3.350000E-022.170000E-022.100000E-039.000000E-045.000000E-043.000000E-04 2004 6 13 22 30 0 2 15 0 2 1 2.000000E-04 2004 6 13 23 0 0 2 15 0 1 0 1.000000E-04 - 2004 6 13 23 15 0 2 15 0 63 1 0.00000 + 2004 6 13 23 15 0 2 15 0 63 1 0.00000 2004 6 14 15 0 0 2 15 0 15 0 4.230000E-024.300000E-02 4.240000E-024.130000E-024.000000E-023.880000E-023.760000E-023.640000E-02 3.560000E-023.540000E-026.600000E-039.000000E-044.000000E-043.000000E-04 2.000000E-04 2004 6 14 18 45 0 2 15 0 3 1 1.000000E-04 - 2004 6 14 19 30 0 2 15 0 176 1 0.00000 + 2004 6 14 19 30 0 2 15 0 176 1 0.00000 2004 6 16 15 30 0 2 15 0 4 0 3.000000E-025.890000E-02 3.000000E-033.000000E-04 2004 6 16 16 30 0 2 15 0 2 1 1.000000E-04 - 2004 6 16 17 0 0 2 15 0 24 1 0.00000 + 2004 6 16 17 0 0 2 15 0 24 1 0.00000 2004 6 16 23 0 0 2 15 0 18 0 6.040000E-026.210000E-02 6.190000E-026.140000E-026.020000E-025.830000E-025.610000E-025.400000E-02 5.230000E-025.110000E-025.010000E-024.910000E-024.850000E-024.830000E-02 3.500000E-031.000000E-035.000000E-043.000000E-04 2004 6 17 3 30 0 2 15 0 2 1 2.000000E-04 2004 6 17 4 0 0 2 15 0 2 1 1.000000E-04 - 2004 6 17 4 30 0 2 15 0 10 1 0.00000 + 2004 6 17 4 30 0 2 15 0 10 1 0.00000 2004 6 17 7 0 0 2 15 0 11 0 4.950000E-025.030000E-02 4.950000E-024.820000E-024.720000E-024.700000E-029.000000E-031.400000E-03 7.000000E-044.000000E-043.000000E-04 2004 6 17 9 45 0 2 15 0 2 1 2.000000E-04 2004 6 17 10 15 0 2 15 0 1 0 1.000000E-04 - 2004 6 17 10 30 0 2 15 0 22 1 0.00000 + 2004 6 17 10 30 0 2 15 0 22 1 0.00000 2004 6 17 16 0 0 2 15 0 12 0 5.040000E-024.810000E-02 4.450000E-024.090000E-023.880000E-023.840000E-023.820000E-023.800000E-03 1.300000E-037.000000E-045.000000E-043.000000E-04 2004 6 17 19 0 0 2 15 0 2 1 2.000000E-04 2004 6 17 19 30 0 2 15 0 1 0 1.000000E-04 - 2004 6 17 19 45 0 2 15 0 359 1 0.00000 + 2004 6 17 19 45 0 2 15 0 359 1 0.00000 2004 6 21 13 30 0 2 15 0 4 0 4.090000E-028.040000E-02 4.100000E-034.000000E-04 2004 6 21 14 30 0 2 15 0 2 1 1.000000E-04 - 2004 6 21 15 0 0 2 15 0 16 1 0.00000 + 2004 6 21 15 0 0 2 15 0 16 1 0.00000 2004 6 21 19 0 0 2 15 0 13 0 8.070000E-028.200000E-02 8.080000E-027.870000E-027.710000E-027.660000E-021.470000E-022.300000E-03 1.100000E-036.000000E-044.000000E-043.000000E-042.000000E-04 2004 6 21 22 15 0 2 15 0 2 1 1.000000E-04 - 2004 6 21 22 45 0 2 15 0 7 1 0.00000 + 2004 6 21 22 45 0 2 15 0 7 1 0.00000 2004 6 22 0 30 0 2 15 0 4 0 3.960000E-027.780000E-02 4.000000E-034.000000E-04 2004 6 22 1 30 0 2 15 0 2 1 1.000000E-04 - 2004 6 22 2 0 0 2 15 0 586 1 0.00000 - 2004 6 28 4 30 0 2 15 0 19 0 6.130000E-020.120600 - 0.120800 0.120600 0.120500 0.120300 0.120000 0.119600 + 2004 6 22 2 0 0 2 15 0 586 1 0.00000 + 2004 6 28 4 30 0 2 15 0 19 0 6.130000E-020.120600 + 0.120800 0.120600 0.120500 0.120300 0.120000 0.119600 0.119100 0.118400 0.118000 7.700000E-031.900000E-039.000000E-04 6.000000E-044.000000E-043.000000E-042.000000E-041.000000E-04 - 2004 6 28 9 15 0 2 15 0 583 1 0.00000 - 2004 7 4 11 0 0 2 15 0 23 0 0.138300 0.142300 - 0.141700 0.140600 0.139100 0.137900 0.136900 0.136000 + 2004 6 28 9 15 0 2 15 0 583 1 0.00000 + 2004 7 4 11 0 0 2 15 0 23 0 0.138300 0.142300 + 0.141700 0.140600 0.139100 0.137900 0.136900 0.136000 0.126400 0.105200 8.640000E-027.090000E-026.340000E-026.220000E-02 6.190000E-027.800000E-033.100000E-031.700000E-031.200000E-038.000000E-04 6.000000E-044.000000E-042.000000E-04 - 2004 7 4 16 45 0 2 15 0 225 1 0.00000 + 2004 7 4 16 45 0 2 15 0 225 1 0.00000 2004 7 7 1 0 0 2 15 0 21 0 8.520000E-028.240000E-02 7.740000E-027.220000E-026.830000E-026.620000E-026.440000E-026.270000E-02 6.150000E-026.080000E-026.030000E-025.980000E-025.960000E-025.700000E-03 2.000000E-031.100000E-037.000000E-045.000000E-044.000000E-042.000000E-04 1.000000E-04 - 2004 7 7 6 15 0 2 15 0 461 1 0.00000 - 2004 7 12 1 30 0 2 15 0 19 0 5.220000E-020.102600 - 0.102800 0.102600 0.102500 0.102300 0.102000 0.101200 + 2004 7 7 6 15 0 2 15 0 461 1 0.00000 + 2004 7 12 1 30 0 2 15 0 19 0 5.220000E-020.102600 + 0.102800 0.102600 0.102500 0.102300 0.102000 0.101200 0.100200 9.900000E-029.820000E-021.790000E-023.100000E-031.400000E-03 9.000000E-046.000000E-045.000000E-044.000000E-042.000000E-04 - 2004 7 12 6 15 0 2 15 0 19 1 0.00000 + 2004 7 12 6 15 0 2 15 0 19 1 0.00000 2004 7 12 11 0 0 2 15 0 8 0 8.040000E-024.540000E-02 2.520000E-021.350000E-029.100000E-038.400000E-038.000000E-037.700000E-03 2004 7 12 13 0 0 2 15 0 2 1 7.400000E-03 2004 7 12 13 30 0 2 15 0 3 0 1.700000E-034.000000E-04 2.000000E-04 2004 7 12 14 15 0 2 15 0 4 1 1.000000E-04 - 2004 7 12 15 15 0 2 15 0 131 1 0.00000 + 2004 7 12 15 15 0 2 15 0 131 1 0.00000 2004 7 13 24 0 0 2 15 0 9 0 2.670000E-021.950000E-02 1.400000E-021.000000E-028.100000E-037.400000E-036.900000E-036.400000E-03 6.100000E-03 @@ -418,7 +418,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 7 14 2 45 0 2 15 0 2 1 5.900000E-03 2004 7 14 3 15 0 2 15 0 2 0 5.000000E-042.000000E-04 2004 7 14 3 45 0 2 15 0 2 1 1.000000E-04 - 2004 7 14 4 15 0 2 15 0 55 1 0.00000 + 2004 7 14 4 15 0 2 15 0 55 1 0.00000 2004 7 14 18 0 0 2 15 0 4 0 1.540000E-021.580000E-02 1.560000E-021.540000E-02 2004 7 14 19 0 0 2 15 0 2 1 1.510000E-02 @@ -426,7 +426,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 5.000000E-043.000000E-04 2004 7 14 20 30 0 2 15 0 2 1 2.000000E-04 2004 7 14 21 0 0 2 15 0 1 0 1.000000E-04 - 2004 7 14 21 15 0 2 15 0 183 1 0.00000 + 2004 7 14 21 15 0 2 15 0 183 1 0.00000 2004 7 16 19 0 0 2 15 0 35 0 4.230000E-024.300000E-02 4.230000E-024.120000E-024.030000E-023.980000E-023.950000E-023.920000E-02 3.900000E-023.700000E-031.300000E-037.000000E-043.890000E-023.910000E-02 @@ -435,37 +435,37 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2.990000E-022.960000E-022.950000E-022.800000E-031.000000E-035.000000E-04 4.000000E-043.000000E-042.000000E-04 2004 7 17 3 45 0 2 15 0 2 1 1.000000E-04 - 2004 7 17 4 15 0 2 15 0 9 1 0.00000 + 2004 7 17 4 15 0 2 15 0 9 1 0.00000 2004 7 17 6 30 0 2 15 0 4 0 1.630000E-023.200000E-02 1.900000E-033.000000E-04 2004 7 17 7 30 0 2 15 0 3 1 1.000000E-04 - 2004 7 17 8 15 0 2 15 0 127 1 0.00000 + 2004 7 17 8 15 0 2 15 0 127 1 0.00000 2004 7 18 16 0 0 2 15 0 17 0 4.910000E-024.400000E-02 3.820000E-023.310000E-022.760000E-022.210000E-021.770000E-021.410000E-02 1.240000E-021.200000E-021.180000E-021.160000E-021.150000E-027.800000E-03 1.200000E-035.000000E-043.000000E-04 2004 7 18 20 15 0 2 15 0 2 1 2.000000E-04 2004 7 18 20 45 0 2 15 0 2 1 1.000000E-04 - 2004 7 18 21 15 0 2 15 0 17 1 0.00000 + 2004 7 18 21 15 0 2 15 0 17 1 0.00000 2004 7 19 1 30 0 2 15 0 3 0 7.900000E-031.550000E-02 9.000000E-04 2004 7 19 2 15 0 2 15 0 2 1 1.000000E-04 - 2004 7 19 2 45 0 2 15 0 123 1 0.00000 + 2004 7 19 2 45 0 2 15 0 123 1 0.00000 2004 7 20 9 30 0 2 15 0 4 0 1.770000E-023.470000E-02 2.100000E-033.000000E-04 2004 7 20 10 30 0 2 15 0 3 1 1.000000E-04 - 2004 7 20 11 15 0 2 15 0 141 1 0.00000 + 2004 7 20 11 15 0 2 15 0 141 1 0.00000 2004 7 21 22 30 0 2 15 0 25 0 2.750000E-025.400000E-02 5.360000E-025.080000E-024.720000E-024.370000E-024.110000E-023.960000E-02 3.830000E-023.710000E-023.590000E-023.480000E-023.370000E-023.260000E-02 3.180000E-023.140000E-023.120000E-023.090000E-023.080000E-022.900000E-03 1.000000E-035.000000E-044.000000E-043.000000E-042.000000E-04 2004 7 22 4 45 0 2 15 0 2 1 1.000000E-04 - 2004 7 22 5 15 0 2 15 0 457 1 0.00000 + 2004 7 22 5 15 0 2 15 0 457 1 0.00000 2004 7 26 23 30 0 2 15 0 6 0 4.310000E-028.470000E-02 5.000000E-037.000000E-043.000000E-042.000000E-04 2004 7 27 1 0 0 2 15 0 3 1 1.000000E-04 - 2004 7 27 1 45 0 2 15 0 7 1 0.00000 + 2004 7 27 1 45 0 2 15 0 7 1 0.00000 2004 7 27 3 30 0 2 15 0 41 0 4.370000E-028.590000E-02 8.530000E-028.140000E-027.610000E-027.090000E-026.470000E-025.740000E-02 5.080000E-024.490000E-024.000000E-023.600000E-023.240000E-022.920000E-02 @@ -475,7 +475,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 1.110000E-029.900000E-039.300000E-039.100000E-039.000000E-038.900000E-03 8.800000E-037.000000E-042.000000E-04 2004 7 27 13 45 0 2 15 0 3 1 1.000000E-04 - 2004 7 27 14 30 0 2 15 0 2 1 0.00000 + 2004 7 27 14 30 0 2 15 0 2 1 0.00000 2004 7 27 15 0 0 2 15 0 6 0 1.000000E-029.800000E-03 9.500000E-039.200000E-038.900000E-038.800000E-03 2004 7 27 16 30 0 2 15 0 2 1 8.700000E-03 @@ -503,7 +503,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 7 28 5 30 0 2 15 0 2 1 5.600000E-03 2004 7 28 6 0 0 2 15 0 2 0 3.400000E-032.000000E-04 2004 7 28 6 30 0 2 15 0 2 1 1.000000E-04 - 2004 7 28 7 0 0 2 15 0 240 1 0.00000 + 2004 7 28 7 0 0 2 15 0 240 1 0.00000 2004 7 30 19 0 0 2 15 0 34 0 4.270000E-024.200000E-02 4.040000E-023.840000E-023.700000E-023.630000E-023.570000E-023.520000E-02 3.480000E-023.430000E-023.390000E-023.350000E-023.310000E-023.260000E-02 @@ -514,19 +514,19 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 7 31 3 30 0 2 15 0 8 0 2.540000E-022.490000E-02 2.460000E-021.530000E-021.200000E-035.000000E-043.000000E-042.000000E-04 2004 7 31 5 30 0 2 15 0 3 1 1.000000E-04 - 2004 7 31 6 15 0 2 15 0 9 1 0.00000 + 2004 7 31 6 15 0 2 15 0 9 1 0.00000 2004 7 31 8 30 0 2 15 0 4 0 1.370000E-022.700000E-02 1.600000E-032.000000E-04 2004 7 31 9 30 0 2 15 0 2 1 1.000000E-04 - 2004 7 31 10 0 0 2 15 0 252 1 0.00000 + 2004 7 31 10 0 0 2 15 0 252 1 0.00000 2004 8 3 1 0 0 2 15 0 12 0 4.900000E-022.770000E-02 1.530000E-027.700000E-035.000000E-034.500000E-034.300000E-034.200000E-03 4.100000E-034.000000E-039.000000E-042.000000E-04 2004 8 3 4 0 0 2 15 0 2 1 1.000000E-04 - 2004 8 3 4 30 0 2 15 0 8 1 0.00000 + 2004 8 3 4 30 0 2 15 0 8 1 0.00000 2004 8 3 6 30 0 2 15 0 3 0 3.100000E-036.200000E-03 4.000000E-04 - 2004 8 3 7 15 0 2 15 0 83 1 0.00000 + 2004 8 3 7 15 0 2 15 0 83 1 0.00000 2004 8 4 4 0 0 2 15 0 24 0 1.960000E-021.720000E-02 1.460000E-021.240000E-021.030000E-028.400000E-036.800000E-035.500000E-03 4.800000E-034.700000E-034.600000E-034.500000E-034.400000E-034.100000E-03 @@ -539,58 +539,58 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 8 4 12 30 0 2 15 0 2 1 1.300000E-03 2004 8 4 13 0 0 2 15 0 5 1 1.200000E-03 2004 8 4 14 15 0 2 15 0 2 0 8.000000E-041.000000E-04 - 2004 8 4 14 45 0 2 15 0 981 1 0.00000 - 2004 8 14 20 0 0 2 15 0 21 0 0.110000 0.106400 + 2004 8 4 14 45 0 2 15 0 981 1 0.00000 + 2004 8 14 20 0 0 2 15 0 21 0 0.110000 0.106400 9.990000E-029.320000E-028.860000E-028.670000E-028.530000E-028.420000E-02 8.320000E-028.250000E-028.190000E-028.130000E-028.100000E-027.000000E-03 2.300000E-031.200000E-038.000000E-046.000000E-044.000000E-043.000000E-04 2.000000E-04 - 2004 8 15 1 15 0 2 15 0 59 1 0.00000 + 2004 8 15 1 15 0 2 15 0 59 1 0.00000 2004 8 15 16 0 0 2 15 0 18 0 8.690000E-028.620000E-02 8.420000E-028.140000E-027.880000E-027.710000E-027.550000E-027.410000E-02 7.310000E-027.290000E-021.020000E-024.200000E-032.300000E-031.600000E-03 1.100000E-039.000000E-045.000000E-042.000000E-04 - 2004 8 15 20 30 0 2 15 0 32 1 0.00000 + 2004 8 15 20 30 0 2 15 0 32 1 0.00000 2004 8 16 4 30 0 2 15 0 5 0 3.900000E-027.660000E-02 4.400000E-036.000000E-042.000000E-04 2004 8 16 5 45 0 2 15 0 4 1 1.000000E-04 - 2004 8 16 6 45 0 2 15 0 413 1 0.00000 - 2004 8 20 14 0 0 2 15 0 29 0 0.107600 0.110000 + 2004 8 16 6 45 0 2 15 0 413 1 0.00000 + 2004 8 20 14 0 0 2 15 0 29 0 0.107600 0.110000 0.109100 0.107200 0.104400 0.100700 9.700000E-029.340000E-02 9.060000E-028.890000E-028.760000E-028.650000E-028.540000E-028.430000E-02 8.320000E-028.210000E-028.120000E-028.050000E-028.000000E-027.940000E-02 7.910000E-026.900000E-032.300000E-031.200000E-038.000000E-046.000000E-04 4.000000E-043.000000E-042.000000E-04 - 2004 8 20 21 15 0 2 15 0 25 1 0.00000 + 2004 8 20 21 15 0 2 15 0 25 1 0.00000 2004 8 21 3 30 0 2 15 0 6 0 4.170000E-028.190000E-02 4.700000E-036.000000E-043.000000E-042.000000E-04 2004 8 21 5 0 0 2 15 0 3 1 1.000000E-04 - 2004 8 21 5 45 0 2 15 0 453 1 0.00000 - 2004 8 25 23 0 0 2 15 0 12 0 0.113300 0.115800 + 2004 8 21 5 45 0 2 15 0 453 1 0.00000 + 2004 8 25 23 0 0 2 15 0 12 0 0.113300 0.115800 0.114800 0.112800 0.111200 0.110700 1.230000E-024.600000E-03 2.500000E-031.700000E-031.200000E-039.000000E-04 - 2004 8 26 2 0 0 2 15 0 2 1 0.00000 - 2004 8 26 2 30 0 2 15 0 11 0 5.630000E-020.110800 + 2004 8 26 2 0 0 2 15 0 2 1 0.00000 + 2004 8 26 2 30 0 2 15 0 11 0 5.630000E-020.110800 2.490000E-023.200000E-031.400000E-039.000000E-046.000000E-044.000000E-04 3.000000E-042.000000E-041.000000E-04 - 2004 8 26 5 15 0 2 15 0 131 1 0.00000 - 2004 8 27 14 0 0 2 15 0 17 0 0.115400 0.118800 - 0.118300 0.117400 0.116100 0.115100 0.114300 0.113500 + 2004 8 26 5 15 0 2 15 0 131 1 0.00000 + 2004 8 27 14 0 0 2 15 0 17 0 0.115400 0.118800 + 0.118300 0.117400 0.116100 0.115100 0.114300 0.113500 0.113100 9.800000E-033.200000E-031.700000E-031.100000E-038.000000E-04 6.000000E-045.000000E-043.000000E-04 - 2004 8 27 18 15 0 2 15 0 47 1 0.00000 + 2004 8 27 18 15 0 2 15 0 47 1 0.00000 2004 8 28 6 0 0 2 15 0 9 0 9.380000E-025.340000E-02 2.990000E-021.670000E-029.500000E-035.100000E-032.500000E-031.200000E-03 7.000000E-04 2004 8 28 8 15 0 2 15 0 2 1 6.000000E-04 2004 8 28 8 45 0 2 15 0 6 1 5.000000E-04 - 2004 8 28 10 15 0 2 15 0 17 1 0.00000 + 2004 8 28 10 15 0 2 15 0 17 1 0.00000 2004 8 28 14 30 0 2 15 0 3 0 1.800000E-033.600000E-03 2.000000E-04 - 2004 8 28 15 15 0 2 15 0 17 1 0.00000 + 2004 8 28 15 15 0 2 15 0 17 1 0.00000 2004 8 28 19 30 0 2 15 0 3 0 3.500000E-036.800000E-03 4.000000E-04 - 2004 8 28 20 15 0 2 15 0 45 1 0.00000 + 2004 8 28 20 15 0 2 15 0 45 1 0.00000 2004 8 29 7 30 0 2 15 0 1 0 7.400000E-03 2004 8 29 7 45 0 2 15 0 2 1 1.460000E-02 2004 8 29 8 15 0 2 15 0 17 0 1.440000E-021.410000E-02 @@ -600,20 +600,20 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 8 29 12 30 0 2 15 0 2 1 6.500000E-03 2004 8 29 13 0 0 2 15 0 2 0 6.400000E-035.000000E-04 2004 8 29 13 30 0 2 15 0 3 1 1.000000E-04 - 2004 8 29 14 15 0 2 15 0 169 1 0.00000 + 2004 8 29 14 15 0 2 15 0 169 1 0.00000 2004 8 31 8 30 0 2 15 0 4 0 1.710000E-023.370000E-02 1.900000E-032.000000E-04 2004 8 31 9 30 0 2 15 0 2 1 1.000000E-04 - 2004 8 31 10 0 0 2 15 0 404 1 0.00000 + 2004 8 31 10 0 0 2 15 0 404 1 0.00000 2004 9 4 15 0 0 2 15 0 13 0 8.120000E-027.800000E-02 7.270000E-026.730000E-026.350000E-026.150000E-025.980000E-025.830000E-02 5.720000E-025.690000E-029.700000E-031.000000E-034.000000E-04 2004 9 4 18 15 0 2 15 0 2 1 2.000000E-04 2004 9 4 18 45 0 2 15 0 3 1 1.000000E-04 - 2004 9 4 19 30 0 2 15 0 44 1 0.00000 + 2004 9 4 19 30 0 2 15 0 44 1 0.00000 2004 9 5 6 30 0 2 15 0 5 0 3.190000E-026.270000E-02 3.000000E-032.000000E-041.000000E-04 - 2004 9 5 7 45 0 2 15 0 161 1 0.00000 + 2004 9 5 7 45 0 2 15 0 161 1 0.00000 2004 9 6 24 0 0 2 15 0 28 0 7.920000E-027.410000E-02 6.710000E-026.050000E-025.410000E-024.790000E-024.230000E-023.740000E-02 3.320000E-022.970000E-022.660000E-022.380000E-022.160000E-022.000000E-02 @@ -623,7 +623,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2004 9 7 7 0 0 2 15 0 2 1 9.600000E-03 2004 9 7 7 30 0 2 15 0 2 0 7.000000E-042.000000E-04 2004 9 7 8 0 0 2 15 0 2 1 1.000000E-04 - 2004 9 7 8 30 0 2 15 0 144 1 0.00000 + 2004 9 7 8 30 0 2 15 0 144 1 0.00000 2004 9 8 20 30 0 2 15 0 3 0 1.660000E-023.270000E-02 3.280000E-02 2004 9 8 21 15 0 2 15 0 2 1 3.270000E-02 @@ -631,34 +631,34 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.210000E-023.160000E-023.100000E-023.060000E-023.050000E-026.300000E-03 1.000000E-035.000000E-043.000000E-042.000000E-04 2004 9 9 0 45 0 2 15 0 3 1 1.000000E-04 - 2004 9 9 1 30 0 2 15 0 1943 1 0.00000 - 2004 9 29 7 15 0 2 15 0 281 1 0.00000 - 2004 10 2 5 30 0 2 15 0 23 0 8.000000E-020.157200 - 0.157400 0.156700 0.155200 0.152900 0.149600 0.145300 - 0.140900 0.136400 0.132100 0.128000 0.124000 0.120000 - 0.116700 0.114200 0.111900 0.109800 0.108200 0.107600 + 2004 9 9 1 30 0 2 15 0 1943 1 0.00000 + 2004 9 29 7 15 0 2 15 0 281 1 0.00000 + 2004 10 2 5 30 0 2 15 0 23 0 8.000000E-020.157200 + 0.157400 0.156700 0.155200 0.152900 0.149600 0.145300 + 0.140900 0.136400 0.132100 0.128000 0.124000 0.120000 + 0.116700 0.114200 0.111900 0.109800 0.108200 0.107600 0.107300 4.100000E-032.000000E-04 - 2004 10 2 11 15 0 2 15 0 615 1 0.00000 - 2004 10 8 21 0 0 2 15 0 9 0 0.133500 0.137400 + 2004 10 2 11 15 0 2 15 0 615 1 0.00000 + 2004 10 8 21 0 0 2 15 0 9 0 0.133500 0.137400 0.136900 0.135900 0.134600 0.134000 7.580000E-021.600000E-03 1.000000E-04 - 2004 10 8 23 15 0 2 15 0 19 1 0.00000 - 2004 10 9 4 0 0 2 15 0 9 0 0.132800 0.132700 + 2004 10 8 23 15 0 2 15 0 19 1 0.00000 + 2004 10 9 4 0 0 2 15 0 9 0 0.132800 0.132700 0.129400 0.125500 0.122700 0.121800 0.121300 1.670000E-02 4.000000E-04 - 2004 10 9 6 15 0 2 15 0 443 1 0.00000 - 2004 10 13 21 0 0 2 15 0 24 0 0.135500 0.139500 - 0.139000 0.137900 0.136400 0.135300 0.134300 0.133400 - 0.132500 0.131600 0.130800 0.130000 0.128600 0.126000 - 0.123100 0.120000 0.117600 0.116200 0.115300 0.114400 + 2004 10 9 6 15 0 2 15 0 443 1 0.00000 + 2004 10 13 21 0 0 2 15 0 24 0 0.135500 0.139500 + 0.139000 0.137900 0.136400 0.135300 0.134300 0.133400 + 0.132500 0.131600 0.130800 0.130000 0.128600 0.126000 + 0.123100 0.120000 0.117600 0.116200 0.115300 0.114400 0.113800 0.113500 4.200000E-032.000000E-04 - 2004 10 14 3 0 0 2 15 0 14 1 0.00000 - 2004 10 14 6 30 0 2 15 0 6 0 0.113500 0.113900 + 2004 10 14 3 0 0 2 15 0 14 1 0.00000 + 2004 10 14 6 30 0 2 15 0 6 0 0.113500 0.113900 0.113500 6.510000E-021.500000E-031.000000E-04 - 2004 10 14 8 0 0 2 15 0 90 1 0.00000 + 2004 10 14 8 0 0 2 15 0 90 1 0.00000 2004 10 15 6 30 0 2 15 0 1 0 6.010000E-02 - 2004 10 15 6 45 0 2 15 0 2 1 0.118200 - 2004 10 15 7 15 0 2 15 0 24 0 0.116900 0.114000 + 2004 10 15 6 45 0 2 15 0 2 1 0.118200 + 2004 10 15 7 15 0 2 15 0 24 0 0.116900 0.114000 0.110700 0.107400 0.104600 0.101900 9.930000E-029.720000E-02 9.570000E-029.430000E-029.310000E-029.110000E-028.770000E-028.390000E-02 8.030000E-027.750000E-027.600000E-027.490000E-027.390000E-027.320000E-02 @@ -671,130 +671,130 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 4.240000E-024.140000E-024.080000E-024.020000E-023.970000E-023.920000E-02 3.890000E-023.860000E-023.840000E-023.820000E-023.810000E-021.500000E-03 1.000000E-04 - 2004 10 15 23 0 0 2 15 0 26 1 0.00000 + 2004 10 15 23 0 0 2 15 0 26 1 0.00000 2004 10 16 5 30 0 2 15 0 4 0 2.130000E-024.180000E-02 6.600000E-032.000000E-04 - 2004 10 16 6 30 0 2 15 0 6 1 0.00000 + 2004 10 16 6 30 0 2 15 0 6 1 0.00000 2004 10 16 8 0 0 2 15 0 20 0 3.160000E-024.280000E-02 4.250000E-024.200000E-024.150000E-024.100000E-024.050000E-024.000000E-02 3.960000E-023.940000E-022.230000E-025.000000E-043.760000E-023.940000E-02 3.930000E-023.910000E-023.890000E-023.880000E-021.600000E-031.000000E-04 - 2004 10 16 13 0 0 2 15 0 26 1 0.00000 + 2004 10 16 13 0 0 2 15 0 26 1 0.00000 2004 10 16 19 30 0 2 15 0 4 0 2.160000E-024.250000E-02 6.800000E-032.000000E-04 - 2004 10 16 20 30 0 2 15 0 184 1 0.00000 + 2004 10 16 20 30 0 2 15 0 184 1 0.00000 2004 10 18 18 30 0 2 15 0 4 0 3.310000E-026.510000E-02 2.500000E-031.000000E-04 - 2004 10 18 19 30 0 2 15 0 462 1 0.00000 - 2004 10 23 15 0 0 2 15 0 29 0 0.105900 0.105100 + 2004 10 18 19 30 0 2 15 0 462 1 0.00000 + 2004 10 23 15 0 0 2 15 0 29 0 0.105900 0.105100 0.102700 9.920000E-029.630000E-029.460000E-029.320000E-029.200000E-02 9.110000E-029.070000E-025.110000E-021.000000E-038.990000E-028.700000E-02 8.340000E-027.980000E-027.630000E-027.290000E-026.970000E-026.670000E-02 6.400000E-026.190000E-025.990000E-025.800000E-025.670000E-025.620000E-02 5.610000E-027.700000E-032.000000E-04 - 2004 10 23 22 15 0 2 15 0 8 1 0.00000 + 2004 10 23 22 15 0 2 15 0 8 1 0.00000 2004 10 24 0 15 0 2 15 0 6 0 5.430000E-025.700000E-02 5.670000E-025.650000E-023.170000E-026.000000E-04 - 2004 10 24 1 45 0 2 15 0 477 1 0.00000 - 2004 10 29 1 0 0 2 15 0 20 0 9.850000E-020.101400 + 2004 10 24 1 45 0 2 15 0 477 1 0.00000 + 2004 10 29 1 0 0 2 15 0 20 0 9.850000E-020.101400 0.101000 0.100200 9.620000E-028.770000E-027.910000E-027.130000E-02 6.430000E-025.800000E-025.230000E-024.710000E-024.400000E-024.310000E-02 4.270000E-024.230000E-024.210000E-024.200000E-026.400000E-032.000000E-04 - 2004 10 29 6 0 0 2 15 0 14 1 0.00000 + 2004 10 29 6 0 0 2 15 0 14 1 0.00000 2004 10 29 9 30 0 2 15 0 11 0 4.360000E-024.380000E-02 4.180000E-023.670000E-023.180000E-022.760000E-022.510000E-022.430000E-02 2.380000E-022.330000E-022.300000E-02 2004 10 29 12 15 0 2 15 0 2 1 2.280000E-02 2004 10 29 12 45 0 2 15 0 8 0 9.000000E-042.270000E-02 2.280000E-022.270000E-022.260000E-022.250000E-022.240000E-029.000000E-04 - 2004 10 29 14 45 0 2 15 0 53 1 0.00000 + 2004 10 29 14 45 0 2 15 0 53 1 0.00000 2004 10 30 4 0 0 2 15 0 12 0 2.970000E-023.050000E-02 3.040000E-023.020000E-022.880000E-022.570000E-022.270000E-022.010000E-02 1.860000E-021.810000E-021.780000E-021.750000E-02 2004 10 30 7 0 0 2 15 0 2 1 1.730000E-02 2004 10 30 7 30 0 2 15 0 2 0 9.700000E-032.000000E-04 - 2004 10 30 8 0 0 2 15 0 160 1 0.00000 - 2004 10 31 24 0 0 2 15 31 5856 1 -999.000 - 2004 12 31 24 0 0 6 1 31 1 1 -999.000 - 2005 12 31 24 0 0 6 1 31 1 1 -999.000 - 2006 12 31 24 0 0 6 1 31 1 1 -999.000 - 2007 12 31 24 0 0 6 1 31 1 1 -999.000 - 2008 12 31 24 0 0 6 1 31 1 1 -999.000 - 2009 12 31 24 0 0 6 1 31 1 1 -999.000 - 2010 12 31 24 0 0 6 1 31 1 1 -999.000 - 2011 12 31 24 0 0 6 1 31 1 1 -999.000 - 2012 12 31 24 0 0 6 1 31 1 1 -999.000 - 2013 12 31 24 0 0 6 1 31 1 1 -999.000 - 2014 12 31 24 0 0 6 1 31 1 1 -999.000 - 2015 12 31 24 0 0 2 1 31 32000 1 -999.000 - 2016 1 23 5 20 0 2 1 31 32000 1 -999.000 - 2016 2 14 10 40 0 2 1 31 32000 1 -999.000 - 2016 3 7 16 0 0 2 1 31 32000 1 -999.000 - 2016 3 29 21 20 0 2 1 31 32000 1 -999.000 - 2016 4 21 2 40 0 2 1 31 32000 1 -999.000 - 2016 5 13 8 0 0 2 1 31 32000 1 -999.000 - 2016 6 4 13 20 0 2 1 31 32000 1 -999.000 - 2016 6 26 18 40 0 2 1 31 32000 1 -999.000 - 2016 7 18 24 0 0 2 1 31 32000 1 -999.000 - 2016 8 10 5 20 0 2 1 31 32000 1 -999.000 - 2016 9 1 10 40 0 2 1 31 32000 1 -999.000 - 2016 9 23 16 0 0 2 1 31 32000 1 -999.000 - 2016 10 15 21 20 0 2 1 31 32000 1 -999.000 - 2016 11 7 2 40 0 2 1 31 32000 1 -999.000 - 2016 11 29 8 0 0 2 1 31 32000 1 -999.000 - 2016 12 21 13 20 0 2 1 31 13615 1 -999.000 - 2016 12 31 0 15 0 2 15 0 95 1 0.00000 - 2016 12 31 24 0 0 2 15 0 171 1 0.00000 - 2017 1 2 18 45 0 2 15 0 16 0 0.168700 0.167100 + 2004 10 30 8 0 0 2 15 0 160 1 0.00000 + 2004 10 31 24 0 0 2 15 31 5856 1 -999.000 + 2004 12 31 24 0 0 6 1 31 1 1 -999.000 + 2005 12 31 24 0 0 6 1 31 1 1 -999.000 + 2006 12 31 24 0 0 6 1 31 1 1 -999.000 + 2007 12 31 24 0 0 6 1 31 1 1 -999.000 + 2008 12 31 24 0 0 6 1 31 1 1 -999.000 + 2009 12 31 24 0 0 6 1 31 1 1 -999.000 + 2010 12 31 24 0 0 6 1 31 1 1 -999.000 + 2011 12 31 24 0 0 6 1 31 1 1 -999.000 + 2012 12 31 24 0 0 6 1 31 1 1 -999.000 + 2013 12 31 24 0 0 6 1 31 1 1 -999.000 + 2014 12 31 24 0 0 6 1 31 1 1 -999.000 + 2015 12 31 24 0 0 2 1 31 32000 1 -999.000 + 2016 1 23 5 20 0 2 1 31 32000 1 -999.000 + 2016 2 14 10 40 0 2 1 31 32000 1 -999.000 + 2016 3 7 16 0 0 2 1 31 32000 1 -999.000 + 2016 3 29 21 20 0 2 1 31 32000 1 -999.000 + 2016 4 21 2 40 0 2 1 31 32000 1 -999.000 + 2016 5 13 8 0 0 2 1 31 32000 1 -999.000 + 2016 6 4 13 20 0 2 1 31 32000 1 -999.000 + 2016 6 26 18 40 0 2 1 31 32000 1 -999.000 + 2016 7 18 24 0 0 2 1 31 32000 1 -999.000 + 2016 8 10 5 20 0 2 1 31 32000 1 -999.000 + 2016 9 1 10 40 0 2 1 31 32000 1 -999.000 + 2016 9 23 16 0 0 2 1 31 32000 1 -999.000 + 2016 10 15 21 20 0 2 1 31 32000 1 -999.000 + 2016 11 7 2 40 0 2 1 31 32000 1 -999.000 + 2016 11 29 8 0 0 2 1 31 32000 1 -999.000 + 2016 12 21 13 20 0 2 1 31 13615 1 -999.000 + 2016 12 31 0 15 0 2 15 0 95 1 0.00000 + 2016 12 31 24 0 0 2 15 0 171 1 0.00000 + 2017 1 2 18 45 0 2 15 0 16 0 0.168700 0.167100 0.163900 0.161000 0.160000 0.159400 0.159200 5.400000E-03 - 1.000000E-04 0.00000 0.157800 0.156600 0.156000 0.155700 + 1.000000E-04 0.00000 0.157800 0.156600 0.156000 0.155700 4.900000E-031.000000E-04 - 2017 1 2 22 45 0 2 15 0 2 1 0.00000 - 2017 1 2 23 15 0 2 15 0 25 0 0.153600 0.153100 + 2017 1 2 22 45 0 2 15 0 2 1 0.00000 + 2017 1 2 23 15 0 2 15 0 25 0 0.153600 0.153100 0.148000 0.136800 0.121200 0.103800 8.750000E-027.240000E-02 6.370000E-026.080000E-025.990000E-025.930000E-025.850000E-025.810000E-02 5.570000E-025.080000E-024.750000E-024.550000E-024.420000E-024.310000E-02 4.270000E-024.260000E-024.250000E-025.500000E-031.000000E-04 - 2017 1 3 5 30 0 2 15 0 2 1 0.00000 + 2017 1 3 5 30 0 2 15 0 2 1 0.00000 2017 1 3 6 0 0 2 15 0 5 0 4.260000E-024.220000E-02 4.210000E-024.200000E-021.300000E-03 - 2017 1 3 7 15 0 2 15 0 47 1 0.00000 + 2017 1 3 7 15 0 2 15 0 47 1 0.00000 2017 1 3 19 0 0 2 15 0 8 0 4.820000E-024.800000E-02 4.740000E-024.690000E-024.670000E-024.660000E-026.000000E-031.000000E-04 - 2017 1 3 21 0 0 2 15 0 246 1 0.00000 + 2017 1 3 21 0 0 2 15 0 246 1 0.00000 2017 1 6 10 30 0 2 15 0 4 0 7.500000E-027.490000E-02 1.090000E-023.000000E-04 - 2017 1 6 11 30 0 2 15 0 342 1 0.00000 - 2017 1 10 1 0 0 2 15 0 35 0 0.103900 0.103400 + 2017 1 6 11 30 0 2 15 0 342 1 0.00000 + 2017 1 10 1 0 0 2 15 0 35 0 0.103900 0.103400 0.101200 9.920000E-029.700000E-029.320000E-028.870000E-028.570000E-02 8.370000E-028.260000E-028.220000E-028.200000E-028.180000E-028.070000E-02 7.710000E-027.260000E-026.940000E-026.630000E-026.290000E-025.860000E-02 5.540000E-025.300000E-025.140000E-025.010000E-024.880000E-024.750000E-02 4.690000E-024.670000E-024.650000E-024.630000E-024.570000E-024.550000E-02 4.540000E-022.510000E-024.000000E-04 - 2017 1 10 9 45 0 2 15 0 3 1 0.00000 + 2017 1 10 9 45 0 2 15 0 3 1 0.00000 2017 1 10 10 30 0 2 15 0 26 0 4.570000E-024.530000E-02 4.510000E-024.500000E-024.470000E-024.420000E-024.400000E-024.390000E-02 2.430000E-024.340000E-024.260000E-024.210000E-024.190000E-024.180000E-02 2.320000E-024.000000E-04 0.00000 4.190000E-024.110000E-023.830000E-02 3.690000E-023.640000E-023.630000E-023.620000E-022.000000E-023.000000E-04 - 2017 1 10 17 0 0 2 15 0 7 1 0.00000 + 2017 1 10 17 0 0 2 15 0 7 1 0.00000 2017 1 10 18 45 0 2 15 0 16 0 3.700000E-023.670000E-02 3.660000E-023.620000E-023.570000E-023.510000E-023.410000E-023.080000E-02 2.950000E-022.860000E-022.740000E-022.700000E-022.690000E-022.680000E-02 1.480000E-022.000000E-04 - 2017 1 10 22 45 0 2 15 0 77 1 0.00000 + 2017 1 10 22 45 0 2 15 0 77 1 0.00000 2017 1 11 18 0 0 2 15 0 12 0 3.780000E-023.600000E-02 3.540000E-023.520000E-023.510000E-023.500000E-023.390000E-023.360000E-02 3.340000E-023.330000E-024.100000E-031.000000E-04 - 2017 1 11 21 0 0 2 15 0 3 1 0.00000 + 2017 1 11 21 0 0 2 15 0 3 1 0.00000 2017 1 11 21 45 0 2 15 0 6 0 3.360000E-023.370000E-02 3.320000E-023.080000E-022.980000E-022.950000E-02 2017 1 11 23 15 0 2 15 0 2 1 2.930000E-02 2017 1 11 23 45 0 2 15 0 13 0 3.600000E-032.920000E-02 2.800000E-022.670000E-022.580000E-022.470000E-022.420000E-022.410000E-02 2.370000E-022.350000E-022.340000E-022.330000E-027.000000E-04 - 2017 1 12 3 0 0 2 15 0 25 1 0.00000 + 2017 1 12 3 0 0 2 15 0 25 1 0.00000 2017 1 12 9 15 0 2 15 0 9 0 2.720000E-022.260000E-02 1.760000E-021.380000E-021.260000E-021.240000E-021.210000E-021.180000E-02 1.170000E-02 @@ -802,16 +802,16 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 1 12 12 0 0 2 15 0 2 0 1.150000E-021.140000E-02 2017 1 12 12 30 0 2 15 0 2 1 1.130000E-02 2017 1 12 13 0 0 2 15 0 1 0 4.000000E-04 - 2017 1 12 13 15 0 2 15 0 378 1 0.00000 + 2017 1 12 13 15 0 2 15 0 378 1 0.00000 2017 1 16 11 45 0 2 15 0 4 0 6.370000E-026.350000E-02 9.300000E-032.000000E-04 - 2017 1 16 12 45 0 2 15 0 4 1 0.00000 + 2017 1 16 12 45 0 2 15 0 4 1 0.00000 2017 1 16 13 45 0 2 15 0 10 0 6.390000E-023.630000E-02 7.000000E-04 0.00000 6.390000E-026.300000E-026.200000E-026.160000E-02 6.140000E-026.110000E-02 2017 1 16 16 15 0 2 15 0 5 0 6.030000E-026.000000E-02 5.990000E-023.320000E-025.000000E-04 - 2017 1 16 17 30 0 2 15 0 6 1 0.00000 + 2017 1 16 17 30 0 2 15 0 6 1 0.00000 2017 1 16 19 0 0 2 15 0 45 0 6.050000E-025.980000E-02 5.880000E-025.760000E-025.660000E-025.570000E-025.530000E-025.430000E-02 5.130000E-024.960000E-024.860000E-024.770000E-024.740000E-024.670000E-02 @@ -823,63 +823,63 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2.040000E-02 2017 1 17 6 15 0 2 15 0 2 1 2.030000E-02 2017 1 17 6 45 0 2 15 0 1 0 6.000000E-04 - 2017 1 17 7 0 0 2 15 0 2 1 0.00000 + 2017 1 17 7 0 0 2 15 0 2 1 0.00000 2017 1 17 7 30 0 2 15 0 9 0 2.030000E-021.970000E-02 1.940000E-021.930000E-021.860000E-021.700000E-021.620000E-021.580000E-02 1.570000E-02 2017 1 17 9 45 0 2 15 0 2 1 1.560000E-02 2017 1 17 10 15 0 2 15 0 6 0 5.000000E-041.570000E-02 1.560000E-021.550000E-021.540000E-021.900000E-03 - 2017 1 17 11 45 0 2 15 0 21 1 0.00000 + 2017 1 17 11 45 0 2 15 0 21 1 0.00000 2017 1 17 17 0 0 2 15 0 5 0 1.890000E-021.880000E-02 1.870000E-021.860000E-026.000000E-04 - 2017 1 17 18 15 0 2 15 0 48 1 0.00000 + 2017 1 17 18 15 0 2 15 0 48 1 0.00000 2017 1 18 6 15 0 2 15 0 5 0 2.630000E-022.610000E-02 2.600000E-021.430000E-022.000000E-04 - 2017 1 18 7 30 0 2 15 0 190 1 0.00000 + 2017 1 18 7 30 0 2 15 0 190 1 0.00000 2017 1 20 7 0 0 2 15 0 15 0 5.240000E-025.210000E-02 5.090000E-024.930000E-024.790000E-024.620000E-024.410000E-024.170000E-02 3.940000E-023.810000E-023.750000E-023.730000E-023.720000E-022.040000E-02 3.000000E-04 - 2017 1 20 10 45 0 2 15 0 271 1 0.00000 + 2017 1 20 10 45 0 2 15 0 271 1 0.00000 2017 1 23 6 30 0 2 15 0 4 0 7.040000E-027.030000E-02 1.030000E-023.000000E-04 - 2017 1 23 7 30 0 2 15 0 10 1 0.00000 + 2017 1 23 7 30 0 2 15 0 10 1 0.00000 2017 1 23 10 0 0 2 15 0 12 0 7.130000E-024.080000E-02 7.080000E-026.940000E-026.640000E-026.380000E-026.150000E-026.050000E-02 6.010000E-025.990000E-023.270000E-025.000000E-04 - 2017 1 23 13 0 0 2 15 0 64 1 0.00000 + 2017 1 23 13 0 0 2 15 0 64 1 0.00000 2017 1 24 5 0 0 2 15 0 9 0 6.710000E-026.680000E-02 6.670000E-026.630000E-026.550000E-026.520000E-026.510000E-023.610000E-02 6.000000E-04 - 2017 1 24 7 15 0 2 15 0 79 1 0.00000 + 2017 1 24 7 15 0 2 15 0 79 1 0.00000 2017 1 25 3 0 0 2 15 0 8 0 7.360000E-027.330000E-02 7.220000E-027.170000E-027.150000E-027.130000E-022.400000E-031.000000E-04 - 2017 1 25 5 0 0 2 15 0 155 1 0.00000 + 2017 1 25 5 0 0 2 15 0 155 1 0.00000 2017 1 26 19 45 0 2 15 0 6 0 8.630000E-028.560000E-02 8.530000E-028.510000E-022.800000E-031.000000E-04 - 2017 1 26 21 15 0 2 15 0 389 1 0.00000 - 2017 1 30 22 30 0 2 15 0 37 0 0.114000 0.113600 - 0.113100 0.111600 0.110900 0.110500 0.109000 0.108200 + 2017 1 26 21 15 0 2 15 0 389 1 0.00000 + 2017 1 30 22 30 0 2 15 0 37 0 0.114000 0.113600 + 0.113100 0.111600 0.110900 0.110500 0.109000 0.108200 0.106400 0.104400 0.103100 0.101100 9.920000E-029.750000E-02 9.460000E-029.210000E-028.970000E-028.740000E-028.580000E-028.420000E-02 8.190000E-028.000000E-027.830000E-027.720000E-027.550000E-027.400000E-02 7.240000E-027.020000E-026.830000E-026.680000E-026.540000E-026.450000E-02 6.340000E-026.300000E-026.280000E-023.420000E-025.000000E-04 - 2017 1 31 7 45 0 2 15 0 37 1 0.00000 + 2017 1 31 7 45 0 2 15 0 37 1 0.00000 2017 1 31 17 0 0 2 15 0 6 0 6.700000E-026.660000E-02 6.630000E-026.620000E-028.700000E-032.000000E-04 - 2017 1 31 18 30 0 2 15 0 38 1 0.00000 + 2017 1 31 18 30 0 2 15 0 38 1 0.00000 2017 2 1 4 0 0 2 15 0 17 0 7.040000E-027.010000E-02 6.980000E-026.870000E-026.720000E-026.570000E-026.510000E-026.480000E-02 6.470000E-026.060000E-025.580000E-025.370000E-025.300000E-025.280000E-02 5.270000E-027.200000E-032.000000E-04 - 2017 2 1 8 15 0 2 15 0 35 1 0.00000 + 2017 2 1 8 15 0 2 15 0 35 1 0.00000 2017 2 1 17 0 0 2 15 0 13 0 5.700000E-025.680000E-02 3.130000E-025.000000E-045.540000E-025.620000E-025.500000E-025.370000E-02 5.240000E-025.190000E-025.170000E-025.160000E-021.800000E-03 - 2017 2 1 20 15 0 2 15 0 529 1 0.00000 - 2017 2 7 8 30 0 2 15 0 38 0 0.102600 0.101400 + 2017 2 1 20 15 0 2 15 0 529 1 0.00000 + 2017 2 7 8 30 0 2 15 0 38 0 0.102600 0.101400 9.470000E-029.100000E-028.870000E-028.790000E-028.750000E-028.700000E-02 8.590000E-028.550000E-028.530000E-028.460000E-027.750000E-026.150000E-02 4.820000E-024.160000E-023.800000E-023.570000E-023.390000E-023.100000E-02 @@ -888,46 +888,46 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 1.530000E-021.520000E-021.480000E-021.360000E-021.280000E-021.250000E-02 2017 2 7 18 0 0 2 15 0 2 1 1.240000E-02 2017 2 7 18 30 0 2 15 0 2 0 6.800000E-031.000000E-04 - 2017 2 7 19 0 0 2 15 0 389 1 0.00000 + 2017 2 7 19 0 0 2 15 0 389 1 0.00000 2017 2 11 20 15 0 2 15 0 18 0 6.550000E-028.800000E-03 6.470000E-026.520000E-022.300000E-036.470000E-026.400000E-026.220000E-02 6.140000E-026.100000E-026.060000E-025.980000E-025.860000E-025.820000E-02 5.800000E-025.790000E-022.200000E-031.000000E-04 - 2017 2 12 0 45 0 2 15 0 7 1 0.00000 + 2017 2 12 0 45 0 2 15 0 7 1 0.00000 2017 2 12 2 30 0 2 15 0 29 0 5.870000E-025.790000E-02 5.670000E-025.560000E-025.530000E-025.480000E-025.410000E-025.380000E-02 5.370000E-025.270000E-025.070000E-024.900000E-024.720000E-024.610000E-02 4.450000E-024.340000E-024.290000E-024.270000E-023.820000E-023.390000E-02 3.200000E-023.150000E-023.130000E-023.110000E-023.070000E-023.050000E-02 3.040000E-024.100000E-031.000000E-04 - 2017 2 12 9 45 0 2 15 0 241 1 0.00000 + 2017 2 12 9 45 0 2 15 0 241 1 0.00000 2017 2 14 22 0 0 2 15 0 4 0 6.200000E-026.190000E-02 2.200000E-031.000000E-04 - 2017 2 14 23 0 0 2 15 0 870 1 0.00000 - 2017 2 24 0 30 0 2 15 0 16 0 0.127400 0.126900 - 0.125300 0.124200 0.123700 0.120600 0.118500 0.117800 - 0.117500 0.117200 0.112800 0.110100 0.109300 0.108900 + 2017 2 14 23 0 0 2 15 0 870 1 0.00000 + 2017 2 24 0 30 0 2 15 0 16 0 0.127400 0.126900 + 0.125300 0.124200 0.123700 0.120600 0.118500 0.117800 + 0.117500 0.117200 0.112800 0.110100 0.109300 0.108900 5.980000E-029.000000E-04 - 2017 2 24 4 30 0 2 15 0 45 1 0.00000 + 2017 2 24 4 30 0 2 15 0 45 1 0.00000 2017 2 24 15 45 0 2 15 0 8 0 7.820000E-023.100000E-02 2.490000E-022.430000E-022.410000E-022.400000E-021.330000E-022.000000E-04 - 2017 2 24 17 45 0 2 15 0 18 1 0.00000 + 2017 2 24 17 45 0 2 15 0 18 1 0.00000 2017 2 24 22 15 0 2 15 0 6 0 2.700000E-022.040000E-02 1.560000E-021.400000E-021.290000E-021.260000E-02 2017 2 24 23 45 0 2 15 0 2 1 1.250000E-02 2017 2 25 0 15 0 2 15 0 2 0 6.900000E-031.000000E-04 - 2017 2 25 0 45 0 2 15 0 312 1 0.00000 + 2017 2 25 0 45 0 2 15 0 312 1 0.00000 2017 2 28 6 45 0 2 15 0 11 0 5.680000E-025.660000E-02 5.610000E-025.520000E-025.430000E-025.320000E-025.190000E-025.140000E-02 5.120000E-025.100000E-021.700000E-03 - 2017 2 28 9 30 0 2 15 0 34 1 0.00000 + 2017 2 28 9 30 0 2 15 0 34 1 0.00000 2017 2 28 18 0 0 2 15 0 4 0 5.520000E-025.500000E-02 3.070000E-025.000000E-04 - 2017 2 28 19 0 0 2 15 0 6 1 0.00000 + 2017 2 28 19 0 0 2 15 0 6 1 0.00000 2017 2 28 20 30 0 2 15 0 9 0 5.580000E-025.400000E-02 4.860000E-024.550000E-024.490000E-024.470000E-024.450000E-025.900000E-03 1.000000E-04 - 2017 2 28 22 45 0 2 15 0 2 1 0.00000 + 2017 2 28 22 45 0 2 15 0 2 1 0.00000 2017 2 28 23 15 0 2 15 0 26 0 4.480000E-024.390000E-02 4.280000E-024.170000E-022.740000E-021.620000E-021.440000E-021.380000E-02 1.370000E-021.350000E-021.320000E-021.310000E-021.280000E-021.250000E-02 @@ -935,90 +935,90 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 5.600000E-035.000000E-034.600000E-034.200000E-033.900000E-033.700000E-03 2017 3 1 5 45 0 2 15 0 3 1 3.600000E-03 2017 3 1 6 30 0 2 15 0 1 0 5.000000E-04 - 2017 3 1 6 45 0 2 15 0 28 1 0.00000 + 2017 3 1 6 45 0 2 15 0 28 1 0.00000 2017 3 1 13 45 0 2 15 0 2 0 8.500000E-031.200000E-03 - 2017 3 1 14 15 0 2 15 0 184 1 0.00000 - 2017 3 3 12 15 0 2 15 0 287 1 0.00000 + 2017 3 1 14 15 0 2 15 0 184 1 0.00000 + 2017 3 3 12 15 0 2 15 0 287 1 0.00000 2017 3 6 12 0 0 2 15 0 3 0 7.180000E-021.050000E-02 3.000000E-04 - 2017 3 6 12 45 0 2 15 0 3 1 0.00000 + 2017 3 6 12 45 0 2 15 0 3 1 0.00000 2017 3 6 13 30 0 2 15 0 4 0 7.140000E-027.200000E-02 3.000000E-031.000000E-04 - 2017 3 6 14 30 0 2 15 0 23 1 0.00000 + 2017 3 6 14 30 0 2 15 0 23 1 0.00000 2017 3 6 20 15 0 2 15 0 11 0 7.440000E-021.090000E-02 3.000000E-04 0.00000 7.420000E-027.430000E-027.390000E-027.330000E-02 7.300000E-021.000000E-023.000000E-04 - 2017 3 6 23 0 0 2 15 0 17 1 0.00000 + 2017 3 6 23 0 0 2 15 0 17 1 0.00000 2017 3 7 3 15 0 2 15 0 3 0 7.470000E-027.350000E-02 7.310000E-02 2017 3 7 4 0 0 2 15 0 3 0 7.290000E-023.000000E-03 1.000000E-04 - 2017 3 7 4 45 0 2 15 0 3 1 0.00000 + 2017 3 7 4 45 0 2 15 0 3 1 0.00000 2017 3 7 5 30 0 2 15 0 12 0 7.240000E-027.110000E-02 6.910000E-026.170000E-025.960000E-025.910000E-025.880000E-025.800000E-02 5.760000E-025.750000E-022.400000E-031.000000E-04 - 2017 3 7 8 30 0 2 15 0 11 1 0.00000 + 2017 3 7 8 30 0 2 15 0 11 1 0.00000 2017 3 7 11 15 0 2 15 0 4 0 5.870000E-025.850000E-02 8.700000E-033.000000E-04 - 2017 3 7 12 15 0 2 15 0 547 1 0.00000 + 2017 3 7 12 15 0 2 15 0 547 1 0.00000 2017 3 13 5 0 0 2 15 0 50 0 0.107700 6.190000E-02 - 1.400000E-031.000000E-040.107300 6.280000E-021.600000E-030.103800 - 0.106500 0.106100 1.550000E-025.000000E-040.105200 0.104400 - 0.102700 0.102000 0.101700 4.000000E-032.000000E-040.101300 + 1.400000E-031.000000E-040.107300 6.280000E-021.600000E-030.103800 + 0.106500 0.106100 1.550000E-025.000000E-040.105200 0.104400 + 0.102700 0.102000 0.101700 4.000000E-032.000000E-040.101300 0.100400 9.960000E-029.830000E-029.730000E-029.590000E-029.410000E-02 9.340000E-029.300000E-029.120000E-028.890000E-028.730000E-028.580000E-02 8.380000E-028.180000E-027.980000E-027.780000E-027.590000E-027.440000E-02 7.200000E-027.080000E-026.970000E-026.920000E-026.820000E-026.770000E-02 6.750000E-026.680000E-026.630000E-026.610000E-021.000000E-024.000000E-04 - 2017 3 13 17 30 0 2 15 0 379 1 0.00000 + 2017 3 13 17 30 0 2 15 0 379 1 0.00000 2017 3 17 16 15 0 2 15 0 23 0 0.100300 9.970000E-02 9.630000E-029.160000E-028.810000E-028.560000E-028.400000E-028.190000E-02 7.910000E-027.830000E-027.800000E-024.540000E-021.200000E-031.000000E-04 0.00000 7.800000E-027.740000E-027.670000E-027.570000E-027.530000E-02 4.280000E-029.000000E-041.000000E-04 - 2017 3 17 22 0 0 2 15 0 30 1 0.00000 + 2017 3 17 22 0 0 2 15 0 30 1 0.00000 2017 3 18 5 30 0 2 15 0 23 0 7.820000E-027.730000E-02 7.600000E-027.520000E-027.410000E-027.380000E-024.170000E-027.320000E-02 7.250000E-027.120000E-027.030000E-026.920000E-026.780000E-026.520000E-02 6.220000E-026.030000E-025.870000E-025.760000E-025.670000E-025.630000E-02 5.620000E-022.500000E-031.000000E-04 - 2017 3 18 11 15 0 2 15 0 160 1 0.00000 + 2017 3 18 11 15 0 2 15 0 160 1 0.00000 2017 3 20 3 15 0 2 15 0 10 0 7.410000E-027.360000E-02 6.970000E-026.470000E-026.170000E-026.070000E-026.030000E-026.020000E-02 2.700000E-032.000000E-04 - 2017 3 20 5 45 0 2 15 0 7 1 0.00000 + 2017 3 20 5 45 0 2 15 0 7 1 0.00000 2017 3 20 7 30 0 2 15 0 3 0 6.120000E-021.880000E-02 4.200000E-03 2017 3 20 8 15 0 2 15 0 3 1 3.800000E-03 2017 3 20 9 0 0 2 15 0 2 0 2.200000E-031.000000E-04 - 2017 3 20 9 30 0 2 15 0 37 1 0.00000 + 2017 3 20 9 30 0 2 15 0 37 1 0.00000 2017 3 20 18 45 0 2 15 0 2 0 1.030000E-021.500000E-03 - 2017 3 20 19 15 0 2 15 0 2 1 0.00000 + 2017 3 20 19 15 0 2 15 0 2 1 0.00000 2017 3 20 19 45 0 2 15 0 3 0 1.030000E-021.080000E-02 4.000000E-04 - 2017 3 20 20 30 0 2 15 0 297 1 0.00000 + 2017 3 20 20 30 0 2 15 0 297 1 0.00000 2017 3 23 22 45 0 2 15 0 17 0 5.380000E-025.350000E-02 5.200000E-025.000000E-024.700000E-024.430000E-024.150000E-024.080000E-02 4.060000E-024.000000E-023.730000E-023.520000E-023.430000E-023.400000E-02 3.390000E-025.200000E-032.000000E-04 - 2017 3 24 3 0 0 2 15 0 91 1 0.00000 + 2017 3 24 3 0 0 2 15 0 91 1 0.00000 2017 3 25 1 45 0 2 15 0 5 0 4.660000E-024.640000E-02 4.620000E-021.900000E-031.000000E-04 - 2017 3 25 3 0 0 2 15 0 127 1 0.00000 + 2017 3 25 3 0 0 2 15 0 127 1 0.00000 2017 3 26 10 45 0 2 15 0 15 0 6.200000E-026.170000E-02 5.760000E-025.530000E-025.420000E-025.170000E-025.080000E-025.050000E-02 5.040000E-024.870000E-024.980000E-024.950000E-024.940000E-022.300000E-03 1.000000E-04 - 2017 3 26 14 30 0 2 15 0 6 1 0.00000 + 2017 3 26 14 30 0 2 15 0 6 1 0.00000 2017 3 26 16 0 0 2 15 0 24 0 5.020000E-024.920000E-02 4.880000E-024.840000E-024.780000E-024.760000E-022.720000E-024.610000E-02 4.700000E-024.680000E-024.670000E-022.200000E-034.630000E-024.580000E-02 4.510000E-024.480000E-024.470000E-022.200000E-031.000000E-044.460000E-02 4.430000E-024.420000E-021.700000E-031.000000E-04 - 2017 3 26 22 0 0 2 15 0 295 1 0.00000 + 2017 3 26 22 0 0 2 15 0 295 1 0.00000 2017 3 29 23 45 0 2 15 0 7 0 7.780000E-027.630000E-02 7.470000E-027.420000E-027.400000E-022.900000E-031.000000E-04 - 2017 3 30 1 30 0 2 15 0 22 1 0.00000 + 2017 3 30 1 30 0 2 15 0 22 1 0.00000 2017 3 30 7 0 0 2 15 0 18 0 7.590000E-027.050000E-02 5.540000E-024.500000E-023.960000E-023.560000E-023.030000E-022.490000E-02 2.090000E-021.740000E-021.490000E-021.290000E-029.900000E-037.900000E-03 @@ -1032,39 +1032,39 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.400000E-032.700000E-032.200000E-03 2017 3 30 17 0 0 2 15 0 4 1 2.000000E-03 2017 3 30 18 0 0 2 15 0 1 0 1.000000E-04 - 2017 3 30 18 15 0 2 15 0 2 1 0.00000 + 2017 3 30 18 15 0 2 15 0 2 1 0.00000 2017 3 30 18 45 0 2 15 0 9 0 2.600000E-032.500000E-03 2.200000E-031.900000E-031.600000E-031.500000E-031.300000E-031.100000E-03 1.000000E-03 2017 3 30 21 0 0 2 15 0 3 1 9.000000E-04 2017 3 30 21 45 0 2 15 0 1 0 1.000000E-04 - 2017 3 30 22 0 0 2 15 0 3 1 0.00000 + 2017 3 30 22 0 0 2 15 0 3 1 0.00000 2017 3 30 22 45 0 2 15 0 2 0 1.600000E-031.500000E-03 2017 3 30 23 15 0 2 15 0 4 1 1.400000E-03 2017 3 31 0 15 0 2 15 0 1 0 2.000000E-04 - 2017 3 31 0 30 0 2 15 0 337 1 0.00000 - 2017 4 3 12 45 0 2 15 0 10 0 0.169500 0.167900 + 2017 3 31 0 30 0 2 15 0 337 1 0.00000 + 2017 4 3 12 45 0 2 15 0 10 0 0.169500 0.167900 0.165900 0.163500 0.162100 0.161600 8.300000E-039.000000E-04 4.000000E-042.000000E-04 2017 4 3 15 15 0 2 15 0 3 1 1.000000E-04 - 2017 4 3 16 0 0 2 15 0 6 1 0.00000 + 2017 4 3 16 0 0 2 15 0 6 1 0.00000 2017 4 3 17 30 0 2 15 0 22 0 0.161500 9.520000E-02 - 2.700000E-030.160000 0.159100 0.158700 0.156700 0.155900 - 9.480000E-020.154700 0.153200 0.146900 0.140300 0.135600 + 2.700000E-030.160000 0.159100 0.158700 0.156700 0.155900 + 9.480000E-020.154700 0.153200 0.146900 0.140300 0.135600 0.132500 0.129700 0.128700 0.128400 8.000000E-031.200000E-03 5.000000E-043.000000E-04 2017 4 3 23 0 0 2 15 0 2 1 2.000000E-04 2017 4 3 23 30 0 2 15 0 2 1 1.000000E-04 - 2017 4 3 24 0 0 2 15 0 4 1 0.00000 - 2017 4 4 1 0 0 2 15 0 25 0 0.128800 0.126800 + 2017 4 3 24 0 0 2 15 0 4 1 0.00000 + 2017 4 4 1 0 0 2 15 0 25 0 0.128800 0.126800 0.126000 7.470000E-020.122400 0.124300 0.123700 1.900000E-02 - 1.000000E-033.000000E-042.000000E-041.000000E-040.123400 0.121200 - 0.119900 0.119500 5.400000E-035.000000E-040.118900 0.116100 + 1.000000E-033.000000E-042.000000E-041.000000E-040.123400 0.121200 + 0.119900 0.119500 5.400000E-035.000000E-040.118900 0.116100 0.115200 0.114900 6.600000E-039.000000E-044.000000E-04 2017 4 4 7 15 0 2 15 0 2 1 2.000000E-04 2017 4 4 7 45 0 2 15 0 2 1 1.000000E-04 - 2017 4 4 8 15 0 2 15 0 127 1 0.00000 - 2017 4 5 16 0 0 2 15 0 21 0 0.122400 0.106000 + 2017 4 4 8 15 0 2 15 0 127 1 0.00000 + 2017 4 5 16 0 0 2 15 0 21 0 0.122400 0.106000 9.530000E-029.200000E-029.110000E-028.150000E-027.580000E-026.920000E-02 6.310000E-025.930000E-025.220000E-024.470000E-023.880000E-022.390000E-02 1.670000E-021.350000E-021.200000E-021.090000E-021.020000E-029.800000E-03 @@ -1075,10 +1075,10 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 7.200000E-03 2017 4 5 24 0 0 2 15 0 2 1 7.100000E-03 2017 4 5 24 30 0 2 15 0 2 0 4.200000E-031.000000E-04 - 2017 4 6 1 0 0 2 15 0 19 1 0.00000 + 2017 4 6 1 0 0 2 15 0 19 1 0.00000 2017 4 6 5 45 0 2 15 0 3 0 1.050000E-021.700000E-03 1.000000E-04 - 2017 4 6 6 30 0 2 15 0 15 1 0.00000 + 2017 4 6 6 30 0 2 15 0 15 1 0.00000 2017 4 6 10 15 0 2 15 0 1 0 1.330000E-02 2017 4 6 10 30 0 2 15 0 2 1 1.320000E-02 2017 4 6 11 0 0 2 15 0 3 0 1.260000E-021.320000E-02 @@ -1094,7 +1094,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 4 6 18 0 0 2 15 0 2 1 9.500000E-03 2017 4 6 18 30 0 2 15 0 7 0 6.000000E-049.600000E-03 9.500000E-039.400000E-039.300000E-031.400000E-031.000000E-04 - 2017 4 6 20 15 0 2 15 0 4 1 0.00000 + 2017 4 6 20 15 0 2 15 0 4 1 0.00000 2017 4 6 21 15 0 2 15 0 3 0 1.020000E-021.010000E-02 1.600000E-03 2017 4 6 22 0 0 2 15 0 2 1 1.010000E-02 @@ -1104,65 +1104,65 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 4 6 24 0 0 2 15 0 1 0 5.000000E-04 2017 4 6 24 15 0 2 15 0 4 0 9.500000E-039.400000E-03 5.500000E-032.000000E-04 - 2017 4 7 1 15 0 2 15 0 330 1 0.00000 + 2017 4 7 1 15 0 2 15 0 330 1 0.00000 2017 4 10 11 45 0 2 15 0 7 0 4.950000E-024.610000E-02 4.530000E-024.510000E-026.800000E-033.000000E-041.000000E-04 - 2017 4 10 13 30 0 2 15 0 15 1 0.00000 + 2017 4 10 13 30 0 2 15 0 15 1 0.00000 2017 4 10 17 15 0 2 15 0 3 0 4.730000E-027.500000E-03 3.000000E-04 - 2017 4 10 18 0 0 2 15 0 21 1 0.00000 + 2017 4 10 18 0 0 2 15 0 21 1 0.00000 2017 4 10 23 15 0 2 15 0 11 0 5.010000E-024.910000E-02 4.660000E-023.480000E-022.180000E-021.200000E-029.300000E-037.700000E-03 7.000000E-036.700000E-036.200000E-03 2017 4 11 2 0 0 2 15 0 3 1 5.900000E-03 2017 4 11 2 45 0 2 15 0 1 0 3.000000E-04 - 2017 4 11 3 0 0 2 15 0 392 1 0.00000 + 2017 4 11 3 0 0 2 15 0 392 1 0.00000 2017 4 15 5 0 0 2 15 0 9 0 6.160000E-023.630000E-02 1.000000E-031.000000E-04 0.00000 6.170000E-023.640000E-021.000000E-03 1.000000E-04 - 2017 4 15 7 15 0 2 15 0 417 1 0.00000 + 2017 4 15 7 15 0 2 15 0 417 1 0.00000 2017 4 19 15 30 0 2 15 0 17 0 0.100400 9.650000E-02 8.830000E-027.450000E-024.930000E-023.910000E-023.540000E-023.220000E-02 2.900000E-022.670000E-022.480000E-022.360000E-022.330000E-022.320000E-02 3.800000E-032.000000E-041.000000E-04 - 2017 4 19 19 45 0 2 15 0 44 1 0.00000 + 2017 4 19 19 45 0 2 15 0 44 1 0.00000 2017 4 20 6 45 0 2 15 0 9 0 3.020000E-022.890000E-02 2.710000E-022.620000E-022.600000E-022.590000E-021.400000E-032.000000E-04 1.000000E-04 - 2017 4 20 9 0 0 2 15 0 20 1 0.00000 + 2017 4 20 9 0 0 2 15 0 20 1 0.00000 2017 4 20 14 0 0 2 15 0 13 0 2.930000E-022.640000E-02 2.910000E-022.790000E-021.410000E-028.400000E-037.200000E-036.400000E-03 5.700000E-035.600000E-035.500000E-033.300000E-031.000000E-04 - 2017 4 20 17 15 0 2 15 0 3 1 0.00000 + 2017 4 20 17 15 0 2 15 0 3 1 0.00000 2017 4 20 18 0 0 2 15 0 2 1 6.200000E-03 2017 4 20 18 30 0 2 15 0 1 0 9.000000E-04 - 2017 4 20 18 45 0 2 15 0 644 1 0.00000 + 2017 4 20 18 45 0 2 15 0 644 1 0.00000 2017 4 27 11 45 0 2 15 0 5 0 8.720000E-028.690000E-02 8.660000E-023.500000E-032.000000E-04 - 2017 4 27 13 0 0 2 15 0 236 1 0.00000 - 2017 4 29 24 0 0 2 15 0 17 0 0.104900 0.104400 + 2017 4 27 13 0 0 2 15 0 236 1 0.00000 + 2017 4 29 24 0 0 2 15 0 17 0 0.104900 0.104400 1.510000E-025.000000E-040.103900 0.100400 9.870000E-027.890000E-02 6.670000E-025.520000E-025.050000E-024.970000E-024.940000E-023.000000E-02 1.300000E-033.000000E-042.000000E-04 2017 4 30 4 15 0 2 15 0 3 1 1.000000E-04 - 2017 4 30 5 0 0 2 15 0 27 1 0.00000 + 2017 4 30 5 0 0 2 15 0 27 1 0.00000 2017 4 30 11 45 0 2 15 0 13 0 5.350000E-025.340000E-02 5.280000E-025.290000E-025.160000E-025.120000E-025.080000E-024.960000E-02 4.900000E-024.880000E-028.400000E-036.000000E-042.000000E-04 2017 4 30 15 0 0 2 15 0 3 1 1.000000E-04 - 2017 4 30 15 45 0 2 15 0 8 1 0.00000 + 2017 4 30 15 45 0 2 15 0 8 1 0.00000 2017 4 30 17 45 0 2 15 0 26 0 5.050000E-025.000000E-02 4.960000E-024.940000E-024.880000E-024.850000E-022.940000E-021.300000E-03 3.000000E-042.000000E-044.880000E-024.850000E-024.830000E-022.100000E-03 2.000000E-041.000000E-044.850000E-024.710000E-024.480000E-023.870000E-02 3.660000E-023.620000E-023.610000E-026.300000E-035.000000E-042.000000E-04 2017 5 1 0 15 0 2 15 0 2 1 1.000000E-04 - 2017 5 1 0 45 0 2 15 0 10 1 0.00000 + 2017 5 1 0 45 0 2 15 0 10 1 0.00000 2017 5 1 3 15 0 2 15 0 11 0 3.820000E-023.800000E-02 3.770000E-022.350000E-023.730000E-023.710000E-023.660000E-023.630000E-02 2.160000E-028.000000E-042.000000E-04 2017 5 1 6 0 0 2 15 0 3 1 1.000000E-04 - 2017 5 1 6 45 0 2 15 0 4 1 0.00000 + 2017 5 1 6 45 0 2 15 0 4 1 0.00000 2017 5 1 7 45 0 2 15 0 10 0 3.740000E-023.620000E-02 3.700000E-023.650000E-023.410000E-023.290000E-023.260000E-021.900000E-02 6.000000E-042.000000E-04 @@ -1171,10 +1171,10 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.170000E-023.140000E-023.120000E-023.080000E-023.070000E-021.800000E-03 3.000000E-04 2017 5 1 13 0 0 2 15 0 3 1 1.000000E-04 - 2017 5 1 13 45 0 2 15 0 64 1 0.00000 + 2017 5 1 13 45 0 2 15 0 64 1 0.00000 2017 5 2 5 45 0 2 15 0 4 0 4.060000E-024.050000E-02 2.200000E-032.000000E-04 - 2017 5 2 6 45 0 2 15 0 192 1 0.00000 + 2017 5 2 6 45 0 2 15 0 192 1 0.00000 2017 5 4 6 45 0 2 15 0 57 0 6.430000E-026.330000E-02 6.140000E-025.860000E-025.570000E-025.290000E-024.950000E-024.560000E-02 4.170000E-023.910000E-023.630000E-023.380000E-023.220000E-023.150000E-02 @@ -1189,11 +1189,11 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 5 4 21 0 0 2 15 0 2 1 4.600000E-03 2017 5 4 21 30 0 2 15 0 3 0 4.500000E-037.000000E-04 1.000000E-04 - 2017 5 4 22 15 0 2 15 0 5 1 0.00000 + 2017 5 4 22 15 0 2 15 0 5 1 0.00000 2017 5 4 23 30 0 2 15 0 2 1 5.800000E-03 2017 5 4 24 0 0 2 15 0 8 0 5.600000E-035.700000E-03 5.600000E-035.500000E-035.400000E-035.300000E-033.200000E-031.000000E-04 - 2017 5 5 2 0 0 2 15 0 10 1 0.00000 + 2017 5 5 2 0 0 2 15 0 10 1 0.00000 2017 5 5 4 30 0 2 15 0 2 0 7.300000E-037.000000E-03 2017 5 5 5 0 0 2 15 0 2 1 7.200000E-03 2017 5 5 5 30 0 2 15 0 2 1 7.100000E-03 @@ -1217,17 +1217,17 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 5 5 17 15 0 2 15 0 3 1 1.400000E-03 2017 5 5 18 0 0 2 15 0 3 1 1.300000E-03 2017 5 5 18 45 0 2 15 0 1 0 2.000000E-04 - 2017 5 5 19 0 0 2 15 0 504 1 0.00000 + 2017 5 5 19 0 0 2 15 0 504 1 0.00000 2017 5 11 1 0 0 2 15 0 16 0 7.110000E-027.090000E-02 6.990000E-026.760000E-026.230000E-025.890000E-025.620000E-025.370000E-02 5.210000E-025.070000E-025.010000E-024.940000E-024.900000E-022.860000E-02 1.000000E-032.000000E-04 2017 5 11 5 0 0 2 15 0 3 1 1.000000E-04 - 2017 5 11 5 45 0 2 15 0 18 1 0.00000 + 2017 5 11 5 45 0 2 15 0 18 1 0.00000 2017 5 11 10 15 0 2 15 0 7 0 4.220000E-023.990000E-02 3.940000E-023.930000E-022.300000E-034.000000E-042.000000E-04 2017 5 11 12 0 0 2 15 0 3 1 1.000000E-04 - 2017 5 11 12 45 0 2 15 0 442 1 0.00000 + 2017 5 11 12 45 0 2 15 0 442 1 0.00000 2017 5 16 3 15 0 2 15 0 8 0 8.870000E-028.670000E-02 8.490000E-028.440000E-021.310000E-029.000000E-043.000000E-042.000000E-04 2017 5 16 5 15 0 2 15 0 2 1 1.000000E-04 @@ -1236,36 +1236,36 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 7.000000E-044.000000E-04 2017 5 16 8 15 0 2 15 0 2 1 2.000000E-04 2017 5 16 8 45 0 2 15 0 3 1 1.000000E-04 - 2017 5 16 9 30 0 2 15 0 336 1 0.00000 + 2017 5 16 9 30 0 2 15 0 336 1 0.00000 2017 5 19 21 30 0 2 15 0 5 0 8.730000E-025.230000E-02 1.700000E-032.000000E-041.000000E-04 - 2017 5 19 22 45 0 2 15 0 65 1 0.00000 + 2017 5 19 22 45 0 2 15 0 65 1 0.00000 2017 5 20 15 0 0 2 15 0 13 0 9.290000E-029.180000E-02 8.620000E-027.890000E-027.450000E-027.250000E-027.200000E-024.400000E-02 2.200000E-037.000000E-044.000000E-043.000000E-042.000000E-04 2017 5 20 18 15 0 2 15 0 3 1 1.000000E-04 - 2017 5 20 19 0 0 2 15 0 23 1 0.00000 + 2017 5 20 19 0 0 2 15 0 23 1 0.00000 2017 5 21 0 45 0 2 15 0 8 0 7.340000E-026.070000E-02 5.620000E-023.550000E-022.860000E-029.800000E-038.300000E-037.800000E-03 2017 5 21 2 45 0 2 15 0 2 1 7.700000E-03 2017 5 21 3 15 0 2 15 0 2 0 4.000000E-041.000000E-04 - 2017 5 21 3 45 0 2 15 0 14 1 0.00000 + 2017 5 21 3 45 0 2 15 0 14 1 0.00000 2017 5 21 7 15 0 2 15 0 2 0 1.040000E-021.800000E-03 2017 5 21 7 45 0 2 15 0 2 1 1.050000E-02 2017 5 21 8 15 0 2 15 0 2 0 6.000000E-041.000000E-04 - 2017 5 21 8 45 0 2 15 0 5 1 0.00000 + 2017 5 21 8 45 0 2 15 0 5 1 0.00000 2017 5 21 10 0 0 2 15 0 4 0 1.180000E-021.150000E-02 1.100000E-021.060000E-02 2017 5 21 11 0 0 2 15 0 2 1 1.040000E-02 2017 5 21 11 30 0 2 15 0 2 0 2.000000E-032.000000E-04 2017 5 21 12 0 0 2 15 0 2 1 1.000000E-04 - 2017 5 21 12 30 0 2 15 0 11 1 0.00000 + 2017 5 21 12 30 0 2 15 0 11 1 0.00000 2017 5 21 15 15 0 2 15 0 7 0 1.110000E-028.600000E-03 8.400000E-038.300000E-035.000000E-032.000000E-041.000000E-04 - 2017 5 21 17 0 0 2 15 0 271 1 0.00000 + 2017 5 21 17 0 0 2 15 0 271 1 0.00000 2017 5 24 12 45 0 2 15 0 4 0 4.870000E-028.200000E-03 4.000000E-041.000000E-04 - 2017 5 24 13 45 0 2 15 0 16 1 0.00000 + 2017 5 24 13 45 0 2 15 0 16 1 0.00000 2017 5 24 17 45 0 2 15 0 17 0 5.060000E-024.920000E-02 4.860000E-024.840000E-022.700000E-034.000000E-042.000000E-044.870000E-02 4.830000E-024.640000E-024.440000E-024.340000E-024.290000E-024.270000E-02 @@ -1275,7 +1275,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.730000E-023.580000E-023.540000E-023.530000E-022.200000E-034.000000E-04 2.000000E-04 2017 5 25 1 0 0 2 15 0 3 1 1.000000E-04 - 2017 5 25 1 45 0 2 15 0 15 1 0.00000 + 2017 5 25 1 45 0 2 15 0 15 1 0.00000 2017 5 25 5 30 0 2 15 0 24 0 3.830000E-023.710000E-02 3.130000E-022.070000E-021.390000E-021.090000E-021.020000E-021.000000E-02 9.900000E-031.700000E-032.000000E-041.000000E-04 0.00000 1.060000E-02 @@ -1283,83 +1283,83 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.500000E-033.000000E-032.700000E-032.600000E-03 2017 5 25 11 30 0 2 15 0 2 1 2.500000E-03 2017 5 25 12 0 0 2 15 0 1 0 4.000000E-04 - 2017 5 25 12 15 0 2 15 0 4 1 0.00000 + 2017 5 25 12 15 0 2 15 0 4 1 0.00000 2017 5 25 13 15 0 2 15 0 1 0 3.500000E-03 2017 5 25 13 30 0 2 15 0 2 1 3.400000E-03 2017 5 25 14 0 0 2 15 0 2 1 3.300000E-03 2017 5 25 14 30 0 2 15 0 2 1 3.200000E-03 2017 5 25 15 0 0 2 15 0 1 0 2.000000E-04 - 2017 5 25 15 15 0 2 15 0 292 1 0.00000 + 2017 5 25 15 15 0 2 15 0 292 1 0.00000 2017 5 28 16 15 0 2 15 0 10 0 4.760000E-022.850000E-02 4.250000E-024.740000E-024.440000E-024.710000E-022.760000E-029.000000E-04 2.000000E-041.000000E-04 - 2017 5 28 18 45 0 2 15 0 9 1 0.00000 + 2017 5 28 18 45 0 2 15 0 9 1 0.00000 2017 5 28 21 0 0 2 15 0 12 0 4.850000E-024.290000E-02 3.970000E-023.820000E-023.780000E-023.710000E-023.690000E-022.300000E-02 1.400000E-035.000000E-043.000000E-042.000000E-04 2017 5 28 24 0 0 2 15 0 3 1 1.000000E-04 - 2017 5 28 24 45 0 2 15 0 60 1 0.00000 + 2017 5 28 24 45 0 2 15 0 60 1 0.00000 2017 5 29 15 45 0 2 15 0 16 0 4.600000E-022.760000E-02 9.000000E-044.580000E-024.540000E-022.670000E-029.000000E-042.000000E-04 4.370000E-022.880000E-022.760000E-022.740000E-022.730000E-022.000000E-03 5.000000E-042.000000E-04 2017 5 29 19 45 0 2 15 0 4 1 1.000000E-04 - 2017 5 29 20 45 0 2 15 0 112 1 0.00000 + 2017 5 29 20 45 0 2 15 0 112 1 0.00000 2017 5 31 0 45 0 2 15 0 5 0 4.400000E-024.380000E-02 7.200000E-033.000000E-041.000000E-04 - 2017 5 31 2 0 0 2 15 0 223 1 0.00000 + 2017 5 31 2 0 0 2 15 0 223 1 0.00000 2017 6 2 9 45 0 2 15 0 8 0 6.440000E-025.680000E-02 5.580000E-025.560000E-023.800000E-031.000000E-035.000000E-043.000000E-04 2017 6 2 11 45 0 2 15 0 2 1 2.000000E-04 2017 6 2 12 15 0 2 15 0 2 1 1.000000E-04 - 2017 6 2 12 45 0 2 15 0 178 1 0.00000 + 2017 6 2 12 45 0 2 15 0 178 1 0.00000 2017 6 4 9 15 0 2 15 0 3 0 7.610000E-024.440000E-02 1.200000E-03 2017 6 4 10 0 0 2 15 0 2 1 1.000000E-04 - 2017 6 4 10 30 0 2 15 0 961 1 0.00000 + 2017 6 4 10 30 0 2 15 0 961 1 0.00000 2017 6 14 10 45 0 2 15 0 10 0 0.129300 6.790000E-02 6.150000E-026.060000E-026.030000E-024.700000E-031.300000E-037.000000E-04 4.000000E-043.000000E-04 2017 6 14 13 15 0 2 15 0 2 1 2.000000E-04 2017 6 14 13 45 0 2 15 0 1 0 1.000000E-04 - 2017 6 14 14 0 0 2 15 0 60 1 0.00000 + 2017 6 14 14 0 0 2 15 0 60 1 0.00000 2017 6 15 5 0 0 2 15 0 3 0 6.790000E-023.970000E-02 1.100000E-03 2017 6 15 5 45 0 2 15 0 2 1 1.000000E-04 - 2017 6 15 6 15 0 2 15 0 32 1 0.00000 + 2017 6 15 6 15 0 2 15 0 32 1 0.00000 2017 6 15 14 15 0 2 15 0 4 0 7.140000E-023.300000E-03 2.000000E-041.000000E-04 - 2017 6 15 15 15 0 2 15 0 20 1 0.00000 + 2017 6 15 15 15 0 2 15 0 20 1 0.00000 2017 6 15 20 15 0 2 15 0 4 0 7.360000E-023.400000E-03 2.000000E-041.000000E-04 - 2017 6 15 21 15 0 2 15 0 169 1 0.00000 + 2017 6 15 21 15 0 2 15 0 169 1 0.00000 2017 6 17 15 30 0 2 15 0 10 0 8.960000E-025.000000E-02 3.460000E-023.330000E-023.300000E-022.110000E-021.800000E-038.000000E-04 4.000000E-043.000000E-04 2017 6 17 18 0 0 2 15 0 2 1 2.000000E-04 2017 6 17 18 30 0 2 15 0 1 0 1.000000E-04 - 2017 6 17 18 45 0 2 15 0 17 1 0.00000 + 2017 6 17 18 45 0 2 15 0 17 1 0.00000 2017 6 17 23 0 0 2 15 0 3 0 3.640000E-025.500000E-03 2.000000E-04 - 2017 6 17 23 45 0 2 15 0 153 1 0.00000 + 2017 6 17 23 45 0 2 15 0 153 1 0.00000 2017 6 19 14 0 0 2 15 0 12 0 5.620000E-025.450000E-02 5.180000E-024.940000E-024.760000E-024.660000E-024.630000E-029.500000E-03 1.700000E-038.000000E-045.000000E-043.000000E-04 2017 6 19 17 0 0 2 15 0 2 1 2.000000E-04 2017 6 19 17 30 0 2 15 0 1 0 1.000000E-04 - 2017 6 19 17 45 0 2 15 0 97 1 0.00000 + 2017 6 19 17 45 0 2 15 0 97 1 0.00000 2017 6 20 18 0 0 2 15 0 13 0 5.920000E-029.000000E-03 5.890000E-029.200000E-035.870000E-025.860000E-023.300000E-035.000000E-04 5.830000E-025.810000E-023.500000E-038.000000E-044.000000E-04 2017 6 20 21 15 0 2 15 0 2 1 2.000000E-04 2017 6 20 21 45 0 2 15 0 3 1 1.000000E-04 - 2017 6 20 22 30 0 2 15 0 130 1 0.00000 + 2017 6 20 22 30 0 2 15 0 130 1 0.00000 2017 6 22 7 0 0 2 15 0 17 0 7.310000E-023.300000E-03 7.240000E-024.370000E-021.500000E-032.000000E-047.210000E-027.300000E-02 4.900000E-036.000000E-042.000000E-041.000000E-047.320000E-027.310000E-02 4.100000E-035.000000E-042.000000E-04 2017 6 22 11 15 0 2 15 0 3 1 1.000000E-04 - 2017 6 22 12 0 0 2 15 0 29 1 0.00000 + 2017 6 22 12 0 0 2 15 0 29 1 0.00000 2017 6 22 19 15 0 2 15 0 34 0 7.050000E-025.020000E-02 3.830000E-023.130000E-022.690000E-022.360000E-022.110000E-021.910000E-02 1.760000E-021.630000E-021.530000E-021.440000E-021.370000E-021.300000E-02 @@ -1386,7 +1386,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 1.000000E-047.300000E-037.200000E-035.000000E-041.000000E-04 2017 6 23 12 0 0 2 15 0 2 1 7.500000E-03 2017 6 23 12 30 0 2 15 0 3 0 4.000000E-041.000000E-04 - 0.00000 + 0.00000 2017 6 23 13 15 0 2 15 0 2 1 8.000000E-03 2017 6 23 13 45 0 2 15 0 1 0 1.500000E-03 2017 6 23 14 0 0 2 15 0 2 1 8.000000E-03 @@ -1397,28 +1397,28 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 6 23 16 30 0 2 15 0 2 1 8.800000E-03 2017 6 23 17 0 0 2 15 0 2 0 1.800000E-033.000000E-04 2017 6 23 17 30 0 2 15 0 3 1 1.000000E-04 - 2017 6 23 18 15 0 2 15 0 254 1 0.00000 + 2017 6 23 18 15 0 2 15 0 254 1 0.00000 2017 6 26 9 45 0 2 15 0 8 0 4.320000E-023.800000E-02 3.740000E-023.730000E-022.500000E-036.000000E-043.000000E-042.000000E-04 2017 6 26 11 45 0 2 15 0 3 1 1.000000E-04 - 2017 6 26 12 30 0 2 15 0 20 1 0.00000 + 2017 6 26 12 30 0 2 15 0 20 1 0.00000 2017 6 26 17 30 0 2 15 0 3 0 4.090000E-021.900000E-03 1.000000E-04 - 2017 6 26 18 15 0 2 15 0 11 1 0.00000 + 2017 6 26 18 15 0 2 15 0 11 1 0.00000 2017 6 26 21 0 0 2 15 0 7 0 4.260000E-026.400000E-03 3.000000E-044.090000E-024.270000E-022.700000E-033.000000E-04 2017 6 26 22 45 0 2 15 0 2 1 1.000000E-04 - 2017 6 26 23 15 0 2 15 0 213 1 0.00000 + 2017 6 26 23 15 0 2 15 0 213 1 0.00000 2017 6 29 4 30 0 2 15 0 4 0 6.880000E-021.040000E-02 5.000000E-041.000000E-04 - 2017 6 29 5 30 0 2 15 0 79 1 0.00000 + 2017 6 29 5 30 0 2 15 0 79 1 0.00000 2017 6 30 1 15 0 2 15 0 16 0 7.700000E-027.660000E-02 4.650000E-027.290000E-027.540000E-027.050000E-026.480000E-026.120000E-02 5.790000E-025.530000E-025.370000E-025.250000E-025.210000E-028.700000E-03 1.000000E-034.000000E-04 2017 6 30 5 15 0 2 15 0 2 1 2.000000E-04 2017 6 30 5 45 0 2 15 0 3 1 1.000000E-04 - 2017 6 30 6 30 0 2 15 0 39 1 0.00000 + 2017 6 30 6 30 0 2 15 0 39 1 0.00000 2017 6 30 16 15 0 2 15 0 23 0 5.770000E-025.420000E-02 4.900000E-024.570000E-024.480000E-024.390000E-024.360000E-024.330000E-02 4.250000E-024.080000E-023.820000E-023.610000E-023.520000E-023.500000E-02 @@ -1426,8 +1426,8 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 8.000000E-045.000000E-043.000000E-04 2017 6 30 22 0 0 2 15 0 2 1 2.000000E-04 2017 6 30 22 30 0 2 15 0 1 0 1.000000E-04 - 2017 6 30 22 45 0 2 15 0 265 1 0.00000 - 2017 7 3 17 0 0 2 15 0 331 1 0.00000 + 2017 6 30 22 45 0 2 15 0 265 1 0.00000 + 2017 7 3 17 0 0 2 15 0 331 1 0.00000 2017 7 7 3 45 0 2 15 0 10 0 9.850000E-028.130000E-02 6.760000E-026.410000E-025.340000E-024.400000E-023.900000E-023.400000E-02 2.900000E-022.640000E-02 @@ -1436,100 +1436,100 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.000000E-04 2017 7 7 8 30 0 2 15 0 2 1 2.000000E-04 2017 7 7 9 0 0 2 15 0 2 1 1.000000E-04 - 2017 7 7 9 30 0 2 15 0 38 1 0.00000 + 2017 7 7 9 30 0 2 15 0 38 1 0.00000 2017 7 7 19 0 0 2 15 0 4 0 2.160000E-024.800000E-03 1.600000E-031.100000E-03 2017 7 7 20 0 0 2 15 0 3 1 1.000000E-03 2017 7 7 20 45 0 2 15 0 2 0 9.000000E-041.000000E-04 - 2017 7 7 21 15 0 2 15 0 240 1 0.00000 + 2017 7 7 21 15 0 2 15 0 240 1 0.00000 2017 7 10 9 15 0 2 15 0 19 0 3.880000E-023.270000E-02 2.690000E-022.290000E-022.040000E-021.880000E-021.720000E-021.620000E-02 1.550000E-021.500000E-021.460000E-021.430000E-021.390000E-021.380000E-02 1.360000E-021.350000E-021.600000E-036.000000E-043.000000E-04 2017 7 10 14 0 0 2 15 0 2 1 2.000000E-04 2017 7 10 14 30 0 2 15 0 2 1 1.000000E-04 - 2017 7 10 15 0 0 2 15 0 93 1 0.00000 + 2017 7 10 15 0 0 2 15 0 93 1 0.00000 2017 7 11 14 15 0 2 15 0 3 0 2.910000E-021.600000E-03 2.000000E-04 2017 7 11 15 0 0 2 15 0 2 1 1.000000E-04 - 2017 7 11 15 30 0 2 15 0 82 1 0.00000 + 2017 7 11 15 30 0 2 15 0 82 1 0.00000 2017 7 12 12 0 0 2 15 0 8 0 3.650000E-022.750000E-02 2.610000E-022.570000E-021.600000E-021.300000E-036.000000E-043.000000E-04 2017 7 12 14 0 0 2 15 0 2 1 2.000000E-04 2017 7 12 14 30 0 2 15 0 2 1 1.000000E-04 - 2017 7 12 15 0 0 2 15 0 54 1 0.00000 + 2017 7 12 15 0 0 2 15 0 54 1 0.00000 2017 7 13 4 30 0 2 15 0 15 0 3.450000E-023.310000E-02 3.000000E-022.780000E-022.630000E-022.430000E-022.170000E-022.010000E-02 1.980000E-021.950000E-021.940000E-024.300000E-031.000000E-035.000000E-04 3.000000E-04 2017 7 13 8 15 0 2 15 0 2 1 2.000000E-04 2017 7 13 8 45 0 2 15 0 2 1 1.000000E-04 - 2017 7 13 9 15 0 2 15 0 865 1 0.00000 + 2017 7 13 9 15 0 2 15 0 865 1 0.00000 2017 7 22 9 30 0 2 15 0 6 0 0.110400 6.630000E-02 2.500000E-036.000000E-043.000000E-042.000000E-04 2017 7 22 11 0 0 2 15 0 3 1 1.000000E-04 - 2017 7 22 11 45 0 2 15 0 361 1 0.00000 + 2017 7 22 11 45 0 2 15 0 361 1 0.00000 2017 7 26 6 0 0 2 15 0 5 0 0.129800 7.800000E-02 2.900000E-037.000000E-043.000000E-04 2017 7 26 7 15 0 2 15 0 2 1 2.000000E-04 2017 7 26 7 45 0 2 15 0 3 1 1.000000E-04 - 2017 7 26 8 30 0 2 15 0 578 1 0.00000 - 2017 8 1 9 0 0 2 15 0 12 0 0.148700 0.121400 + 2017 7 26 8 30 0 2 15 0 578 1 0.00000 + 2017 8 1 9 0 0 2 15 0 12 0 0.148700 0.121400 0.118200 0.117500 2.980000E-028.100000E-034.100000E-032.600000E-03 1.900000E-031.400000E-031.100000E-036.000000E-04 - 2017 8 1 12 0 0 2 15 0 112 1 0.00000 + 2017 8 1 12 0 0 2 15 0 112 1 0.00000 2017 8 2 16 0 0 2 15 0 1 0 9.700000E-03 - 2017 8 2 16 15 0 2 15 0 141 1 0.00000 + 2017 8 2 16 15 0 2 15 0 141 1 0.00000 2017 8 4 3 30 0 2 15 0 1 0 2.300000E-02 2017 8 4 3 45 0 2 15 0 2 1 2.290000E-02 2017 8 4 4 15 0 2 15 0 2 0 1.500000E-032.000000E-04 2017 8 4 4 45 0 2 15 0 2 1 1.000000E-04 - 2017 8 4 5 15 0 2 15 0 673 1 0.00000 + 2017 8 4 5 15 0 2 15 0 673 1 0.00000 2017 8 11 5 30 0 2 15 0 11 0 9.790000E-029.660000E-02 9.600000E-022.340000E-024.600000E-032.200000E-031.400000E-031.000000E-03 7.000000E-046.000000E-043.000000E-04 - 2017 8 11 8 15 0 2 15 0 127 1 0.00000 - 2017 8 12 16 0 0 2 15 0 6 0 0.105800 0.105200 + 2017 8 11 8 15 0 2 15 0 127 1 0.00000 + 2017 8 12 16 0 0 2 15 0 6 0 0.105800 0.105200 1.710000E-021.000000E-033.000000E-042.000000E-04 2017 8 12 17 30 0 2 15 0 3 1 1.000000E-04 - 2017 8 12 18 15 0 2 15 0 8 1 0.00000 - 2017 8 12 20 15 0 2 15 0 11 0 0.105300 0.103900 + 2017 8 12 18 15 0 2 15 0 8 1 0.00000 + 2017 8 12 20 15 0 2 15 0 11 0 0.105300 0.103900 0.103500 1.160000E-023.500000E-031.800000E-031.200000E-039.000000E-04 7.000000E-045.000000E-043.000000E-04 - 2017 8 12 23 0 0 2 15 0 16 1 0.00000 + 2017 8 12 23 0 0 2 15 0 16 1 0.00000 2017 8 13 3 0 0 2 15 0 4 0 0.104900 5.600000E-03 6.000000E-042.000000E-04 2017 8 13 4 0 0 2 15 0 4 1 1.000000E-04 - 2017 8 13 5 0 0 2 15 0 200 1 0.00000 + 2017 8 13 5 0 0 2 15 0 200 1 0.00000 2017 8 15 7 0 0 2 15 0 17 0 0.117800 7.030000E-02 0.116700 0.114200 0.111900 7.860000E-027.170000E-026.970000E-02 6.920000E-021.670000E-024.300000E-032.100000E-031.400000E-031.000000E-03 7.000000E-046.000000E-043.000000E-04 - 2017 8 15 11 15 0 2 15 0 172 1 0.00000 + 2017 8 15 11 15 0 2 15 0 172 1 0.00000 2017 8 17 6 15 0 2 15 0 15 0 8.670000E-028.620000E-02 5.160000E-023.950000E-023.140000E-023.000000E-022.970000E-025.200000E-03 2.900000E-022.810000E-022.790000E-025.500000E-031.000000E-035.000000E-04 3.000000E-04 2017 8 17 10 0 0 2 15 0 2 1 2.000000E-04 2017 8 17 10 30 0 2 15 0 2 1 1.000000E-04 - 2017 8 17 11 0 0 2 15 0 4 1 0.00000 + 2017 8 17 11 0 0 2 15 0 4 1 0.00000 2017 8 17 12 0 0 2 15 0 17 0 2.950000E-022.880000E-02 2.660000E-022.380000E-022.130000E-021.900000E-021.670000E-021.520000E-02 1.360000E-021.260000E-021.210000E-021.200000E-027.900000E-031.000000E-03 4.000000E-043.000000E-042.000000E-04 2017 8 17 16 15 0 2 15 0 3 1 1.000000E-04 - 2017 8 17 17 0 0 2 15 0 467 1 0.00000 + 2017 8 17 17 0 0 2 15 0 467 1 0.00000 2017 8 22 13 45 0 2 15 0 9 0 4.630000E-023.630000E-02 3.550000E-023.540000E-023.300000E-031.200000E-036.000000E-044.000000E-04 3.000000E-04 2017 8 22 16 0 0 2 15 0 2 1 2.000000E-04 2017 8 22 16 30 0 2 15 0 1 0 1.000000E-04 - 2017 8 22 16 45 0 2 15 0 559 1 0.00000 + 2017 8 22 16 45 0 2 15 0 559 1 0.00000 2017 8 28 12 30 0 2 15 0 9 0 9.630000E-025.740000E-02 2.000000E-034.000000E-049.460000E-025.740000E-022.000000E-034.000000E-04 2.000000E-04 2017 8 28 14 45 0 2 15 0 3 1 1.000000E-04 - 2017 8 28 15 30 0 2 15 0 8 1 0.00000 + 2017 8 28 15 30 0 2 15 0 8 1 0.00000 2017 8 28 17 30 0 2 15 0 14 0 9.180000E-025.130000E-02 3.270000E-023.030000E-022.960000E-022.910000E-022.900000E-023.500000E-03 1.300000E-031.500000E-026.000000E-035.200000E-035.000000E-034.900000E-03 @@ -1539,7 +1539,7 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 8 28 23 30 0 2 15 0 2 1 2.900000E-03 2017 8 28 24 0 0 2 15 0 1 0 3.000000E-04 2017 8 28 24 15 0 2 15 0 2 1 1.000000E-04 - 2017 8 28 24 45 0 2 15 0 50 1 0.00000 + 2017 8 28 24 45 0 2 15 0 50 1 0.00000 2017 8 29 13 15 0 2 15 0 11 0 1.210000E-022.000000E-03 1.120000E-021.220000E-021.160000E-021.110000E-021.080000E-021.070000E-02 7.100000E-039.000000E-044.000000E-04 @@ -1549,93 +1549,93 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 8 29 17 15 0 2 15 0 2 1 1.160000E-02 2017 8 29 17 45 0 2 15 0 2 0 9.000000E-043.000000E-04 2017 8 29 18 15 0 2 15 0 3 1 1.000000E-04 - 2017 8 29 19 0 0 2 15 0 20 1 0.00000 + 2017 8 29 19 0 0 2 15 0 20 1 0.00000 2017 8 29 24 0 0 2 15 0 4 0 1.580000E-029.400000E-03 3.000000E-041.000000E-04 - 2017 8 30 1 0 0 2 15 0 21 1 0.00000 + 2017 8 30 1 0 0 2 15 0 21 1 0.00000 2017 8 30 6 15 0 2 15 0 4 0 1.950000E-023.200000E-03 2.000000E-041.000000E-04 - 2017 8 30 7 15 0 2 15 0 374 1 0.00000 + 2017 8 30 7 15 0 2 15 0 374 1 0.00000 2017 9 3 4 45 0 2 15 0 10 0 6.860000E-026.390000E-02 6.250000E-026.180000E-026.100000E-026.080000E-023.600000E-037.000000E-04 3.000000E-042.000000E-04 2017 9 3 7 15 0 2 15 0 3 1 1.000000E-04 - 2017 9 3 8 0 0 2 15 0 84 1 0.00000 - 2017 9 4 5 0 0 2 15 0 50 1 0.00000 + 2017 9 3 8 0 0 2 15 0 84 1 0.00000 + 2017 9 4 5 0 0 2 15 0 50 1 0.00000 2017 9 4 17 30 0 2 15 0 11 0 6.730000E-024.400000E-02 3.630000E-022.350000E-021.960000E-021.830000E-021.800000E-021.790000E-02 3.400000E-034.000000E-042.000000E-04 2017 9 4 20 15 0 2 15 0 3 1 1.000000E-04 - 2017 9 4 21 0 0 2 15 0 41 1 0.00000 + 2017 9 4 21 0 0 2 15 0 41 1 0.00000 2017 9 5 7 15 0 2 15 0 2 0 2.110000E-022.000000E-02 2017 9 5 7 45 0 2 15 0 2 1 1.980000E-02 2017 9 5 8 15 0 2 15 0 3 0 1.500000E-034.000000E-04 2.000000E-04 2017 9 5 9 0 0 2 15 0 3 1 1.000000E-04 - 2017 9 5 9 45 0 2 15 0 218 1 0.00000 + 2017 9 5 9 45 0 2 15 0 218 1 0.00000 2017 9 7 16 15 0 2 15 0 8 0 5.130000E-025.010000E-02 4.740000E-024.590000E-024.540000E-022.670000E-021.000000E-033.000000E-04 2017 9 7 18 15 0 2 15 0 3 1 1.000000E-04 - 2017 9 7 19 0 0 2 15 0 46 1 0.00000 + 2017 9 7 19 0 0 2 15 0 46 1 0.00000 2017 9 8 6 30 0 2 15 0 5 0 5.180000E-023.140000E-02 1.100000E-032.000000E-041.000000E-04 - 2017 9 8 7 45 0 2 15 0 283 1 0.00000 + 2017 9 8 7 45 0 2 15 0 283 1 0.00000 2017 9 11 6 30 0 2 15 0 4 0 8.260000E-021.440000E-02 8.000000E-042.000000E-04 2017 9 11 7 30 0 2 15 0 2 1 1.000000E-04 - 2017 9 11 8 0 0 2 15 0 574 1 0.00000 + 2017 9 11 8 0 0 2 15 0 574 1 0.00000 2017 9 17 7 30 0 2 15 0 4 0 0.122700 2.140000E-02 1.200000E-033.000000E-04 2017 9 17 8 30 0 2 15 0 3 1 1.000000E-04 - 2017 9 17 9 15 0 2 15 0 202 1 0.00000 - 2017 9 19 11 45 0 2 15 0 19 0 0.132100 0.130500 - 0.123700 0.117900 0.114700 0.112400 0.111200 0.110900 - 8.900000E-032.400000E-030.110500 0.107800 0.103700 0.102200 + 2017 9 17 9 15 0 2 15 0 202 1 0.00000 + 2017 9 19 11 45 0 2 15 0 19 0 0.132100 0.130500 + 0.123700 0.117900 0.114700 0.112400 0.111200 0.110900 + 8.900000E-032.400000E-030.110500 0.107800 0.103700 0.102200 0.101800 5.600000E-031.000000E-035.000000E-043.000000E-04 2017 9 19 16 30 0 2 15 0 2 1 2.000000E-04 2017 9 19 17 0 0 2 15 0 2 1 1.000000E-04 - 2017 9 19 17 30 0 2 15 0 1208 1 0.00000 + 2017 9 19 17 30 0 2 15 0 1208 1 0.00000 2017 10 2 7 30 0 2 15 0 3 0 0.151700 2.160000E-02 6.000000E-04 - 2017 10 2 8 15 0 2 15 0 342 1 0.00000 - 2017 10 5 21 45 0 2 15 0 16 0 0.157200 0.155500 - 0.151400 0.149900 0.149400 8.550000E-020.145500 0.135600 - 0.132600 0.129600 0.124900 0.122900 0.122100 0.121800 + 2017 10 2 8 15 0 2 15 0 342 1 0.00000 + 2017 10 5 21 45 0 2 15 0 16 0 0.157200 0.155500 + 0.151400 0.149900 0.149400 8.550000E-020.145500 0.135600 + 0.132600 0.129600 0.124900 0.122900 0.122100 0.121800 4.600000E-032.000000E-04 - 2017 10 6 1 45 0 2 15 0 6 1 0.00000 - 2017 10 6 3 15 0 2 15 0 3 0 0.121800 0.120900 - 0.120500 - 2017 10 6 4 0 0 2 15 0 37 0 0.118800 0.117400 - 0.115700 0.115100 0.114900 4.600000E-030.113700 0.107300 + 2017 10 6 1 45 0 2 15 0 6 1 0.00000 + 2017 10 6 3 15 0 2 15 0 3 0 0.121800 0.120900 + 0.120500 + 2017 10 6 4 0 0 2 15 0 37 0 0.118800 0.117400 + 0.115700 0.115100 0.114900 4.600000E-030.113700 0.107300 9.840000E-029.080000E-028.230000E-027.720000E-027.220000E-026.920000E-02 6.600000E-026.190000E-025.990000E-025.860000E-025.800000E-025.770000E-02 3.230000E-025.740000E-024.810000E-024.420000E-024.300000E-024.240000E-02 4.220000E-024.210000E-024.190000E-024.100000E-024.050000E-024.020000E-02 3.960000E-023.940000E-023.930000E-025.900000E-032.000000E-04 - 2017 10 6 13 15 0 2 15 0 26 1 0.00000 + 2017 10 6 13 15 0 2 15 0 26 1 0.00000 2017 10 6 19 45 0 2 15 0 8 0 4.310000E-024.300000E-02 1.700000E-034.290000E-024.260000E-024.240000E-022.450000E-026.000000E-04 - 2017 10 6 21 45 0 2 15 0 14 1 0.00000 + 2017 10 6 21 45 0 2 15 0 14 1 0.00000 2017 10 7 1 15 0 2 15 0 11 0 4.450000E-024.430000E-02 4.360000E-024.260000E-024.220000E-024.210000E-024.160000E-024.130000E-02 4.110000E-025.500000E-031.000000E-04 - 2017 10 7 4 0 0 2 15 0 69 1 0.00000 + 2017 10 7 4 0 0 2 15 0 69 1 0.00000 2017 10 7 21 15 0 2 15 0 12 0 5.020000E-027.100000E-03 2.000000E-04 0.00000 4.960000E-024.250000E-023.750000E-023.650000E-02 3.620000E-023.610000E-024.900000E-031.000000E-04 - 2017 10 8 0 15 0 2 15 0 95 1 0.00000 + 2017 10 8 0 15 0 2 15 0 95 1 0.00000 2017 10 8 24 0 0 2 15 0 4 0 4.910000E-024.900000E-02 1.900000E-031.000000E-04 - 2017 10 9 1 0 0 2 15 0 7 1 0.00000 + 2017 10 9 1 0 0 2 15 0 7 1 0.00000 2017 10 9 2 45 0 2 15 0 3 0 5.000000E-027.100000E-03 2.000000E-04 - 2017 10 9 3 30 0 2 15 0 111 1 0.00000 + 2017 10 9 3 30 0 2 15 0 111 1 0.00000 2017 10 10 7 15 0 2 15 0 4 0 6.350000E-026.330000E-02 2.500000E-031.000000E-04 - 2017 10 10 8 15 0 2 15 0 70 1 0.00000 + 2017 10 10 8 15 0 2 15 0 70 1 0.00000 2017 10 11 1 45 0 2 15 0 8 0 7.120000E-027.100000E-02 2.800000E-031.000000E-046.610000E-027.100000E-021.080000E-023.000000E-04 - 2017 10 11 3 45 0 2 15 0 3 1 0.00000 + 2017 10 11 3 45 0 2 15 0 3 1 0.00000 2017 10 11 4 30 0 2 15 0 26 0 6.990000E-026.570000E-02 6.270000E-025.650000E-025.320000E-025.030000E-024.340000E-023.550000E-02 3.180000E-023.090000E-022.990000E-022.660000E-022.420000E-022.310000E-02 @@ -1650,20 +1650,20 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 10 11 15 0 0 2 15 0 4 1 8.400000E-03 2017 10 11 16 0 0 2 15 0 2 1 8.300000E-03 2017 10 11 16 30 0 2 15 0 2 0 4.600000E-031.000000E-04 - 2017 10 11 17 0 0 2 15 0 65 1 0.00000 + 2017 10 11 17 0 0 2 15 0 65 1 0.00000 2017 10 12 9 15 0 2 15 0 2 1 1.910000E-02 2017 10 12 9 45 0 2 15 0 2 0 1.900000E-021.890000E-02 2017 10 12 10 15 0 2 15 0 2 1 1.870000E-02 2017 10 12 10 45 0 2 15 0 2 0 1.070000E-023.000000E-04 - 2017 10 12 11 15 0 2 15 0 183 1 0.00000 + 2017 10 12 11 15 0 2 15 0 183 1 0.00000 2017 10 14 9 0 0 2 15 0 13 0 4.540000E-024.530000E-02 1.800000E-034.470000E-024.190000E-024.060000E-024.020000E-023.980000E-02 3.930000E-023.910000E-023.900000E-021.700000E-031.000000E-04 - 2017 10 14 12 15 0 2 15 0 5 1 0.00000 + 2017 10 14 12 15 0 2 15 0 5 1 0.00000 2017 10 14 13 30 0 2 15 0 11 0 3.970000E-023.930000E-02 3.850000E-023.780000E-023.680000E-023.530000E-023.440000E-023.410000E-02 3.390000E-021.940000E-024.000000E-04 - 2017 10 14 16 15 0 2 15 0 3 1 0.00000 + 2017 10 14 16 15 0 2 15 0 3 1 0.00000 2017 10 14 17 0 0 2 15 0 15 0 3.450000E-023.420000E-02 3.410000E-023.370000E-023.340000E-023.290000E-023.260000E-023.250000E-02 3.190000E-023.120000E-023.030000E-022.970000E-022.950000E-022.920000E-02 @@ -1672,25 +1672,25 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 2017 10 14 21 15 0 2 15 0 10 0 1.300000E-031.000000E-04 2.860000E-022.410000E-022.080000E-022.000000E-021.980000E-021.970000E-02 1.120000E-022.000000E-04 - 2017 10 14 23 45 0 2 15 0 48 1 0.00000 + 2017 10 14 23 45 0 2 15 0 48 1 0.00000 2017 10 15 11 45 0 2 15 0 3 0 2.730000E-021.560000E-02 3.000000E-04 - 2017 10 15 12 30 0 2 15 0 773 1 0.00000 + 2017 10 15 12 30 0 2 15 0 773 1 0.00000 2017 10 23 13 45 0 2 15 0 19 0 0.107300 9.600000E-02 8.460000E-028.090000E-027.870000E-027.700000E-027.460000E-027.260000E-02 7.030000E-026.600000E-026.120000E-025.610000E-025.080000E-024.760000E-02 4.590000E-024.470000E-024.370000E-024.270000E-024.210000E-02 2017 10 23 18 30 0 2 15 0 2 1 4.190000E-02 2017 10 23 19 0 0 2 15 0 2 0 1.900000E-031.000000E-04 - 2017 10 23 19 30 0 2 15 0 6 1 0.00000 + 2017 10 23 19 30 0 2 15 0 6 1 0.00000 2017 10 23 21 0 0 2 15 0 17 0 4.300000E-024.260000E-02 4.180000E-024.090000E-024.050000E-023.980000E-023.950000E-023.940000E-02 3.880000E-023.860000E-023.810000E-023.750000E-023.700000E-023.680000E-02 3.670000E-021.400000E-031.000000E-04 - 2017 10 24 1 15 0 2 15 0 13 1 0.00000 + 2017 10 24 1 15 0 2 15 0 13 1 0.00000 2017 10 24 4 30 0 2 15 0 7 0 3.880000E-023.860000E-02 3.810000E-023.780000E-023.760000E-022.160000E-025.000000E-04 - 2017 10 24 6 15 0 2 15 0 49 1 0.00000 + 2017 10 24 6 15 0 2 15 0 49 1 0.00000 2017 10 24 18 30 0 2 15 0 27 0 4.450000E-024.440000E-02 1.700000E-033.990000E-024.440000E-026.600000E-034.430000E-024.390000E-02 4.320000E-024.290000E-024.210000E-024.120000E-024.040000E-023.990000E-02 @@ -1699,20 +1699,20 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.140000E-02 2017 10 25 1 15 0 2 15 0 2 1 3.110000E-02 2017 10 25 1 45 0 2 15 0 2 0 4.600000E-031.000000E-04 - 2017 10 25 2 15 0 2 15 0 9 1 0.00000 + 2017 10 25 2 15 0 2 15 0 9 1 0.00000 2017 10 25 4 30 0 2 15 0 1 0 3.240000E-02 2017 10 25 4 45 0 2 15 0 2 1 3.220000E-02 2017 10 25 5 15 0 2 15 0 2 0 1.400000E-031.000000E-04 2017 10 25 5 45 0 2 15 0 2 1 3.220000E-02 2017 10 25 6 15 0 2 15 0 2 1 3.200000E-02 2017 10 25 6 45 0 2 15 0 2 0 1.300000E-031.000000E-04 - 2017 10 25 7 15 0 2 15 0 12 1 0.00000 + 2017 10 25 7 15 0 2 15 0 12 1 0.00000 2017 10 25 10 15 0 2 15 0 4 0 3.380000E-023.370000E-02 1.920000E-024.000000E-04 - 2017 10 25 11 15 0 2 15 0 85 1 0.00000 + 2017 10 25 11 15 0 2 15 0 85 1 0.00000 2017 10 26 8 30 0 2 15 0 3 0 4.540000E-026.500000E-03 2.000000E-04 - 2017 10 26 9 15 0 2 15 0 125 1 0.00000 + 2017 10 26 9 15 0 2 15 0 125 1 0.00000 2017 10 27 16 30 0 2 15 0 38 0 6.090000E-026.080000E-02 6.050000E-025.990000E-025.920000E-025.800000E-025.660000E-025.550000E-02 5.400000E-025.210000E-024.980000E-024.790000E-024.560000E-024.360000E-02 @@ -1720,9 +1720,9 @@ DSN 772 TYPE TIME NDN 10 NUP 10 NSA 30 NSP 100 NDP 300 3.460000E-023.390000E-023.320000E-023.210000E-023.130000E-023.050000E-02 2.970000E-022.900000E-022.860000E-022.850000E-022.840000E-021.200000E-03 1.000000E-042.860000E-022.840000E-022.830000E-021.610000E-024.000000E-04 - 2017 10 28 2 0 0 2 15 0 255 1 0.00000 + 2017 10 28 2 0 0 2 15 0 255 1 0.00000 2017 10 30 17 45 0 2 15 0 3 0 6.180000E-023.520000E-02 7.000000E-04 - 2017 10 30 18 30 0 2 15 0 118 1 0.00000 + 2017 10 30 18 30 0 2 15 0 118 1 0.00000 END DATA -END DSN +END DSN diff --git a/tests/GRW_Plaster/HSPF.uci b/tests/GRW_Plaster/HSPF.uci index 609270b4..c68c9630 100644 --- a/tests/GRW_Plaster/HSPF.uci +++ b/tests/GRW_Plaster/HSPF.uci @@ -32,7 +32,7 @@ END FILES ******************************************************************** *** OPN SEQUENCE *** ******************************************************************** - + OPN SEQUENCE INGRP INDELT 01:00 @@ -91,7 +91,7 @@ OPN SEQUENCE RCHRES 73 RCHRES 72 RCHRES 71 - + END INGRP END OPN SEQUENCE @@ -105,61 +105,61 @@ PERLND x - x ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC *** 111 984 1 1 1 1 0 0 1 0 0 0 0 0 END ACTIVITY - + PRINT-INFO ********************* Print-flags ************************* PIVL PYR x - x ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC ********* 111 984 6 6 6 6 6 6 6 6 6 6 6 6 1 12 END PRINT-INFO - + BINARY-INFO ********************* Print-flags ************************* PIVL PYR x - x ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC ********* 111 984 6 6 6 6 6 6 6 6 6 6 6 6 1 12 END BINARY-INFO - + GEN-INFO *** Name Unit-systems Printer BinaryOut *** t-series Engl Metr Engl Metr *** x - x in out - 111 114WETLANDS-AB 1 1 1 0 92 - 121 124WETLANDS-CD 1 1 1 0 92 - 171 174WETLANDS-AB 1 1 1 0 92 - 181 184WETLANDS-CD 1 1 1 0 92 - 211 214FOREST-AB 1 1 1 0 92 - 221 224FOREST-CD 1 1 1 0 92 - 271 274FOREST-AB 1 1 1 0 92 - 281 284FOREST-CD 1 1 1 0 92 - 311 314GRASS-AB 1 1 1 0 92 - 321 324GRASS-CD 1 1 1 0 92 - 371 374GRASS-AB 1 1 1 0 92 - 381 384GRASS-CD 1 1 1 0 92 - 411 414PASTURE-AB 1 1 1 0 92 - 421 424PASTURE-CD 1 1 1 0 92 - 471 474PASTURE-AB 1 1 1 0 92 - 481 484PASTURE-CD 1 1 1 0 92 - 511 514CROP-AB 1 1 1 0 92 - 521 524CROP-CD 1 1 1 0 92 - 531 534CROP-TILE 1 1 1 0 92 - 571 574CROP-AB 1 1 1 0 92 - 581 584CROP-CD 1 1 1 0 92 - 591 594CROP-TILE 1 1 1 0 92 - 611 614DEV-OPEN-AB 1 1 1 0 92 - 621 624DEV-OPEN-CD 1 1 1 0 92 - 671 674DEV-OPEN-AB 1 1 1 0 92 - 681 684DEV-OPEN-CD 1 1 1 0 92 - 711 714DEV-LOW-AB 1 1 1 0 92 - 721 724DEV-LOW-CD 1 1 1 0 92 - 771 774DEV-LOW-AB 1 1 1 0 92 - 781 784DEV-LOW-CD 1 1 1 0 92 - 811 814DEV-MED-AB 1 1 1 0 92 - 821 824DEV-MED-CD 1 1 1 0 92 - 871 874DEV-MED-AB 1 1 1 0 92 - 881 884DEV-MED-CD 1 1 1 0 92 - 911 914DEV-HIGH-AB 1 1 1 0 92 - 921 924DEV-HIGH-CD 1 1 1 0 92 - 971 974DEV-HIGH-AB 1 1 1 0 92 - 981 984DEV-HIGH-CD 1 1 1 0 92 + 111 114WETLANDS-AB 1 1 1 0 92 + 121 124WETLANDS-CD 1 1 1 0 92 + 171 174WETLANDS-AB 1 1 1 0 92 + 181 184WETLANDS-CD 1 1 1 0 92 + 211 214FOREST-AB 1 1 1 0 92 + 221 224FOREST-CD 1 1 1 0 92 + 271 274FOREST-AB 1 1 1 0 92 + 281 284FOREST-CD 1 1 1 0 92 + 311 314GRASS-AB 1 1 1 0 92 + 321 324GRASS-CD 1 1 1 0 92 + 371 374GRASS-AB 1 1 1 0 92 + 381 384GRASS-CD 1 1 1 0 92 + 411 414PASTURE-AB 1 1 1 0 92 + 421 424PASTURE-CD 1 1 1 0 92 + 471 474PASTURE-AB 1 1 1 0 92 + 481 484PASTURE-CD 1 1 1 0 92 + 511 514CROP-AB 1 1 1 0 92 + 521 524CROP-CD 1 1 1 0 92 + 531 534CROP-TILE 1 1 1 0 92 + 571 574CROP-AB 1 1 1 0 92 + 581 584CROP-CD 1 1 1 0 92 + 591 594CROP-TILE 1 1 1 0 92 + 611 614DEV-OPEN-AB 1 1 1 0 92 + 621 624DEV-OPEN-CD 1 1 1 0 92 + 671 674DEV-OPEN-AB 1 1 1 0 92 + 681 684DEV-OPEN-CD 1 1 1 0 92 + 711 714DEV-LOW-AB 1 1 1 0 92 + 721 724DEV-LOW-CD 1 1 1 0 92 + 771 774DEV-LOW-AB 1 1 1 0 92 + 781 784DEV-LOW-CD 1 1 1 0 92 + 811 814DEV-MED-AB 1 1 1 0 92 + 821 824DEV-MED-CD 1 1 1 0 92 + 871 874DEV-MED-AB 1 1 1 0 92 + 881 884DEV-MED-CD 1 1 1 0 92 + 911 914DEV-HIGH-AB 1 1 1 0 92 + 921 924DEV-HIGH-CD 1 1 1 0 92 + 971 974DEV-HIGH-AB 1 1 1 0 92 + 981 984DEV-HIGH-CD 1 1 1 0 92 END GEN-INFO ******************************************************************** @@ -519,161 +519,161 @@ PERLND PWAT-PARM2 *** < PLS> FOREST LZSN INFILT LSUR SLSUR KVARY AGWRC *** x - x (in) (in/hr) (ft) (1/in) (1/day) - 111 0.00 10.0 0.08 500. 0.0339 1.0 0.999 - 112 0.00 10.0 0.08 500. 0.0204 1.0 0.999 - 113 0.00 10.0 0.08 500. 0.0200 1.0 0.999 - 111 0.00 10.0 0.08 500. 0.0339 1.0 0.999 - 112 0.00 10.0 0.08 500. 0.0204 1.0 0.999 - 113 0.00 10.0 0.08 500. 0.0200 1.0 0.999 - 114 0.00 10.0 0.08 500. 0.0188 1.0 0.999 - 121 0.00 10.0 0.08 500. 0.0223 1.0 0.999 - 122 0.00 10.0 0.08 500. 0.0161 1.0 0.999 - 123 0.00 10.0 0.08 500. 0.0182 1.0 0.999 - 124 0.00 10.0 0.08 500. 0.0164 1.0 0.999 - 171 0.00 10.0 0.08 500. 0.0339 1.0 0.999 - 172 0.00 10.0 0.08 500. 0.0204 1.0 0.999 - 173 0.00 10.0 0.08 500. 0.0200 1.0 0.999 - 174 0.00 10.0 0.08 500. 0.0188 1.0 0.999 - 181 0.00 10.0 0.08 500. 0.0223 1.0 0.999 - 182 0.00 10.0 0.08 500. 0.0161 1.0 0.999 - 183 0.00 10.0 0.08 500. 0.0182 1.0 0.999 - 184 0.00 10.0 0.08 500. 0.0164 1.0 0.999 - 211 0.09 10.0 0.24 350. 0.0708 1.0 0.999 - 212 0.18 10.0 0.24 350. 0.0163 1.0 0.999 - 213 0.24 10.0 0.24 350. 0.0208 1.0 0.999 - 214 0.11 10.0 0.24 350. 0.0335 1.0 0.999 - 221 0.04 10.0 0.19 350. 0.0651 1.0 0.999 - 222 0.07 10.0 0.19 350. 0.0375 1.0 0.999 - 223 0.18 10.0 0.19 350. 0.0243 1.0 0.999 - 224 0.05 10.0 0.19 350. 0.0364 1.0 0.999 - 271 0.09 10.0 0.24 350. 0.0708 1.0 0.999 - 272 0.18 10.0 0.24 350. 0.0163 1.0 0.999 - 273 0.24 10.0 0.24 350. 0.0208 1.0 0.999 - 274 0.11 10.0 0.24 350. 0.0335 1.0 0.999 - 281 0.04 10.0 0.19 350. 0.0651 1.0 0.999 - 282 0.07 10.0 0.19 350. 0.0375 1.0 0.999 - 283 0.18 10.0 0.19 350. 0.0243 1.0 0.999 - 284 0.05 10.0 0.19 350. 0.0364 1.0 0.999 - 311 0.00 8.0 0.22 350. 0.0572 1.0 0.998 - 312 0.00 8.0 0.22 350. 0.0111 1.0 0.998 - 313 0.00 8.0 0.22 350. 0.0320 1.0 0.998 - 314 0.00 8.0 0.22 350. 0.0320 1.0 0.998 - 321 0.00 8.0 0.18 350. 0.0342 1.0 0.998 - 322 0.00 8.0 0.18 350. 0.0179 1.0 0.998 - 323 0.00 8.0 0.18 350. 0.0292 1.0 0.998 - 324 0.00 8.0 0.18 350. 0.0278 1.0 0.998 - 371 0.00 8.0 0.22 350. 0.0572 1.0 0.998 - 372 0.00 8.0 0.22 350. 0.0111 1.0 0.998 - 373 0.00 8.0 0.22 350. 0.0320 1.0 0.998 - 374 0.00 8.0 0.22 350. 0.0320 1.0 0.998 - 381 0.00 8.0 0.18 350. 0.0342 1.0 0.998 - 382 0.00 8.0 0.18 350. 0.0179 1.0 0.998 - 383 0.00 8.0 0.18 350. 0.0292 1.0 0.998 - 384 0.00 8.0 0.18 350. 0.0278 1.0 0.998 - 411 0.00 8.0 0.22 300. 0.0381 1.0 0.998 - 412 0.00 8.0 0.22 300. 0.0120 1.0 0.998 - 413 0.00 8.0 0.22 300. 0.0129 1.0 0.998 - 414 0.00 8.0 0.22 300. 0.0319 1.0 0.998 - 421 0.00 8.0 0.18 300. 0.0331 1.0 0.998 - 422 0.00 8.0 0.18 300. 0.0220 1.0 0.998 - 423 0.00 8.0 0.18 300. 0.0178 1.0 0.998 - 424 0.00 8.0 0.18 300. 0.0296 1.0 0.998 - 471 0.00 8.0 0.22 300. 0.0381 1.0 0.998 - 472 0.00 8.0 0.22 300. 0.0120 1.0 0.998 - 473 0.00 8.0 0.22 300. 0.0129 1.0 0.998 - 474 0.00 8.0 0.22 300. 0.0319 1.0 0.998 - 481 0.00 8.0 0.18 300. 0.0331 1.0 0.998 - 482 0.00 8.0 0.18 300. 0.0220 1.0 0.998 - 483 0.00 8.0 0.18 300. 0.0178 1.0 0.998 - 484 0.00 8.0 0.18 300. 0.0296 1.0 0.998 - 511 0.00 7.0 0.19 300. 0.0314 1.0 0.997 - 512 0.00 7.0 0.19 300. 0.0096 1.0 0.997 - 513 0.00 7.0 0.19 300. 0.0104 1.0 0.997 - 514 0.00 7.0 0.19 300. 0.0276 1.0 0.997 - 521 0.00 7.0 0.14 300. 0.0346 1.0 0.997 - 522 0.00 7.0 0.14 300. 0.0120 1.0 0.997 - 523 0.00 7.0 0.14 300. 0.0159 1.0 0.997 - 524 0.00 7.0 0.14 300. 0.0272 1.0 0.997 - 531 0.00 6.0 0.22 300. 0.0220 1.0 0.999 - 532 0.00 6.0 0.22 300. 0.0161 1.0 0.999 - 533 0.00 6.0 0.22 300. 0.0147 1.0 0.999 - 534 0.00 6.0 0.22 300. 0.0186 1.0 0.999 - 571 0.00 7.0 0.19 300. 0.0314 1.0 0.997 - 572 0.00 7.0 0.19 300. 0.0096 1.0 0.997 - 573 0.00 7.0 0.19 300. 0.0104 1.0 0.997 - 574 0.00 7.0 0.19 300. 0.0276 1.0 0.997 - 581 0.00 7.0 0.14 300. 0.0346 1.0 0.997 - 582 0.00 7.0 0.14 300. 0.0120 1.0 0.997 - 583 0.00 7.0 0.14 300. 0.0159 1.0 0.997 - 584 0.00 7.0 0.14 300. 0.0272 1.0 0.997 - 591 0.00 6.0 0.22 300. 0.0220 1.0 0.999 - 592 0.00 6.0 0.22 300. 0.0161 1.0 0.999 - 593 0.00 6.0 0.22 300. 0.0147 1.0 0.999 - 594 0.00 6.0 0.22 300. 0.0186 1.0 0.999 - 611 0.00 8.0 0.20 250. 0.0450 1.0 0.980 - 612 0.00 8.0 0.20 250. 0.0161 1.0 0.980 - 613 0.00 8.0 0.20 250. 0.0211 1.0 0.980 - 614 0.00 8.0 0.20 250. 0.0316 1.0 0.980 - 621 0.00 8.0 0.14 250. 0.0397 1.0 0.980 - 622 0.00 8.0 0.14 250. 0.0295 1.0 0.980 - 623 0.00 8.0 0.14 250. 0.0200 1.0 0.980 - 624 0.00 8.0 0.14 250. 0.0282 1.0 0.980 - 671 0.00 8.0 0.20 250. 0.0450 1.0 0.980 - 672 0.00 8.0 0.20 250. 0.0161 1.0 0.980 - 673 0.00 8.0 0.20 250. 0.0211 1.0 0.980 - 674 0.00 8.0 0.20 250. 0.0316 1.0 0.980 - 681 0.00 8.0 0.14 250. 0.0397 1.0 0.980 - 682 0.00 8.0 0.14 250. 0.0295 1.0 0.980 - 683 0.00 8.0 0.14 250. 0.0200 1.0 0.980 - 684 0.00 8.0 0.14 250. 0.0282 1.0 0.980 - 711 0.00 7.0 0.18 200. 0.0370 1.0 0.970 - 712 0.00 7.0 0.18 200. 0.0123 1.0 0.970 - 713 0.00 7.0 0.18 200. 0.0180 1.0 0.970 - 714 0.00 7.0 0.18 200. 0.0266 1.0 0.970 - 721 0.00 7.0 0.14 200. 0.0312 1.0 0.970 - 722 0.00 7.0 0.14 200. 0.0197 1.0 0.970 - 723 0.00 7.0 0.14 200. 0.0174 1.0 0.970 - 724 0.00 7.0 0.14 200. 0.0256 1.0 0.970 - 771 0.00 7.0 0.18 200. 0.0370 1.0 0.970 - 772 0.00 7.0 0.18 200. 0.0123 1.0 0.970 - 773 0.00 7.0 0.18 200. 0.0180 1.0 0.970 - 774 0.00 7.0 0.18 200. 0.0266 1.0 0.970 - 781 0.00 7.0 0.14 200. 0.0312 1.0 0.970 - 782 0.00 7.0 0.14 200. 0.0197 1.0 0.970 - 783 0.00 7.0 0.14 200. 0.0174 1.0 0.970 - 784 0.00 7.0 0.14 200. 0.0256 1.0 0.970 - 811 0.00 6.0 0.16 200. 0.0325 1.0 0.960 - 812 0.00 6.0 0.16 200. 0.0140 1.0 0.960 - 813 0.00 6.0 0.16 200. 0.0166 1.0 0.960 - 814 0.00 6.0 0.16 200. 0.0205 1.0 0.960 - 821 0.00 6.0 0.12 200. 0.0277 1.0 0.960 - 822 0.00 6.0 0.12 200. 0.0213 1.0 0.960 - 823 0.00 6.0 0.12 200. 0.0232 1.0 0.960 - 824 0.00 6.0 0.12 200. 0.0158 1.0 0.960 - 871 0.00 6.0 0.16 200. 0.0325 1.0 0.960 - 872 0.00 6.0 0.16 200. 0.0140 1.0 0.960 - 873 0.00 6.0 0.16 200. 0.0166 1.0 0.960 - 874 0.00 6.0 0.16 200. 0.0205 1.0 0.960 - 881 0.00 6.0 0.12 200. 0.0277 1.0 0.960 - 882 0.00 6.0 0.12 200. 0.0213 1.0 0.960 - 883 0.00 6.0 0.12 200. 0.0232 1.0 0.960 - 884 0.00 6.0 0.12 200. 0.0158 1.0 0.960 - 911 0.00 5.0 0.10 150. 0.0271 1.0 0.950 - 912 0.00 5.0 0.10 150. 0.0093 1.0 0.950 - 913 0.00 5.0 0.10 150. 0.0120 1.0 0.950 - 914 0.00 5.0 0.10 150. 0.0292 1.0 0.950 - 921 0.00 5.0 0.06 150. 0.0233 1.0 0.950 - 922 0.00 5.0 0.06 150. 0.0198 1.0 0.950 - 923 0.00 5.0 0.06 150. 0.0177 1.0 0.950 - 924 0.00 5.0 0.06 150. 0.0168 1.0 0.950 - 971 0.00 5.0 0.10 150. 0.0271 1.0 0.950 - 972 0.00 5.0 0.10 150. 0.0093 1.0 0.950 - 973 0.00 5.0 0.10 150. 0.0120 1.0 0.950 - 974 0.00 5.0 0.10 150. 0.0292 1.0 0.950 - 981 0.00 5.0 0.06 150. 0.0233 1.0 0.950 - 982 0.00 5.0 0.06 150. 0.0198 1.0 0.950 - 983 0.00 5.0 0.06 150. 0.0177 1.0 0.950 - 984 0.00 5.0 0.06 150. 0.0168 1.0 0.950 + 111 0.00 10.0 0.08 500. 0.0339 1.0 0.999 + 112 0.00 10.0 0.08 500. 0.0204 1.0 0.999 + 113 0.00 10.0 0.08 500. 0.0200 1.0 0.999 + 111 0.00 10.0 0.08 500. 0.0339 1.0 0.999 + 112 0.00 10.0 0.08 500. 0.0204 1.0 0.999 + 113 0.00 10.0 0.08 500. 0.0200 1.0 0.999 + 114 0.00 10.0 0.08 500. 0.0188 1.0 0.999 + 121 0.00 10.0 0.08 500. 0.0223 1.0 0.999 + 122 0.00 10.0 0.08 500. 0.0161 1.0 0.999 + 123 0.00 10.0 0.08 500. 0.0182 1.0 0.999 + 124 0.00 10.0 0.08 500. 0.0164 1.0 0.999 + 171 0.00 10.0 0.08 500. 0.0339 1.0 0.999 + 172 0.00 10.0 0.08 500. 0.0204 1.0 0.999 + 173 0.00 10.0 0.08 500. 0.0200 1.0 0.999 + 174 0.00 10.0 0.08 500. 0.0188 1.0 0.999 + 181 0.00 10.0 0.08 500. 0.0223 1.0 0.999 + 182 0.00 10.0 0.08 500. 0.0161 1.0 0.999 + 183 0.00 10.0 0.08 500. 0.0182 1.0 0.999 + 184 0.00 10.0 0.08 500. 0.0164 1.0 0.999 + 211 0.09 10.0 0.24 350. 0.0708 1.0 0.999 + 212 0.18 10.0 0.24 350. 0.0163 1.0 0.999 + 213 0.24 10.0 0.24 350. 0.0208 1.0 0.999 + 214 0.11 10.0 0.24 350. 0.0335 1.0 0.999 + 221 0.04 10.0 0.19 350. 0.0651 1.0 0.999 + 222 0.07 10.0 0.19 350. 0.0375 1.0 0.999 + 223 0.18 10.0 0.19 350. 0.0243 1.0 0.999 + 224 0.05 10.0 0.19 350. 0.0364 1.0 0.999 + 271 0.09 10.0 0.24 350. 0.0708 1.0 0.999 + 272 0.18 10.0 0.24 350. 0.0163 1.0 0.999 + 273 0.24 10.0 0.24 350. 0.0208 1.0 0.999 + 274 0.11 10.0 0.24 350. 0.0335 1.0 0.999 + 281 0.04 10.0 0.19 350. 0.0651 1.0 0.999 + 282 0.07 10.0 0.19 350. 0.0375 1.0 0.999 + 283 0.18 10.0 0.19 350. 0.0243 1.0 0.999 + 284 0.05 10.0 0.19 350. 0.0364 1.0 0.999 + 311 0.00 8.0 0.22 350. 0.0572 1.0 0.998 + 312 0.00 8.0 0.22 350. 0.0111 1.0 0.998 + 313 0.00 8.0 0.22 350. 0.0320 1.0 0.998 + 314 0.00 8.0 0.22 350. 0.0320 1.0 0.998 + 321 0.00 8.0 0.18 350. 0.0342 1.0 0.998 + 322 0.00 8.0 0.18 350. 0.0179 1.0 0.998 + 323 0.00 8.0 0.18 350. 0.0292 1.0 0.998 + 324 0.00 8.0 0.18 350. 0.0278 1.0 0.998 + 371 0.00 8.0 0.22 350. 0.0572 1.0 0.998 + 372 0.00 8.0 0.22 350. 0.0111 1.0 0.998 + 373 0.00 8.0 0.22 350. 0.0320 1.0 0.998 + 374 0.00 8.0 0.22 350. 0.0320 1.0 0.998 + 381 0.00 8.0 0.18 350. 0.0342 1.0 0.998 + 382 0.00 8.0 0.18 350. 0.0179 1.0 0.998 + 383 0.00 8.0 0.18 350. 0.0292 1.0 0.998 + 384 0.00 8.0 0.18 350. 0.0278 1.0 0.998 + 411 0.00 8.0 0.22 300. 0.0381 1.0 0.998 + 412 0.00 8.0 0.22 300. 0.0120 1.0 0.998 + 413 0.00 8.0 0.22 300. 0.0129 1.0 0.998 + 414 0.00 8.0 0.22 300. 0.0319 1.0 0.998 + 421 0.00 8.0 0.18 300. 0.0331 1.0 0.998 + 422 0.00 8.0 0.18 300. 0.0220 1.0 0.998 + 423 0.00 8.0 0.18 300. 0.0178 1.0 0.998 + 424 0.00 8.0 0.18 300. 0.0296 1.0 0.998 + 471 0.00 8.0 0.22 300. 0.0381 1.0 0.998 + 472 0.00 8.0 0.22 300. 0.0120 1.0 0.998 + 473 0.00 8.0 0.22 300. 0.0129 1.0 0.998 + 474 0.00 8.0 0.22 300. 0.0319 1.0 0.998 + 481 0.00 8.0 0.18 300. 0.0331 1.0 0.998 + 482 0.00 8.0 0.18 300. 0.0220 1.0 0.998 + 483 0.00 8.0 0.18 300. 0.0178 1.0 0.998 + 484 0.00 8.0 0.18 300. 0.0296 1.0 0.998 + 511 0.00 7.0 0.19 300. 0.0314 1.0 0.997 + 512 0.00 7.0 0.19 300. 0.0096 1.0 0.997 + 513 0.00 7.0 0.19 300. 0.0104 1.0 0.997 + 514 0.00 7.0 0.19 300. 0.0276 1.0 0.997 + 521 0.00 7.0 0.14 300. 0.0346 1.0 0.997 + 522 0.00 7.0 0.14 300. 0.0120 1.0 0.997 + 523 0.00 7.0 0.14 300. 0.0159 1.0 0.997 + 524 0.00 7.0 0.14 300. 0.0272 1.0 0.997 + 531 0.00 6.0 0.22 300. 0.0220 1.0 0.999 + 532 0.00 6.0 0.22 300. 0.0161 1.0 0.999 + 533 0.00 6.0 0.22 300. 0.0147 1.0 0.999 + 534 0.00 6.0 0.22 300. 0.0186 1.0 0.999 + 571 0.00 7.0 0.19 300. 0.0314 1.0 0.997 + 572 0.00 7.0 0.19 300. 0.0096 1.0 0.997 + 573 0.00 7.0 0.19 300. 0.0104 1.0 0.997 + 574 0.00 7.0 0.19 300. 0.0276 1.0 0.997 + 581 0.00 7.0 0.14 300. 0.0346 1.0 0.997 + 582 0.00 7.0 0.14 300. 0.0120 1.0 0.997 + 583 0.00 7.0 0.14 300. 0.0159 1.0 0.997 + 584 0.00 7.0 0.14 300. 0.0272 1.0 0.997 + 591 0.00 6.0 0.22 300. 0.0220 1.0 0.999 + 592 0.00 6.0 0.22 300. 0.0161 1.0 0.999 + 593 0.00 6.0 0.22 300. 0.0147 1.0 0.999 + 594 0.00 6.0 0.22 300. 0.0186 1.0 0.999 + 611 0.00 8.0 0.20 250. 0.0450 1.0 0.980 + 612 0.00 8.0 0.20 250. 0.0161 1.0 0.980 + 613 0.00 8.0 0.20 250. 0.0211 1.0 0.980 + 614 0.00 8.0 0.20 250. 0.0316 1.0 0.980 + 621 0.00 8.0 0.14 250. 0.0397 1.0 0.980 + 622 0.00 8.0 0.14 250. 0.0295 1.0 0.980 + 623 0.00 8.0 0.14 250. 0.0200 1.0 0.980 + 624 0.00 8.0 0.14 250. 0.0282 1.0 0.980 + 671 0.00 8.0 0.20 250. 0.0450 1.0 0.980 + 672 0.00 8.0 0.20 250. 0.0161 1.0 0.980 + 673 0.00 8.0 0.20 250. 0.0211 1.0 0.980 + 674 0.00 8.0 0.20 250. 0.0316 1.0 0.980 + 681 0.00 8.0 0.14 250. 0.0397 1.0 0.980 + 682 0.00 8.0 0.14 250. 0.0295 1.0 0.980 + 683 0.00 8.0 0.14 250. 0.0200 1.0 0.980 + 684 0.00 8.0 0.14 250. 0.0282 1.0 0.980 + 711 0.00 7.0 0.18 200. 0.0370 1.0 0.970 + 712 0.00 7.0 0.18 200. 0.0123 1.0 0.970 + 713 0.00 7.0 0.18 200. 0.0180 1.0 0.970 + 714 0.00 7.0 0.18 200. 0.0266 1.0 0.970 + 721 0.00 7.0 0.14 200. 0.0312 1.0 0.970 + 722 0.00 7.0 0.14 200. 0.0197 1.0 0.970 + 723 0.00 7.0 0.14 200. 0.0174 1.0 0.970 + 724 0.00 7.0 0.14 200. 0.0256 1.0 0.970 + 771 0.00 7.0 0.18 200. 0.0370 1.0 0.970 + 772 0.00 7.0 0.18 200. 0.0123 1.0 0.970 + 773 0.00 7.0 0.18 200. 0.0180 1.0 0.970 + 774 0.00 7.0 0.18 200. 0.0266 1.0 0.970 + 781 0.00 7.0 0.14 200. 0.0312 1.0 0.970 + 782 0.00 7.0 0.14 200. 0.0197 1.0 0.970 + 783 0.00 7.0 0.14 200. 0.0174 1.0 0.970 + 784 0.00 7.0 0.14 200. 0.0256 1.0 0.970 + 811 0.00 6.0 0.16 200. 0.0325 1.0 0.960 + 812 0.00 6.0 0.16 200. 0.0140 1.0 0.960 + 813 0.00 6.0 0.16 200. 0.0166 1.0 0.960 + 814 0.00 6.0 0.16 200. 0.0205 1.0 0.960 + 821 0.00 6.0 0.12 200. 0.0277 1.0 0.960 + 822 0.00 6.0 0.12 200. 0.0213 1.0 0.960 + 823 0.00 6.0 0.12 200. 0.0232 1.0 0.960 + 824 0.00 6.0 0.12 200. 0.0158 1.0 0.960 + 871 0.00 6.0 0.16 200. 0.0325 1.0 0.960 + 872 0.00 6.0 0.16 200. 0.0140 1.0 0.960 + 873 0.00 6.0 0.16 200. 0.0166 1.0 0.960 + 874 0.00 6.0 0.16 200. 0.0205 1.0 0.960 + 881 0.00 6.0 0.12 200. 0.0277 1.0 0.960 + 882 0.00 6.0 0.12 200. 0.0213 1.0 0.960 + 883 0.00 6.0 0.12 200. 0.0232 1.0 0.960 + 884 0.00 6.0 0.12 200. 0.0158 1.0 0.960 + 911 0.00 5.0 0.10 150. 0.0271 1.0 0.950 + 912 0.00 5.0 0.10 150. 0.0093 1.0 0.950 + 913 0.00 5.0 0.10 150. 0.0120 1.0 0.950 + 914 0.00 5.0 0.10 150. 0.0292 1.0 0.950 + 921 0.00 5.0 0.06 150. 0.0233 1.0 0.950 + 922 0.00 5.0 0.06 150. 0.0198 1.0 0.950 + 923 0.00 5.0 0.06 150. 0.0177 1.0 0.950 + 924 0.00 5.0 0.06 150. 0.0168 1.0 0.950 + 971 0.00 5.0 0.10 150. 0.0271 1.0 0.950 + 972 0.00 5.0 0.10 150. 0.0093 1.0 0.950 + 973 0.00 5.0 0.10 150. 0.0120 1.0 0.950 + 974 0.00 5.0 0.10 150. 0.0292 1.0 0.950 + 981 0.00 5.0 0.06 150. 0.0233 1.0 0.950 + 982 0.00 5.0 0.06 150. 0.0198 1.0 0.950 + 983 0.00 5.0 0.06 150. 0.0177 1.0 0.950 + 984 0.00 5.0 0.06 150. 0.0168 1.0 0.950 END PWAT-PARM2 PWAT-PARM3 @@ -684,8 +684,8 @@ PERLND PWAT-PARM4 *** See monthly variable tables for certain monthly variable parameters *** -*** CEPSC UZSN NSUR INTFW IRC LZETP -*** x - x (in) (in) (1/day) +*** CEPSC UZSN NSUR INTFW IRC LZETP +*** x - x (in) (in) (1/day) 111 114 0.10 0.50 0.25 3.0 0.80 0.5 121 124 0.10 0.50 0.25 3.0 0.80 0.5 171 174 0.10 0.50 0.25 3.0 0.80 0.5 @@ -724,52 +724,52 @@ PERLND 921 924 0.10 0.50 0.25 1.0 0.30 0.5 971 974 0.10 0.50 0.25 1.0 0.30 0.5 981 984 0.10 0.50 0.25 1.0 0.30 0.5 - END PWAT-PARM4 + END PWAT-PARM4 PWAT-STATE1 *** < PLS> PWATER state variables (in) *** x - x CEPS SURS UZS IFWS LZS AGWS GWVS - 111 114 0.0 0.0 0.8 3. 10. 12. 0.60 - 121 124 0.0 0.0 0.8 3. 10. 12. 0.60 - 171 174 0.0 0.0 0.8 3. 10. 12. 0.60 - 181 184 0.0 0.0 0.8 3. 10. 12. 0.60 - 211 214 0.0 0.0 0.7 2. 10. 14. 0.80 - 221 224 0.0 0.0 0.7 2. 10. 13. 0.80 - 271 274 0.0 0.0 0.7 2. 10. 14. 0.80 - 281 284 0.0 0.0 0.7 2. 10. 13. 0.80 - 311 314 0.0 0.0 0.6 2. 8. 7. 0.90 - 321 324 0.0 0.0 0.6 2. 8. 7. 0.90 - 371 374 0.0 0.0 0.6 2. 8. 7. 0.90 - 381 384 0.0 0.0 0.6 2. 8. 7. 0.90 - 411 414 0.0 0.0 0.6 2. 8. 7. 0.90 - 421 424 0.0 0.0 0.6 2. 8. 7. 0.90 - 471 474 0.0 0.0 0.6 2. 8. 7. 0.90 - 481 484 0.0 0.0 0.6 2. 8. 7. 0.90 - 511 514 0.0 0.0 0.4 2. 6. 5. 0.90 - 521 524 0.0 0.0 0.4 2. 6. 4. 0.80 - 531 534 0.0 0.0 0.2 4. 5. 14. 0.90 - 571 574 0.0 0.0 0.4 2. 6. 5. 0.90 - 581 584 0.0 0.0 0.4 2. 6. 4. 0.80 - 591 594 0.0 0.0 0.2 4. 5. 14. 0.90 - 611 614 0.0 0.0 0.3 2. 4. 2. 0.70 - 621 624 0.0 0.0 0.3 2. 4. 2. 0.70 - 671 674 0.0 0.0 0.3 2. 4. 2. 0.70 - 681 684 0.0 0.0 0.3 2. 4. 2. 0.70 - 711 714 0.0 0.0 0.3 1. 3. 2. 0.70 - 721 724 0.0 0.0 0.3 1. 3. 1. 0.60 - 771 774 0.0 0.0 0.3 1. 3. 2. 0.70 - 781 784 0.0 0.0 0.3 1. 3. 1. 0.60 - 811 814 0.0 0.0 0.2 1. 2. 1. 0.60 - 821 824 0.0 0.0 0.2 1. 2. 1. 0.40 - 871 874 0.0 0.0 0.2 1. 2. 1. 0.60 - 881 884 0.0 0.0 0.2 1. 2. 1. 0.40 - 911 914 0.0 0.0 0.2 1. 2. 1. 0.60 - 921 924 0.0 0.0 0.2 1. 2. 1. 0.40 - 971 974 0.0 0.0 0.2 1. 2. 1. 0.60 - 981 984 0.0 0.0 0.2 1. 2. 1. 0.40 + 111 114 0.0 0.0 0.8 3. 10. 12. 0.60 + 121 124 0.0 0.0 0.8 3. 10. 12. 0.60 + 171 174 0.0 0.0 0.8 3. 10. 12. 0.60 + 181 184 0.0 0.0 0.8 3. 10. 12. 0.60 + 211 214 0.0 0.0 0.7 2. 10. 14. 0.80 + 221 224 0.0 0.0 0.7 2. 10. 13. 0.80 + 271 274 0.0 0.0 0.7 2. 10. 14. 0.80 + 281 284 0.0 0.0 0.7 2. 10. 13. 0.80 + 311 314 0.0 0.0 0.6 2. 8. 7. 0.90 + 321 324 0.0 0.0 0.6 2. 8. 7. 0.90 + 371 374 0.0 0.0 0.6 2. 8. 7. 0.90 + 381 384 0.0 0.0 0.6 2. 8. 7. 0.90 + 411 414 0.0 0.0 0.6 2. 8. 7. 0.90 + 421 424 0.0 0.0 0.6 2. 8. 7. 0.90 + 471 474 0.0 0.0 0.6 2. 8. 7. 0.90 + 481 484 0.0 0.0 0.6 2. 8. 7. 0.90 + 511 514 0.0 0.0 0.4 2. 6. 5. 0.90 + 521 524 0.0 0.0 0.4 2. 6. 4. 0.80 + 531 534 0.0 0.0 0.2 4. 5. 14. 0.90 + 571 574 0.0 0.0 0.4 2. 6. 5. 0.90 + 581 584 0.0 0.0 0.4 2. 6. 4. 0.80 + 591 594 0.0 0.0 0.2 4. 5. 14. 0.90 + 611 614 0.0 0.0 0.3 2. 4. 2. 0.70 + 621 624 0.0 0.0 0.3 2. 4. 2. 0.70 + 671 674 0.0 0.0 0.3 2. 4. 2. 0.70 + 681 684 0.0 0.0 0.3 2. 4. 2. 0.70 + 711 714 0.0 0.0 0.3 1. 3. 2. 0.70 + 721 724 0.0 0.0 0.3 1. 3. 1. 0.60 + 771 774 0.0 0.0 0.3 1. 3. 2. 0.70 + 781 784 0.0 0.0 0.3 1. 3. 1. 0.60 + 811 814 0.0 0.0 0.2 1. 2. 1. 0.60 + 821 824 0.0 0.0 0.2 1. 2. 1. 0.40 + 871 874 0.0 0.0 0.2 1. 2. 1. 0.60 + 881 884 0.0 0.0 0.2 1. 2. 1. 0.40 + 911 914 0.0 0.0 0.2 1. 2. 1. 0.60 + 921 924 0.0 0.0 0.2 1. 2. 1. 0.40 + 971 974 0.0 0.0 0.2 1. 2. 1. 0.60 + 981 984 0.0 0.0 0.2 1. 2. 1. 0.40 END PWAT-STATE1 - MON-INTERCEP + MON-INTERCEP *** Interception storage capacity at start of each month (in) *** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 111 114 0.06 0.06 0.06 0.07 0.08 0.08 0.10 0.10 0.08 0.07 0.06 0.06 @@ -810,10 +810,10 @@ PERLND 921 924 0.03 0.03 0.03 0.03 0.03 0.04 0.04 0.04 0.04 0.03 0.03 0.03 971 974 0.03 0.03 0.03 0.03 0.03 0.04 0.04 0.04 0.04 0.03 0.03 0.03 981 984 0.03 0.03 0.03 0.03 0.03 0.04 0.04 0.04 0.04 0.03 0.03 0.03 - END MON-INTERCEP + END MON-INTERCEP - MON-UZSN -*** Upper zone storage at start of each month (inches) + MON-UZSN +*** Upper zone storage at start of each month (inches) *** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 111 114 0.60 0.60 0.60 0.60 0.80 0.80 0.80 0.80 0.80 0.80 0.80 0.60 121 124 0.60 0.60 0.60 0.60 0.80 0.80 0.80 0.80 0.80 0.80 0.80 0.60 @@ -853,11 +853,11 @@ PERLND 921 924 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 971 974 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 981 984 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 0.10 - END MON-UZSN + END MON-UZSN - MON-MANNING -*** Manning's n at start of each month -*** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC + MON-MANNING +*** Manning's n at start of each month +*** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 111 114 0.30 0.30 0.30 0.32 0.32 0.34 0.35 0.35 0.35 0.34 0.32 0.32 121 124 0.30 0.30 0.30 0.32 0.32 0.34 0.35 0.35 0.35 0.34 0.32 0.32 171 174 0.30 0.30 0.30 0.32 0.32 0.34 0.35 0.35 0.35 0.34 0.32 0.32 @@ -896,11 +896,11 @@ PERLND 921 924 0.16 0.16 0.16 0.18 0.18 0.20 0.21 0.21 0.21 0.20 0.18 0.18 971 974 0.16 0.16 0.16 0.18 0.18 0.20 0.21 0.21 0.21 0.20 0.18 0.18 981 984 0.16 0.16 0.16 0.18 0.18 0.20 0.21 0.21 0.21 0.20 0.18 0.18 - END MON-MANNING + END MON-MANNING - MON-LZETPARM -*** Lower zone evapotranspiration parm at start of each month -*** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC + MON-LZETPARM +*** Lower zone evapotranspiration parm at start of each month +*** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 111 114 0.70 0.70 0.75 0.80 0.85 0.90 0.90 0.90 0.85 0.80 0.75 0.70 121 124 0.70 0.70 0.75 0.80 0.85 0.90 0.90 0.90 0.85 0.80 0.75 0.70 171 174 0.70 0.70 0.75 0.80 0.85 0.90 0.90 0.90 0.85 0.80 0.75 0.70 @@ -1109,7 +1109,7 @@ PERLND END SED-PARM2 SED-PARM3 -*** +*** *** x - x KSER JSER KGER JGER 111 0.55 2.0 0.00 2.5 112 0.53 2.0 0.00 2.5 @@ -1386,11 +1386,11 @@ PERLND *** *** x - x NQUAL *** 111 984 2 - END NQUALS + END NQUALS - PQL-AD-FLAGS + PQL-AD-FLAGS Atmospheric Deposition Flags *** -*** Dry (F) and wet (C) nitrogen & dry phosphorus deposition represented by time series(-1) *** +*** Dry (F) and wet (C) nitrogen & dry phosphorus deposition represented by time series(-1) *** *** QUAL1 QUAL2 QUAL3 QUAL4 QUAL5 QUAL6 QUAL7 QUAL8 QUAL9 QUAL10 *** *** x - x F C F C F C F C F C F C F C F C F C F C *** 111 984 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 @@ -1450,7 +1450,7 @@ PERLND 981 984 2.8E+10 0.0E+00 0.0E+00 6.0E+09 5.6E+10 7.0E-01 3.40E+4 1.70E+4 END QUAL-INPUT - MON-IFLW-CONC + MON-IFLW-CONC Interflow Concentration of Bacteria (#cfu/ft3) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 111 114 3E+3 3E+3 3E+3 3E+3 3E+3 3E+3 3E+3 3E+3 3E+3 3E+3 3E+3 3E+3 @@ -1781,7 +1781,7 @@ IMPLND END SNOW-FLAGS SNOW-PARM1 -*** < ILS> LAT MELEV SHADE SNOWCF COVIND +*** < ILS> LAT MELEV SHADE SNOWCF COVIND *** x - x degrees (ft) (in) 611 43.0 739 0.15 1.30 3 612 42.9 653 0.15 1.30 3 @@ -1827,7 +1827,7 @@ IMPLND IWAT-PARM2 *** LSUR SLSUR NSUR RETSC -*** x - x (ft) (ft) +*** x - x (ft) (ft) 611 150. 0.0421 0.05 0.120 612 150. 0.0232 0.05 0.120 613 150. 0.0208 0.05 0.120 @@ -1845,7 +1845,7 @@ IMPLND 913 150. 0.0132 0.05 0.120 914 150. 0.0187 0.05 0.120 END IWAT-PARM2 - + IWAT-PARM3 *** PETMAX PETMIN *** x - x (deg F) (deg F) @@ -1928,31 +1928,31 @@ IMPLND ******************************************************************** *** Impervious Land Segments -- Quality Constituents *** ******************************************************************** - + ***NQUAL 1 = Escherichia coli NQUALS *** *** x - x NQUAL ** 611 914 1 - END NQUALS - + END NQUALS + IQL-AD-FLAGS *** Atmospheric Deposition Flags *** *** QUAL1 QUAL2 QUAL3 QUAL4 QUAL5 QUAL6 QUAL7 QUAL8 QUAL9 QUAL10 *** *** x - x F C F C F C F C F C F C F C F C F C F C *** 611 914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 END IQL-AD-FLAGS - + ******************************************************************** *** NQUAL 1 = Escherichia coli *** ******************************************************************** - + QUAL-PROPS # #<--QUALID--> QTID QSD VPFW QSO VQO *** 611 914 E.COLI CFU 0 0 1 0 END QUAL-PROPS - + QUAL-INPUT # # SQO POTFW ACQOP SQOLIM WSQOP *** 611 1.5E+09 0.0E+00 3.0E+08 3.0E+09 5.00E-1 @@ -2077,7 +2077,7 @@ RCHRES *** x - x FG FG FG FG possible exit *** possible exit possible exit 11 331 0 1 1 1 4 0 0 0 0 0 0 0 0 0 1 0 0 0 0 END HYDR-PARM1 - + HYDR-PARM2 *** RCHRES FTBW FTBU LEN DELTH STCOR KS DB50 *** x - x (miles) (ft) (ft) (in) @@ -2148,7 +2148,7 @@ RCHRES 321 0. 321 8.412 175.6 0.0 0.5 0.01 331 0. 331 16.847 139.94 0.0 0.5 0.01 END HYDR-PARM2 - + HYDR-INIT *** Initial conditions for HYDR section *** RCHRES VOL CAT Initial value of COLIND initial value of OUTDGT @@ -2393,13 +2393,13 @@ RCHRES SAND-PM *** RCHRES D W RHO KSAND EXPSND -*** x - x (in) (in/sec) (gm/cm3) +*** x - x (in) (in/sec) (gm/cm3) 11 0.010 2.00 2.65 0.300 2.000 12 0.010 2.00 2.65 0.300 2.000 13 0.010 2.00 2.65 0.300 2.000 21 0.010 2.00 2.65 0.300 2.000 22 0.010 2.00 2.65 0.300 2.000 - 23 0.010 2.00 2.65 0.300 2.000 + 23 0.010 2.00 2.65 0.300 2.000 31 0.010 2.00 2.65 0.300 2.000 32 0.010 2.00 2.65 0.300 2.000 41 0.010 2.00 2.65 0.300 2.000 @@ -2626,7 +2626,7 @@ RCHRES *** x - x NGQL TPFG PHFG ROFG CDFG SDFG PYFG LAT 11 331 1 3 0 0 0 0 0 40 END GQ-GENDATA - + GQ-AD-FLAGS *** x - x 11 331 0 0 0 0 0 0 0 0 @@ -2634,9 +2634,9 @@ RCHRES MON-WATEMP *** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC*** - 11 99 34. 35. 43. 53. 60. 65. 67. 66. 60. 52. 45. 36. - 101 116 33. 34. 42. 51. 63. 72. 77. 75. 69. 56. 45. 38. - 201 331 34. 35. 43. 53. 60. 65. 67. 66. 60. 52. 45. 36. + 11 99 34. 35. 43. 53. 60. 65. 67. 66. 60. 52. 45. 36. + 101 116 33. 34. 42. 51. 63. 72. 77. 75. 69. 56. 45. 38. + 201 331 34. 35. 43. 53. 60. 65. 67. 66. 60. 52. 45. 36. END MON-WATEMP ******************************************************************** @@ -2648,7 +2648,7 @@ RCHRES *** x - x GQUID DQAL CONCID CONV QTYID 11 331 E.COLI 5.00 #cfu 0.00353 #cfu END GQ-QALDATA - + GQ-QALFG *** x - x HDRL OXID PHOT VOLT BIOD GEN SDAS 11 331 0 0 0 0 0 1 0 @@ -2670,13 +2670,13 @@ END RCHRES *** Specification of time series supplied to operations *** *** EXT SOURCES *** ************************************************************************** - + EXT SOURCES <-Volume-> SsysSgap<--Mult-->Tran <-Target vols> <-Grp> <-Member-> *** x x tem strg<-factor->strg x x x x *** ***Pervious Land Segments*** - + ***Precipitation (stored as inches/hour) WDM1 112 PREC ENGL 1.00SAME PERLND 111 EXTNL PREC WDM1 121 PREC ENGL 1.00SAME PERLND 112 EXTNL PREC @@ -2833,19 +2833,19 @@ WDM1 905 PREC ENGL 1.00SAME PERLND 984 EXTNL PREC ***Air Temperature (stored as hourly deg. F) WDM1 113 ATEM ENGL 1.00SAME PERLND 111 984 EXTNL GATMP - + ***Cloud Cover (stored as hourly tenths) WDM1 118 CLOU ENGL 1.00SAME PERLND 111 984 EXTNL CLOUD - + ***Dew Point Temperature (stored as hourly deg. F) WDM1 117 DEWP ENGL 1.00SAME PERLND 111 984 EXTNL DTMPG - + ***Solar Radiation (stored as Langleys/hour) WDM1 115 SOLR ENGL 1.00SAME PERLND 111 984 EXTNL SOLRAD - + ***Wind Movement (stored as miles/hour) WDM1 114 WIND ENGL 1.00SAME PERLND 111 984 EXTNL WINMOV - + ***Potential Evapotranspiration (stored as inches/hour) WDM1 116 PEVT ENGL 1.00SAME PERLND 111 984 EXTNL PETINP @@ -2869,22 +2869,22 @@ WDM1 112 PREC ENGL 1.00SAME IMPLND 911 EXTNL PREC WDM1 121 PREC ENGL 1.00SAME IMPLND 912 EXTNL PREC WDM1 131 PREC ENGL 1.00SAME IMPLND 913 EXTNL PREC WDM1 905 PREC ENGL 1.00SAME IMPLND 914 EXTNL PREC - + ***Air Temperature (stored as hourly deg. F) WDM1 113 ATEM ENGL 1.00SAME IMPLND 611 914 EXTNL GATMP - + ***Cloud Cover (stored as hourly tenths) WDM1 118 CLOU ENGL 1.00SAME IMPLND 611 914 EXTNL CLOUD - + ***Dew Point Temperature (stored as hourly deg. F) WDM1 117 DEWP ENGL 1.00SAME IMPLND 611 914 EXTNL DTMPG - + ***Solar Radiation (stored as Langleys/hour) WDM1 115 SOLR ENGL 1.00SAME IMPLND 611 914 EXTNL SOLRAD - + ***Wind Movement (stored as miles/hour) WDM1 114 WIND ENGL 1.00SAME IMPLND 611 914 EXTNL WINMOV - + ***Potential Evapotranspiration (stored as inches/hour) WDM1 116 PEVT ENGL 1.00SAME IMPLND 611 914 EXTNL PETINP @@ -3066,8 +3066,8 @@ WDM1 827 TSSM ENGL 1.000E+0 DIV RCHRES 203 INFLOW ISED 3 WDM1 727 FCM ENGL 1.000E+0 DIV RCHRES 203 INFLOW IDQAL 1 END EXT SOURCES - - + + ******************************************************************************* *** Specification of linkages: land segments to reaches & between reaches *** *** SCHEMATIC *** @@ -3775,18 +3775,18 @@ END SCHEMATIC *** Specification of which time series will be output *** *** EXT TARGETS *** ************************************************************************** - + EXT TARGETS <-Volume-> <-Grp> <-Member-><--Mult-->Tran <-Volume-> Tsys Aggr Amd *** x x x<-factor->strg x qf tem strg strg*** END EXT TARGETS - + ************************************************************************** *** Tables specifying detailed time series connections *** *** MASS-LINK *** ************************************************************************** - + MASS-LINK *** Pervious Land Segments & non-MS4 *** @@ -3871,7 +3871,7 @@ END MASS-LINK *** RCHRES Geometric & Hydraulic Properties Function Tables *** *** FTABLEs *** ************************************************************************** - + FTABLES diff --git a/tests/HDF5_compare.ipynb b/tests/HDF5_compare.ipynb index 6fb09396..2f4404b8 100644 --- a/tests/HDF5_compare.ipynb +++ b/tests/HDF5_compare.ipynb @@ -70,7 +70,8 @@ "source": [ "# An alternate approach to confirming the environment, using Python\n", "import os\n", - "os.environ['CONDA_DEFAULT_ENV']" + "\n", + "os.environ[\"CONDA_DEFAULT_ENV\"]" ] }, { @@ -95,9 +96,9 @@ "metadata": {}, "outputs": [], "source": [ - "import tables # PyTables\n", "import h5py\n", - "import pandas as pd" + "import pandas as pd\n", + "import tables # PyTables" ] }, { @@ -186,8 +187,8 @@ ], "source": [ "# use the Path module to construct file paths\n", - "project_folder = Path('Documents/Python/limno.HSPsquared/')\n", - "data_folder = Path('_LargeFileStash/')\n", + "project_folder = Path(\"Documents/Python/limno.HSPsquared/\")\n", + "data_folder = Path(\"_LargeFileStash/\")\n", "\n", "file_to_open = Path.cwd() / data_folder / \"hsp2.h5\"\n", "file_to_open" @@ -212,10 +213,10 @@ } ], "source": [ - "# list test files \n", + "# list test files\n", "paths = [\n", - " Path.cwd() / data_folder / 'calleg_hsp2_dev_input.h5',\n", - " Path.cwd() / data_folder / 'calleg_hsp2_devWDM_input-parts.h5',\n", + " Path.cwd() / data_folder / \"calleg_hsp2_dev_input.h5\",\n", + " Path.cwd() / data_folder / \"calleg_hsp2_devWDM_input-parts.h5\",\n", "]\n", "paths" ] @@ -925,7 +926,7 @@ } ], "source": [ - "ds0 = store0.select('/TIMESERIES/SUMMARY')\n", + "ds0 = store0.select(\"/TIMESERIES/SUMMARY\")\n", "ds0" ] }, @@ -957,7 +958,7 @@ } ], "source": [ - "ds0.loc['TS9906']" + "ds0.loc[\"TS9906\"]" ] }, { @@ -989,7 +990,7 @@ } ], "source": [ - "ds0ts = store0.select('/TIMESERIES/TS9906')\n", + "ds0ts = store0.select(\"/TIMESERIES/TS9906\")\n", "ds0ts" ] }, @@ -1286,7 +1287,7 @@ } ], "source": [ - "ds1 = store1.select('/TIMESERIES/SUMMARY')\n", + "ds1 = store1.select(\"/TIMESERIES/SUMMARY\")\n", "ds1" ] }, @@ -1617,11 +1618,11 @@ "\n", "for key in store0.keys()[100:]:\n", " ds0_ = store0.select(key)\n", - "# print(ds0_)\n", + " # print(ds0_)\n", " ds1_ = store1.select(key)\n", - "# print(ds1_)\n", + " # print(ds1_)\n", " compare = ds0_ == ds1_\n", - "# compare_info = ds0_.info() == ds1_.info()\n", + " # compare_info = ds0_.info() == ds1_.info()\n", "\n", " compares.append([key, compare_info, compare])" ] @@ -1776,7 +1777,7 @@ } ], "source": [ - "store1.select('/CONTROL/GLOBAL')" + "store1.select(\"/CONTROL/GLOBAL\")" ] }, { @@ -4735,7 +4736,7 @@ "source": [ "# Open HSP2 HDF5 file with PyTables\n", "h5file0 = tables.open_file(\n", - " paths[0],\n", + " paths[0],\n", ")\n", "# For a PyTables file, a dump of the object tree can be easily displayed\n", "# Warning: Output is quite verbose!\n", @@ -4791,7 +4792,7 @@ "outputs": [], "source": [ "h5file1 = tables.open_file(\n", - " paths[1],\n", + " paths[1],\n", ")\n", "# h5file1" ] @@ -5011,7 +5012,7 @@ "outputs": [], "source": [ "for key in h5py_file.keys():\n", - " print(key)" + " print(key)" ] }, { @@ -5021,7 +5022,7 @@ "metadata": {}, "outputs": [], "source": [ - "h5py_file['CONTROL'].keys()" + "h5py_file[\"CONTROL\"].keys()" ] }, { @@ -5031,7 +5032,7 @@ "metadata": {}, "outputs": [], "source": [ - "h5py_file['CONTROL']['GLOBAL'].keys()" + "h5py_file[\"CONTROL\"][\"GLOBAL\"].keys()" ] }, { @@ -5054,7 +5055,7 @@ "source": [ "for name in h5py_file:\n", " for subname in h5py_file[name]:\n", - " print(name+r'\\ '+subname)\n", + " print(name + r\"\\ \" + subname)\n", "# print(r'')\n", "# for subsubname in h5py_file[name][subname]:\n", "# print(name+r'\\ '+subname+r'\\ '+subsubname)" @@ -5109,7 +5110,6 @@ "metadata": {}, "outputs": [], "source": [ - "\n", "!h5dump '/Users/aaufdenkampe/Documents/Python/limno.HSPsquared/HSP2notebooks/Data/hsp2.h5'\n", "\n", "# WARNING: This is extremely verbose!!!!" diff --git a/tests/ZRW_WestIndian/HSPF.WDM b/tests/ZRW_WestIndian/HSPF.WDM deleted file mode 100644 index d20499bd..00000000 Binary files a/tests/ZRW_WestIndian/HSPF.WDM and /dev/null differ diff --git a/tests/ZRW_WestIndian/HSPF.uci b/tests/ZRW_WestIndian/HSPF.uci index cc62e609..cd6d85ef 100644 --- a/tests/ZRW_WestIndian/HSPF.uci +++ b/tests/ZRW_WestIndian/HSPF.uci @@ -17,14 +17,13 @@ FILES MESSU 24 HSPF.ECH 25 HSPF.OUT WDM1 26 Met4.WDM -WDM2 27 HSPF.WDM WDM3 28 ZUMBROSCEN.WDM BINO 92 HSPF.HBN END FILES OPN SEQUENCE INGRP INDELT 01:00 - + ***Pervious Land Segments*** PERLND 5 PERLND 20 @@ -202,7 +201,7 @@ PERLND ******************************************************************** *** Pervious Land Segments -- Hydrology *** ******************************************************************** - + ATEMP-DAT *** ELDAT AIRTEMP *** x - x (ft) (deg F) @@ -1100,7 +1099,7 @@ PERLND 209 45. 35. 2. 2. 0.00 0.002 0.000 210 45. 35. 2. 2. 0.00 0.002 0.000 END PWAT-PARM3 - + PWAT-PARM4 *** CEPSC UZSN NSUR INTFW IRC LZETP *** x - x (in) (in) (1/day) @@ -1114,7 +1113,7 @@ PERLND 181 195 0. 0.10 0.10 0. 1.0E-30 0. 196 210 0. 0.20 0.15 0. 1.0E-30 0. END PWAT-PARM4 - + PWAT-PARM5 *** FZG FZGL *** x - x @@ -1804,7 +1803,7 @@ PERLND 209 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 210 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 0.63 END MON-IRC - + MON-LZETPARM *** Lower zone evapotranspiration parm at start of each month *** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC @@ -2245,7 +2244,7 @@ PERLND END SED-PARM2 SED-PARM3 -*** +*** *** x - x KSER JSER KGER JGER 1 1.20 2.00 0.38 2.50 2 1.20 2.00 0.38 2.50 @@ -2563,7 +2562,7 @@ PERLND 1 30 38. 42. 45. 47. 50. 50. 52. 50. 50. 48. 45. 42. 31 45 38. 42. 45. 47. 50. 50. 52. 50. 50. 48. 45. 42. 46 75 35. 35. 40. 42. 45. 50. 52. 50. 50. 48. 45. 42. - 76 105 35. 35. 40. 42. 45. 50. 52. 50. 50. 48. 45. 42. + 76 105 35. 35. 40. 42. 45. 50. 52. 50. 50. 48. 45. 42. 106 120 32. 32. 37. 44. 47. 52. 54. 55. 55. 53. 44. 40. 121 135 32. 32. 37. 44. 47. 52. 54. 55. 55. 53. 44. 40. 136 150 32. 32. 37. 44. 47. 52. 54. 55. 55. 53. 44. 40. @@ -2576,7 +2575,7 @@ PERLND *** x - x AIRTC SLTMP ULTMP LGTMP 1 210 32. 32. 32. 45. END PSTEMP-TEMPS - + ******************************************************************** *** Pervious Land Segments -- Water Temperature & Dissolved Gas *** ******************************************************************** @@ -2626,16 +2625,16 @@ PERLND *** *** x - x NQUAL ** 1 210 4 - END NQUALS + END NQUALS - PQL-AD-FLAGS + PQL-AD-FLAGS Atmospheric Deposition Flags *** QUAL1 QUAL2 QUAL3 QUAL4 *** # - # F C F C F C F C *** 1 210 -1 -1 -1 -1 0 0 0 0 END PQL-AD-FLAGS -***Total Ammonia Nitrogen*** +***Total Ammonia Nitrogen*** QUAL-PROPS *** Identifiers and Flags @@ -2654,7 +2653,7 @@ PERLND 196 210 0.100 0.550 END QUAL-INPUT - MON-ACCUM + MON-ACCUM ACCUMULATION RATE OF NH4 (lb NH4-N/AC.DAY) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30.0012.0016.0020.0048.0048.0048.0048.0048.0048.0032.0016.0012 @@ -2666,9 +2665,9 @@ PERLND 166 180.0032.0032.0036.0088.0088.0088.0088.0088.0088.0088.0036.0032 181 195.0036.0036.0040.0100.0100.0100.0100.0100.0100.0100.0040.0036 196 210.0320.0320.0320.0320.0300.0300.0300.0300.0300.0320.0320.0320 - END MON-ACCUM - - MON-SQOLIM + END MON-ACCUM + + MON-SQOLIM STORAGE LIMIT OF NH4 (lb NH4-N/AC) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC*** 1 30.0036.0048.0060.0144.0144.0144.0144.0144.0144.0096.0048.0036 @@ -2680,9 +2679,9 @@ PERLND 166 180.0096.0096.0108.0264.0264.0264.0264.0264.0264.0264.0108.0096 181 195.0108.0108.0120.0300.0300.0300.0300.0300.0300.0300.0120.0108 196 210.0960.0960.0960.0960.0900.0900.0900.0900.0900.0960.0960.0960 - END MON-SQOLIM - - MON-IFLW-CONC + END MON-SQOLIM + + MON-IFLW-CONC Interflow Concentration of NH4-N (mg/l) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 .045 .045 .045 .023 .023 .023 .023 .023 .023 .045 .045 .045 @@ -2694,9 +2693,9 @@ PERLND 166 180 .125 .125 .125 .095 .095 .095 .095 .095 .095 .125 .125 .125 181 195 .133 .133 .133 .100 .100 .100 .100 .100 .100 .133 .133 .133 196 210 .750 .750 .750 .720 .720 .720 .720 .720 .720 .750 .750 .750 - END MON-IFLW-CONC - - MON-GRND-CONC + END MON-IFLW-CONC + + MON-GRND-CONC Active Groundwater Concentration of NH4-N (mg/l) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 .060 .060 .060 .038 .038 .038 .038 .038 .038 .060 .060 .060 @@ -2710,14 +2709,14 @@ PERLND 181 195 .080 .080 .080 .075 .075 .075 .075 .075 .075 .080 .080 .080 196 210 .700 .700 .700 .680 .680 .680 .680 .680 .680 .700 .700 .700 - END MON-GRND-CONC + END MON-GRND-CONC -***Nitrite plus Nitrate*** - - QUAL-PROPS +***Nitrite plus Nitrate*** + + QUAL-PROPS # #<--QUALID--> QTID QSD VPFW VPFS QSO VQO QIFW VIQC QAGW VAQC *** 1 210 NO2+NO3 LBS 0 0 0 1 1 1 3 1 3 - END QUAL-PROPS + END QUAL-PROPS QUAL-INPUT # # SQO POTFW POTFS ACQOP SQOLIM WSQOP IOQC AOQC *** @@ -2729,8 +2728,8 @@ PERLND 151 195 0.450 0.500 196 210 5.000 0.550 END QUAL-INPUT - - MON-ACCUM + + MON-ACCUM ACCUMULATION RATE NO2 NO3 (lb NO3-N/AC.DAY) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 .013 .015 .016 .018 .018 .018 .016 .013 .010 .016 .020 .018 @@ -2742,9 +2741,9 @@ PERLND 166 180 .034 .049 .064 .068 .068 .078 .078 .078 .078 .064 .049 .034 181 195 .040 .050 .070 .080 .080 .080 .080 .080 .080 .070 .050 .040 196 210 .350 .350 .350 .350 .300 .300 .300 .300 .300 .350 .350 .350 - END MON-ACCUM - - MON-SQOLIM + END MON-ACCUM + + MON-SQOLIM STORAGE RATE OF NO2 NO3 (lb NO3-N/AC) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 .078 .090 .096 .108 .108 .108 .096 .078 .060 .096 .120 .108 @@ -2756,9 +2755,9 @@ PERLND 166 180 .204 .294 .384 .408 .408 .468 .468 .468 .468 .384 .294 .204 181 195 .240 .300 .420 .480 .480 .480 .480 .480 .480 .420 .300 .240 196 210 2.10 2.10 2.10 2.10 1.80 1.80 1.80 1.80 1.80 2.10 2.10 2.10 - END MON-SQOLIM - - MON-IFLW-CONC + END MON-SQOLIM + + MON-IFLW-CONC Interflow Concentration of NO3-N (mg/l) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 1.2 1.0 1.0 1.2 1.4 1.4 1.2 1.0 1.0 1.0 1.2 1.4 @@ -2773,9 +2772,9 @@ PERLND 181 195 2.4 2.0 2.0 2.4 2.8 2.8 2.4 2.0 2.0 2.0 2.4 2.8 196 210 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 20.0 - END MON-IFLW-CONC - - MON-GRND-CONC + END MON-IFLW-CONC + + MON-GRND-CONC Active Groundwater Concentration of NO3-N (mg/l) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 .60 .50 .50 .60 .70 .70 .60 .50 .50 .50 .60 .70 @@ -2790,16 +2789,16 @@ PERLND 181 195 1.2 1.0 1.0 1.2 1.4 1.4 1.2 1.0 1.0 1.0 1.2 1.4 196 210 12.0 10.0 10.0 12.0 14.0 14.0 12.0 10.0 10.0 10.0 12.0 14.0 - END MON-GRND-CONC - -***Ortho-Phosphorus*** - - QUAL-PROPS + END MON-GRND-CONC + +***Ortho-Phosphorus*** + + QUAL-PROPS # #<--QUALID--> QTID QSD VPFW VPFS QSO VQO QIFW VIQC QAGW VAQC *** 1 210 PO4 LBS 1 1 0 0 0 1 3 1 3 - END QUAL-PROPS + END QUAL-PROPS - QUAL-INPUT + QUAL-INPUT # # SQO POTFW POTFS ACQOP SQOLIM WSQOP IOQC AOQC *** 1 30 0.017 0.05 0.5 31 45 0.020 0.5 @@ -2809,9 +2808,9 @@ PERLND 121 150 0.380 0.70 0.5 151 195 0.040 0.5 196 210 0.040 0.5 - END QUAL-INPUT - - MON-POTFW + END QUAL-INPUT + + MON-POTFW # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 .180 .180 .180 .180 .180 .180 .180 .180 .180 .180 .180 .180 31 45 .180 .180 .180 .180 .180 .180 .180 .180 .180 .180 .180 .180 @@ -2822,11 +2821,11 @@ PERLND 136 150 1.0 1.0 2.5 4.0 4.0 3.0 3.0 3.0 4.0 4.0 2.5 1.0 151 165 1.6 1.6 1.6 1.7 1.7 1.6 1.6 1.7 1.7 1.6 1.6 1.6 166 180 1.7 1.7 1.7 1.8 1.7 1.7 1.7 1.8 1.8 1.7 1.7 1.7 - 181 195 1.8 1.8 1.8 1.9 1.9 1.8 1.8 1.9 1.9 1.8 1.8 1.8 + 181 195 1.8 1.8 1.8 1.9 1.9 1.8 1.8 1.9 1.9 1.8 1.8 1.8 196 210 5.7 5.7 5.7 5.0 5.0 4.8 4.8 4.8 5.0 5.0 5.0 5.0 - END MON-POTFW - - MON-IFLW-CONC + END MON-POTFW + + MON-IFLW-CONC Interflow Concentration of PO4-P (mg/l) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 .050 .050 .050 .050 .050 .050 .050 .050 .050 .050 .050 .050 @@ -2841,9 +2840,9 @@ PERLND 181 195 .100 .100 .100 .100 .100 .100 .100 .100 .100 .100 .100 .100 196 210 .500 .500 .500 .500 .500 .500 .500 .500 .500 .500 .500 .500 - END MON-IFLW-CONC - - MON-GRND-CONC + END MON-IFLW-CONC + + MON-GRND-CONC Active Groundwater Concentration of PO4-P (mg/l) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 .015 .015 .015 .015 .015 .015 .015 .015 .015 .015 .015 .015 @@ -2858,15 +2857,15 @@ PERLND 181 195 .030 .030 .030 .030 .030 .030 .030 .030 .030 .030 .030 .030 196 210 .100 .100 .100 .100 .100 .100 .100 .100 .100 .100 .100 .100 - END MON-GRND-CONC + END MON-GRND-CONC -***Biochemical Oxygen Demand (Organic Nutrients)*** +***Biochemical Oxygen Demand (Organic Nutrients)*** - QUAL-PROPS + QUAL-PROPS # #<--QUALID--> QTID QSD VPFW VPFS QSO VQO QIFW VIQC QAGW VAQC *** 1 210 BOD LBS 1 0 0 0 0 1 3 1 3 - END QUAL-PROPS - + END QUAL-PROPS + QUAL-INPUT # # SQO POTFW POTFS ACQOP SQOLIM WSQOP IOQC AOQC *** 1 30 1.00 8.5 0.05 0.50 @@ -2881,7 +2880,7 @@ PERLND 196 210 7.00 141.0 0.50 END QUAL-INPUT - MON-IFLW-CONC + MON-IFLW-CONC Interflow Concentration of ORG (mg/l) *** # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** 1 30 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 @@ -3014,8 +3013,8 @@ IMPLND END SNOW-FLAGS SNOW-PARM1 -*** < ILS> LAT MELEV SHADE SNOWCF COVIND -*** x - x degrees (ft) (in) +*** < ILS> LAT MELEV SHADE SNOWCF COVIND +*** x - x degrees (ft) (in) 151 44.3 889 0.15 1.15 4.0 152 44.3 999 0.15 1.15 4.0 153 44.2 1080 0.15 1.15 4.0 @@ -3148,7 +3147,7 @@ IMPLND *** x - x RETS SURS 151 195 0.001 0.001 END IWAT-STATE1 - + ******************************************************************** *** Impervious Land Segments -- Sediment *** ******************************************************************** @@ -3180,7 +3179,7 @@ IMPLND ******************************************************************** ***Impervious Land Segments -- Water Temperature & Dissolved Gas *** -******************************************************************** +******************************************************************** IWT-PARM1 *** Flags for section IWTGAS @@ -3194,14 +3193,14 @@ IMPLND *** x - x (ft) (deg F) (deg F/F) 151 165 1027. 34. 0.3 166 180 1027. 34. 0.3 - 181 195 1027. 34. 0.3 + 181 195 1027. 34. 0.3 END IWT-PARM2 MON-AWTF *** Value of AWTF at start of each month (deg F) *** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 151 165 29. 29. 30. 34. 54. 63. 65. 64. 60. 48. 35. 30. - 166 180 29. 29. 30. 34. 54. 63. 65. 64. 60. 48. 35. 30. + 166 180 29. 29. 30. 34. 54. 63. 65. 64. 60. 48. 35. 30. 181 195 29. 29. 30. 34. 54. 63. 65. 64. 60. 48. 35. 30. END MON-AWTF @@ -3220,7 +3219,7 @@ IMPLND ***NQUAL 1 = NH3 ***NQUAL 2 = NO2+NO3 ***NQUAL 3 = PO4 -***NQUAL 4 = BOD +***NQUAL 4 = BOD NQUALS # # NQAL *** @@ -3233,7 +3232,7 @@ IMPLND # - # F C F C F C F C *** 151 195 -1 -1 -1 -1 0 0 0 0 END IQL-AD-FLAGS - + ***Total Ammonia Nitrogen*** QUAL-PROPS @@ -3259,7 +3258,7 @@ IMPLND END QUAL-INPUT ***Ortho-Phosphorus*** - + QUAL-PROPS # #<--QUALID--> QTID QSD VPFW QSO VQO *** 151 195 ORTHO P LBS 0 0 1 0 @@ -3892,7 +3891,7 @@ RCHRES SAND-PM *** RCHRES D W RHO KSAND EXPSND -*** x - x (in) (in/sec) (gm/cm3) +*** x - x (in) (in/sec) (gm/cm3) 1 0.005 2.00 2.5 1.000 3.0 2 0.005 2.00 2.5 1.000 3.0 3 0.005 2.00 2.5 1.000 2.5 @@ -4273,13 +4272,13 @@ RCHRES 508 612 1.047 .200 -1.673 .969 END OX-REAPARM - OX-CFOREA - RCHRES CFOREA*** - # - # *** + OX-CFOREA + RCHRES CFOREA*** + # - # *** ***Lakes 110 1.0 507 1.0 - END OX-CFOREA + END OX-CFOREA OX-BENPARM RCHRES BENOD TCBEN EXPOD BRBOD(1) BRBOD(2) EXPREL*** @@ -4287,16 +4286,16 @@ RCHRES 1 612 75. 1.074 1.22 1.00 10.0 2.82 END OX-BENPARM - OX-INIT + OX-INIT RCHRES DOX BOD SATDO *** # - # mg/l mg/l mg/l *** 1 612 12.8 3.5 13.5 - END OX-INIT + END OX-INIT NUT-FLAGS *** RCHRES Nutrient flags *** x - x NH3 NO2 PO4 AMV DEN ADNH ADPO PHFL - 1 612 1 1 1 0 1 1 1 + 1 612 1 1 1 0 1 1 1 END NUT-FLAGS NUT-AD-FLAGS @@ -4330,13 +4329,13 @@ RCHRES 1 612 .050 .012 1.070 .002 1.04 5. END NUT-NITDENIT - NUT-BEDCONC - RCHRES Bed concentrations of NH4 & PO4 (mg/kg) *** + NUT-BEDCONC + RCHRES Bed concentrations of NH4 & PO4 (mg/kg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 612 30. 70. 70. 10. 500. 1000. - END NUT-BEDCONC + END NUT-BEDCONC - NUT-ADSPARM + NUT-ADSPARM RCHRES Partition coefficients for NH4 AND PO4 (ml/g) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 612 10. 50. 100. 100. 1000. 10000. @@ -4344,15 +4343,15 @@ RCHRES NUT-DINIT RCHRES NO3 TAM NO2 PO4 PH *** - # - # mg/l mg/l mg/l mg/l *** + # - # mg/l mg/l mg/l mg/l *** 1 612 4.00 .10 0. .050 7. END NUT-DINIT - NUT-ADSINIT + NUT-ADSINIT RCHRES Initial suspended NH4 and PO4 concentrations (mg/kg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 612 0. 0. 0. 0. 0. 0. - END NUT-ADSINIT + END NUT-ADSINIT NUT-NH3VOLAT RCHRES EXPNVG EXPNVL *** @@ -4369,17 +4368,17 @@ RCHRES PLNK-PARM1 RCHRES RATCLP NONREF LITSED ALNPR EXTB MALGR *** # - # /ft /hr *** - 1 87 .68 .75 0.0015 0.50 .12 .100 - 100 109 .68 .75 0.0015 0.50 .12 .045 - 110 .68 .75 0.0015 0.50 .03 .030 - 111 506 .68 .75 0.0015 0.50 .12 .045 - 507 .68 .75 0.0015 0.50 .03 .030 - 508 612 .68 .75 0.0015 0.50 .12 .045 + 1 87 .68 .75 0.0015 0.50 .12 .100 + 100 109 .68 .75 0.0015 0.50 .12 .045 + 110 .68 .75 0.0015 0.50 .03 .030 + 111 506 .68 .75 0.0015 0.50 .12 .045 + 507 .68 .75 0.0015 0.50 .03 .030 + 508 612 .68 .75 0.0015 0.50 .12 .045 END PLNK-PARM1 PLNK-PARM2 - RCHRES CMMLT CMMN CMMNP CMMP TALGRH TALGRL TALGRM *** - # - # y/min mg/l mg/l mg/l deg F deg F degF *** +*** RCHRES CMMLT CMMN CMMNP CMMP TALGRH TALGRL TALGRM +*** # - # y/min mg/l mg/l mg/l deg F deg F degF 1 109 .033 0.045 .01 .015 95. 20. 77 110 .033 0.045 .005 .025 95. 20. 67 111 506 .033 0.045 .01 .015 95. 20. 77 @@ -4389,11 +4388,11 @@ RCHRES PLNK-PARM3 RCHRES ALR20 ALDH ALDL OXALD NALDH PALDH *** - # - # /hr /hr /hr /hr mg/l mg/l *** + # - # /hr /hr /hr /hr mg/l mg/l *** 1 109 .005 .02 .001 .03 .010 .002 110 .005 .005 .001 .03 .010 .002 111 506 .005 .02 .001 .03 .010 .002 - 507 .005 .005 .001 .03 .010 .002 + 507 .005 .005 .001 .03 .010 .002 508 612 .005 .02 .001 .03 .010 .002 END PLNK-PARM3 @@ -4537,558 +4536,558 @@ EXT SOURCES ***Pervious Land Segments*** ***Precipitation (stored as inches/hour) -WDM1 136 PREC ENGL 1.00SAME PERLND 1 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 2 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 3 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 4 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 5 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 6 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 7 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 8 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 9 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 10 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 11 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 12 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 13 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 14 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 15 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 16 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 17 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 18 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 19 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 20 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 21 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 22 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 23 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 24 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 25 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 26 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 27 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 28 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 29 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 30 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 31 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 32 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 33 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 34 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 35 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 36 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 37 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 38 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 39 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 40 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 41 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 42 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 43 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 44 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 45 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 46 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 47 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 48 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 49 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 50 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 51 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 52 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 53 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 54 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 55 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 56 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 57 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 58 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 59 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 60 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 61 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 62 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 63 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 64 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 65 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 66 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 67 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 68 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 69 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 70 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 71 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 72 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 73 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 74 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 75 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 76 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 77 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 78 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 79 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 80 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 81 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 82 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 83 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 84 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 85 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 86 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 87 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 88 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 89 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 90 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 91 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 92 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 93 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 94 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 95 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 96 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 97 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 98 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 99 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 100 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 101 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 102 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 103 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 104 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 105 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 106 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 107 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 108 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 109 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 110 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 111 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 112 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 113 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 114 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 115 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 116 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 117 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 118 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 119 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 120 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 121 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 122 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 123 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 124 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 125 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 126 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 127 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 128 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 129 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 130 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 131 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 132 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 133 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 134 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 135 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 136 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 137 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 138 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 139 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 140 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 141 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 142 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 143 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 144 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 145 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 146 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 147 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 148 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 149 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 150 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 151 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 152 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 153 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 154 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 155 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 156 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 157 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 158 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 159 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 160 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 161 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 162 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 163 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 164 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 165 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 166 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 167 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 168 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 169 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 170 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 171 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 172 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 173 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 174 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 175 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 176 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 177 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 178 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 179 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 180 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 181 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 182 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 183 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 184 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 185 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 186 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 187 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 188 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 189 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 190 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 191 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 192 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 193 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME PERLND 194 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME PERLND 195 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME PERLND 196 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME PERLND 197 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME PERLND 198 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME PERLND 199 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME PERLND 200 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME PERLND 201 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME PERLND 202 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME PERLND 203 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME PERLND 204 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME PERLND 205 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME PERLND 206 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME PERLND 207 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME PERLND 208 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 1 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 2 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 3 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 4 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 5 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 6 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 7 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 8 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 9 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 10 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 11 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 12 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 13 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 14 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 15 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 16 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 17 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 18 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 19 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 20 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 21 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 22 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 23 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 24 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 25 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 26 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 27 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 28 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 29 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 30 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 31 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 32 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 33 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 34 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 35 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 36 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 37 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 38 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 39 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 40 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 41 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 42 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 43 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 44 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 45 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 46 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 47 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 48 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 49 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 50 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 51 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 52 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 53 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 54 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 55 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 56 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 57 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 58 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 59 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 60 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 61 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 62 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 63 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 64 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 65 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 66 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 67 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 68 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 69 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 70 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 71 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 72 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 73 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 74 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 75 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 76 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 77 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 78 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 79 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 80 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 81 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 82 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 83 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 84 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 85 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 86 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 87 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 88 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 89 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 90 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 91 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 92 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 93 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 94 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 95 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 96 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 97 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 98 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 99 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 100 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 101 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 102 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 103 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 104 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 105 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 106 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 107 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 108 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 109 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 110 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 111 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 112 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 113 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 114 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 115 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 116 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 117 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 118 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 119 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 120 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 121 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 122 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 123 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 124 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 125 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 126 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 127 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 128 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 129 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 130 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 131 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 132 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 133 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 134 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 135 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 136 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 137 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 138 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 139 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 140 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 141 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 142 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 143 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 144 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 145 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 146 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 147 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 148 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 149 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 150 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 151 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 152 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 153 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 154 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 155 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 156 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 157 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 158 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 159 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 160 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 161 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 162 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 163 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 164 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 165 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 166 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 167 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 168 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 169 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 170 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 171 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 172 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 173 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 174 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 175 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 176 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 177 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 178 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 179 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 180 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 181 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 182 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 183 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 184 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 185 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 186 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 187 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 188 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 189 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 190 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 191 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 192 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 193 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME PERLND 194 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME PERLND 195 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME PERLND 196 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME PERLND 197 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME PERLND 198 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME PERLND 199 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME PERLND 200 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME PERLND 201 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME PERLND 202 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME PERLND 203 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME PERLND 204 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME PERLND 205 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME PERLND 206 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME PERLND 207 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME PERLND 208 EXTNL PREC WDM1 149 PREC ENGL 1.00SAME PERLND 209 EXTNL PREC WDM1 150 PREC ENGL 1.00SAME PERLND 210 EXTNL PREC ***Air Temperature (stored as hourly deg. F) -WDM1 283 ATEM ENGL 1.00SAME PERLND 1 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 2 4 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 5 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 6 7 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 8 11 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 12 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 13 14 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 15 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 16 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 17 19 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 20 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 21 22 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 23 26 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 27 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 28 29 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 30 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 31 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 32 34 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 35 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 36 37 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 38 41 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 42 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 43 44 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 45 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 46 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 47 49 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 50 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 51 52 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 53 56 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 57 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 58 59 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 60 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 61 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 62 64 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 65 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 66 67 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 68 71 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 72 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 73 74 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 75 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 76 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 77 79 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 80 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 81 82 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 83 86 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 87 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 88 89 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 90 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 91 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 92 94 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 95 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 96 97 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 98 101 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 102 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 103 104 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 105 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 106 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 107 109 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 110 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 111 112 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 113 116 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 117 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 118 119 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 120 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 121 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 122 124 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 125 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 126 127 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 128 131 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 132 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 133 134 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 135 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 136 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 137 139 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 140 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 141 142 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 143 146 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 147 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 148 149 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 150 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 151 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 152 154 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 155 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 156 157 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 158 161 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 162 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 163 164 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 165 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 166 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 167 169 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 170 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 171 172 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 173 176 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 177 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 178 179 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 180 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 181 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 182 184 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 185 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 186 187 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 188 191 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 192 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 193 194 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 195 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 196 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 197 199 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME PERLND 200 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 201 202 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 203 206 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME PERLND 207 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME PERLND 208 209 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME PERLND 210 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 1 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 2 4 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 5 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 6 7 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 8 11 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 12 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 13 14 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 15 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 16 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 17 19 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 20 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 21 22 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 23 26 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 27 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 28 29 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 30 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 31 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 32 34 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 35 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 36 37 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 38 41 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 42 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 43 44 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 45 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 46 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 47 49 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 50 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 51 52 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 53 56 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 57 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 58 59 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 60 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 61 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 62 64 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 65 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 66 67 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 68 71 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 72 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 73 74 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 75 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 76 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 77 79 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 80 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 81 82 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 83 86 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 87 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 88 89 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 90 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 91 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 92 94 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 95 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 96 97 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 98 101 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 102 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 103 104 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 105 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 106 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 107 109 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 110 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 111 112 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 113 116 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 117 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 118 119 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 120 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 121 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 122 124 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 125 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 126 127 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 128 131 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 132 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 133 134 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 135 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 136 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 137 139 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 140 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 141 142 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 143 146 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 147 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 148 149 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 150 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 151 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 152 154 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 155 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 156 157 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 158 161 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 162 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 163 164 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 165 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 166 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 167 169 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 170 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 171 172 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 173 176 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 177 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 178 179 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 180 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 181 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 182 184 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 185 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 186 187 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 188 191 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 192 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 193 194 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 195 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 196 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 197 199 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME PERLND 200 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 201 202 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 203 206 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME PERLND 207 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME PERLND 208 209 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME PERLND 210 EXTNL GATMP ***Dew Point Temperature (stored as hourly deg. F) -WDM1 287 DEWP ENGL 1.00SAME PERLND 1 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 2 4 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 5 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 6 7 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 8 11 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 12 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 13 14 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 15 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 16 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 17 19 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 20 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 21 22 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 23 26 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 27 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 28 29 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 30 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 31 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 32 34 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 35 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 36 37 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 38 41 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 42 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 43 44 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 45 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 46 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 47 49 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 50 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 51 52 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 53 56 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 57 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 58 59 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 60 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 61 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 62 64 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 65 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 66 67 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 68 71 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 72 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 73 74 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 75 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 76 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 77 79 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 80 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 81 82 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 83 86 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 87 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 88 89 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 90 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 91 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 92 94 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 95 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 96 97 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 98 101 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 102 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 103 104 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 105 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 106 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 107 109 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 110 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 111 112 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 113 116 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 117 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 118 119 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 120 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 121 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 122 124 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 125 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 126 127 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 128 131 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 132 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 133 134 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 135 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 136 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 137 139 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 140 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 141 142 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 143 146 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 147 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 148 149 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 150 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 151 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 152 154 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 155 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 156 157 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 158 161 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 162 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 163 164 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 165 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 166 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 167 169 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 170 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 171 172 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 173 176 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 177 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 178 179 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 180 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 181 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 182 184 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 185 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 186 187 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 188 191 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 192 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 193 194 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 195 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 196 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 197 199 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME PERLND 200 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 201 202 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 203 206 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME PERLND 207 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME PERLND 208 209 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME PERLND 210 EXTNL DTMPG - -***Cloud Cover (stored as hourly tenths) -WDM1 288 CLOU ENGL 1.00SAME PERLND 1 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 2 4 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 5 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 6 7 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 8 11 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 12 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 13 14 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 15 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 16 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 17 19 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 20 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 21 22 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 23 26 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 27 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 28 29 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 30 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 31 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 32 34 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 35 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 36 37 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 38 41 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 42 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 43 44 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 45 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 46 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 47 49 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 50 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 51 52 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 53 56 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 57 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 58 59 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 60 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 61 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 62 64 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 65 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 66 67 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 68 71 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 72 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 73 74 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 75 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 76 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 77 79 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 80 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 81 82 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 83 86 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 87 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 88 89 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 90 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 91 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 92 94 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 95 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 96 97 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 98 101 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 102 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 103 104 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 105 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 106 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 107 109 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 110 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 111 112 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 113 116 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 117 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 118 119 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 120 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 121 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 122 124 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 125 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 126 127 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 128 131 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 132 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 133 134 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 135 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 136 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 137 139 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 140 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 141 142 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 143 146 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 147 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 148 149 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 150 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 151 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 152 154 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 155 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 156 157 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 158 161 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 162 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 163 164 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 165 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 166 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 167 169 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 170 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 171 172 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 173 176 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 177 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 178 179 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 180 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 181 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 182 184 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 185 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 186 187 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 188 191 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 192 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 193 194 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 195 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 196 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 197 199 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME PERLND 200 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 201 202 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 203 206 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME PERLND 207 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME PERLND 208 209 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME PERLND 210 EXTNL CLOUD +WDM1 287 DEWP ENGL 1.00SAME PERLND 1 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 2 4 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 5 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 6 7 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 8 11 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 12 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 13 14 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 15 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 16 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 17 19 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 20 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 21 22 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 23 26 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 27 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 28 29 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 30 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 31 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 32 34 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 35 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 36 37 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 38 41 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 42 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 43 44 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 45 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 46 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 47 49 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 50 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 51 52 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 53 56 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 57 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 58 59 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 60 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 61 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 62 64 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 65 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 66 67 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 68 71 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 72 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 73 74 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 75 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 76 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 77 79 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 80 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 81 82 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 83 86 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 87 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 88 89 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 90 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 91 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 92 94 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 95 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 96 97 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 98 101 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 102 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 103 104 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 105 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 106 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 107 109 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 110 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 111 112 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 113 116 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 117 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 118 119 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 120 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 121 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 122 124 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 125 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 126 127 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 128 131 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 132 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 133 134 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 135 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 136 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 137 139 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 140 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 141 142 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 143 146 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 147 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 148 149 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 150 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 151 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 152 154 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 155 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 156 157 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 158 161 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 162 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 163 164 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 165 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 166 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 167 169 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 170 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 171 172 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 173 176 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 177 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 178 179 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 180 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 181 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 182 184 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 185 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 186 187 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 188 191 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 192 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 193 194 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 195 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 196 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 197 199 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME PERLND 200 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 201 202 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 203 206 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME PERLND 207 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME PERLND 208 209 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME PERLND 210 EXTNL DTMPG + +***Cloud Cover (stored as hourly tenths) +WDM1 288 CLOU ENGL 1.00SAME PERLND 1 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 2 4 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 5 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 6 7 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 8 11 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 12 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 13 14 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 15 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 16 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 17 19 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 20 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 21 22 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 23 26 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 27 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 28 29 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 30 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 31 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 32 34 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 35 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 36 37 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 38 41 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 42 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 43 44 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 45 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 46 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 47 49 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 50 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 51 52 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 53 56 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 57 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 58 59 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 60 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 61 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 62 64 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 65 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 66 67 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 68 71 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 72 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 73 74 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 75 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 76 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 77 79 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 80 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 81 82 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 83 86 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 87 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 88 89 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 90 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 91 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 92 94 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 95 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 96 97 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 98 101 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 102 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 103 104 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 105 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 106 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 107 109 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 110 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 111 112 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 113 116 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 117 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 118 119 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 120 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 121 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 122 124 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 125 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 126 127 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 128 131 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 132 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 133 134 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 135 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 136 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 137 139 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 140 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 141 142 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 143 146 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 147 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 148 149 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 150 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 151 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 152 154 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 155 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 156 157 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 158 161 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 162 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 163 164 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 165 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 166 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 167 169 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 170 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 171 172 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 173 176 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 177 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 178 179 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 180 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 181 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 182 184 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 185 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 186 187 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 188 191 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 192 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 193 194 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 195 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 196 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 197 199 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME PERLND 200 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 201 202 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 203 206 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME PERLND 207 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME PERLND 208 209 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME PERLND 210 EXTNL CLOUD ***Solar Radiation (stored as Langleys/hour) WDM1 285 SOLR ENGL 1.00SAME PERLND 1 EXTNL SOLRAD @@ -5436,130 +5435,130 @@ WDM1 909 PEVT ENGL 0.79 PERLND 210 EXTNL PETINP ***Impervious Land Segments*** ***Precipitation (stored as inches/hour) -WDM1 136 PREC ENGL 1.00SAME IMPLND 151 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME IMPLND 152 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME IMPLND 153 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME IMPLND 154 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME IMPLND 155 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME IMPLND 156 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME IMPLND 157 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME IMPLND 158 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME IMPLND 159 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME IMPLND 160 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME IMPLND 161 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME IMPLND 162 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME IMPLND 163 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME IMPLND 164 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME IMPLND 165 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME IMPLND 166 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME IMPLND 167 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME IMPLND 168 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME IMPLND 169 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME IMPLND 170 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME IMPLND 171 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME IMPLND 172 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME IMPLND 173 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME IMPLND 174 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME IMPLND 175 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME IMPLND 176 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME IMPLND 177 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME IMPLND 178 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME IMPLND 179 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME IMPLND 180 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME IMPLND 181 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME IMPLND 182 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME IMPLND 183 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME IMPLND 184 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME IMPLND 185 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME IMPLND 186 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME IMPLND 187 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME IMPLND 188 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME IMPLND 189 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME IMPLND 190 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME IMPLND 191 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME IMPLND 192 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME IMPLND 193 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME IMPLND 194 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME IMPLND 195 EXTNL PREC - -***Air Temperature (stored as hourly deg. F) -WDM1 283 ATEM ENGL 1.00SAME IMPLND 151 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME IMPLND 152 154 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME IMPLND 155 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME IMPLND 156 157 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME IMPLND 158 161 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME IMPLND 162 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME IMPLND 163 164 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME IMPLND 165 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME IMPLND 166 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME IMPLND 167 169 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME IMPLND 170 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME IMPLND 171 172 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME IMPLND 173 176 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME IMPLND 177 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME IMPLND 178 179 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME IMPLND 180 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME IMPLND 181 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME IMPLND 182 184 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME IMPLND 185 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME IMPLND 186 187 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME IMPLND 188 191 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME IMPLND 192 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME IMPLND 193 194 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME IMPLND 195 EXTNL GATMP +WDM1 136 PREC ENGL 1.00SAME IMPLND 151 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME IMPLND 152 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME IMPLND 153 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME IMPLND 154 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME IMPLND 155 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME IMPLND 156 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME IMPLND 157 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME IMPLND 158 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME IMPLND 159 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME IMPLND 160 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME IMPLND 161 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME IMPLND 162 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME IMPLND 163 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME IMPLND 164 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME IMPLND 165 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME IMPLND 166 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME IMPLND 167 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME IMPLND 168 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME IMPLND 169 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME IMPLND 170 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME IMPLND 171 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME IMPLND 172 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME IMPLND 173 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME IMPLND 174 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME IMPLND 175 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME IMPLND 176 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME IMPLND 177 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME IMPLND 178 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME IMPLND 179 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME IMPLND 180 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME IMPLND 181 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME IMPLND 182 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME IMPLND 183 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME IMPLND 184 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME IMPLND 185 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME IMPLND 186 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME IMPLND 187 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME IMPLND 188 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME IMPLND 189 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME IMPLND 190 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME IMPLND 191 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME IMPLND 192 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME IMPLND 193 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME IMPLND 194 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME IMPLND 195 EXTNL PREC + +***Air Temperature (stored as hourly deg. F) +WDM1 283 ATEM ENGL 1.00SAME IMPLND 151 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME IMPLND 152 154 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME IMPLND 155 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME IMPLND 156 157 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME IMPLND 158 161 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME IMPLND 162 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME IMPLND 163 164 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME IMPLND 165 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME IMPLND 166 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME IMPLND 167 169 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME IMPLND 170 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME IMPLND 171 172 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME IMPLND 173 176 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME IMPLND 177 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME IMPLND 178 179 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME IMPLND 180 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME IMPLND 181 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME IMPLND 182 184 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME IMPLND 185 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME IMPLND 186 187 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME IMPLND 188 191 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME IMPLND 192 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME IMPLND 193 194 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME IMPLND 195 EXTNL GATMP ***Dew Point Temperature (stored as hourly deg. F) -WDM1 287 DEWP ENGL 1.00SAME IMPLND 151 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME IMPLND 152 154 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME IMPLND 155 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME IMPLND 156 157 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME IMPLND 158 161 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME IMPLND 162 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME IMPLND 163 164 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME IMPLND 165 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME IMPLND 166 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME IMPLND 167 169 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME IMPLND 170 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME IMPLND 171 172 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME IMPLND 173 176 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME IMPLND 177 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME IMPLND 178 179 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME IMPLND 180 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME IMPLND 181 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME IMPLND 182 184 EXTNL DTMPG -WDM1 287 DEWP ENGL 1.00SAME IMPLND 185 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME IMPLND 186 187 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME IMPLND 188 191 EXTNL DTMPG -WDM1 267 DEWP ENGL 1.00SAME IMPLND 192 EXTNL DTMPG -WDM1 277 DEWP ENGL 1.00SAME IMPLND 193 194 EXTNL DTMPG -WDM1 904 DEWP ENGL 1.00SAME IMPLND 195 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME IMPLND 151 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME IMPLND 152 154 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME IMPLND 155 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME IMPLND 156 157 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME IMPLND 158 161 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME IMPLND 162 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME IMPLND 163 164 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME IMPLND 165 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME IMPLND 166 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME IMPLND 167 169 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME IMPLND 170 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME IMPLND 171 172 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME IMPLND 173 176 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME IMPLND 177 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME IMPLND 178 179 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME IMPLND 180 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME IMPLND 181 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME IMPLND 182 184 EXTNL DTMPG +WDM1 287 DEWP ENGL 1.00SAME IMPLND 185 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME IMPLND 186 187 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME IMPLND 188 191 EXTNL DTMPG +WDM1 267 DEWP ENGL 1.00SAME IMPLND 192 EXTNL DTMPG +WDM1 277 DEWP ENGL 1.00SAME IMPLND 193 194 EXTNL DTMPG +WDM1 904 DEWP ENGL 1.00SAME IMPLND 195 EXTNL DTMPG ***Cloud Cover (stored as hourly tenths) -WDM1 288 CLOU ENGL 1.00SAME IMPLND 151 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME IMPLND 152 154 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME IMPLND 155 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME IMPLND 156 157 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME IMPLND 158 161 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME IMPLND 162 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME IMPLND 163 164 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME IMPLND 165 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME IMPLND 166 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME IMPLND 167 169 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME IMPLND 170 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME IMPLND 171 172 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME IMPLND 173 176 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME IMPLND 177 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME IMPLND 178 179 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME IMPLND 180 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME IMPLND 181 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME IMPLND 182 184 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME IMPLND 185 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME IMPLND 186 187 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME IMPLND 188 191 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME IMPLND 192 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME IMPLND 193 194 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME IMPLND 195 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME IMPLND 151 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME IMPLND 152 154 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME IMPLND 155 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME IMPLND 156 157 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME IMPLND 158 161 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME IMPLND 162 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME IMPLND 163 164 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME IMPLND 165 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME IMPLND 166 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME IMPLND 167 169 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME IMPLND 170 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME IMPLND 171 172 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME IMPLND 173 176 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME IMPLND 177 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME IMPLND 178 179 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME IMPLND 180 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME IMPLND 181 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME IMPLND 182 184 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME IMPLND 185 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME IMPLND 186 187 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME IMPLND 188 191 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME IMPLND 192 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME IMPLND 193 194 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME IMPLND 195 EXTNL CLOUD ***Solar Radiation (stored as Langleys/hour) WDM1 285 SOLR ENGL 1.00SAME IMPLND 151 EXTNL SOLRAD @@ -5643,139 +5642,139 @@ WDM1 909 PEVT ENGL 0.79 IMPLND 195 EXTNL PETINP ***Reach Segments*** ***Precipitation (stored as inches/hour) -WDM1 136 PREC ENGL 1.00SAME RCHRES 1 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME RCHRES 2 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME RCHRES 3 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME RCHRES 4 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME RCHRES 5 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME RCHRES 6 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME RCHRES 7 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME RCHRES 8 EXTNL PREC -WDM1 140 PREC ENGL 1.00SAME RCHRES 9 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME RCHRES 10 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME RCHRES 11 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME RCHRES 12 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME RCHRES 13 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME RCHRES 14 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 15 EXTNL PREC -WDM1 138 PREC ENGL 1.00SAME RCHRES 16 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME RCHRES 20 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME RCHRES 21 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME RCHRES 30 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME RCHRES 31 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME RCHRES 32 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME RCHRES 33 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME RCHRES 34 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME RCHRES 35 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME RCHRES 40 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 50 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME RCHRES 51 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME RCHRES 52 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME RCHRES 53 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME RCHRES 54 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME RCHRES 55 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 60 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 61 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 62 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 63 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 64 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 65 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 66 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 67 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 68 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 69 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 70 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 71 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 72 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 73 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 74 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 75 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 76 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 77 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 78 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 79 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 80 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 81 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME RCHRES 82 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 83 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME RCHRES 84 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME RCHRES 85 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME RCHRES 86 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME RCHRES 87 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME RCHRES 100 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME RCHRES 101 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME RCHRES 102 EXTNL PREC -WDM1 136 PREC ENGL 1.00SAME RCHRES 103 EXTNL PREC -WDM1 137 PREC ENGL 1.00SAME RCHRES 104 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME RCHRES 105 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME RCHRES 106 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME RCHRES 107 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME RCHRES 108 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME RCHRES 109 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME RCHRES 110 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME RCHRES 200 EXTNL PREC -WDM1 142 PREC ENGL 1.00SAME RCHRES 201 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME RCHRES 202 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME RCHRES 203 EXTNL PREC -WDM1 141 PREC ENGL 1.00SAME RCHRES 204 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME RCHRES 205 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME RCHRES 206 EXTNL PREC -WDM1 147 PREC ENGL 1.00SAME RCHRES 207 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME RCHRES 300 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME RCHRES 301 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME RCHRES 302 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME RCHRES 303 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME RCHRES 304 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME RCHRES 305 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME RCHRES 306 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME RCHRES 307 EXTNL PREC -WDM1 143 PREC ENGL 1.00SAME RCHRES 400 EXTNL PREC -WDM1 148 PREC ENGL 1.00SAME RCHRES 401 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 500 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 501 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 502 EXTNL PREC -WDM1 144 PREC ENGL 1.00SAME RCHRES 503 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME RCHRES 504 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME RCHRES 505 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME RCHRES 506 EXTNL PREC -WDM1 149 PREC ENGL 1.00SAME RCHRES 507 EXTNL PREC -WDM1 139 PREC ENGL 1.00SAME RCHRES 600 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 601 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 602 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 603 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 604 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 605 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 606 EXTNL PREC -WDM1 145 PREC ENGL 1.00SAME RCHRES 607 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 608 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 609 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 610 EXTNL PREC -WDM1 146 PREC ENGL 1.00SAME RCHRES 611 EXTNL PREC -WDM1 150 PREC ENGL 1.00SAME RCHRES 612 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME RCHRES 1 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME RCHRES 2 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME RCHRES 3 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME RCHRES 4 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME RCHRES 5 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME RCHRES 6 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME RCHRES 7 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME RCHRES 8 EXTNL PREC +WDM1 140 PREC ENGL 1.00SAME RCHRES 9 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME RCHRES 10 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME RCHRES 11 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME RCHRES 12 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME RCHRES 13 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME RCHRES 14 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 15 EXTNL PREC +WDM1 138 PREC ENGL 1.00SAME RCHRES 16 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME RCHRES 20 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME RCHRES 21 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME RCHRES 30 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME RCHRES 31 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME RCHRES 32 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME RCHRES 33 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME RCHRES 34 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME RCHRES 35 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME RCHRES 40 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 50 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME RCHRES 51 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME RCHRES 52 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME RCHRES 53 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME RCHRES 54 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME RCHRES 55 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 60 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 61 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 62 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 63 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 64 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 65 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 66 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 67 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 68 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 69 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 70 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 71 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 72 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 73 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 74 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 75 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 76 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 77 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 78 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 79 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 80 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 81 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME RCHRES 82 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 83 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME RCHRES 84 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME RCHRES 85 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME RCHRES 86 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME RCHRES 87 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME RCHRES 100 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME RCHRES 101 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME RCHRES 102 EXTNL PREC +WDM1 136 PREC ENGL 1.00SAME RCHRES 103 EXTNL PREC +WDM1 137 PREC ENGL 1.00SAME RCHRES 104 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME RCHRES 105 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME RCHRES 106 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME RCHRES 107 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME RCHRES 108 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME RCHRES 109 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME RCHRES 110 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME RCHRES 200 EXTNL PREC +WDM1 142 PREC ENGL 1.00SAME RCHRES 201 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME RCHRES 202 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME RCHRES 203 EXTNL PREC +WDM1 141 PREC ENGL 1.00SAME RCHRES 204 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME RCHRES 205 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME RCHRES 206 EXTNL PREC +WDM1 147 PREC ENGL 1.00SAME RCHRES 207 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME RCHRES 300 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME RCHRES 301 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME RCHRES 302 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME RCHRES 303 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME RCHRES 304 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME RCHRES 305 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME RCHRES 306 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME RCHRES 307 EXTNL PREC +WDM1 143 PREC ENGL 1.00SAME RCHRES 400 EXTNL PREC +WDM1 148 PREC ENGL 1.00SAME RCHRES 401 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 500 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 501 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 502 EXTNL PREC +WDM1 144 PREC ENGL 1.00SAME RCHRES 503 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME RCHRES 504 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME RCHRES 505 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME RCHRES 506 EXTNL PREC +WDM1 149 PREC ENGL 1.00SAME RCHRES 507 EXTNL PREC +WDM1 139 PREC ENGL 1.00SAME RCHRES 600 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 601 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 602 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 603 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 604 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 605 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 606 EXTNL PREC +WDM1 145 PREC ENGL 1.00SAME RCHRES 607 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 608 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 609 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 610 EXTNL PREC +WDM1 146 PREC ENGL 1.00SAME RCHRES 611 EXTNL PREC +WDM1 150 PREC ENGL 1.00SAME RCHRES 612 EXTNL PREC ***Air Temperature (stored as hourly deg. F) -WDM1 283 ATEM ENGL 1.00SAME RCHRES 1 6 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 7 8 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME RCHRES 9 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 10 11 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME RCHRES 12 14 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 15 16 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME RCHRES 20 21 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 30 31 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME RCHRES 32 40 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 50 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME RCHRES 51 55 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 60 87 EXTNL GATMP -WDM1 283 ATEM ENGL 1.00SAME RCHRES 100 103 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 104 200 EXTNL GATMP -WDM1 263 ATEM ENGL 1.00SAME RCHRES 201 207 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 300 305 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME RCHRES 306 307 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 400 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME RCHRES 401 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 500 503 EXTNL GATMP -WDM1 273 ATEM ENGL 1.00SAME RCHRES 504 507 EXTNL GATMP -WDM1 902 ATEM ENGL 1.00SAME RCHRES 600 612 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME RCHRES 1 6 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 7 8 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME RCHRES 9 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 10 11 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME RCHRES 12 14 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 15 16 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME RCHRES 20 21 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 30 31 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME RCHRES 32 40 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 50 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME RCHRES 51 55 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 60 87 EXTNL GATMP +WDM1 283 ATEM ENGL 1.00SAME RCHRES 100 103 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 104 200 EXTNL GATMP +WDM1 263 ATEM ENGL 1.00SAME RCHRES 201 207 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 300 305 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME RCHRES 306 307 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 400 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME RCHRES 401 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 500 503 EXTNL GATMP +WDM1 273 ATEM ENGL 1.00SAME RCHRES 504 507 EXTNL GATMP +WDM1 902 ATEM ENGL 1.00SAME RCHRES 600 612 EXTNL GATMP ***Dew Point Temperature (stored as hourly deg. F) @@ -5804,28 +5803,28 @@ WDM1 904 DEWP ENGL 1.00SAME RCHRES 600 612 EXTNL DEWTMP ***Cloud Cover (tenths) -WDM1 288 CLOU ENGL 1.00SAME RCHRES 1 6 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 7 8 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME RCHRES 9 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 10 11 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME RCHRES 12 14 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 15 16 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME RCHRES 20 21 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 30 31 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME RCHRES 32 40 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 50 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME RCHRES 51 55 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 60 87 EXTNL CLOUD -WDM1 288 CLOU ENGL 1.00SAME RCHRES 100 103 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 104 200 EXTNL CLOUD -WDM1 268 CLOU ENGL 1.00SAME RCHRES 201 207 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 300 305 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME RCHRES 306 307 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 400 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME RCHRES 401 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 500 503 EXTNL CLOUD -WDM1 278 CLOU ENGL 1.00SAME RCHRES 504 507 EXTNL CLOUD -WDM1 905 CLOU ENGL 1.00SAME RCHRES 600 612 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME RCHRES 1 6 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 7 8 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME RCHRES 9 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 10 11 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME RCHRES 12 14 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 15 16 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME RCHRES 20 21 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 30 31 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME RCHRES 32 40 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 50 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME RCHRES 51 55 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 60 87 EXTNL CLOUD +WDM1 288 CLOU ENGL 1.00SAME RCHRES 100 103 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 104 200 EXTNL CLOUD +WDM1 268 CLOU ENGL 1.00SAME RCHRES 201 207 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 300 305 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME RCHRES 306 307 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 400 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME RCHRES 401 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 500 503 EXTNL CLOUD +WDM1 278 CLOU ENGL 1.00SAME RCHRES 504 507 EXTNL CLOUD +WDM1 905 CLOU ENGL 1.00SAME RCHRES 600 612 EXTNL CLOUD ***Solar Radiation (stored as Langleys/hour) @@ -5854,53 +5853,53 @@ WDM1 908 SOLR ENGL 1.00SAME RCHRES 600 612 EXTNL SOLRAD ***Wind Movement (stored as miles/hour) -WDM1 284 WIND ENGL 1.00SAME RCHRES 1 6 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 7 8 EXTNL WIND -WDM1 284 WIND ENGL 1.00SAME RCHRES 9 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 10 11 EXTNL WIND -WDM1 264 WIND ENGL 1.00SAME RCHRES 12 14 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 15 16 EXTNL WIND -WDM1 264 WIND ENGL 1.00SAME RCHRES 20 21 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 30 31 EXTNL WIND -WDM1 274 WIND ENGL 1.00SAME RCHRES 32 40 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 50 EXTNL WIND -WDM1 274 WIND ENGL 1.00SAME RCHRES 51 55 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 60 87 EXTNL WIND -WDM1 284 WIND ENGL 1.00SAME RCHRES 100 103 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 104 200 EXTNL WIND -WDM1 264 WIND ENGL 1.00SAME RCHRES 201 207 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 300 305 EXTNL WIND -WDM1 274 WIND ENGL 1.00SAME RCHRES 306 307 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 400 EXTNL WIND -WDM1 274 WIND ENGL 1.00SAME RCHRES 401 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 500 503 EXTNL WIND -WDM1 274 WIND ENGL 1.00SAME RCHRES 504 507 EXTNL WIND -WDM1 903 WIND ENGL 1.00SAME RCHRES 600 612 EXTNL WIND +WDM1 284 WIND ENGL 1.00SAME RCHRES 1 6 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 7 8 EXTNL WIND +WDM1 284 WIND ENGL 1.00SAME RCHRES 9 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 10 11 EXTNL WIND +WDM1 264 WIND ENGL 1.00SAME RCHRES 12 14 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 15 16 EXTNL WIND +WDM1 264 WIND ENGL 1.00SAME RCHRES 20 21 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 30 31 EXTNL WIND +WDM1 274 WIND ENGL 1.00SAME RCHRES 32 40 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 50 EXTNL WIND +WDM1 274 WIND ENGL 1.00SAME RCHRES 51 55 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 60 87 EXTNL WIND +WDM1 284 WIND ENGL 1.00SAME RCHRES 100 103 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 104 200 EXTNL WIND +WDM1 264 WIND ENGL 1.00SAME RCHRES 201 207 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 300 305 EXTNL WIND +WDM1 274 WIND ENGL 1.00SAME RCHRES 306 307 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 400 EXTNL WIND +WDM1 274 WIND ENGL 1.00SAME RCHRES 401 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 500 503 EXTNL WIND +WDM1 274 WIND ENGL 1.00SAME RCHRES 504 507 EXTNL WIND +WDM1 903 WIND ENGL 1.00SAME RCHRES 600 612 EXTNL WIND ***Potential Evapotranspiration (stored as inches/hour) -WDM1 286 PEVT ENGL 0.80 RCHRES 1 6 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 7 8 EXTNL POTEV -WDM1 286 PEVT ENGL 0.80 RCHRES 9 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 10 11 EXTNL POTEV -WDM1 266 PEVT ENGL 0.80 RCHRES 12 14 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 15 16 EXTNL POTEV -WDM1 266 PEVT ENGL 0.80 RCHRES 20 21 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 30 31 EXTNL POTEV -WDM1 276 PEVT ENGL 0.80 RCHRES 32 40 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 50 EXTNL POTEV -WDM1 276 PEVT ENGL 0.80 RCHRES 51 55 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 60 87 EXTNL POTEV -WDM1 286 PEVT ENGL 0.80 RCHRES 100 103 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 104 200 EXTNL POTEV -WDM1 266 PEVT ENGL 0.80 RCHRES 201 207 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 300 305 EXTNL POTEV -WDM1 276 PEVT ENGL 0.80 RCHRES 306 307 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 400 EXTNL POTEV -WDM1 276 PEVT ENGL 0.80 RCHRES 401 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 500 503 EXTNL POTEV -WDM1 276 PEVT ENGL 0.80 RCHRES 504 507 EXTNL POTEV -WDM1 909 PEVT ENGL 0.80 RCHRES 600 612 EXTNL POTEV +WDM1 286 PEVT ENGL 0.80 RCHRES 1 6 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 7 8 EXTNL POTEV +WDM1 286 PEVT ENGL 0.80 RCHRES 9 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 10 11 EXTNL POTEV +WDM1 266 PEVT ENGL 0.80 RCHRES 12 14 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 15 16 EXTNL POTEV +WDM1 266 PEVT ENGL 0.80 RCHRES 20 21 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 30 31 EXTNL POTEV +WDM1 276 PEVT ENGL 0.80 RCHRES 32 40 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 50 EXTNL POTEV +WDM1 276 PEVT ENGL 0.80 RCHRES 51 55 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 60 87 EXTNL POTEV +WDM1 286 PEVT ENGL 0.80 RCHRES 100 103 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 104 200 EXTNL POTEV +WDM1 266 PEVT ENGL 0.80 RCHRES 201 207 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 300 305 EXTNL POTEV +WDM1 276 PEVT ENGL 0.80 RCHRES 306 307 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 400 EXTNL POTEV +WDM1 276 PEVT ENGL 0.80 RCHRES 401 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 500 503 EXTNL POTEV +WDM1 276 PEVT ENGL 0.80 RCHRES 504 507 EXTNL POTEV +WDM1 909 PEVT ENGL 0.80 RCHRES 600 612 EXTNL POTEV ********************************************************************* @@ -5912,7 +5911,7 @@ WDM1 909 PEVT ENGL 0.80 RCHRES 600 612 EXTNL POTEV *** Discharge: FLOW (stored as MG/day) * 3.0689 acre-ft/MG = acre-ft/day *** TSS Silt Fractionation: TSS (stored as lbs/day) * 5E-4 ton/lb * 0.40 (Silt/Total) = ton/day *** *Net conversion factor = 2.0E-4 -*** TSS Clay Fractionation TSS: (stored as lbs/day) * 5E-4 ton/lb * 0.60 (Clay/Total) = ton/day +*** TSS Clay Fractionation TSS: (stored as lbs/day) * 5E-4 ton/lb * 0.60 (Clay/Total) = ton/day *** *Net conversion factor = 3.0E-4 *** Dissolved Oxygen: DOX(stored as lbs/day) = no conversion factor *** BOD Ultimate: BOD5(stored as lbs/day) * 2.5 (assumed BODU/BOD5) = lbs/day @@ -5925,7 +5924,7 @@ WDM1 909 PEVT ENGL 0.80 RCHRES 600 612 EXTNL POTEV *** *Net conversion factor = 0.1072 *** Ortho-Phosphorus: TP (stored as lbs/day) * 0.7235 (assumed fraction of TP) = lbs/day *** Organic Refractory Phosphorus: TP (stored as lbs/day) * 0.2765 (assumed fraction of TP) = lbs/day -*** Organic Refractory Carbon: BOD5 (stored as lbs/day) * 2.5 (assumed BODU/BOD5) * 0.2699 (assumed fraction of BODU) = lbs/day +*** Organic Refractory Carbon: BOD5 (stored as lbs/day) * 2.5 (assumed BODU/BOD5) * 0.2699 (assumed fraction of BODU) = lbs/day *** *Net conversion factor = 0.6748 *** DIV time series transform function is used for all to convert /day to /hour @@ -6368,7 +6367,7 @@ WDM3 627 HEAT ENGL 1.0000 DIV RCHRES 606 INFLOW IHEAT 1 *** Atmospheric Deposition *** ********************************************************************* -*** Dry Atmospheric Deposition Inputs +*** Dry Atmospheric Deposition Inputs *** Stored as "kg/ha/day" *** Multiply by 0.404687 ha/acre and 2.204623 lb/kg to convert to lb/acre/day *** Multiply by 0.778 for NH4, by 0.226 for NO3 to convert to elemental N @@ -6563,7 +6562,7 @@ PERLND SEDMNT WSSD 1 0.350 RCHRES INFLOW ISED 3 PERLND SEDMNT SCRSD 1 0.190 RCHRES INFLOW ISED 1 PERLND SEDMNT SCRSD 1 0.610 RCHRES INFLOW ISED 2 PERLND SEDMNT SCRSD 1 0.200 RCHRES INFLOW ISED 3 - + *** Assume 5 mg/l clay in groundwater outflow (AGWO)*** *** AGWO (in/hr) * 5 (mg/L) * PLS_Area (acres) * [1 ft/12 in] * [1 ton/9.072E+8 mg] * [1.233E+6 L/acre-ft] = Clay Load (tons/hr) *** *** Net conversion factor = 5.66E-4 @@ -6572,23 +6571,23 @@ PERLND PWATER AGWO 5.66E-4 RCHRES INFLOW ISED 3 PERLND PWTGAS POHT RCHRES INFLOW IHEAT PERLND PWTGAS PODOXM RCHRES INFLOW OXIF 1 PERLND PQUAL POQUAL 1 RCHRES INFLOW NUIF1 2 -PERLND PQUAL POQUAL 2 RCHRES INFLOW NUIF1 1 -PERLND PQUAL SOQUAL 3 0.100 RCHRES INFLOW NUIF1 4 -PERLND PQUAL SOQUAL 3 0.580 RCHRES INFLOW NUIF2 2 2 -PERLND PQUAL SOQUAL 3 0.32 RCHRES INFLOW NUIF2 3 2 -PERLND PQUAL IOQUAL 3 1.00 RCHRES INFLOW NUIF1 4 -PERLND PQUAL AOQUAL 3 1.00 RCHRES INFLOW NUIF1 4 -PERLND PQUAL SOQUAL 4 0.40 RCHRES INFLOW OXIF 2 -PERLND PQUAL IOQUAL 4 0.32 RCHRES INFLOW OXIF 2 -PERLND PQUAL AOQUAL 4 0.40 RCHRES INFLOW OXIF 2 -PERLND PQUAL SOQUAL 4 0.0407 RCHRES INFLOW PKIF 3 -PERLND PQUAL AOQUAL 4 0.0488 RCHRES INFLOW PKIF 3 -PERLND PQUAL IOQUAL 4 0.0407 RCHRES INFLOW PKIF 3 +PERLND PQUAL POQUAL 2 RCHRES INFLOW NUIF1 1 +PERLND PQUAL SOQUAL 3 0.100 RCHRES INFLOW NUIF1 4 +PERLND PQUAL SOQUAL 3 0.580 RCHRES INFLOW NUIF2 2 2 +PERLND PQUAL SOQUAL 3 0.32 RCHRES INFLOW NUIF2 3 2 +PERLND PQUAL IOQUAL 3 1.00 RCHRES INFLOW NUIF1 4 +PERLND PQUAL AOQUAL 3 1.00 RCHRES INFLOW NUIF1 4 +PERLND PQUAL SOQUAL 4 0.40 RCHRES INFLOW OXIF 2 +PERLND PQUAL IOQUAL 4 0.32 RCHRES INFLOW OXIF 2 +PERLND PQUAL AOQUAL 4 0.40 RCHRES INFLOW OXIF 2 +PERLND PQUAL SOQUAL 4 0.0407 RCHRES INFLOW PKIF 3 +PERLND PQUAL AOQUAL 4 0.0488 RCHRES INFLOW PKIF 3 +PERLND PQUAL IOQUAL 4 0.0407 RCHRES INFLOW PKIF 3 PERLND PQUAL SOQUAL 4 0.0051 RCHRES INFLOW PKIF 4 -PERLND PQUAL IOQUAL 4 0.0051 RCHRES INFLOW PKIF 4 -PERLND PQUAL AOQUAL 4 0.0040 RCHRES INFLOW PKIF 4 -PERLND PQUAL POQUAL 4 0.570 RCHRES INFLOW PKIF 5 - END MASS-LINK 1 +PERLND PQUAL IOQUAL 4 0.0051 RCHRES INFLOW PKIF 4 +PERLND PQUAL AOQUAL 4 0.0040 RCHRES INFLOW PKIF 4 +PERLND PQUAL POQUAL 4 0.570 RCHRES INFLOW PKIF 5 + END MASS-LINK 1 *** IMPLNDs (EIA) *** MASS-LINK 2 @@ -6596,20 +6595,20 @@ PERLND PQUAL POQUAL 4 0.570 RCHRES INFLOW PKIF 5 x x<-factor->strg x x *** ***Conversion of Runoff from inches to ac-ft = 0.083333*** IMPLND IWATER SURO 0.0833333 RCHRES INFLOW IVOL -IMPLND SOLIDS SOSLD 0.050 RCHRES INFLOW ISED 1 -IMPLND SOLIDS SOSLD 0.600 RCHRES INFLOW ISED 2 +IMPLND SOLIDS SOSLD 0.050 RCHRES INFLOW ISED 1 +IMPLND SOLIDS SOSLD 0.600 RCHRES INFLOW ISED 2 IMPLND SOLIDS SOSLD 0.350 RCHRES INFLOW ISED 3 IMPLND IWTGAS SOHT RCHRES INFLOW IHEAT IMPLND IWTGAS SODOXM RCHRES INFLOW OXIF 1 IMPLND IQUAL SOQUAL 1 RCHRES INFLOW NUIF1 2 -IMPLND IQUAL SOQUAL 2 RCHRES INFLOW NUIF1 1 -IMPLND IQUAL SOQUAL 3 RCHRES INFLOW NUIF1 4 -IMPLND IQUAL SOQUAL 4 0.40 RCHRES INFLOW OXIF 2 -IMPLND IQUAL SOQUAL 4 0.0407 RCHRES INFLOW PKIF 3 -IMPLND IQUAL SOQUAL 4 0.0051 RCHRES INFLOW PKIF 4 -IMPLND IQUAL SOQUAL 4 0.570 RCHRES INFLOW PKIF 5 +IMPLND IQUAL SOQUAL 2 RCHRES INFLOW NUIF1 1 +IMPLND IQUAL SOQUAL 3 RCHRES INFLOW NUIF1 4 +IMPLND IQUAL SOQUAL 4 0.40 RCHRES INFLOW OXIF 2 +IMPLND IQUAL SOQUAL 4 0.0407 RCHRES INFLOW PKIF 3 +IMPLND IQUAL SOQUAL 4 0.0051 RCHRES INFLOW PKIF 4 +IMPLND IQUAL SOQUAL 4 0.570 RCHRES INFLOW PKIF 5 END MASS-LINK 2 - + *** RCHRES *** MASS-LINK 5 <-Volume-> <-Grp> <-Member-><--Mult-->Tran <-Target vols> <-Grp> <-Member-> *** @@ -6663,10 +6662,10 @@ PERLND PQUAL POQUAL 4 0.570 RCHRES INFLOW PKIF 5 x x<-factor->strg x x *** ***Conversion of Runoff from inches to ac-ft = 0.083333*** IMPLND IWATER SURO 0.0833333 RCHRES INFLOW IVOL -IMPLND SOLIDS SOSLD 0.050 RCHRES INFLOW ISED 1 -IMPLND SOLIDS SOSLD 0.600 RCHRES INFLOW ISED 2 +IMPLND SOLIDS SOSLD 0.050 RCHRES INFLOW ISED 1 +IMPLND SOLIDS SOSLD 0.600 RCHRES INFLOW ISED 2 IMPLND SOLIDS SOSLD 0.350 RCHRES INFLOW ISED 3 -IMPLND IWTGAS SOHT RCHRES INFLOW IHEAT +IMPLND IWTGAS SOHT RCHRES INFLOW IHEAT IMPLND IWTGAS SODOXM RCHRES INFLOW OXIF 1 IMPLND IQUAL SOQUAL 1 RCHRES INFLOW NUIF1 2 IMPLND IQUAL SOQUAL 2 RCHRES INFLOW NUIF1 1 @@ -6674,7 +6673,7 @@ IMPLND IQUAL SOQUAL 3 RCHRES INFLOW NUIF1 4 IMPLND IQUAL SOQUAL 4 0.40 RCHRES INFLOW OXIF 2 IMPLND IQUAL SOQUAL 4 0.0407 RCHRES INFLOW PKIF 3 IMPLND IQUAL SOQUAL 4 0.0051 RCHRES INFLOW PKIF 4 -IMPLND IQUAL SOQUAL 4 0.570 RCHRES INFLOW PKIF 5 +IMPLND IQUAL SOQUAL 4 0.570 RCHRES INFLOW PKIF 5 END MASS-LINK 12 ********************************************************************* @@ -6721,16 +6720,16 @@ END MASS-LINK GENER OPCODE - #thru# code *** - 101 115 25 - 201 215 19 + #thru# code *** + 101 115 25 + 201 215 19 301 315 18 END OPCODE PARM *** Set minimum surface runoff depth to 0.1 inch for calculation of sediment concentration in tile drainage *** *** to prevent divide by zero error *** - #thru# constant *** + #thru# constant *** 101 115 0.1 END PARM END GENER diff --git a/tests/convert/conversion_test.py b/tests/convert/conversion_test.py index 10aa10fb..a7aeb648 100644 --- a/tests/convert/conversion_test.py +++ b/tests/convert/conversion_test.py @@ -1,16 +1,17 @@ from datetime import datetime -from tests.convert.regression_base import RegressTest -if __name__ == '__main__': - #compare_cases = ['test05', 'test09', 'test10', 'test10b', 'Calleg', 'GRW_Plaster', 'ZRW_WestIndian'] - #compare_cases = ['test10'] # control test cases for comparison - compare_case = 'GLWACSO' +from tests.convert.regression_base import RegressTest + +if __name__ == "__main__": + # compare_cases = ['test05', 'test09', 'test10', 'test10b', 'Calleg', 'GRW_Plaster', 'ZRW_WestIndian'] + # compare_cases = ['test10'] # control test cases for comparison + compare_case = "GLWACSO" start = datetime.now() - # test = RegressTest(compare_case, ids=['434'],activites=['GQUAL'],threads=1) - test = RegressTest('test10') + # test = RegressTest(compare_case, ids=['434'],activites=['GQUAL'],threads=1) + test = RegressTest("test10") results = test.run_test() test.generate_report(test.html_file, results) - print(f'runtime: {datetime.now() - start}') \ No newline at end of file + print(f"runtime: {datetime.now() - start}") diff --git a/tests/convert/regression_base.py b/tests/convert/regression_base.py index 88bc23fe..6cfc4f87 100644 --- a/tests/convert/regression_base.py +++ b/tests/convert/regression_base.py @@ -1,23 +1,29 @@ -from datetime import time -import os import inspect +import os import webbrowser -from hsp2.hsp2tools.HBNOutput import HBNOutput -from hsp2.hsp2tools.HDF5 import HDF5 -import pandas as pd -import numpy as np - +from concurrent.futures import ThreadPoolExecutor, as_completed, thread +from datetime import time from typing import Dict, List, Tuple, Union -from concurrent.futures import ThreadPoolExecutor, as_completed, thread +import numpy as np +import pandas as pd +from hsp2.hsp2tools.HBNOutput import HBNOutput +from hsp2.hsp2tools.HDF5 import HDF5 +OperationsTuple = Tuple[str, str, str, str, str] +ResultsTuple = Tuple[bool, bool, bool, float] -OperationsTuple = Tuple[str,str,str,str,str] -ResultsTuple = Tuple[bool,bool,bool,float] -class RegressTest(object): - def __init__(self, compare_case:str, operations:List[str]=[], activities:List[str]=[], - tcodes:List[str] = ['2'], ids:List[str] = [], threads:int=os.cpu_count() - 1) -> None: +class RegressTest: + def __init__( + self, + compare_case: str, + operations: List[str] = [], + activities: List[str] = [], + tcodes: List[str] = ["2"], + ids: List[str] = [], + threads: int = os.cpu_count() - 1, + ) -> None: self.compare_case = compare_case self.operations = operations self.activities = activities @@ -28,10 +34,14 @@ def __init__(self, compare_case:str, operations:List[str]=[], activities:List[st self._init_files() def _init_files(self): - current_directory = os.path.dirname(os.path.abspath(inspect.getframeinfo(inspect.currentframe()).filename)) + current_directory = os.path.dirname( + os.path.abspath(inspect.getframeinfo(inspect.currentframe()).filename) + ) source_root_path = os.path.split(os.path.split(current_directory)[0])[0] tests_root_dir = os.path.join(source_root_path, "tests") - self.html_file = os.path.join(tests_root_dir, f'HSPF_HSP2_{self.compare_case}.html') + self.html_file = os.path.join( + tests_root_dir, f"HSPF_HSP2_{self.compare_case}.html" + ) test_dirs = os.listdir(tests_root_dir) for test_dir in test_dirs: @@ -42,30 +52,34 @@ def _init_files(self): self._get_hbn_data(test_root) def _get_hbn_data(self, test_dir: str) -> None: - sub_dir = os.path.join(test_dir, 'HSPFresults') + sub_dir = os.path.join(test_dir, "HSPFresults") self.hspf_data_collection = {} for file in os.listdir(sub_dir): - if file.lower().endswith('.hbn'): + if file.lower().endswith(".hbn"): hspf_data = HBNOutput(os.path.join(test_dir, sub_dir, file)) hspf_data.read_data() for key in hspf_data.output_dictionary.keys(): self.hspf_data_collection[key] = hspf_data - def get_hspf_time_series(self, ops:OperationsTuple) -> Union[pd.Series,None]: + def get_hspf_time_series(self, ops: OperationsTuple) -> Union[pd.Series, None]: operation, activity, id, constituent, tcode = ops - key = f'{operation}_{activity}_{id}_{tcode}' + key = f"{operation}_{activity}_{id}_{tcode}" hspf_data = self.hspf_data_collection[key] - series = hspf_data.get_time_series(operation, int(id), constituent, activity, 'hourly') + series = hspf_data.get_time_series( + operation, int(id), constituent, activity, "hourly" + ) return series def _get_hdf5_data(self, test_dir: str) -> None: - sub_dir = os.path.join(test_dir, 'HSP2results') + sub_dir = os.path.join(test_dir, "HSP2results") for file in os.listdir(sub_dir): - if file.lower().endswith('.h5') or file.lower().endswith('.hdf'): + if file.lower().endswith(".h5") or file.lower().endswith(".hdf"): self.hsp2_data = HDF5(os.path.join(sub_dir, file)) break - def should_compare(self, operation:str, activity:str, id:str, tcode:str) -> bool: + def should_compare( + self, operation: str, activity: str, id: str, tcode: str + ) -> bool: if len(self.operations) > 0 and operation not in self.operations: return False if len(self.activities) > 0 and activity not in self.activities: @@ -76,41 +90,48 @@ def should_compare(self, operation:str, activity:str, id:str, tcode:str) -> bool return False return True - def generate_report(self, file:str, results: Dict[OperationsTuple,ResultsTuple]) -> None: + def generate_report( + self, file: str, results: Dict[OperationsTuple, ResultsTuple] + ) -> None: html = self.make_html_report(results) - self.write_html(file,html) - webbrowser.open_new_tab('file://' + file) + self.write_html(file, html) + webbrowser.open_new_tab("file://" + file) - def make_html_report(self, results_dict:Dict[OperationsTuple,ResultsTuple]) -> str: + def make_html_report( + self, results_dict: Dict[OperationsTuple, ResultsTuple] + ) -> str: """populates html table""" style_th = 'style="text-align:left"' style_header = 'style="border:1px solid; background-color:#EEEEEE"' - html = f'

CONVERSION TEST REPORT

\n' + html = f"

CONVERSION TEST REPORT

\n" html += f'\n' for key in self.hspf_data_collection.keys(): - operation, activity, opn_id, tcode = key.split('_') + operation, activity, opn_id, tcode = key.split("_") if not self.should_compare(operation, activity, opn_id, tcode): continue - html += f'\n' - html += f'\n' + html += f"\n" + html += f"\n" hspf_data = self.hspf_data_collection[key] for cons in hspf_data.output_dictionary[key]: - result = results_dict[(operation,activity,opn_id, cons, tcode)] + result = results_dict[(operation, activity, opn_id, cons, tcode)] no_data_hsp2, no_data_hspf, match, diff = result - html += self.make_html_comp_row(cons, no_data_hsp2, no_data_hspf, match, diff) + html += self.make_html_comp_row( + cons, no_data_hsp2, no_data_hspf, match, diff + ) - html += f'
{key}
ConstituentMax DiffMatchNote
{key}
ConstituentMax DiffMatchNote
\n' + html += f"\n" html += f"\n" return html - def make_html_comp_row(self, con:str, no_data_hsp2:bool, - no_data_hspf:bool, match:bool, diff:float) -> str: + def make_html_comp_row( + self, con: str, no_data_hsp2: bool, no_data_hspf: bool, match: bool, diff: float + ) -> str: """populates each constituents rows""" - diffsOnly= False + diffsOnly = False eliminateNotIns = True - html = '' + html = "" if diffsOnly: if no_data_hsp2 or no_data_hspf: pass @@ -119,38 +140,40 @@ def make_html_comp_row(self, con:str, no_data_hsp2:bool, pass else: match_symbol = f'X' - html = f'-{con}{diff}{match_symbol}\n' + html = f"-{con}{diff}{match_symbol}\n" else: if no_data_hsp2 or no_data_hspf: if not eliminateNotIns: - html = f'-{con}NANA' + html = f"-{con}NANA" html += f'{"Not in HSP2" if no_data_hsp2 else ""}
' html += f'{"Not in HSPF" if no_data_hspf else ""}' - html += f'\n' + html += f"\n" else: if match: - match_symbol = f'' + match_symbol = ( + f'' + ) else: match_symbol = f'X' - html = f'-{con}{diff}{match_symbol}\n' + html = f"-{con}{diff}{match_symbol}\n" return html - def write_html(self, file:str, html:str) -> None: - with open(file, 'w') as f: + def write_html(self, file: str, html: str) -> None: + with open(file, "w") as f: f.write(html) - def run_test(self) -> Dict[OperationsTuple,ResultsTuple]: + def run_test(self) -> Dict[OperationsTuple, ResultsTuple]: futures = {} results_dict = {} with ThreadPoolExecutor(max_workers=self.threads) as executor: for key in self.hspf_data_collection.keys(): - (operation, activity, opn_id, tcode) = key.split('_') + (operation, activity, opn_id, tcode) = key.split("_") if not self.should_compare(operation, activity, opn_id, tcode): continue hspf_data = self.hspf_data_collection[key] for cons in hspf_data.output_dictionary[key]: - params = (operation,activity,opn_id,cons,tcode) + params = (operation, activity, opn_id, cons, tcode) futures[executor.submit(self.check_con, params)] = params for future in as_completed(futures): @@ -159,10 +182,10 @@ def run_test(self) -> Dict[OperationsTuple,ResultsTuple]: return results_dict - def check_con(self, params:OperationsTuple) -> ResultsTuple: + def check_con(self, params: OperationsTuple) -> ResultsTuple: """Performs comparision of single constituent""" operation, activity, id, constituent, tcode = params - print(f' {operation}_{id} {activity} {constituent}\n') + print(f" {operation}_{id} {activity} {constituent}\n") ts_hsp2 = self.hsp2_data.get_time_series(operation, id, constituent, activity) ts_hspf = self.get_hspf_time_series(params) @@ -173,69 +196,131 @@ def check_con(self, params:OperationsTuple) -> ResultsTuple: if no_data_hsp2 or no_data_hspf: return (no_data_hsp2, no_data_hspf, False, 0) else: - #Special case, for some parameters (e.g PLANK.BENAL1) HSPF results look to be array. - #Working assumption is that only the first index of that array are the values of interest. + # Special case, for some parameters (e.g PLANK.BENAL1) HSPF results look to be array. + # Working assumption is that only the first index of that array are the values of interest. if len(ts_hspf.shape) > 1: - ts_hspf = ts_hspf.iloc[:,0] + ts_hspf = ts_hspf.iloc[:, 0] tolerance = 1e-2 # may want to change default to max(abs(ts_hsp2.values.min()), abs(ts_hsp2.values.max())) * 1e-3 # if heat related term, compute special tolerance - if constituent == 'IHEAT' or constituent == 'ROHEAT' or constituent.startswith('OHEAT') or \ - constituent == 'QSOLAR' or constituent == 'QLONGW' or constituent == 'QEVAP' or \ - constituent == 'QCON' or constituent == 'QPREC' or constituent == 'QBED': - tolerance = max(abs(ts_hsp2.values.min()), abs(ts_hsp2.values.max())) * 1e-4 - elif constituent == 'QTOTAL' or constituent == 'HTEXCH' : - tolerance = max(abs(ts_hsp2.values.min()), abs(ts_hsp2.values.max())) * 1e-3 - - ts_hsp2, ts_hspf = self.validate_time_series(ts_hsp2, ts_hspf, operation, activity, id, constituent) + if ( + constituent == "IHEAT" + or constituent == "ROHEAT" + or constituent.startswith("OHEAT") + or constituent == "QSOLAR" + or constituent == "QLONGW" + or constituent == "QEVAP" + or constituent == "QCON" + or constituent == "QPREC" + or constituent == "QBED" + ): + tolerance = ( + max(abs(ts_hsp2.values.min()), abs(ts_hsp2.values.max())) * 1e-4 + ) + elif constituent == "QTOTAL" or constituent == "HTEXCH": + tolerance = ( + max(abs(ts_hsp2.values.min()), abs(ts_hsp2.values.max())) * 1e-3 + ) + + ts_hsp2, ts_hspf = self.validate_time_series( + ts_hsp2, ts_hspf, operation, activity, id, constituent + ) match, diff = self.compare_time_series(ts_hsp2, ts_hspf, tolerance) return (no_data_hsp2, no_data_hspf, match, diff) - def fill_nan_and_null(self, timeseries:pd.Series, replacement_value:float = 0.0) -> pd.Series: + def fill_nan_and_null( + self, timeseries: pd.Series, replacement_value: float = 0.0 + ) -> pd.Series: """Replaces any nan or HSPF nulls -1.0e30 with provided replacement_value""" timeseries = timeseries.fillna(replacement_value) timeseries = timeseries.where(timeseries > -1.0e25, replacement_value) return timeseries - def validate_time_series(self, ts_hsp2:pd.Series, ts_hspf:pd.Series, operation:str, - activity:str, id:str, cons:str) -> Tuple[pd.Series, pd.Series]: - """ validates a corrects time series to avoid false differences """ + def validate_time_series( + self, + ts_hsp2: pd.Series, + ts_hspf: pd.Series, + operation: str, + activity: str, + id: str, + cons: str, + ) -> Tuple[pd.Series, pd.Series]: + """validates a corrects time series to avoid false differences""" # In some test cases it looked like HSP2 was executing for a single extra time step # Trim h5 (HSP2) results to be same length as hbn (HSPF) # This is a bandaid to get testing working. Long term should identify why HSP2 runs for additional time step. if len(ts_hsp2) > len(ts_hspf): - ts_hsp2 = ts_hsp2[0:len(ts_hspf)] + ts_hsp2 = ts_hsp2[0 : len(ts_hspf)] ts_hsp2 = self.fill_nan_and_null(ts_hsp2) ts_hspf = self.fill_nan_and_null(ts_hspf) ### special cases # if tiny suro in one and no suro in the other, don't trigger on suro-dependent numbers - if activity == 'PWTGAS' and cons in ['SOTMP', 'SODOX', 'SOCO2']: - ts_suro_hsp2 = self.hsp2_data.get_time_series(operation, id, 'SURO', 'PWATER') + if activity == "PWTGAS" and cons in ["SOTMP", "SODOX", "SOCO2"]: + ts_suro_hsp2 = self.hsp2_data.get_time_series( + operation, id, "SURO", "PWATER" + ) ts_suro_hsp2 = self.fill_nan_and_null(ts_suro_hsp2) - ts_suro_hspf = self.get_hspf_time_series((operation, 'PWATER', id, 'SURO', 2)) + ts_suro_hspf = self.get_hspf_time_series( + (operation, "PWATER", id, "SURO", 2) + ) ts_suro_hspf = self.fill_nan_and_null(ts_suro_hspf) - idx_zero_suro_hsp2 = ts_suro_hsp2 == 0 idx_low_suro_hsp2 = ts_suro_hsp2 < 1.0e-8 idx_zero_suro_hspf = ts_suro_hspf == 0 idx_low_suro_hspf = ts_suro_hspf < 1.0e-8 - ts_hsp2.loc[idx_zero_suro_hsp2 & idx_low_suro_hspf] = ts_hspf.loc[idx_zero_suro_hsp2 & idx_low_suro_hspf] = 0 - ts_hspf.loc[idx_zero_suro_hspf & idx_low_suro_hsp2] = ts_hsp2.loc[idx_zero_suro_hspf & idx_low_suro_hsp2] = 0 + ts_hsp2.loc[idx_zero_suro_hsp2 & idx_low_suro_hspf] = ts_hspf.loc[ + idx_zero_suro_hsp2 & idx_low_suro_hspf + ] = 0 + ts_hspf.loc[idx_zero_suro_hspf & idx_low_suro_hsp2] = ts_hsp2.loc[ + idx_zero_suro_hspf & idx_low_suro_hsp2 + ] = 0 # if volume in reach is going to zero, small concentration differences are not signficant - if (activity == 'SEDTRN' and cons in ['SSEDCLAY', 'SSEDTOT']) or \ - (activity == 'OXRX' and cons in ['BODCONC', 'DOXCONC']) or \ - (activity == 'NUTRX' and cons in ['TAMCONCDIS', 'NH4CONCDIS', 'NH3CONCDIS', 'NO3CONCDIS', 'NO2CONCDIS', 'PO4CONCDIS', - 'PO4CONCSUSPSAND', 'PO4CONCSUSPSILT', 'PO4CONCSUSPCLAY', 'NH4CONCSUSPSAND', 'NH4CONCSUSPSILT', 'NH4CONCSUSPCLAY']) or \ - (activity == 'PLANK' and cons in ['PHYTO', 'PHYCLA', 'ZOO', 'CTOTORGCONC', 'POTBOD', 'NTOTCONC', 'PTOTCONC', 'NTOTORGCONC', 'PTOTORGCONC']) or \ - (activity == 'PHCARB' and cons in ['TICCONC', 'CO2CONC']): + if ( + (activity == "SEDTRN" and cons in ["SSEDCLAY", "SSEDTOT"]) + or (activity == "OXRX" and cons in ["BODCONC", "DOXCONC"]) + or ( + activity == "NUTRX" + and cons + in [ + "TAMCONCDIS", + "NH4CONCDIS", + "NH3CONCDIS", + "NO3CONCDIS", + "NO2CONCDIS", + "PO4CONCDIS", + "PO4CONCSUSPSAND", + "PO4CONCSUSPSILT", + "PO4CONCSUSPCLAY", + "NH4CONCSUSPSAND", + "NH4CONCSUSPSILT", + "NH4CONCSUSPCLAY", + ] + ) + or ( + activity == "PLANK" + and cons + in [ + "PHYTO", + "PHYCLA", + "ZOO", + "CTOTORGCONC", + "POTBOD", + "NTOTCONC", + "PTOTCONC", + "NTOTORGCONC", + "PTOTORGCONC", + ] + ) + or (activity == "PHCARB" and cons in ["TICCONC", "CO2CONC"]) + ): ts_vol_hsp2 = self.hsp2_data.get_time_series(operation, id, "VOL", "HYDR") ts_vol_hsp2 = self.fill_nan_and_null(ts_vol_hsp2) @@ -246,8 +331,9 @@ def validate_time_series(self, ts_hsp2:pd.Series, ts_hspf:pd.Series, operation:s return ts_hsp2, ts_hspf - def compare_time_series(self, ts_hsp2:pd.Series, ts_hspf:pd.Series, tol:float) -> Tuple[bool, float]: - + def compare_time_series( + self, ts_hsp2: pd.Series, ts_hspf: pd.Series, tol: float + ) -> Tuple[bool, float]: max_diff1 = (ts_hspf.values - ts_hsp2.values).max() max_diff2 = (ts_hsp2.values - ts_hspf.values).max() max_diff = max(max_diff1, max_diff2) diff --git a/tests/ipwater/data/Flow_Test.plt b/tests/ipwater/data/Flow_Test.plt index 39c3e991..6b56df7a 100644 --- a/tests/ipwater/data/Flow_Test.plt +++ b/tests/ipwater/data/Flow_Test.plt @@ -2,10 +2,10 @@ Av Time interval: 60 mins Last month in printout year: 9 Av No. of curves plotted: Point-valued: 0 Mean-valued: 7 Total 7 Av Label flag: 0 Pivl: 1 Idelt: 60 - Av Plot title: Average Output flow (cfs) - Av Y-axis label: + Av Plot title: Average Output flow (cfs) + Av Y-axis label: Av Scale info: Ymin: 0.0000 Threshold:-0.10000E+33 - Av Ymax: 100.00 + Av Ymax: 100.00 Av Time: 30.000 intervals/inch Av Data for each curve (Point-valued first, then mean-valued): Av Label LINTYP INTEQ COLCOD TRAN TRANCOD @@ -24,13 +24,13 @@ Av Date/time Values Av Av 2017 12 31 24 0-1.0000000E+30-1.0000000E+30-1.0000000E+30-1.0000000E+30-1.0000000E+30-1.0000000E+30-1.0000000E+30 - Av 2018 1 1 1 0 500.0000 0.000000 1.4692564E-03 2.4298239E-03 6.0976162E-03 0.000000 0.000000 - Av 2018 1 1 2 0 0.2766384 0.000000 1.4475825E-03 2.4300206E-03 1.9394598E-03 0.000000 0.000000 - Av 2018 1 1 3 0 0.4479387 0.000000 1.4262284E-03 2.4301915E-03 8.0480397E-04 0.000000 0.000000 - Av 2018 1 1 4 0 0.3750470 0.000000 1.4051893E-03 2.4303370E-03 3.9847003E-04 0.000000 0.000000 - Av 2018 1 1 5 0 0.3936203 0.000000 1.3844606E-03 2.4304576E-03 2.2315262E-04 0.000000 0.000000 - Av 2018 1 1 6 0 0.3826022 0.000000 1.3640376E-03 2.4305538E-03 1.3668223E-04 0.000000 0.000000 - Av 2018 1 1 7 0 0.3827823 0.000000 1.3439159E-03 2.4306260E-03 8.9559166E-05 0.000000 0.000000 + Av 2018 1 1 1 0 500.0000 0.000000 1.4692564E-03 2.4298239E-03 6.0976162E-03 0.000000 0.000000 + Av 2018 1 1 2 0 0.2766384 0.000000 1.4475825E-03 2.4300206E-03 1.9394598E-03 0.000000 0.000000 + Av 2018 1 1 3 0 0.4479387 0.000000 1.4262284E-03 2.4301915E-03 8.0480397E-04 0.000000 0.000000 + Av 2018 1 1 4 0 0.3750470 0.000000 1.4051893E-03 2.4303370E-03 3.9847003E-04 0.000000 0.000000 + Av 2018 1 1 5 0 0.3936203 0.000000 1.3844606E-03 2.4304576E-03 2.2315262E-04 0.000000 0.000000 + Av 2018 1 1 6 0 0.3826022 0.000000 1.3640376E-03 2.4305538E-03 1.3668223E-04 0.000000 0.000000 + Av 2018 1 1 7 0 0.3827823 0.000000 1.3439159E-03 2.4306260E-03 8.9559166E-05 0.000000 0.000000 Av 2018 1 1 8 0 0.3732951 0.000000 1.3240911E-03 2.3400784E-03 6.1830673E-05 0.000000 4.1179982E-04 Av 2018 1 1 9 0 0.3454389 0.000000 1.3045588E-03 2.0195283E-03 4.4495540E-05 0.000000 1.8689601E-03 Av 2018 1 1 10 0 0.3114849 0.000000 1.2853144E-03 1.7442536E-03 3.3115422E-05 0.000000 3.1202205E-03 @@ -40,21 +40,21 @@ Av 2018 1 1 14 0 0.2980402 0.000000 1.2111345E-03 1.7440433E-03 0.000000 0.000000 3.1202205E-03 Av 2018 1 1 15 0 0.3148406 0.000000 1.1932683E-03 2.0192151E-03 0.000000 0.000000 1.8689601E-03 Av 2018 1 1 16 0 0.3473737 0.000000 1.1756658E-03 2.3396639E-03 0.000000 0.000000 4.1179982E-04 - Av 2018 1 1 17 0 0.3618242 0.000000 1.1583229E-03 2.4301133E-03 0.000000 0.000000 0.000000 - Av 2018 1 1 18 0 0.3606456 0.000000 1.1412358E-03 2.4299470E-03 0.000000 0.000000 0.000000 - Av 2018 1 1 19 0 0.3587267 0.000000 1.1244009E-03 2.4297610E-03 0.000000 0.000000 0.000000 - Av 2018 1 1 20 0 0.3570966 0.000000 1.1078141E-03 2.4295559E-03 0.000000 0.000000 0.000000 - Av 2018 1 1 21 0 0.3553969 0.000000 1.0914721E-03 2.4293319E-03 0.000000 0.000000 0.000000 - Av 2018 1 1 22 0 0.3537519 0.000000 1.0753712E-03 2.4290895E-03 0.000000 0.000000 0.000000 - Av 2018 1 1 23 0 0.3521179 0.000000 1.0595077E-03 2.4288287E-03 0.000000 0.000000 0.000000 - Av 2018 1 1 24 0 0.3505096 0.000000 1.0438784E-03 2.4285500E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 1 0 0.3456632 0.000000 1.0284794E-03 2.3802982E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 2 0 0.3419758 0.000000 1.0133078E-03 2.3800477E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 3 0 0.3411764 0.000000 9.9835987E-04 2.3797806E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 4 0 0.3394006 0.000000 9.8363252E-04 2.3794968E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 5 0 0.3379918 0.000000 9.6912234E-04 2.3791962E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 6 0 0.3364826 0.000000 9.5482630E-04 2.3788798E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 7 0 0.3350349 0.000000 9.4074110E-04 2.3785473E-03 0.000000 0.000000 0.000000 + Av 2018 1 1 17 0 0.3618242 0.000000 1.1583229E-03 2.4301133E-03 0.000000 0.000000 0.000000 + Av 2018 1 1 18 0 0.3606456 0.000000 1.1412358E-03 2.4299470E-03 0.000000 0.000000 0.000000 + Av 2018 1 1 19 0 0.3587267 0.000000 1.1244009E-03 2.4297610E-03 0.000000 0.000000 0.000000 + Av 2018 1 1 20 0 0.3570966 0.000000 1.1078141E-03 2.4295559E-03 0.000000 0.000000 0.000000 + Av 2018 1 1 21 0 0.3553969 0.000000 1.0914721E-03 2.4293319E-03 0.000000 0.000000 0.000000 + Av 2018 1 1 22 0 0.3537519 0.000000 1.0753712E-03 2.4290895E-03 0.000000 0.000000 0.000000 + Av 2018 1 1 23 0 0.3521179 0.000000 1.0595077E-03 2.4288287E-03 0.000000 0.000000 0.000000 + Av 2018 1 1 24 0 0.3505096 0.000000 1.0438784E-03 2.4285500E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 1 0 0.3456632 0.000000 1.0284794E-03 2.3802982E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 2 0 0.3419758 0.000000 1.0133078E-03 2.3800477E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 3 0 0.3411764 0.000000 9.9835987E-04 2.3797806E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 4 0 0.3394006 0.000000 9.8363252E-04 2.3794968E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 5 0 0.3379918 0.000000 9.6912234E-04 2.3791962E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 6 0 0.3364826 0.000000 9.5482630E-04 2.3788798E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 7 0 0.3350349 0.000000 9.4074110E-04 2.3785473E-03 0.000000 0.000000 0.000000 Av 2018 1 2 8 0 0.3269997 0.000000 9.2686369E-04 2.2819724E-03 0.000000 0.000000 4.3739582E-04 Av 2018 1 2 9 0 0.2985543 0.000000 9.1319100E-04 1.9497968E-03 0.000000 0.000000 1.9456330E-03 Av 2018 1 2 10 0 0.2644181 0.000000 8.9972001E-04 1.6657196E-03 0.000000 0.000000 3.2351722E-03 @@ -64,21 +64,21 @@ Av 2018 1 2 14 0 0.2531557 0.000000 8.4779406E-04 1.6640581E-03 0.000000 0.000000 3.2351722E-03 Av 2018 1 2 15 0 0.2711424 0.000000 8.3528779E-04 1.9473055E-03 0.000000 0.000000 1.9456330E-03 Av 2018 1 2 16 0 0.3052593 0.000000 8.2296599E-04 2.2786530E-03 0.000000 0.000000 4.3739582E-04 - Av 2018 1 2 17 0 0.3209632 0.000000 8.1082596E-04 2.3744013E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 18 0 0.3203880 0.000000 7.9886505E-04 2.3739093E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 19 0 0.3189069 0.000000 7.8708050E-04 2.3734041E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 20 0 0.3177629 0.000000 7.7546982E-04 2.3728861E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 21 0 0.3165233 0.000000 7.6403044E-04 2.3723550E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 22 0 0.3153382 0.000000 7.5275975E-04 2.3718113E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 23 0 0.3141553 0.000000 7.4165541E-04 2.3712551E-03 0.000000 0.000000 0.000000 - Av 2018 1 2 24 0 0.3129924 0.000000 7.3071476E-04 2.3706867E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 1 0 0.3086827 0.000000 7.1993558E-04 2.3235946E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 2 0 0.3054917 0.000000 7.0931541E-04 2.3230661E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 3 0 0.3050961 0.000000 6.9885195E-04 2.3225257E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 4 0 0.3037481 0.000000 6.8854273E-04 2.3219741E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 5 0 0.3027505 0.000000 6.7838567E-04 2.3214112E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 6 0 0.3016500 0.000000 6.6837837E-04 2.3208368E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 7 0 0.3006040 0.000000 6.5851881E-04 2.3202514E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 17 0 0.3209632 0.000000 8.1082596E-04 2.3744013E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 18 0 0.3203880 0.000000 7.9886505E-04 2.3739093E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 19 0 0.3189069 0.000000 7.8708050E-04 2.3734041E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 20 0 0.3177629 0.000000 7.7546982E-04 2.3728861E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 21 0 0.3165233 0.000000 7.6403044E-04 2.3723550E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 22 0 0.3153382 0.000000 7.5275975E-04 2.3718113E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 23 0 0.3141553 0.000000 7.4165541E-04 2.3712551E-03 0.000000 0.000000 0.000000 + Av 2018 1 2 24 0 0.3129924 0.000000 7.3071476E-04 2.3706867E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 1 0 0.3086827 0.000000 7.1993558E-04 2.3235946E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 2 0 0.3054917 0.000000 7.0931541E-04 2.3230661E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 3 0 0.3050961 0.000000 6.9885195E-04 2.3225257E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 4 0 0.3037481 0.000000 6.8854273E-04 2.3219741E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 5 0 0.3027505 0.000000 6.7838567E-04 2.3214112E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 6 0 0.3016500 0.000000 6.6837837E-04 2.3208368E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 7 0 0.3006040 0.000000 6.5851881E-04 2.3202514E-03 0.000000 0.000000 0.000000 Av 2018 1 3 8 0 0.2921284 0.000000 6.4880459E-04 2.2111682E-03 0.000000 0.000000 4.9312349E-04 Av 2018 1 3 9 0 0.2613306 0.000000 6.3923374E-04 1.8465028E-03 0.000000 0.000000 2.1479344E-03 Av 2018 1 3 10 0 0.2245641 0.000000 6.2980404E-04 1.5360708E-03 0.000000 0.000000 3.5561835E-03 @@ -88,21 +88,21 @@ Av 2018 1 3 14 0 0.2142617 0.000000 5.9345580E-04 1.5334985E-03 0.000000 0.000000 3.5561835E-03 Av 2018 1 3 15 0 0.2343696 0.000000 5.8470137E-04 1.8426389E-03 0.000000 0.000000 2.1479344E-03 Av 2018 1 3 16 0 0.2721907 0.000000 5.7607610E-04 2.2060017E-03 0.000000 0.000000 4.9312349E-04 - Av 2018 1 3 17 0 0.2901011 0.000000 5.6757807E-04 2.3137766E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 18 0 0.2900544 0.000000 5.5920542E-04 2.3130539E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 19 0 0.2888425 0.000000 5.5095623E-04 2.3123224E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 20 0 0.2880511 0.000000 5.4282875E-04 2.3115817E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 21 0 0.2871288 0.000000 5.3482124E-04 2.3108327E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 22 0 0.2862670 0.000000 5.2693178E-04 2.3100749E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 23 0 0.2853989 0.000000 5.1915873E-04 2.3093086E-03 0.000000 0.000000 0.000000 - Av 2018 1 3 24 0 0.2845476 0.000000 5.1150029E-04 2.3085340E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 1 0 0.2806496 0.000000 5.0395483E-04 2.2627849E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 2 0 0.2778293 0.000000 4.9652072E-04 2.2620568E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 3 0 0.2777077 0.000000 4.8919627E-04 2.2613208E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 4 0 0.2766615 0.000000 4.8197983E-04 2.2605767E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 5 0 0.2759503 0.000000 4.7486991E-04 2.2598251E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 6 0 0.2751358 0.000000 4.6786483E-04 2.2590656E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 7 0 0.2743704 0.000000 4.6096309E-04 2.2582987E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 17 0 0.2901011 0.000000 5.6757807E-04 2.3137766E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 18 0 0.2900544 0.000000 5.5920542E-04 2.3130539E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 19 0 0.2888425 0.000000 5.5095623E-04 2.3123224E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 20 0 0.2880511 0.000000 5.4282875E-04 2.3115817E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 21 0 0.2871288 0.000000 5.3482124E-04 2.3108327E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 22 0 0.2862670 0.000000 5.2693178E-04 2.3100749E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 23 0 0.2853989 0.000000 5.1915873E-04 2.3093086E-03 0.000000 0.000000 0.000000 + Av 2018 1 3 24 0 0.2845476 0.000000 5.1150029E-04 2.3085340E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 1 0 0.2806496 0.000000 5.0395483E-04 2.2627849E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 2 0 0.2778293 0.000000 4.9652072E-04 2.2620568E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 3 0 0.2777077 0.000000 4.8919627E-04 2.2613208E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 4 0 0.2766615 0.000000 4.8197983E-04 2.2605767E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 5 0 0.2759503 0.000000 4.7486991E-04 2.2598251E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 6 0 0.2751358 0.000000 4.6786483E-04 2.2590656E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 7 0 0.2743704 0.000000 4.6096309E-04 2.2582987E-03 0.000000 0.000000 0.000000 Av 2018 1 4 8 0 0.2661272 0.000000 4.5416315E-04 2.1483479E-03 0.000000 0.000000 4.9625518E-04 Av 2018 1 4 9 0 0.2361247 0.000000 4.4746351E-04 1.7914379E-03 0.000000 0.000000 2.1150133E-03 Av 2018 1 4 10 0 0.2005703 0.000000 4.4086273E-04 1.4891024E-03 0.000000 0.000000 3.4856438E-03 @@ -112,21 +112,21 @@ Av 2018 1 4 14 0 0.1914675 0.000000 4.1541902E-04 1.4856993E-03 0.000000 0.000000 3.4856438E-03 Av 2018 1 4 15 0 0.2112478 0.000000 4.0929095E-04 1.7863326E-03 0.000000 0.000000 2.1150133E-03 Av 2018 1 4 16 0 0.2494155 0.000000 4.0325327E-04 2.1415360E-03 0.000000 9.9999802E-03 4.9625518E-04 - Av 2018 1 4 17 0 0.2703497 0.000000 3.9730466E-04 2.2497787E-03 0.000000 2.9999940E-02 0.000000 - Av 2018 1 4 18 0 0.2685758 0.000000 3.9144381E-04 2.2488397E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 19 0 0.2649415 0.000000 3.8566938E-04 2.2478951E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 20 0 0.2652977 0.000000 3.7998016E-04 2.2469454E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 21 0 0.2642770 0.000000 3.7437485E-04 2.2459906E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 22 0 0.2637457 0.000000 3.6885223E-04 2.2450301E-03 0.000000 0.000000 0.000000 - Av 2018 1 4 23 0 0.2652602 0.000000 3.6341109E-04 2.2440648E-03 0.000000 1.9999960E-02 0.000000 - Av 2018 1 4 24 0 0.2638682 0.000000 3.5805019E-04 2.2430944E-03 0.000000 0.000000 0.000000 - Av 2018 1 5 1 0 0.2616372 0.000000 3.5276840E-04 2.1987760E-03 0.000000 2.9999940E-02 0.000000 - Av 2018 1 5 2 0 0.2742999 1.6192393E-04 3.5476207E-04 2.2107791E-03 0.000000 2.9999940E-02 0.000000 - Av 2018 1 5 3 0 0.2714513 2.0294829E-05 3.5759364E-04 2.2280579E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 5 4 0 0.2680774 8.1124490E-05 3.5682763E-04 2.2418411E-03 0.000000 1.9999960E-02 0.000000 - Av 2018 1 5 5 0 0.3625344 8.1287610E-05 3.5877695E-04 2.2602980E-03 1.2620229E-02 1.9999960E-02 0.000000 - Av 2018 1 5 6 0 0.3503632 0.000000 3.5708680E-04 2.2691365E-03 3.8989303E-03 0.000000 0.000000 - Av 2018 1 5 7 0 0.2705059 0.000000 3.5181921E-04 2.2681353E-03 1.3822505E-03 0.000000 0.000000 + Av 2018 1 4 17 0 0.2703497 0.000000 3.9730466E-04 2.2497787E-03 0.000000 2.9999940E-02 0.000000 + Av 2018 1 4 18 0 0.2685758 0.000000 3.9144381E-04 2.2488397E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 19 0 0.2649415 0.000000 3.8566938E-04 2.2478951E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 20 0 0.2652977 0.000000 3.7998016E-04 2.2469454E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 21 0 0.2642770 0.000000 3.7437485E-04 2.2459906E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 22 0 0.2637457 0.000000 3.6885223E-04 2.2450301E-03 0.000000 0.000000 0.000000 + Av 2018 1 4 23 0 0.2652602 0.000000 3.6341109E-04 2.2440648E-03 0.000000 1.9999960E-02 0.000000 + Av 2018 1 4 24 0 0.2638682 0.000000 3.5805019E-04 2.2430944E-03 0.000000 0.000000 0.000000 + Av 2018 1 5 1 0 0.2616372 0.000000 3.5276840E-04 2.1987760E-03 0.000000 2.9999940E-02 0.000000 + Av 2018 1 5 2 0 0.2742999 1.6192393E-04 3.5476207E-04 2.2107791E-03 0.000000 2.9999940E-02 0.000000 + Av 2018 1 5 3 0 0.2714513 2.0294829E-05 3.5759364E-04 2.2280579E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 5 4 0 0.2680774 8.1124490E-05 3.5682763E-04 2.2418411E-03 0.000000 1.9999960E-02 0.000000 + Av 2018 1 5 5 0 0.3625344 8.1287610E-05 3.5877695E-04 2.2602980E-03 1.2620229E-02 1.9999960E-02 0.000000 + Av 2018 1 5 6 0 0.3503632 0.000000 3.5708680E-04 2.2691365E-03 3.8989303E-03 0.000000 0.000000 + Av 2018 1 5 7 0 0.2705059 0.000000 3.5181921E-04 2.2681353E-03 1.3822505E-03 0.000000 0.000000 Av 2018 1 5 8 0 0.7216234 1.0122319E-04 4.0450250E-04 2.1650153E-03 6.4418711E-02 7.9999842E-02 5.8421458E-04 Av 2018 1 5 9 0 0.8579881 2.8689532E-04 4.7192292E-04 1.8018335E-03 4.3853831E-02 3.9999921E-02 2.4346784E-03 Av 2018 1 5 10 0 0.3697414 9.6791331E-10 4.8068378E-04 1.4762494E-03 8.1133200E-03 0.000000 3.9930348E-03 @@ -136,21 +136,21 @@ Av 2018 1 5 14 0 0.2138880 0.000000 4.6538617E-04 1.5039076E-03 1.0311512E-03 0.000000 3.9930348E-03 Av 2018 1 5 15 0 0.2256642 0.000000 4.5852101E-04 1.8457351E-03 4.8697469E-04 0.000000 2.4346784E-03 Av 2018 1 5 16 0 0.2665905 0.000000 4.5175711E-04 2.2518202E-03 2.6372896E-04 0.000000 5.8421458E-04 - Av 2018 1 5 17 0 0.2856997 0.000000 4.4509297E-04 2.3793241E-03 1.5759299E-04 0.000000 0.000000 - Av 2018 1 5 18 0 0.2868600 0.000000 4.3852717E-04 2.3782947E-03 1.0133593E-04 9.9999802E-03 0.000000 - Av 2018 1 5 19 0 0.2848283 0.000000 4.3205821E-04 2.3772595E-03 6.8938949E-05 0.000000 0.000000 - Av 2018 1 5 20 0 0.2830145 0.000000 4.2568470E-04 2.3762183E-03 4.9029954E-05 0.000000 0.000000 - Av 2018 1 5 21 0 0.3012888 1.4630097E-05 4.2006010E-04 2.3795057E-03 2.4487113E-03 9.9999802E-03 0.000000 - Av 2018 1 5 22 0 0.4079811 8.4822044E-05 4.1831352E-04 2.3927528E-03 1.5389800E-02 1.9999960E-02 0.000000 - Av 2018 1 5 23 0 0.7260745 4.1146232E-05 4.5019304E-04 2.4251393E-03 5.2534629E-02 5.9999879E-02 0.000000 - Av 2018 1 5 24 0 0.6336814 2.5103323E-05 4.7877984E-04 2.4538850E-03 1.7499704E-02 9.9999802E-03 0.000000 - Av 2018 1 6 1 0 0.3261445 0.000000 4.7283815E-04 2.4098936E-03 4.2170519E-03 0.000000 0.000000 - Av 2018 1 6 2 0 0.3164066 0.000000 4.6586301E-04 2.4088705E-03 1.4674879E-03 0.000000 0.000000 - Av 2018 1 6 3 0 0.2944473 0.000000 4.5899081E-04 2.4078414E-03 6.4574182E-04 0.000000 0.000000 - Av 2018 1 6 4 0 0.2933064 0.000000 4.5221997E-04 2.4068060E-03 3.3286875E-04 0.000000 0.000000 - Av 2018 1 6 5 0 0.2895651 0.000000 4.4554900E-04 2.4057645E-03 1.9188963E-04 0.000000 0.000000 - Av 2018 1 6 6 0 0.2883785 0.000000 4.3897648E-04 2.4047166E-03 1.2009546E-04 0.000000 0.000000 - Av 2018 1 6 7 0 0.2870016 0.000000 4.3250088E-04 2.4036630E-03 8.0005055E-05 0.000000 0.000000 + Av 2018 1 5 17 0 0.2856997 0.000000 4.4509297E-04 2.3793241E-03 1.5759299E-04 0.000000 0.000000 + Av 2018 1 5 18 0 0.2868600 0.000000 4.3852717E-04 2.3782947E-03 1.0133593E-04 9.9999802E-03 0.000000 + Av 2018 1 5 19 0 0.2848283 0.000000 4.3205821E-04 2.3772595E-03 6.8938949E-05 0.000000 0.000000 + Av 2018 1 5 20 0 0.2830145 0.000000 4.2568470E-04 2.3762183E-03 4.9029954E-05 0.000000 0.000000 + Av 2018 1 5 21 0 0.3012888 1.4630097E-05 4.2006010E-04 2.3795057E-03 2.4487113E-03 9.9999802E-03 0.000000 + Av 2018 1 5 22 0 0.4079811 8.4822044E-05 4.1831352E-04 2.3927528E-03 1.5389800E-02 1.9999960E-02 0.000000 + Av 2018 1 5 23 0 0.7260745 4.1146232E-05 4.5019304E-04 2.4251393E-03 5.2534629E-02 5.9999879E-02 0.000000 + Av 2018 1 5 24 0 0.6336814 2.5103323E-05 4.7877984E-04 2.4538850E-03 1.7499704E-02 9.9999802E-03 0.000000 + Av 2018 1 6 1 0 0.3261445 0.000000 4.7283815E-04 2.4098936E-03 4.2170519E-03 0.000000 0.000000 + Av 2018 1 6 2 0 0.3164066 0.000000 4.6586301E-04 2.4088705E-03 1.4674879E-03 0.000000 0.000000 + Av 2018 1 6 3 0 0.2944473 0.000000 4.5899081E-04 2.4078414E-03 6.4574182E-04 0.000000 0.000000 + Av 2018 1 6 4 0 0.2933064 0.000000 4.5221997E-04 2.4068060E-03 3.3286875E-04 0.000000 0.000000 + Av 2018 1 6 5 0 0.2895651 0.000000 4.4554900E-04 2.4057645E-03 1.9188963E-04 0.000000 0.000000 + Av 2018 1 6 6 0 0.2883785 0.000000 4.3897648E-04 2.4047166E-03 1.2009546E-04 0.000000 0.000000 + Av 2018 1 6 7 0 0.2870016 0.000000 4.3250088E-04 2.4036630E-03 8.0005055E-05 0.000000 0.000000 Av 2018 1 6 8 0 0.2777464 0.000000 4.2612079E-04 2.2816535E-03 5.5960158E-05 0.000000 5.4977124E-04 Av 2018 1 6 9 0 0.2459727 0.000000 4.1983486E-04 1.9089247E-03 4.0696301E-05 0.000000 2.2391505E-03 Av 2018 1 6 10 0 0.2102572 0.000000 4.1364162E-04 1.5966648E-03 1.9329824E-04 0.000000 3.6536439E-03 @@ -160,21 +160,21 @@ Av 2018 1 6 14 0 0.2031353 0.000000 3.9016848E-04 1.5973509E-03 2.3790896E-04 0.000000 3.6536439E-03 Av 2018 1 6 15 0 0.2221521 0.000000 3.8441291E-04 1.9074345E-03 1.4436220E-04 0.000000 2.2391505E-03 Av 2018 1 6 16 0 0.2603278 0.000000 3.7874220E-04 2.2779873E-03 9.3917282E-05 0.000000 5.4977124E-04 - Av 2018 1 6 17 0 0.2792812 0.000000 3.7315517E-04 2.3978211E-03 6.4476859E-05 0.000000 0.000000 - Av 2018 1 6 18 0 0.2797371 0.000000 3.6765053E-04 2.3967000E-03 4.6191650E-05 0.000000 0.000000 - Av 2018 1 6 19 0 0.2784780 0.000000 3.6222712E-04 2.3955735E-03 3.4251643E-05 0.000000 0.000000 - Av 2018 1 6 20 0 0.2789014 0.000000 3.5688368E-04 2.3944422E-03 1.7430617E-04 0.000000 0.000000 - Av 2018 1 6 21 0 0.2776466 0.000000 3.5161912E-04 2.3933060E-03 0.000000 0.000000 0.000000 - Av 2018 1 6 22 0 0.2760337 0.000000 3.4643218E-04 2.3921647E-03 0.000000 0.000000 0.000000 - Av 2018 1 6 23 0 0.2757395 0.000000 3.4132178E-04 2.3910184E-03 0.000000 0.000000 0.000000 - Av 2018 1 6 24 0 0.2749963 0.000000 3.3628673E-04 2.3898673E-03 0.000000 0.000000 0.000000 - Av 2018 1 7 1 0 0.2712280 0.000000 3.3132595E-04 2.3417480E-03 0.000000 0.000000 0.000000 - Av 2018 1 7 2 0 0.2685256 0.000000 3.2643840E-04 2.3406576E-03 0.000000 0.000000 0.000000 - Av 2018 1 7 3 0 0.2686575 0.000000 3.2162291E-04 2.3395626E-03 0.000000 0.000000 0.000000 - Av 2018 1 7 4 0 0.2678130 0.000000 3.1687849E-04 2.3384630E-03 0.000000 0.000000 0.000000 - Av 2018 1 7 5 0 0.2673169 0.000000 3.1220401E-04 2.3373587E-03 0.000000 0.000000 0.000000 - Av 2018 1 7 6 0 0.2667086 0.000000 3.0759853E-04 2.3362502E-03 0.000000 0.000000 0.000000 - Av 2018 1 7 7 0 0.2661479 0.000000 3.0306095E-04 2.3351368E-03 0.000000 0.000000 0.000000 + Av 2018 1 6 17 0 0.2792812 0.000000 3.7315517E-04 2.3978211E-03 6.4476859E-05 0.000000 0.000000 + Av 2018 1 6 18 0 0.2797371 0.000000 3.6765053E-04 2.3967000E-03 4.6191650E-05 0.000000 0.000000 + Av 2018 1 6 19 0 0.2784780 0.000000 3.6222712E-04 2.3955735E-03 3.4251643E-05 0.000000 0.000000 + Av 2018 1 6 20 0 0.2789014 0.000000 3.5688368E-04 2.3944422E-03 1.7430617E-04 0.000000 0.000000 + Av 2018 1 6 21 0 0.2776466 0.000000 3.5161912E-04 2.3933060E-03 0.000000 0.000000 0.000000 + Av 2018 1 6 22 0 0.2760337 0.000000 3.4643218E-04 2.3921647E-03 0.000000 0.000000 0.000000 + Av 2018 1 6 23 0 0.2757395 0.000000 3.4132178E-04 2.3910184E-03 0.000000 0.000000 0.000000 + Av 2018 1 6 24 0 0.2749963 0.000000 3.3628673E-04 2.3898673E-03 0.000000 0.000000 0.000000 + Av 2018 1 7 1 0 0.2712280 0.000000 3.3132595E-04 2.3417480E-03 0.000000 0.000000 0.000000 + Av 2018 1 7 2 0 0.2685256 0.000000 3.2643840E-04 2.3406576E-03 0.000000 0.000000 0.000000 + Av 2018 1 7 3 0 0.2686575 0.000000 3.2162291E-04 2.3395626E-03 0.000000 0.000000 0.000000 + Av 2018 1 7 4 0 0.2678130 0.000000 3.1687849E-04 2.3384630E-03 0.000000 0.000000 0.000000 + Av 2018 1 7 5 0 0.2673169 0.000000 3.1220401E-04 2.3373587E-03 0.000000 0.000000 0.000000 + Av 2018 1 7 6 0 0.2667086 0.000000 3.0759853E-04 2.3362502E-03 0.000000 0.000000 0.000000 + Av 2018 1 7 7 0 0.2661479 0.000000 3.0306095E-04 2.3351368E-03 0.000000 0.000000 0.000000 Av 2018 1 7 8 0 0.2574595 0.000000 2.9859031E-04 2.2153938E-03 0.000000 0.000000 5.3920748E-04 Av 2018 1 7 9 0 0.2274263 0.000000 2.9418565E-04 1.8609082E-03 0.000000 0.000000 2.1454052E-03 Av 2018 1 7 10 0 0.1951840 3.2967712E-06 2.8999415E-04 1.5678592E-03 0.000000 1.9999960E-02 3.4819990E-03 @@ -184,21 +184,21 @@ Av 2018 1 7 14 0 0.1935038 0.000000 2.7529069E-04 1.5808425E-03 8.1171159E-04 0.000000 3.4819990E-03 Av 2018 1 7 15 0 0.2133504 6.9905207E-07 2.7126115E-04 1.8747542E-03 4.0124907E-04 9.9999802E-03 2.1454052E-03 Av 2018 1 7 16 0 0.3925340 1.6326430E-04 2.7463565E-04 2.2414962E-03 1.9471329E-02 2.9999940E-02 5.3920748E-04 - Av 2018 1 7 17 0 0.4474072 1.8777841E-05 2.7873821E-04 2.3779178E-03 1.2234838E-02 9.9999802E-03 0.000000 - Av 2018 1 7 18 0 0.3660031 2.0451218E-05 2.7638883E-04 2.3872261E-03 1.0514800E-02 9.9999802E-03 0.000000 - Av 2018 1 7 19 0 0.3286087 0.000000 2.7322824E-04 2.3914555E-03 2.9081728E-03 0.000000 0.000000 - Av 2018 1 7 20 0 0.3221015 2.0407917E-05 2.7011725E-04 2.3955351E-03 7.6449295E-03 9.9999802E-03 0.000000 - Av 2018 1 7 21 0 0.3734655 2.0398453E-05 2.6796703E-04 2.4050644E-03 9.6528502E-03 9.9999802E-03 0.000000 - Av 2018 1 7 22 0 0.3205903 0.000000 2.6492897E-04 2.4092845E-03 2.7727550E-03 0.000000 0.000000 - Av 2018 1 7 23 0 0.2776372 0.000000 2.6102082E-04 2.4080311E-03 1.0634791E-03 0.000000 0.000000 - Av 2018 1 7 24 0 0.2764273 0.000000 2.5717038E-04 2.4067739E-03 4.9922534E-04 0.000000 0.000000 - Av 2018 1 8 1 0 0.2675420 0.000000 2.5337673E-04 2.3581355E-03 2.6921902E-04 0.000000 0.000000 - Av 2018 1 8 2 0 0.2644317 0.000000 2.4963901E-04 2.3569427E-03 1.6037427E-04 0.000000 0.000000 - Av 2018 1 8 3 0 0.3062667 1.8943201E-05 2.4681067E-04 2.3608804E-03 5.9534418E-03 9.9999802E-03 0.000000 - Av 2018 1 8 4 0 0.3064687 0.000000 2.4401983E-04 2.3648827E-03 2.3078285E-03 0.000000 0.000000 - Av 2018 1 8 5 0 0.2695767 0.000000 2.4042015E-04 2.3636676E-03 9.2212833E-04 0.000000 0.000000 - Av 2018 1 8 6 0 0.2690964 0.000000 2.3687357E-04 2.3624492E-03 4.4497458E-04 0.000000 0.000000 - Av 2018 1 8 7 0 0.2640163 0.000000 2.3337929E-04 2.3612271E-03 2.4468181E-04 0.000000 0.000000 + Av 2018 1 7 17 0 0.4474072 1.8777841E-05 2.7873821E-04 2.3779178E-03 1.2234838E-02 9.9999802E-03 0.000000 + Av 2018 1 7 18 0 0.3660031 2.0451218E-05 2.7638883E-04 2.3872261E-03 1.0514800E-02 9.9999802E-03 0.000000 + Av 2018 1 7 19 0 0.3286087 0.000000 2.7322824E-04 2.3914555E-03 2.9081728E-03 0.000000 0.000000 + Av 2018 1 7 20 0 0.3221015 2.0407917E-05 2.7011725E-04 2.3955351E-03 7.6449295E-03 9.9999802E-03 0.000000 + Av 2018 1 7 21 0 0.3734655 2.0398453E-05 2.6796703E-04 2.4050644E-03 9.6528502E-03 9.9999802E-03 0.000000 + Av 2018 1 7 22 0 0.3205903 0.000000 2.6492897E-04 2.4092845E-03 2.7727550E-03 0.000000 0.000000 + Av 2018 1 7 23 0 0.2776372 0.000000 2.6102082E-04 2.4080311E-03 1.0634791E-03 0.000000 0.000000 + Av 2018 1 7 24 0 0.2764273 0.000000 2.5717038E-04 2.4067739E-03 4.9922534E-04 0.000000 0.000000 + Av 2018 1 8 1 0 0.2675420 0.000000 2.5337673E-04 2.3581355E-03 2.6921902E-04 0.000000 0.000000 + Av 2018 1 8 2 0 0.2644317 0.000000 2.4963901E-04 2.3569427E-03 1.6037427E-04 0.000000 0.000000 + Av 2018 1 8 3 0 0.3062667 1.8943201E-05 2.4681067E-04 2.3608804E-03 5.9534418E-03 9.9999802E-03 0.000000 + Av 2018 1 8 4 0 0.3064687 0.000000 2.4401983E-04 2.3648827E-03 2.3078285E-03 0.000000 0.000000 + Av 2018 1 8 5 0 0.2695767 0.000000 2.4042015E-04 2.3636676E-03 9.2212833E-04 0.000000 0.000000 + Av 2018 1 8 6 0 0.2690964 0.000000 2.3687357E-04 2.3624492E-03 4.4497458E-04 0.000000 0.000000 + Av 2018 1 8 7 0 0.2640163 0.000000 2.3337929E-04 2.3612271E-03 2.4468181E-04 0.000000 0.000000 Av 2018 1 8 8 0 0.2547965 0.000000 2.2993659E-04 2.2383027E-03 1.4785757E-04 0.000000 5.5317639E-04 Av 2018 1 8 9 0 0.2240013 0.000000 2.2654465E-04 1.8858844E-03 9.5887910E-05 0.000000 2.1494906E-03 Av 2018 1 8 10 0 0.1896629 0.000000 2.2320278E-04 1.5943123E-03 6.5667227E-05 0.000000 3.4692169E-03 @@ -208,21 +208,21 @@ Av 2018 1 8 14 0 0.1819253 0.000000 2.1032097E-04 1.5893490E-03 0.000000 0.000000 3.4692169E-03 Av 2018 1 8 15 0 0.2002124 0.000000 2.0721841E-04 1.8784401E-03 0.000000 0.000000 2.1494906E-03 Av 2018 1 8 16 0 0.2371179 0.000000 2.0416161E-04 2.2283772E-03 0.000000 0.000000 5.5317639E-04 - Av 2018 1 8 17 0 0.2583496 1.0069431E-06 2.0119535E-04 2.3500528E-03 0.000000 1.9999960E-02 0.000000 - Av 2018 1 8 18 0 0.2588902 0.000000 1.9827260E-04 2.3500554E-03 0.000000 0.000000 0.000000 - Av 2018 1 8 19 0 0.2559855 0.000000 1.9534776E-04 2.3487911E-03 0.000000 0.000000 0.000000 - Av 2018 1 8 20 0 0.2564290 0.000000 1.9246608E-04 2.3475236E-03 0.000000 0.000000 0.000000 - Av 2018 1 8 21 0 0.2557136 0.000000 1.8962690E-04 2.3462533E-03 0.000000 0.000000 0.000000 - Av 2018 1 8 22 0 0.2835785 1.9681416E-05 1.8771786E-04 2.3502219E-03 3.7282887E-03 9.9999802E-03 0.000000 - Av 2018 1 8 23 0 0.5004605 9.2463251E-06 2.0004598E-04 2.3720991E-03 3.2185584E-02 3.9999921E-02 0.000000 - Av 2018 1 8 24 0 0.9311697 1.5317685E-04 2.6933648E-04 2.4162605E-03 7.3467493E-02 7.9999842E-02 0.000000 - Av 2018 1 9 1 0 1.104488 5.0816347E-04 3.7086767E-04 2.4199851E-03 7.0868731E-02 6.9999859E-02 0.000000 - Av 2018 1 9 2 0 1.245900 4.2550804E-04 5.1305373E-04 2.4740133E-03 9.6294224E-02 9.9999800E-02 0.000000 - Av 2018 1 9 3 0 1.266568 8.6205272E-04 6.6047075E-04 2.5288796E-03 7.3350690E-02 6.9999859E-02 0.000000 - Av 2018 1 9 4 0 0.7734203 1.0154564E-04 7.1035611E-04 2.5656803E-03 2.7681751E-02 1.9999960E-02 0.000000 - Av 2018 1 9 5 0 0.8275715 8.8750443E-05 7.5921882E-04 2.6020778E-03 6.3251041E-02 6.9999859E-02 0.000000 - Av 2018 1 9 6 0 0.9480546 2.8434070E-04 8.2206522E-04 2.6475280E-03 4.3701351E-02 3.9999921E-02 0.000000 - Av 2018 1 9 7 0 0.5242016 5.3844240E-09 8.2941464E-04 2.6663304E-03 8.0935070E-03 0.000000 0.000000 + Av 2018 1 8 17 0 0.2583496 1.0069431E-06 2.0119535E-04 2.3500528E-03 0.000000 1.9999960E-02 0.000000 + Av 2018 1 8 18 0 0.2588902 0.000000 1.9827260E-04 2.3500554E-03 0.000000 0.000000 0.000000 + Av 2018 1 8 19 0 0.2559855 0.000000 1.9534776E-04 2.3487911E-03 0.000000 0.000000 0.000000 + Av 2018 1 8 20 0 0.2564290 0.000000 1.9246608E-04 2.3475236E-03 0.000000 0.000000 0.000000 + Av 2018 1 8 21 0 0.2557136 0.000000 1.8962690E-04 2.3462533E-03 0.000000 0.000000 0.000000 + Av 2018 1 8 22 0 0.2835785 1.9681416E-05 1.8771786E-04 2.3502219E-03 3.7282887E-03 9.9999802E-03 0.000000 + Av 2018 1 8 23 0 0.5004605 9.2463251E-06 2.0004598E-04 2.3720991E-03 3.2185584E-02 3.9999921E-02 0.000000 + Av 2018 1 8 24 0 0.9311697 1.5317685E-04 2.6933648E-04 2.4162605E-03 7.3467493E-02 7.9999842E-02 0.000000 + Av 2018 1 9 1 0 1.104488 5.0816347E-04 3.7086767E-04 2.4199851E-03 7.0868731E-02 6.9999859E-02 0.000000 + Av 2018 1 9 2 0 1.245900 4.2550804E-04 5.1305373E-04 2.4740133E-03 9.6294224E-02 9.9999800E-02 0.000000 + Av 2018 1 9 3 0 1.266568 8.6205272E-04 6.6047075E-04 2.5288796E-03 7.3350690E-02 6.9999859E-02 0.000000 + Av 2018 1 9 4 0 0.7734203 1.0154564E-04 7.1035611E-04 2.5656803E-03 2.7681751E-02 1.9999960E-02 0.000000 + Av 2018 1 9 5 0 0.8275715 8.8750443E-05 7.5921882E-04 2.6020778E-03 6.3251041E-02 6.9999859E-02 0.000000 + Av 2018 1 9 6 0 0.9480546 2.8434070E-04 8.2206522E-04 2.6475280E-03 4.3701351E-02 3.9999921E-02 0.000000 + Av 2018 1 9 7 0 0.5242016 5.3844240E-09 8.2941464E-04 2.6663304E-03 8.0935070E-03 0.000000 0.000000 Av 2018 1 9 8 0 0.5718786 1.4365188E-05 8.3587295E-04 2.5531610E-03 3.3185832E-02 3.9999921E-02 5.9668976E-04 Av 2018 1 9 9 0 0.5708481 2.5476033E-05 8.4330770E-04 2.2104299E-03 1.4327581E-02 9.9999802E-03 2.2638519E-03 Av 2018 1 9 10 0 0.3613071 1.7490091E-05 8.3282602E-04 1.9188847E-03 9.2425365E-03 9.9999802E-03 3.6326693E-03 @@ -232,21 +232,21 @@ Av 2018 1 9 14 0 0.2793860 0.000000 7.8668451E-04 1.9284228E-03 4.2843653E-04 0.000000 3.6326693E-03 Av 2018 1 9 15 0 0.2952628 0.000000 7.7507965E-04 2.2285683E-03 2.3708088E-04 0.000000 2.2638519E-03 Av 2018 1 9 16 0 0.3318326 0.000000 7.6364604E-04 2.5943383E-03 1.4393360E-04 0.000000 5.9668976E-04 - Av 2018 1 9 17 0 0.3505576 0.000000 7.5238099E-04 2.7245930E-03 9.3675117E-05 0.000000 0.000000 - Av 2018 1 9 18 0 0.3508385 0.000000 7.4128219E-04 2.7235649E-03 6.4330314E-05 0.000000 0.000000 - Av 2018 1 9 19 0 0.3487801 0.000000 7.3034712E-04 2.7225262E-03 4.6097975E-05 0.000000 0.000000 - Av 2018 1 9 20 0 0.3476742 0.000000 7.1957341E-04 2.7214766E-03 3.4189030E-05 0.000000 0.000000 - Av 2018 1 9 21 0 0.3473319 0.000000 7.0895854E-04 2.7204165E-03 1.7411496E-04 0.000000 0.000000 - Av 2018 1 9 22 0 0.3456421 0.000000 6.9850025E-04 2.7193457E-03 0.000000 0.000000 0.000000 - Av 2018 1 9 23 0 0.3434898 0.000000 6.8819633E-04 2.7182647E-03 0.000000 0.000000 0.000000 - Av 2018 1 9 24 0 0.3427007 0.000000 6.7804434E-04 2.7171739E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 1 0 0.3377104 0.000000 6.6804216E-04 2.6609332E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 2 0 0.3342054 0.000000 6.5818749E-04 2.6599073E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 3 0 0.3339548 0.000000 6.4847816E-04 2.6588717E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 4 0 0.3338305 0.000000 6.3891208E-04 2.6578265E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 10 5 0 0.3324407 0.000000 6.2948710E-04 2.6567718E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 6 0 0.3302691 0.000000 6.2020117E-04 2.6557075E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 7 0 0.3296264 0.000000 6.1105221E-04 2.6546344E-03 0.000000 0.000000 0.000000 + Av 2018 1 9 17 0 0.3505576 0.000000 7.5238099E-04 2.7245930E-03 9.3675117E-05 0.000000 0.000000 + Av 2018 1 9 18 0 0.3508385 0.000000 7.4128219E-04 2.7235649E-03 6.4330314E-05 0.000000 0.000000 + Av 2018 1 9 19 0 0.3487801 0.000000 7.3034712E-04 2.7225262E-03 4.6097975E-05 0.000000 0.000000 + Av 2018 1 9 20 0 0.3476742 0.000000 7.1957341E-04 2.7214766E-03 3.4189030E-05 0.000000 0.000000 + Av 2018 1 9 21 0 0.3473319 0.000000 7.0895854E-04 2.7204165E-03 1.7411496E-04 0.000000 0.000000 + Av 2018 1 9 22 0 0.3456421 0.000000 6.9850025E-04 2.7193457E-03 0.000000 0.000000 0.000000 + Av 2018 1 9 23 0 0.3434898 0.000000 6.8819633E-04 2.7182647E-03 0.000000 0.000000 0.000000 + Av 2018 1 9 24 0 0.3427007 0.000000 6.7804434E-04 2.7171739E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 1 0 0.3377104 0.000000 6.6804216E-04 2.6609332E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 2 0 0.3342054 0.000000 6.5818749E-04 2.6599073E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 3 0 0.3339548 0.000000 6.4847816E-04 2.6588717E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 4 0 0.3338305 0.000000 6.3891208E-04 2.6578265E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 10 5 0 0.3324407 0.000000 6.2948710E-04 2.6567718E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 6 0 0.3302691 0.000000 6.2020117E-04 2.6557075E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 7 0 0.3296264 0.000000 6.1105221E-04 2.6546344E-03 0.000000 0.000000 0.000000 Av 2018 1 10 8 0 0.3287012 9.1379961E-06 6.0245662E-04 2.5364787E-03 9.3791221E-04 9.9999802E-03 5.4834702E-04 Av 2018 1 10 9 0 0.3020168 0.000000 5.9398572E-04 2.2128031E-03 6.5103685E-04 0.000000 2.0310974E-03 Av 2018 1 10 10 0 0.2637452 0.000000 5.8522349E-04 1.9458078E-03 3.3510628E-04 0.000000 3.2396743E-03 @@ -256,21 +256,21 @@ Av 2018 1 10 14 0 0.2517400 0.000000 5.5144826E-04 1.9412888E-03 5.6170549E-05 0.000000 3.2396743E-03 Av 2018 1 10 15 0 0.2687274 0.000000 5.4331351E-04 2.2060249E-03 4.0833362E-05 0.000000 2.0310974E-03 Av 2018 1 10 16 0 0.3030169 0.000000 5.3529878E-04 2.5310712E-03 1.9368852E-04 0.000000 5.4834702E-04 - Av 2018 1 10 17 0 0.3213711 0.000000 5.2740227E-04 2.6505408E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 10 18 0 0.3222531 2.6719285E-06 5.1974470E-04 2.6513315E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 10 19 0 0.3198092 0.000000 5.1219948E-04 2.6521627E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 20 0 0.3182055 0.000000 5.0464371E-04 2.6509673E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 21 0 0.3175810 0.000000 4.9719942E-04 2.6497648E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 22 0 0.3166301 0.000000 4.8986496E-04 2.6485545E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 23 0 0.3158064 0.000000 4.8263869E-04 2.6473368E-03 0.000000 0.000000 0.000000 - Av 2018 1 10 24 0 0.3149522 0.000000 4.7551902E-04 2.6461119E-03 0.000000 0.000000 0.000000 - Av 2018 1 11 1 0 0.3104964 0.000000 4.6850438E-04 2.5915198E-03 0.000000 0.000000 0.000000 - Av 2018 1 11 2 0 0.3073117 0.000000 4.6159321E-04 2.5903636E-03 0.000000 0.000000 0.000000 - Av 2018 1 11 3 0 0.5049261 1.2109655E-05 4.7173069E-04 2.6080881E-03 2.7900640E-02 3.9999921E-02 0.000000 - Av 2018 1 11 4 0 0.9707266 2.0906121E-04 5.5198721E-04 2.6547604E-03 7.2912388E-02 7.9999842E-02 0.000000 - Av 2018 1 11 5 0 0.8327173 1.1327815E-04 6.1905384E-04 2.6944124E-03 2.8075963E-02 1.9999960E-02 0.000000 - Av 2018 1 11 6 0 0.6307669 1.3770124E-05 6.3345738E-04 2.7243956E-03 3.7861962E-02 3.9999921E-02 0.000000 - Av 2018 1 11 7 0 0.6099029 2.7194745E-05 6.4363016E-04 2.7490759E-03 1.5153815E-02 9.9999802E-03 0.000000 + Av 2018 1 10 17 0 0.3213711 0.000000 5.2740227E-04 2.6505408E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 10 18 0 0.3222531 2.6719285E-06 5.1974470E-04 2.6513315E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 10 19 0 0.3198092 0.000000 5.1219948E-04 2.6521627E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 20 0 0.3182055 0.000000 5.0464371E-04 2.6509673E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 21 0 0.3175810 0.000000 4.9719942E-04 2.6497648E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 22 0 0.3166301 0.000000 4.8986496E-04 2.6485545E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 23 0 0.3158064 0.000000 4.8263869E-04 2.6473368E-03 0.000000 0.000000 0.000000 + Av 2018 1 10 24 0 0.3149522 0.000000 4.7551902E-04 2.6461119E-03 0.000000 0.000000 0.000000 + Av 2018 1 11 1 0 0.3104964 0.000000 4.6850438E-04 2.5915198E-03 0.000000 0.000000 0.000000 + Av 2018 1 11 2 0 0.3073117 0.000000 4.6159321E-04 2.5903636E-03 0.000000 0.000000 0.000000 + Av 2018 1 11 3 0 0.5049261 1.2109655E-05 4.7173069E-04 2.6080881E-03 2.7900640E-02 3.9999921E-02 0.000000 + Av 2018 1 11 4 0 0.9707266 2.0906121E-04 5.5198721E-04 2.6547604E-03 7.2912388E-02 7.9999842E-02 0.000000 + Av 2018 1 11 5 0 0.8327173 1.1327815E-04 6.1905384E-04 2.6944124E-03 2.8075963E-02 1.9999960E-02 0.000000 + Av 2018 1 11 6 0 0.6307669 1.3770124E-05 6.3345738E-04 2.7243956E-03 3.7861962E-02 3.9999921E-02 0.000000 + Av 2018 1 11 7 0 0.6099029 2.7194745E-05 6.4363016E-04 2.7490759E-03 1.5153815E-02 9.9999802E-03 0.000000 Av 2018 1 11 8 0 0.8428523 1.4673601E-04 7.0959039E-04 2.6341444E-03 6.9162287E-02 7.9999842E-02 6.7703659E-04 Av 2018 1 11 9 0 0.8303623 1.1550896E-04 7.7829190E-04 2.2847764E-03 2.7305957E-02 1.9999960E-02 2.4482016E-03 Av 2018 1 11 10 0 0.4444183 8.6333544E-05 7.7609561E-04 1.9905274E-03 1.9343739E-02 1.9999960E-02 3.8808482E-03 @@ -280,21 +280,21 @@ Av 2018 1 11 14 0 0.4482535 1.5764899E-04 9.0115593E-04 2.0997343E-03 1.8297855E-02 2.9999940E-02 3.8808482E-03 Av 2018 1 11 15 0 1.345631 1.1791049E-03 1.1109198E-03 2.4581891E-03 0.1198663 0.1399997 2.4482016E-03 Av 2018 1 11 16 0 1.139884 4.5030036E-05 1.3113499E-03 2.8860169E-03 2.3143375E-02 9.9999802E-03 6.7703659E-04 - Av 2018 1 11 17 0 0.3816950 0.000000 1.2940844E-03 3.0417894E-03 5.1567010E-03 0.000000 0.000000 - Av 2018 1 11 18 0 0.5017881 0.000000 1.2749946E-03 3.0411468E-03 1.7095139E-03 0.000000 0.000000 - Av 2018 1 11 19 0 0.4272810 0.000000 1.2561864E-03 3.0404807E-03 7.2868983E-04 0.000000 0.000000 - Av 2018 1 11 20 0 0.4414404 0.000000 1.2376558E-03 3.0397917E-03 3.6747899E-04 0.000000 0.000000 - Av 2018 1 11 21 0 0.5780551 6.8711884E-06 1.2316398E-03 3.0550633E-03 2.0970562E-02 2.9999940E-02 0.000000 - Av 2018 1 11 22 0 0.6218432 3.2025913E-05 1.2271402E-03 3.0770840E-03 1.2945795E-02 9.9999802E-03 0.000000 - Av 2018 1 11 23 0 0.4829141 0.000000 1.2105186E-03 3.0827653E-03 3.3873832E-03 0.000000 0.000000 - Av 2018 1 11 24 0 0.4945701 3.0262738E-05 1.1940683E-03 3.0882158E-03 7.8461915E-03 9.9999802E-03 0.000000 - Av 2018 1 12 1 0 0.5314367 2.8271988E-05 1.1791685E-03 3.0349824E-03 9.6864067E-03 9.9999802E-03 0.000000 - Av 2018 1 12 2 0 0.5282405 3.0113310E-05 1.1644830E-03 3.0465941E-03 9.9593038E-03 9.9999802E-03 0.000000 - Av 2018 1 12 3 0 0.5910248 1.2016415E-04 1.1542906E-03 3.0639449E-03 1.7574299E-02 1.9999960E-02 0.000000 - Av 2018 1 12 4 0 0.6453133 1.2014168E-04 1.1484211E-03 3.0869674E-03 1.9738378E-02 1.9999960E-02 0.000000 - Av 2018 1 12 5 0 0.8779826 7.4028227E-05 1.1874152E-03 3.1254964E-03 5.3053916E-02 5.9999879E-02 0.000000 - Av 2018 1 12 6 0 0.8499308 1.3532670E-04 1.2263318E-03 3.1651058E-03 2.5646107E-02 1.9999960E-02 0.000000 - Av 2018 1 12 7 0 0.6449540 1.2265875E-04 1.2202496E-03 3.1890017E-03 2.1035453E-02 1.9999960E-02 0.000000 + Av 2018 1 11 17 0 0.3816950 0.000000 1.2940844E-03 3.0417894E-03 5.1567010E-03 0.000000 0.000000 + Av 2018 1 11 18 0 0.5017881 0.000000 1.2749946E-03 3.0411468E-03 1.7095139E-03 0.000000 0.000000 + Av 2018 1 11 19 0 0.4272810 0.000000 1.2561864E-03 3.0404807E-03 7.2868983E-04 0.000000 0.000000 + Av 2018 1 11 20 0 0.4414404 0.000000 1.2376558E-03 3.0397917E-03 3.6747899E-04 0.000000 0.000000 + Av 2018 1 11 21 0 0.5780551 6.8711884E-06 1.2316398E-03 3.0550633E-03 2.0970562E-02 2.9999940E-02 0.000000 + Av 2018 1 11 22 0 0.6218432 3.2025913E-05 1.2271402E-03 3.0770840E-03 1.2945795E-02 9.9999802E-03 0.000000 + Av 2018 1 11 23 0 0.4829141 0.000000 1.2105186E-03 3.0827653E-03 3.3873832E-03 0.000000 0.000000 + Av 2018 1 11 24 0 0.4945701 3.0262738E-05 1.1940683E-03 3.0882158E-03 7.8461915E-03 9.9999802E-03 0.000000 + Av 2018 1 12 1 0 0.5314367 2.8271988E-05 1.1791685E-03 3.0349824E-03 9.6864067E-03 9.9999802E-03 0.000000 + Av 2018 1 12 2 0 0.5282405 3.0113310E-05 1.1644830E-03 3.0465941E-03 9.9593038E-03 9.9999802E-03 0.000000 + Av 2018 1 12 3 0 0.5910248 1.2016415E-04 1.1542906E-03 3.0639449E-03 1.7574299E-02 1.9999960E-02 0.000000 + Av 2018 1 12 4 0 0.6453133 1.2014168E-04 1.1484211E-03 3.0869674E-03 1.9738378E-02 1.9999960E-02 0.000000 + Av 2018 1 12 5 0 0.8779826 7.4028227E-05 1.1874152E-03 3.1254964E-03 5.3053916E-02 5.9999879E-02 0.000000 + Av 2018 1 12 6 0 0.8499308 1.3532670E-04 1.2263318E-03 3.1651058E-03 2.5646107E-02 1.9999960E-02 0.000000 + Av 2018 1 12 7 0 0.6449540 1.2265875E-04 1.2202496E-03 3.1890017E-03 2.1035453E-02 1.9999960E-02 0.000000 Av 2018 1 12 8 0 0.6682868 1.2262273E-04 1.2136744E-03 3.0454660E-03 2.0197554E-02 1.9999960E-02 7.5880537E-04 Av 2018 1 12 9 0 0.4979912 0.000000 1.2014703E-03 2.6344298E-03 4.6765227E-03 0.000000 2.6788071E-03 Av 2018 1 12 10 0 0.3653578 0.000000 1.1837466E-03 2.2945437E-03 1.5875300E-03 0.000000 4.2194063E-03 @@ -304,21 +304,21 @@ Av 2018 1 12 14 0 0.3443866 0.000000 1.1154285E-03 2.2905157E-03 1.2461010E-04 0.000000 4.2194063E-03 Av 2018 1 12 15 0 0.3654594 0.000000 1.0989743E-03 2.6283902E-03 8.2625644E-05 0.000000 2.6788071E-03 Av 2018 1 12 16 0 0.4074717 0.000000 1.0827626E-03 3.0497133E-03 5.7580244E-05 0.000000 7.5880537E-04 - Av 2018 1 12 17 0 0.4306308 0.000000 1.0667902E-03 3.2155542E-03 4.1749980E-05 0.000000 0.000000 - Av 2018 1 12 18 0 0.4326597 0.000000 1.0510533E-03 3.2144389E-03 1.9628512E-04 0.000000 0.000000 - Av 2018 1 12 19 0 0.4293951 0.000000 1.0355486E-03 3.2133050E-03 0.000000 0.000000 0.000000 - Av 2018 1 12 20 0 0.4269499 0.000000 1.0202726E-03 3.2121530E-03 0.000000 0.000000 0.000000 - Av 2018 1 12 21 0 0.4255818 0.000000 1.0052220E-03 3.2109828E-03 0.000000 0.000000 0.000000 - Av 2018 1 12 22 0 0.4238672 0.000000 9.9039334E-04 3.2097949E-03 0.000000 0.000000 0.000000 - Av 2018 1 12 23 0 0.4223006 0.000000 9.7578357E-04 3.2085897E-03 0.000000 0.000000 0.000000 - Av 2018 1 12 24 0 0.4207097 0.000000 9.6138928E-04 3.2073671E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 1 0 0.4145612 0.000000 9.4720733E-04 3.1385303E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 2 0 0.4100312 0.000000 9.3323452E-04 3.1373855E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 3 0 0.4095649 0.000000 9.1946783E-04 3.1362243E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 4 0 0.4077113 0.000000 9.0590422E-04 3.1350474E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 5 0 0.4063652 0.000000 8.9254073E-04 3.1338546E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 6 0 0.4048675 0.000000 8.7937433E-04 3.1326462E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 7 0 0.4034471 0.000000 8.6640217E-04 3.1314229E-03 0.000000 0.000000 0.000000 + Av 2018 1 12 17 0 0.4306308 0.000000 1.0667902E-03 3.2155542E-03 4.1749980E-05 0.000000 0.000000 + Av 2018 1 12 18 0 0.4326597 0.000000 1.0510533E-03 3.2144389E-03 1.9628512E-04 0.000000 0.000000 + Av 2018 1 12 19 0 0.4293951 0.000000 1.0355486E-03 3.2133050E-03 0.000000 0.000000 0.000000 + Av 2018 1 12 20 0 0.4269499 0.000000 1.0202726E-03 3.2121530E-03 0.000000 0.000000 0.000000 + Av 2018 1 12 21 0 0.4255818 0.000000 1.0052220E-03 3.2109828E-03 0.000000 0.000000 0.000000 + Av 2018 1 12 22 0 0.4238672 0.000000 9.9039334E-04 3.2097949E-03 0.000000 0.000000 0.000000 + Av 2018 1 12 23 0 0.4223006 0.000000 9.7578357E-04 3.2085897E-03 0.000000 0.000000 0.000000 + Av 2018 1 12 24 0 0.4207097 0.000000 9.6138928E-04 3.2073671E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 1 0 0.4145612 0.000000 9.4720733E-04 3.1385303E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 2 0 0.4100312 0.000000 9.3323452E-04 3.1373855E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 3 0 0.4095649 0.000000 9.1946783E-04 3.1362243E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 4 0 0.4077113 0.000000 9.0590422E-04 3.1350474E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 5 0 0.4063652 0.000000 8.9254073E-04 3.1338546E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 6 0 0.4048675 0.000000 8.7937433E-04 3.1326462E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 7 0 0.4034471 0.000000 8.6640217E-04 3.1314229E-03 0.000000 0.000000 0.000000 Av 2018 1 13 8 0 0.3888130 0.000000 8.5362140E-04 2.9375027E-03 0.000000 0.000000 8.7582530E-04 Av 2018 1 13 9 0 0.3464852 0.000000 8.4102916E-04 2.4647713E-03 0.000000 0.000000 3.0189068E-03 Av 2018 1 13 10 0 0.3013575 0.000000 8.2862267E-04 2.0883661E-03 0.000000 0.000000 4.7240756E-03 @@ -328,21 +328,21 @@ Av 2018 1 13 14 0 0.2883922 0.000000 7.8079995E-04 2.0831525E-03 0.000000 0.000000 4.7240756E-03 Av 2018 1 13 15 0 0.3126231 0.000000 7.6928199E-04 2.4569521E-03 0.000000 0.000000 3.0189068E-03 Av 2018 1 13 16 0 0.3604207 0.000000 7.5793383E-04 2.9270791E-03 0.000000 0.000000 8.7582530E-04 - Av 2018 1 13 17 0 0.3875595 0.000000 7.4675312E-04 3.1183965E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 18 0 0.3896297 0.000000 7.3573733E-04 3.1170198E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 19 0 0.3872360 0.000000 7.2488404E-04 3.1156300E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 20 0 0.3864147 0.000000 7.1419089E-04 3.1142281E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 21 0 0.3850665 0.000000 7.0365542E-04 3.1128135E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 22 0 0.3839211 0.000000 6.9327542E-04 3.1113867E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 23 0 0.3827246 0.000000 6.8304851E-04 3.1099480E-03 0.000000 0.000000 0.000000 - Av 2018 1 13 24 0 0.3815649 0.000000 6.7297247E-04 3.1084975E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 1 0 0.3759884 0.000000 6.6304510E-04 3.0419417E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 2 0 0.3719735 0.000000 6.5326411E-04 3.0405766E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 3 0 0.3718639 0.000000 6.4362743E-04 3.0392003E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 4 0 0.3704144 0.000000 6.3413294E-04 3.0378131E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 5 0 0.3694485 0.000000 6.2477851E-04 3.0364147E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 6 0 0.3683318 0.000000 6.1556202E-04 3.0350059E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 7 0 0.3672847 0.000000 6.0648145E-04 3.0335861E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 17 0 0.3875595 0.000000 7.4675312E-04 3.1183965E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 18 0 0.3896297 0.000000 7.3573733E-04 3.1170198E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 19 0 0.3872360 0.000000 7.2488404E-04 3.1156300E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 20 0 0.3864147 0.000000 7.1419089E-04 3.1142281E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 21 0 0.3850665 0.000000 7.0365542E-04 3.1128135E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 22 0 0.3839211 0.000000 6.9327542E-04 3.1113867E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 23 0 0.3827246 0.000000 6.8304851E-04 3.1099480E-03 0.000000 0.000000 0.000000 + Av 2018 1 13 24 0 0.3815649 0.000000 6.7297247E-04 3.1084975E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 1 0 0.3759884 0.000000 6.6304510E-04 3.0419417E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 2 0 0.3719735 0.000000 6.5326411E-04 3.0405766E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 3 0 0.3718639 0.000000 6.4362743E-04 3.0392003E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 4 0 0.3704144 0.000000 6.3413294E-04 3.0378131E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 5 0 0.3694485 0.000000 6.2477851E-04 3.0364147E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 6 0 0.3683318 0.000000 6.1556202E-04 3.0350059E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 7 0 0.3672847 0.000000 6.0648145E-04 3.0335861E-03 0.000000 0.000000 0.000000 Av 2018 1 14 8 0 0.3522326 0.000000 5.9753493E-04 2.8279156E-03 0.000000 0.000000 9.2836696E-04 Av 2018 1 14 9 0 0.3089634 0.000000 5.8872032E-04 2.3432255E-03 0.000000 0.000000 3.1249565E-03 Av 2018 1 14 10 0 0.2634618 0.000000 5.8003579E-04 1.9606457E-03 0.000000 0.000000 4.8573627E-03 @@ -352,21 +352,21 @@ Av 2018 1 14 14 0 0.2528589 0.000000 5.4655998E-04 1.9547446E-03 0.000000 9.9999802E-03 4.8573627E-03 Av 2018 1 14 15 0 0.2774407 0.000000 5.3849735E-04 2.3343745E-03 0.000000 0.000000 3.1249565E-03 Av 2018 1 14 16 0 0.3256662 0.000000 5.3055369E-04 2.8161157E-03 0.000000 0.000000 9.2836696E-04 - Av 2018 1 14 17 0 0.3546696 0.000000 5.2272720E-04 3.0188386E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 18 0 0.3573088 0.000000 5.1501615E-04 3.0173117E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 19 0 0.3551429 0.000000 5.0741882E-04 3.0157757E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 20 0 0.3546619 0.000000 4.9993361E-04 3.0142311E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 21 0 0.3536090 0.000000 4.9255881E-04 3.0126777E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 22 0 0.3527687 0.000000 4.8529278E-04 3.0111161E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 23 0 0.3518680 0.000000 4.7813394E-04 3.0095456E-03 0.000000 0.000000 0.000000 - Av 2018 1 14 24 0 0.3510016 0.000000 4.7108071E-04 3.0079670E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 1 0 0.3458862 0.000000 4.6413153E-04 2.9438259E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 2 0 0.3422682 0.000000 4.5728486E-04 2.9423356E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 3 0 0.3423997 0.000000 4.5053917E-04 2.9408373E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 4 0 0.3412399 0.000000 4.4389302E-04 2.9393311E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 5 0 0.3405415 0.000000 4.3734492E-04 2.9378172E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 6 0 0.3396949 0.000000 4.3089339E-04 2.9362957E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 7 0 0.3389118 0.000000 4.2453702E-04 2.9347665E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 17 0 0.3546696 0.000000 5.2272720E-04 3.0188386E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 18 0 0.3573088 0.000000 5.1501615E-04 3.0173117E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 19 0 0.3551429 0.000000 5.0741882E-04 3.0157757E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 20 0 0.3546619 0.000000 4.9993361E-04 3.0142311E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 21 0 0.3536090 0.000000 4.9255881E-04 3.0126777E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 22 0 0.3527687 0.000000 4.8529278E-04 3.0111161E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 23 0 0.3518680 0.000000 4.7813394E-04 3.0095456E-03 0.000000 0.000000 0.000000 + Av 2018 1 14 24 0 0.3510016 0.000000 4.7108071E-04 3.0079670E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 1 0 0.3458862 0.000000 4.6413153E-04 2.9438259E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 2 0 0.3422682 0.000000 4.5728486E-04 2.9423356E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 3 0 0.3423997 0.000000 4.5053917E-04 2.9408373E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 4 0 0.3412399 0.000000 4.4389302E-04 2.9393311E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 5 0 0.3405415 0.000000 4.3734492E-04 2.9378172E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 6 0 0.3396949 0.000000 4.3089339E-04 2.9362957E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 7 0 0.3389118 0.000000 4.2453702E-04 2.9347665E-03 0.000000 0.000000 0.000000 Av 2018 1 15 8 0 0.3234791 0.000000 4.1827443E-04 2.7195562E-03 0.000000 0.000000 9.7124424E-04 Av 2018 1 15 9 0 0.2796776 0.000000 4.1210424E-04 2.2291620E-03 0.000000 0.000000 3.1932904E-03 Av 2018 1 15 10 0 0.2342857 0.000000 4.0602506E-04 1.8455974E-03 0.000000 0.000000 4.9297144E-03 @@ -376,21 +376,21 @@ Av 2018 1 15 14 0 0.2235847 0.000000 3.8259197E-04 1.8393215E-03 0.000000 0.000000 4.9297144E-03 Av 2018 1 15 15 0 0.2488286 0.000000 3.7694813E-04 2.2197487E-03 0.000000 0.000000 3.1932904E-03 Av 2018 1 15 16 0 0.2986364 0.000000 3.7138758E-04 2.7070059E-03 0.000000 0.000000 9.7124424E-04 - Av 2018 1 15 17 0 0.3296276 0.000000 3.6590901E-04 2.9190802E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 15 18 0 0.3325222 0.000000 3.6051127E-04 2.9174741E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 19 0 0.3305799 0.000000 3.5519319E-04 2.9158618E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 15 20 0 0.3340361 0.000000 3.4995351E-04 2.9142431E-03 0.000000 2.9999940E-02 0.000000 - Av 2018 1 15 21 0 0.3306762 0.000000 3.4479116E-04 2.9126182E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 22 0 0.3284358 0.000000 3.3970494E-04 2.9109868E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 15 23 0 0.3283067 0.000000 3.3469376E-04 2.9093497E-03 0.000000 0.000000 0.000000 - Av 2018 1 15 24 0 0.3286785 0.000000 3.2975650E-04 2.9077064E-03 0.000000 1.9999960E-02 0.000000 - Av 2018 1 16 1 0 0.3235810 0.000000 3.2489208E-04 2.8460298E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 2 0 0.3179487 0.000000 3.2009941E-04 2.8444752E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 3 0 0.3190490 0.000000 3.1537743E-04 2.8429148E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 4 0 0.3191223 4.8169500E-07 3.1074771E-04 2.8422293E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 16 5 0 0.4460483 2.8211429E-05 3.3486690E-04 2.8648414E-03 1.7093474E-02 4.9999900E-02 0.000000 - Av 2018 1 16 6 0 0.4394816 8.4846072E-08 3.5846990E-04 2.8875815E-03 4.7805039E-03 0.000000 0.000000 - Av 2018 1 16 7 0 0.3313028 0.000000 3.5318587E-04 2.8863738E-03 1.6142318E-03 0.000000 0.000000 + Av 2018 1 15 17 0 0.3296276 0.000000 3.6590901E-04 2.9190802E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 15 18 0 0.3325222 0.000000 3.6051127E-04 2.9174741E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 19 0 0.3305799 0.000000 3.5519319E-04 2.9158618E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 15 20 0 0.3340361 0.000000 3.4995351E-04 2.9142431E-03 0.000000 2.9999940E-02 0.000000 + Av 2018 1 15 21 0 0.3306762 0.000000 3.4479116E-04 2.9126182E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 22 0 0.3284358 0.000000 3.3970494E-04 2.9109868E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 15 23 0 0.3283067 0.000000 3.3469376E-04 2.9093497E-03 0.000000 0.000000 0.000000 + Av 2018 1 15 24 0 0.3286785 0.000000 3.2975650E-04 2.9077064E-03 0.000000 1.9999960E-02 0.000000 + Av 2018 1 16 1 0 0.3235810 0.000000 3.2489208E-04 2.8460298E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 2 0 0.3179487 0.000000 3.2009941E-04 2.8444752E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 3 0 0.3190490 0.000000 3.1537743E-04 2.8429148E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 4 0 0.3191223 4.8169500E-07 3.1074771E-04 2.8422293E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 16 5 0 0.4460483 2.8211429E-05 3.3486690E-04 2.8648414E-03 1.7093474E-02 4.9999900E-02 0.000000 + Av 2018 1 16 6 0 0.4394816 8.4846072E-08 3.5846990E-04 2.8875815E-03 4.7805039E-03 0.000000 0.000000 + Av 2018 1 16 7 0 0.3313028 0.000000 3.5318587E-04 2.8863738E-03 1.6142318E-03 0.000000 0.000000 Av 2018 1 16 8 0 0.3274873 0.000000 3.4797585E-04 2.6983991E-03 6.9640711E-04 0.000000 8.4718876E-04 Av 2018 1 16 9 0 0.2783341 0.000000 3.4284266E-04 2.2844786E-03 3.5411827E-04 0.000000 2.7213800E-03 Av 2018 1 16 10 0 0.2411127 0.000000 3.3778520E-04 1.9637425E-03 2.0214033E-04 0.000000 4.1719768E-03 @@ -400,21 +400,21 @@ Av 2018 1 16 14 0 0.2295250 0.000000 3.1829046E-04 1.9572664E-03 4.1975291E-05 0.000000 4.1719768E-03 Av 2018 1 16 15 0 0.2515804 0.000000 3.1359517E-04 2.2747647E-03 1.9691989E-04 0.000000 2.7213800E-03 Av 2018 1 16 16 0 0.2928037 0.000000 3.0896917E-04 2.6854479E-03 0.000000 0.000000 8.4718876E-04 - Av 2018 1 16 17 0 0.3172434 0.000000 3.0441137E-04 2.8701858E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 18 0 0.3206659 0.000000 2.9992082E-04 2.8685364E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 19 0 0.3186457 0.000000 2.9549649E-04 2.8668819E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 20 0 0.3185261 0.000000 2.9113749E-04 2.8652223E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 21 0 0.3177539 0.000000 2.8684275E-04 2.8635575E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 22 0 0.3172165 0.000000 2.8261135E-04 2.8618877E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 23 0 0.3166054 0.000000 2.7844240E-04 2.8602129E-03 0.000000 0.000000 0.000000 - Av 2018 1 16 24 0 0.3160276 0.000000 2.7433492E-04 2.8585333E-03 0.000000 0.000000 0.000000 - Av 2018 1 17 1 0 0.3114510 0.000000 2.7028806E-04 2.7980516E-03 0.000000 0.000000 0.000000 - Av 2018 1 17 2 0 0.3082789 0.000000 2.6630086E-04 2.7964606E-03 0.000000 0.000000 0.000000 - Av 2018 1 17 3 0 0.3086275 0.000000 2.6237252E-04 2.7948648E-03 0.000000 0.000000 0.000000 - Av 2018 1 17 4 0 0.3089513 0.000000 2.5850211E-04 2.7932646E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 17 5 0 0.3080989 0.000000 2.5468881E-04 2.7916594E-03 0.000000 0.000000 0.000000 - Av 2018 1 17 6 0 0.3064705 0.000000 2.5093177E-04 2.7900496E-03 0.000000 0.000000 0.000000 - Av 2018 1 17 7 0 0.3063109 0.000000 2.4723011E-04 2.7884354E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 17 0 0.3172434 0.000000 3.0441137E-04 2.8701858E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 18 0 0.3206659 0.000000 2.9992082E-04 2.8685364E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 19 0 0.3186457 0.000000 2.9549649E-04 2.8668819E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 20 0 0.3185261 0.000000 2.9113749E-04 2.8652223E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 21 0 0.3177539 0.000000 2.8684275E-04 2.8635575E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 22 0 0.3172165 0.000000 2.8261135E-04 2.8618877E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 23 0 0.3166054 0.000000 2.7844240E-04 2.8602129E-03 0.000000 0.000000 0.000000 + Av 2018 1 16 24 0 0.3160276 0.000000 2.7433492E-04 2.8585333E-03 0.000000 0.000000 0.000000 + Av 2018 1 17 1 0 0.3114510 0.000000 2.7028806E-04 2.7980516E-03 0.000000 0.000000 0.000000 + Av 2018 1 17 2 0 0.3082789 0.000000 2.6630086E-04 2.7964606E-03 0.000000 0.000000 0.000000 + Av 2018 1 17 3 0 0.3086275 0.000000 2.6237252E-04 2.7948648E-03 0.000000 0.000000 0.000000 + Av 2018 1 17 4 0 0.3089513 0.000000 2.5850211E-04 2.7932646E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 17 5 0 0.3080989 0.000000 2.5468881E-04 2.7916594E-03 0.000000 0.000000 0.000000 + Av 2018 1 17 6 0 0.3064705 0.000000 2.5093177E-04 2.7900496E-03 0.000000 0.000000 0.000000 + Av 2018 1 17 7 0 0.3063109 0.000000 2.4723011E-04 2.7884354E-03 0.000000 0.000000 0.000000 Av 2018 1 17 8 0 0.2926070 0.000000 2.4358308E-04 2.5964023E-03 0.000000 0.000000 8.6552056E-04 Av 2018 1 17 9 0 0.2557357 0.000000 2.3998984E-04 2.1874174E-03 0.000000 0.000000 2.7171646E-03 Av 2018 1 17 10 0 0.2186382 0.000000 2.3644960E-04 1.8736357E-03 0.000000 0.000000 4.1360483E-03 @@ -424,21 +424,21 @@ Av 2018 1 17 14 0 0.2103324 0.000000 2.2280327E-04 1.8670836E-03 0.000000 0.000000 4.1360483E-03 Av 2018 1 17 15 0 0.2320402 0.000000 2.1951657E-04 2.1775896E-03 0.000000 9.9999802E-03 2.7171646E-03 Av 2018 1 17 16 0 0.5139687 4.0584699E-05 2.5192503E-04 2.6079812E-03 3.3176910E-02 7.9999842E-02 8.6552056E-04 - Av 2018 1 17 17 0 1.378949 1.1839111E-03 4.5876307E-04 2.8519421E-03 0.1172509 0.1299997 0.000000 - Av 2018 1 17 18 0 2.101897 4.1571553E-03 8.3048403E-04 2.9109695E-03 0.1293380 0.1299997 0.000000 - Av 2018 1 17 19 0 1.636094 4.2472759E-04 1.1152725E-03 2.9702694E-03 8.5381992E-02 7.9999842E-02 0.000000 - Av 2018 1 17 20 0 1.645212 2.7268708E-03 1.4004528E-03 3.0308294E-03 0.1161438 0.1199998 0.000000 - Av 2018 1 17 21 0 1.154158 1.3481325E-06 1.5871437E-03 3.0637237E-03 1.5923824E-02 0.000000 0.000000 - Av 2018 1 17 22 0 0.3642214 0.000000 1.5637943E-03 3.0648231E-03 3.9384700E-03 0.000000 0.000000 - Av 2018 1 17 23 0 0.5369710 0.000000 1.5407259E-03 3.0645479E-03 1.3929461E-03 0.000000 0.000000 - Av 2018 1 17 24 0 0.4512031 0.000000 1.5179978E-03 3.0642431E-03 6.1953056E-04 0.000000 0.000000 - Av 2018 1 18 1 0 0.5713512 1.3190707E-04 1.5018494E-03 3.0111689E-03 1.3849576E-02 1.9999960E-02 0.000000 - Av 2018 1 18 2 0 0.8345879 4.9275062E-05 1.5262061E-03 3.0471005E-03 4.3827418E-02 4.9999900E-02 0.000000 - Av 2018 1 18 3 0 0.8252210 1.4900189E-04 1.5508565E-03 3.0841182E-03 2.4356401E-02 1.9999960E-02 0.000000 - Av 2018 1 18 4 0 0.5589417 0.000000 1.5350099E-03 3.0964608E-03 5.3487280E-03 0.000000 0.000000 - Av 2018 1 18 5 0 0.4817344 0.000000 1.5123661E-03 3.0961081E-03 1.7573922E-03 0.000000 0.000000 - Av 2018 1 18 6 0 0.4741944 0.000000 1.4900564E-03 3.0957267E-03 7.4474065E-04 0.000000 0.000000 - Av 2018 1 18 7 0 0.4643542 0.000000 1.4680757E-03 3.0953167E-03 3.7407252E-04 0.000000 0.000000 + Av 2018 1 17 17 0 1.378949 1.1839111E-03 4.5876307E-04 2.8519421E-03 0.1172509 0.1299997 0.000000 + Av 2018 1 17 18 0 2.101897 4.1571553E-03 8.3048403E-04 2.9109695E-03 0.1293380 0.1299997 0.000000 + Av 2018 1 17 19 0 1.636094 4.2472759E-04 1.1152725E-03 2.9702694E-03 8.5381992E-02 7.9999842E-02 0.000000 + Av 2018 1 17 20 0 1.645212 2.7268708E-03 1.4004528E-03 3.0308294E-03 0.1161438 0.1199998 0.000000 + Av 2018 1 17 21 0 1.154158 1.3481325E-06 1.5871437E-03 3.0637237E-03 1.5923824E-02 0.000000 0.000000 + Av 2018 1 17 22 0 0.3642214 0.000000 1.5637943E-03 3.0648231E-03 3.9384700E-03 0.000000 0.000000 + Av 2018 1 17 23 0 0.5369710 0.000000 1.5407259E-03 3.0645479E-03 1.3929461E-03 0.000000 0.000000 + Av 2018 1 17 24 0 0.4512031 0.000000 1.5179978E-03 3.0642431E-03 6.1953056E-04 0.000000 0.000000 + Av 2018 1 18 1 0 0.5713512 1.3190707E-04 1.5018494E-03 3.0111689E-03 1.3849576E-02 1.9999960E-02 0.000000 + Av 2018 1 18 2 0 0.8345879 4.9275062E-05 1.5262061E-03 3.0471005E-03 4.3827418E-02 4.9999900E-02 0.000000 + Av 2018 1 18 3 0 0.8252210 1.4900189E-04 1.5508565E-03 3.0841182E-03 2.4356401E-02 1.9999960E-02 0.000000 + Av 2018 1 18 4 0 0.5589417 0.000000 1.5350099E-03 3.0964608E-03 5.3487280E-03 0.000000 0.000000 + Av 2018 1 18 5 0 0.4817344 0.000000 1.5123661E-03 3.0961081E-03 1.7573922E-03 0.000000 0.000000 + Av 2018 1 18 6 0 0.4741944 0.000000 1.4900564E-03 3.0957267E-03 7.4474065E-04 0.000000 0.000000 + Av 2018 1 18 7 0 0.4643542 0.000000 1.4680757E-03 3.0953167E-03 3.7407252E-04 0.000000 0.000000 Av 2018 1 18 8 0 0.4491490 0.000000 1.4464193E-03 2.9202348E-03 2.1165557E-04 0.000000 7.9383602E-04 Av 2018 1 18 9 0 0.4130361 0.000000 1.4250823E-03 2.5584111E-03 1.3063430E-04 0.000000 2.4363752E-03 Av 2018 1 18 10 0 0.3782466 0.000000 1.4040602E-03 2.2838823E-03 8.6098706E-05 0.000000 3.6819964E-03 @@ -448,21 +448,21 @@ Av 2018 1 18 14 0 0.9095135 2.0934416E-04 1.4304820E-03 2.3479660E-03 6.5959550E-02 7.9999842E-02 3.6819964E-03 Av 2018 1 18 15 0 0.7743890 1.0766330E-06 1.5029737E-03 2.6540281E-03 1.1403943E-02 0.000000 2.4363752E-03 Av 2018 1 18 16 0 0.4165743 0.000000 1.4808534E-03 3.0160851E-03 3.0869748E-03 0.000000 7.9383602E-04 - Av 2018 1 18 17 0 0.5053150 0.000000 1.4590085E-03 3.1901721E-03 1.1554473E-03 0.000000 0.000000 - Av 2018 1 18 18 0 0.4660420 0.000000 1.4374858E-03 3.1895877E-03 5.3360756E-04 0.000000 0.000000 - Av 2018 1 18 19 0 0.4707955 0.000000 1.4162806E-03 3.1889759E-03 2.8447842E-04 0.000000 0.000000 - Av 2018 1 18 20 0 0.4637136 0.000000 1.3953883E-03 3.1883377E-03 1.6804926E-04 0.000000 0.000000 - Av 2018 1 18 21 0 0.5749425 4.4628632E-06 1.3845008E-03 3.2021031E-03 1.5788527E-02 2.9999940E-02 0.000000 - Av 2018 1 18 22 0 0.7934500 4.1514522E-05 1.3996370E-03 3.2377695E-03 3.6020946E-02 3.9999921E-02 0.000000 - Av 2018 1 18 23 0 0.7180324 3.7396319E-05 1.4065560E-03 3.2660903E-03 1.5027071E-02 9.9999802E-03 0.000000 - Av 2018 1 18 24 0 0.5710185 3.3813751E-05 1.3891939E-03 3.2788431E-03 1.1110618E-02 9.9999802E-03 0.000000 - Av 2018 1 19 1 0 0.5301046 0.000000 1.3703059E-03 3.2150825E-03 3.0284689E-03 0.000000 0.000000 - Av 2018 1 19 2 0 0.4656693 0.000000 1.3500918E-03 3.2143570E-03 1.1385201E-03 0.000000 0.000000 - Av 2018 1 19 3 0 0.4682533 0.000000 1.3301759E-03 3.2136068E-03 5.2732951E-04 0.000000 0.000000 - Av 2018 1 19 4 0 0.4587433 0.000000 1.3105536E-03 3.2128321E-03 2.8170802E-04 0.000000 0.000000 - Av 2018 1 19 5 0 0.4568458 0.000000 1.2912209E-03 3.2120335E-03 1.6666176E-04 0.000000 0.000000 - Av 2018 1 19 6 0 0.4974632 3.1036507E-05 1.2736545E-03 3.2174794E-03 5.9616626E-03 9.9999802E-03 0.000000 - Av 2018 1 19 7 0 0.5483717 3.3056072E-05 1.2579178E-03 3.2295217E-03 9.3331784E-03 9.9999802E-03 0.000000 + Av 2018 1 18 17 0 0.5053150 0.000000 1.4590085E-03 3.1901721E-03 1.1554473E-03 0.000000 0.000000 + Av 2018 1 18 18 0 0.4660420 0.000000 1.4374858E-03 3.1895877E-03 5.3360756E-04 0.000000 0.000000 + Av 2018 1 18 19 0 0.4707955 0.000000 1.4162806E-03 3.1889759E-03 2.8447842E-04 0.000000 0.000000 + Av 2018 1 18 20 0 0.4637136 0.000000 1.3953883E-03 3.1883377E-03 1.6804926E-04 0.000000 0.000000 + Av 2018 1 18 21 0 0.5749425 4.4628632E-06 1.3845008E-03 3.2021031E-03 1.5788527E-02 2.9999940E-02 0.000000 + Av 2018 1 18 22 0 0.7934500 4.1514522E-05 1.3996370E-03 3.2377695E-03 3.6020946E-02 3.9999921E-02 0.000000 + Av 2018 1 18 23 0 0.7180324 3.7396319E-05 1.4065560E-03 3.2660903E-03 1.5027071E-02 9.9999802E-03 0.000000 + Av 2018 1 18 24 0 0.5710185 3.3813751E-05 1.3891939E-03 3.2788431E-03 1.1110618E-02 9.9999802E-03 0.000000 + Av 2018 1 19 1 0 0.5301046 0.000000 1.3703059E-03 3.2150825E-03 3.0284689E-03 0.000000 0.000000 + Av 2018 1 19 2 0 0.4656693 0.000000 1.3500918E-03 3.2143570E-03 1.1385201E-03 0.000000 0.000000 + Av 2018 1 19 3 0 0.4682533 0.000000 1.3301759E-03 3.2136068E-03 5.2732951E-04 0.000000 0.000000 + Av 2018 1 19 4 0 0.4587433 0.000000 1.3105536E-03 3.2128321E-03 2.8170802E-04 0.000000 0.000000 + Av 2018 1 19 5 0 0.4568458 0.000000 1.2912209E-03 3.2120335E-03 1.6666176E-04 0.000000 0.000000 + Av 2018 1 19 6 0 0.4974632 3.1036507E-05 1.2736545E-03 3.2174794E-03 5.9616626E-03 9.9999802E-03 0.000000 + Av 2018 1 19 7 0 0.5483717 3.3056072E-05 1.2579178E-03 3.2295217E-03 9.3331784E-03 9.9999802E-03 0.000000 Av 2018 1 19 8 0 0.4927633 0.000000 1.2409317E-03 3.0685675E-03 2.7402365E-03 0.000000 7.5773790E-04 Av 2018 1 19 9 0 0.4156336 0.000000 1.2226261E-03 2.7339852E-03 1.0538073E-03 0.000000 2.2743894E-03 Av 2018 1 19 10 0 0.3845844 0.000000 1.2045904E-03 2.4827321E-03 4.9556949E-04 0.000000 3.4121722E-03 @@ -472,21 +472,21 @@ Av 2018 1 19 14 0 0.3650334 0.000000 1.1350694E-03 2.4787546E-03 6.9588124E-05 0.000000 3.4121722E-03 Av 2018 1 19 15 0 0.3800210 0.000000 1.1183254E-03 2.7280210E-03 4.9440685E-05 0.000000 2.2743894E-03 Av 2018 1 19 16 0 0.4122012 0.000000 1.1018284E-03 3.0606186E-03 3.6413367E-05 0.000000 7.5773790E-04 - Av 2018 1 19 17 0 0.4338248 0.000000 1.0855747E-03 3.2262357E-03 1.8082449E-04 0.000000 0.000000 - Av 2018 1 19 18 0 0.4351464 0.000000 1.0695608E-03 3.2251312E-03 0.000000 0.000000 0.000000 - Av 2018 1 19 19 0 0.4325566 0.000000 1.0537831E-03 3.2240078E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 19 20 0 0.4327673 1.2221574E-06 1.0382966E-03 3.2241864E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 19 21 0 0.6190782 2.0523981E-05 1.0472309E-03 3.2456503E-03 2.6452908E-02 3.9999921E-02 0.000000 - Av 2018 1 19 22 0 0.6568687 3.5084016E-05 1.0575338E-03 3.2734245E-03 1.3997563E-02 9.9999802E-03 0.000000 - Av 2018 1 19 23 0 0.4833615 0.000000 1.0436033E-03 3.2792490E-03 3.5860587E-03 0.000000 0.000000 - Av 2018 1 19 24 0 0.4514013 0.000000 1.0282085E-03 3.2780110E-03 1.2965366E-03 0.000000 0.000000 - Av 2018 1 20 1 0 0.4816562 2.9644385E-05 1.0144593E-03 3.2133288E-03 6.8471823E-03 9.9999802E-03 0.000000 - Av 2018 1 20 2 0 0.4730189 0.000000 1.0009060E-03 3.2185672E-03 2.4410719E-03 0.000000 0.000000 - Av 2018 1 20 3 0 0.4309523 0.000000 9.8614115E-04 3.2173777E-03 9.6334371E-04 0.000000 0.000000 - Av 2018 1 20 4 0 0.4299712 0.000000 9.7159395E-04 3.2161709E-03 4.6098157E-04 0.000000 0.000000 - Av 2018 1 20 5 0 0.4233517 0.000000 9.5726142E-04 3.2149472E-03 2.5198329E-04 0.000000 0.000000 - Av 2018 1 20 6 0 0.4214507 0.000000 9.4314042E-04 3.2137069E-03 1.5160567E-04 0.000000 0.000000 - Av 2018 1 20 7 0 0.4189910 0.000000 9.2922762E-04 3.2124503E-03 9.7992328E-05 0.000000 0.000000 + Av 2018 1 19 17 0 0.4338248 0.000000 1.0855747E-03 3.2262357E-03 1.8082449E-04 0.000000 0.000000 + Av 2018 1 19 18 0 0.4351464 0.000000 1.0695608E-03 3.2251312E-03 0.000000 0.000000 0.000000 + Av 2018 1 19 19 0 0.4325566 0.000000 1.0537831E-03 3.2240078E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 19 20 0 0.4327673 1.2221574E-06 1.0382966E-03 3.2241864E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 19 21 0 0.6190782 2.0523981E-05 1.0472309E-03 3.2456503E-03 2.6452908E-02 3.9999921E-02 0.000000 + Av 2018 1 19 22 0 0.6568687 3.5084016E-05 1.0575338E-03 3.2734245E-03 1.3997563E-02 9.9999802E-03 0.000000 + Av 2018 1 19 23 0 0.4833615 0.000000 1.0436033E-03 3.2792490E-03 3.5860587E-03 0.000000 0.000000 + Av 2018 1 19 24 0 0.4514013 0.000000 1.0282085E-03 3.2780110E-03 1.2965366E-03 0.000000 0.000000 + Av 2018 1 20 1 0 0.4816562 2.9644385E-05 1.0144593E-03 3.2133288E-03 6.8471823E-03 9.9999802E-03 0.000000 + Av 2018 1 20 2 0 0.4730189 0.000000 1.0009060E-03 3.2185672E-03 2.4410719E-03 0.000000 0.000000 + Av 2018 1 20 3 0 0.4309523 0.000000 9.8614115E-04 3.2173777E-03 9.6334371E-04 0.000000 0.000000 + Av 2018 1 20 4 0 0.4299712 0.000000 9.7159395E-04 3.2161709E-03 4.6098157E-04 0.000000 0.000000 + Av 2018 1 20 5 0 0.4233517 0.000000 9.5726142E-04 3.2149472E-03 2.5198329E-04 0.000000 0.000000 + Av 2018 1 20 6 0 0.4214507 0.000000 9.4314042E-04 3.2137069E-03 1.5160567E-04 0.000000 0.000000 + Av 2018 1 20 7 0 0.4189910 0.000000 9.2922762E-04 3.2124503E-03 9.7992328E-05 0.000000 0.000000 Av 2018 1 20 8 0 0.4056526 0.000000 9.1552001E-04 3.0424600E-03 6.6934314E-05 0.000000 7.6689903E-04 Av 2018 1 20 9 0 0.3739592 0.000000 9.0201467E-04 2.7144307E-03 4.7758112E-05 0.000000 2.2520837E-03 Av 2018 1 20 10 0 0.3437753 0.000000 8.8870851E-04 2.4707450E-03 3.5296252E-05 0.000000 3.3538188E-03 @@ -496,21 +496,21 @@ Av 2018 1 20 14 0 0.3329032 0.000000 8.3741813E-04 2.4653776E-03 0.000000 0.000000 3.3538188E-03 Av 2018 1 20 15 0 0.3478991 0.000000 8.2506490E-04 2.7063806E-03 0.000000 0.000000 2.2520837E-03 Av 2018 1 20 16 0 0.3798159 0.000000 8.1289385E-04 3.0317288E-03 0.000000 0.000000 7.6689903E-04 - Av 2018 1 20 17 0 0.4008285 0.000000 8.0090237E-04 3.1990400E-03 0.000000 0.000000 0.000000 - Av 2018 1 20 18 0 0.4032755 0.000000 7.8908779E-04 3.1976195E-03 0.000000 0.000000 0.000000 - Av 2018 1 20 19 0 0.4006371 0.000000 7.7744754E-04 3.1961855E-03 0.000000 0.000000 0.000000 - Av 2018 1 20 20 0 0.3997886 0.000000 7.6597894E-04 3.1947379E-03 0.000000 0.000000 0.000000 - Av 2018 1 20 21 0 0.3983391 0.000000 7.5467955E-04 3.1932774E-03 0.000000 0.000000 0.000000 - Av 2018 1 20 22 0 0.3971196 0.000000 7.4354687E-04 3.1918043E-03 0.000000 0.000000 0.000000 - Av 2018 1 20 23 0 0.3958409 0.000000 7.3257840E-04 3.1903181E-03 0.000000 0.000000 0.000000 - Av 2018 1 20 24 0 0.3946032 0.000000 7.2177168E-04 3.1888194E-03 0.000000 0.000000 0.000000 - Av 2018 1 21 1 0 0.3888022 0.000000 7.1112445E-04 3.1200589E-03 0.000000 0.000000 0.000000 - Av 2018 1 21 2 0 0.3846155 0.000000 7.0063426E-04 3.1186494E-03 0.000000 0.000000 0.000000 - Av 2018 1 21 3 0 0.3844639 0.000000 6.9029880E-04 3.1172279E-03 0.000000 0.000000 0.000000 - Av 2018 1 21 4 0 0.3829285 0.000000 6.8011577E-04 3.1157944E-03 0.000000 0.000000 0.000000 - Av 2018 1 21 5 0 0.3832218 0.000000 6.7008304E-04 3.1143494E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 1 21 6 0 0.6344705 4.3400265E-05 6.9801882E-04 3.1378178E-03 3.4985084E-02 5.9999879E-02 0.000000 - Av 2018 1 21 7 0 0.7862390 1.4450979E-04 7.3888758E-04 3.1794205E-03 3.1714529E-02 2.9999940E-02 0.000000 + Av 2018 1 20 17 0 0.4008285 0.000000 8.0090237E-04 3.1990400E-03 0.000000 0.000000 0.000000 + Av 2018 1 20 18 0 0.4032755 0.000000 7.8908779E-04 3.1976195E-03 0.000000 0.000000 0.000000 + Av 2018 1 20 19 0 0.4006371 0.000000 7.7744754E-04 3.1961855E-03 0.000000 0.000000 0.000000 + Av 2018 1 20 20 0 0.3997886 0.000000 7.6597894E-04 3.1947379E-03 0.000000 0.000000 0.000000 + Av 2018 1 20 21 0 0.3983391 0.000000 7.5467955E-04 3.1932774E-03 0.000000 0.000000 0.000000 + Av 2018 1 20 22 0 0.3971196 0.000000 7.4354687E-04 3.1918043E-03 0.000000 0.000000 0.000000 + Av 2018 1 20 23 0 0.3958409 0.000000 7.3257840E-04 3.1903181E-03 0.000000 0.000000 0.000000 + Av 2018 1 20 24 0 0.3946032 0.000000 7.2177168E-04 3.1888194E-03 0.000000 0.000000 0.000000 + Av 2018 1 21 1 0 0.3888022 0.000000 7.1112445E-04 3.1200589E-03 0.000000 0.000000 0.000000 + Av 2018 1 21 2 0 0.3846155 0.000000 7.0063426E-04 3.1186494E-03 0.000000 0.000000 0.000000 + Av 2018 1 21 3 0 0.3844639 0.000000 6.9029880E-04 3.1172279E-03 0.000000 0.000000 0.000000 + Av 2018 1 21 4 0 0.3829285 0.000000 6.8011577E-04 3.1157944E-03 0.000000 0.000000 0.000000 + Av 2018 1 21 5 0 0.3832218 0.000000 6.7008304E-04 3.1143494E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 1 21 6 0 0.6344705 4.3400265E-05 6.9801882E-04 3.1378178E-03 3.4985084E-02 5.9999879E-02 0.000000 + Av 2018 1 21 7 0 0.7862390 1.4450979E-04 7.3888758E-04 3.1794205E-03 3.1714529E-02 2.9999940E-02 0.000000 Av 2018 1 21 8 0 0.6425518 1.2160616E-04 7.4729125E-04 3.0324969E-03 2.2054559E-02 1.9999960E-02 7.9763250E-04 Av 2018 1 21 9 0 0.6256043 6.6698722E-06 7.5451971E-04 2.7317570E-03 2.7780682E-02 2.9999940E-02 2.2925888E-03 Av 2018 1 21 10 0 0.5795583 1.0275703E-04 7.6071033E-04 2.5183125E-03 1.9685164E-02 1.9999960E-02 3.3887289E-03 @@ -520,21 +520,21 @@ Av 2018 1 21 14 0 0.3285535 0.000000 9.1341487E-04 2.6227720E-03 3.1184522E-03 0.000000 3.3887289E-03 Av 2018 1 21 15 0 0.4100916 0.000000 8.9994055E-04 2.8624127E-03 1.1645189E-03 0.000000 2.2925888E-03 Av 2018 1 21 16 0 0.4011348 0.000000 8.8666502E-04 3.1897780E-03 5.3696288E-04 0.000000 7.9763250E-04 - Av 2018 1 21 17 0 0.4308803 0.000000 8.7358529E-04 3.3637166E-03 2.8595622E-04 0.000000 0.000000 - Av 2018 1 21 18 0 0.4280884 0.000000 8.6069858E-04 3.3621613E-03 1.6878832E-04 0.000000 0.000000 - Av 2018 1 21 19 0 0.4258963 0.000000 8.4800192E-04 3.3605914E-03 1.0753073E-04 0.000000 0.000000 - Av 2018 1 21 20 0 0.4240782 0.000000 8.3549257E-04 3.3590072E-03 7.2626259E-05 0.000000 0.000000 - Av 2018 1 21 21 0 0.4224251 0.000000 8.2316773E-04 3.3574090E-03 5.1355793E-05 0.000000 0.000000 - Av 2018 1 21 22 0 0.4208819 0.000000 8.1102474E-04 3.3557967E-03 3.7678845E-05 0.000000 0.000000 - Av 2018 1 21 23 0 0.6707938 4.0390067E-05 8.3552976E-04 3.3794676E-03 3.4776736E-02 5.9999879E-02 0.000000 - Av 2018 1 21 24 0 0.6424109 1.5973424E-07 8.5950061E-04 3.4048958E-03 7.6723294E-03 0.000000 0.000000 - Av 2018 1 22 1 0 0.4180143 0.000000 8.4682932E-04 3.3309725E-03 2.3029675E-03 0.000000 0.000000 - Av 2018 1 22 2 0 0.4911351 2.9022001E-05 8.3573797E-04 3.3359237E-03 7.3719695E-03 9.9999802E-03 0.000000 - Av 2018 1 22 3 0 0.4663143 0.000000 8.2480337E-04 3.3410108E-03 2.5117320E-03 0.000000 0.000000 - Av 2018 1 22 4 0 0.5825109 7.4943205E-06 8.2604436E-04 3.3571294E-03 2.2904158E-02 2.9999940E-02 0.000000 - Av 2018 1 22 5 0 1.056580 2.7774036E-04 9.2368171E-04 3.4052609E-03 7.1644306E-02 7.9999842E-02 0.000000 - Av 2018 1 22 6 0 0.9561386 1.5256203E-04 1.0134405E-03 3.4500137E-03 2.8004961E-02 1.9999960E-02 0.000000 - Av 2018 1 22 7 0 0.5202370 0.000000 1.0058350E-03 3.4626205E-03 5.9090545E-03 0.000000 0.000000 + Av 2018 1 21 17 0 0.4308803 0.000000 8.7358529E-04 3.3637166E-03 2.8595622E-04 0.000000 0.000000 + Av 2018 1 21 18 0 0.4280884 0.000000 8.6069858E-04 3.3621613E-03 1.6878832E-04 0.000000 0.000000 + Av 2018 1 21 19 0 0.4258963 0.000000 8.4800192E-04 3.3605914E-03 1.0753073E-04 0.000000 0.000000 + Av 2018 1 21 20 0 0.4240782 0.000000 8.3549257E-04 3.3590072E-03 7.2626259E-05 0.000000 0.000000 + Av 2018 1 21 21 0 0.4224251 0.000000 8.2316773E-04 3.3574090E-03 5.1355793E-05 0.000000 0.000000 + Av 2018 1 21 22 0 0.4208819 0.000000 8.1102474E-04 3.3557967E-03 3.7678845E-05 0.000000 0.000000 + Av 2018 1 21 23 0 0.6707938 4.0390067E-05 8.3552976E-04 3.3794676E-03 3.4776736E-02 5.9999879E-02 0.000000 + Av 2018 1 21 24 0 0.6424109 1.5973424E-07 8.5950061E-04 3.4048958E-03 7.6723294E-03 0.000000 0.000000 + Av 2018 1 22 1 0 0.4180143 0.000000 8.4682932E-04 3.3309725E-03 2.3029675E-03 0.000000 0.000000 + Av 2018 1 22 2 0 0.4911351 2.9022001E-05 8.3573797E-04 3.3359237E-03 7.3719695E-03 9.9999802E-03 0.000000 + Av 2018 1 22 3 0 0.4663143 0.000000 8.2480337E-04 3.3410108E-03 2.5117320E-03 0.000000 0.000000 + Av 2018 1 22 4 0 0.5825109 7.4943205E-06 8.2604436E-04 3.3571294E-03 2.2904158E-02 2.9999940E-02 0.000000 + Av 2018 1 22 5 0 1.056580 2.7774036E-04 9.2368171E-04 3.4052609E-03 7.1644306E-02 7.9999842E-02 0.000000 + Av 2018 1 22 6 0 0.9561386 1.5256203E-04 1.0134405E-03 3.4500137E-03 2.8004961E-02 1.9999960E-02 0.000000 + Av 2018 1 22 7 0 0.5202370 0.000000 1.0058350E-03 3.4626205E-03 5.9090545E-03 0.000000 0.000000 Av 2018 1 22 8 0 0.4659767 0.000000 9.9099730E-04 3.2825957E-03 1.8942144E-03 0.000000 8.1133831E-04 Av 2018 1 22 9 0 0.4133975 0.000000 9.7637856E-04 2.9571909E-03 7.9001620E-04 0.000000 2.2834192E-03 Av 2018 1 22 10 0 0.3810199 0.000000 9.6197549E-04 2.7210168E-03 3.9250252E-04 0.000000 3.3498311E-03 @@ -544,21 +544,21 @@ Av 2018 1 22 14 0 0.3655856 0.000000 9.0645661E-04 2.7146025E-03 6.1320265E-05 0.000000 3.3498311E-03 Av 2018 1 22 15 0 0.3798483 0.000000 8.9308491E-04 2.9475708E-03 4.4167253E-05 0.000000 2.2834192E-03 Av 2018 1 22 16 0 0.4109389 0.000000 8.7991048E-04 3.2697713E-03 3.2894866E-05 0.000000 8.1133831E-04 - Av 2018 1 22 17 0 0.4334092 0.000000 8.6693047E-04 3.4465936E-03 1.7013081E-04 0.000000 0.000000 - Av 2018 1 22 18 0 0.4356307 0.000000 8.5414184E-04 3.4449070E-03 0.000000 0.000000 0.000000 - Av 2018 1 22 19 0 0.4317472 0.000000 8.4154191E-04 3.4432062E-03 0.000000 0.000000 0.000000 - Av 2018 1 22 20 0 0.4311659 0.000000 8.2912785E-04 3.4414912E-03 0.000000 0.000000 0.000000 - Av 2018 1 22 21 0 0.4294595 0.000000 8.1689691E-04 3.4397624E-03 0.000000 0.000000 0.000000 - Av 2018 1 22 22 0 0.4281672 0.000000 8.0484641E-04 3.4380197E-03 0.000000 0.000000 0.000000 - Av 2018 1 22 23 0 0.4267534 0.000000 7.9297367E-04 3.4362634E-03 0.000000 0.000000 0.000000 - Av 2018 1 22 24 0 0.4254040 0.000000 7.8127609E-04 3.4344944E-03 0.000000 0.000000 0.000000 - Av 2018 1 23 1 0 0.4190545 0.000000 7.6975103E-04 3.3591297E-03 0.000000 0.000000 0.000000 - Av 2018 1 23 2 0 0.4144740 0.000000 7.5839605E-04 3.3574649E-03 0.000000 0.000000 0.000000 - Av 2018 1 23 3 0 0.4143080 0.000000 7.4720854E-04 3.3557874E-03 0.000000 0.000000 0.000000 - Av 2018 1 23 4 0 0.4126279 0.000000 7.3618605E-04 3.3540970E-03 0.000000 0.000000 0.000000 - Av 2018 1 23 5 0 0.5013758 1.4499389E-04 7.3235040E-04 3.3659427E-03 1.0761120E-02 3.9999921E-02 0.000000 - Av 2018 1 23 6 0 0.6102266 1.2238249E-04 7.3446875E-04 3.3908139E-03 1.8502656E-02 1.9999960E-02 0.000000 - Av 2018 1 23 7 0 0.6340044 1.2249278E-04 7.3547772E-04 3.4147375E-03 1.9847091E-02 1.9999960E-02 0.000000 + Av 2018 1 22 17 0 0.4334092 0.000000 8.6693047E-04 3.4465936E-03 1.7013081E-04 0.000000 0.000000 + Av 2018 1 22 18 0 0.4356307 0.000000 8.5414184E-04 3.4449070E-03 0.000000 0.000000 0.000000 + Av 2018 1 22 19 0 0.4317472 0.000000 8.4154191E-04 3.4432062E-03 0.000000 0.000000 0.000000 + Av 2018 1 22 20 0 0.4311659 0.000000 8.2912785E-04 3.4414912E-03 0.000000 0.000000 0.000000 + Av 2018 1 22 21 0 0.4294595 0.000000 8.1689691E-04 3.4397624E-03 0.000000 0.000000 0.000000 + Av 2018 1 22 22 0 0.4281672 0.000000 8.0484641E-04 3.4380197E-03 0.000000 0.000000 0.000000 + Av 2018 1 22 23 0 0.4267534 0.000000 7.9297367E-04 3.4362634E-03 0.000000 0.000000 0.000000 + Av 2018 1 22 24 0 0.4254040 0.000000 7.8127609E-04 3.4344944E-03 0.000000 0.000000 0.000000 + Av 2018 1 23 1 0 0.4190545 0.000000 7.6975103E-04 3.3591297E-03 0.000000 0.000000 0.000000 + Av 2018 1 23 2 0 0.4144740 0.000000 7.5839605E-04 3.3574649E-03 0.000000 0.000000 0.000000 + Av 2018 1 23 3 0 0.4143080 0.000000 7.4720854E-04 3.3557874E-03 0.000000 0.000000 0.000000 + Av 2018 1 23 4 0 0.4126279 0.000000 7.3618605E-04 3.3540970E-03 0.000000 0.000000 0.000000 + Av 2018 1 23 5 0 0.5013758 1.4499389E-04 7.3235040E-04 3.3659427E-03 1.0761120E-02 3.9999921E-02 0.000000 + Av 2018 1 23 6 0 0.6102266 1.2238249E-04 7.3446875E-04 3.3908139E-03 1.8502656E-02 1.9999960E-02 0.000000 + Av 2018 1 23 7 0 0.6340044 1.2249278E-04 7.3547772E-04 3.4147375E-03 1.9847091E-02 1.9999960E-02 0.000000 Av 2018 1 23 8 0 0.9233590 1.2994310E-04 8.0341846E-04 3.2546434E-03 6.1644554E-02 6.9999859E-02 9.1685937E-04 Av 2018 1 23 9 0 1.051203 5.0787593E-04 9.0358389E-04 2.9560870E-03 5.1374204E-02 4.9999900E-02 2.5277573E-03 Av 2018 1 23 10 0 1.156359 4.0957460E-04 1.0517162E-03 2.7600122E-03 8.2495540E-02 8.9999817E-02 3.6802255E-03 @@ -568,21 +568,21 @@ Av 2018 1 23 14 0 0.7169392 2.2872040E-05 1.2516583E-03 2.9110583E-03 1.4265044E-02 9.9999802E-03 3.6802255E-03 Av 2018 1 23 15 0 0.4907013 1.7538141E-05 1.2351616E-03 3.1742449E-03 8.1672389E-03 9.9999802E-03 2.5277573E-03 Av 2018 1 23 16 0 0.5256723 0.000000 1.2177931E-03 3.5323766E-03 2.4125669E-03 0.000000 9.1685937E-04 - Av 2018 1 23 17 0 0.5285907 1.8350025E-05 1.2007250E-03 3.7377230E-03 5.0201779E-03 9.9999802E-03 0.000000 - Av 2018 1 23 18 0 0.6477181 1.3689620E-04 1.1905913E-03 3.7549373E-03 1.6269792E-02 1.9999960E-02 0.000000 - Av 2018 1 23 19 0 0.8872443 4.9752318E-05 1.2214998E-03 3.7942743E-03 4.4162877E-02 4.9999900E-02 0.000000 - Av 2018 1 23 20 0 0.8054104 4.0520703E-05 1.2470736E-03 3.8286517E-03 1.6300917E-02 9.9999802E-03 0.000000 - Av 2018 1 23 21 0 0.6065118 3.4630466E-05 1.2323448E-03 3.8421613E-03 1.1368449E-02 9.9999802E-03 0.000000 - Av 2018 1 23 22 0 0.9285449 9.4063165E-05 1.2767497E-03 3.8780160E-03 5.0977744E-02 5.9999879E-02 0.000000 - Av 2018 1 23 23 0 0.9358042 1.5781526E-04 1.3262461E-03 3.9222213E-03 2.5488771E-02 1.9999960E-02 0.000000 - Av 2018 1 23 24 0 0.6699251 3.5284083E-05 1.3161078E-03 3.9427029E-03 1.3045406E-02 9.9999802E-03 0.000000 - Av 2018 1 24 1 0 1.685878 2.6766097E-03 1.6072735E-03 3.8942136E-03 0.1305144 0.1499997 0.000000 - Av 2018 1 24 2 0 1.993753 2.2600247E-03 2.0018797E-03 3.9608874E-03 7.7682868E-02 6.9999859E-02 0.000000 - Av 2018 1 24 3 0 1.152510 3.2202493E-05 2.1153104E-03 4.0185358E-03 4.5014352E-02 3.9999921E-02 0.000000 - Av 2018 1 24 4 0 1.498041 1.1716470E-03 2.3189634E-03 4.0768306E-03 9.2482239E-02 9.9999800E-02 0.000000 - Av 2018 1 24 5 0 1.674074 1.7464395E-03 2.5722957E-03 4.1434024E-03 6.4412497E-02 5.9999879E-02 0.000000 - Av 2018 1 24 6 0 1.221787 3.6714275E-05 2.6552405E-03 4.2005526E-03 4.3387607E-02 3.9999921E-02 0.000000 - Av 2018 1 24 7 0 1.323707 5.0096656E-04 2.7617579E-03 4.2591309E-03 6.6045724E-02 6.9999859E-02 0.000000 + Av 2018 1 23 17 0 0.5285907 1.8350025E-05 1.2007250E-03 3.7377230E-03 5.0201779E-03 9.9999802E-03 0.000000 + Av 2018 1 23 18 0 0.6477181 1.3689620E-04 1.1905913E-03 3.7549373E-03 1.6269792E-02 1.9999960E-02 0.000000 + Av 2018 1 23 19 0 0.8872443 4.9752318E-05 1.2214998E-03 3.7942743E-03 4.4162877E-02 4.9999900E-02 0.000000 + Av 2018 1 23 20 0 0.8054104 4.0520703E-05 1.2470736E-03 3.8286517E-03 1.6300917E-02 9.9999802E-03 0.000000 + Av 2018 1 23 21 0 0.6065118 3.4630466E-05 1.2323448E-03 3.8421613E-03 1.1368449E-02 9.9999802E-03 0.000000 + Av 2018 1 23 22 0 0.9285449 9.4063165E-05 1.2767497E-03 3.8780160E-03 5.0977744E-02 5.9999879E-02 0.000000 + Av 2018 1 23 23 0 0.9358042 1.5781526E-04 1.3262461E-03 3.9222213E-03 2.5488771E-02 1.9999960E-02 0.000000 + Av 2018 1 23 24 0 0.6699251 3.5284083E-05 1.3161078E-03 3.9427029E-03 1.3045406E-02 9.9999802E-03 0.000000 + Av 2018 1 24 1 0 1.685878 2.6766097E-03 1.6072735E-03 3.8942136E-03 0.1305144 0.1499997 0.000000 + Av 2018 1 24 2 0 1.993753 2.2600247E-03 2.0018797E-03 3.9608874E-03 7.7682868E-02 6.9999859E-02 0.000000 + Av 2018 1 24 3 0 1.152510 3.2202493E-05 2.1153104E-03 4.0185358E-03 4.5014352E-02 3.9999921E-02 0.000000 + Av 2018 1 24 4 0 1.498041 1.1716470E-03 2.3189634E-03 4.0768306E-03 9.2482239E-02 9.9999800E-02 0.000000 + Av 2018 1 24 5 0 1.674074 1.7464395E-03 2.5722957E-03 4.1434024E-03 6.4412497E-02 5.9999879E-02 0.000000 + Av 2018 1 24 6 0 1.221787 3.6714275E-05 2.6552405E-03 4.2005526E-03 4.3387607E-02 3.9999921E-02 0.000000 + Av 2018 1 24 7 0 1.323707 5.0096656E-04 2.7617579E-03 4.2591309E-03 6.6045724E-02 6.9999859E-02 0.000000 Av 2018 1 24 8 0 1.680340 1.8841212E-03 2.9822306E-03 4.1158935E-03 7.8538358E-02 7.9999842E-02 9.6541626E-04 Av 2018 1 24 9 0 1.323195 3.0496402E-04 3.1101860E-03 3.8106719E-03 3.5824727E-02 2.9999940E-02 2.6084874E-03 Av 2018 1 24 10 0 0.8245123 3.0785013E-05 3.0872547E-03 3.5826182E-03 1.2638091E-02 9.9999802E-03 3.7688504E-03 @@ -592,21 +592,21 @@ Av 2018 1 24 14 0 0.7236009 5.7725094E-05 2.9459947E-03 3.6343439E-03 6.1857025E-03 1.9999960E-02 3.7688504E-03 Av 2018 1 24 15 0 0.9221233 2.9766255E-05 2.9367022E-03 3.9222268E-03 2.9843235E-02 3.9999921E-02 2.6084874E-03 Av 2018 1 24 16 0 1.002054 1.5877967E-04 2.9324256E-03 4.3223044E-03 2.0153586E-02 1.9999960E-02 9.6541626E-04 - Av 2018 1 24 17 0 0.8340920 0.000000 2.8970109E-03 4.5483983E-03 4.6691955E-03 0.000000 0.000000 - Av 2018 1 24 18 0 0.7612574 0.000000 2.8542753E-03 4.5474907E-03 1.5856423E-03 0.000000 0.000000 - Av 2018 1 24 19 0 1.093861 1.4406582E-04 2.8913796E-03 4.5791366E-03 4.6545327E-02 5.9999879E-02 0.000000 - Av 2018 1 24 20 0 1.039660 9.6840552E-07 2.9275930E-03 4.6135848E-03 9.2258258E-03 0.000000 0.000000 - Av 2018 1 24 21 0 0.7410390 0.000000 2.8844543E-03 4.6138465E-03 2.6406674E-03 0.000000 0.000000 - Av 2018 1 24 22 0 0.7832025 0.000000 2.8419041E-03 4.6127718E-03 1.0240019E-03 0.000000 0.000000 - Av 2018 1 24 23 0 0.7480010 0.000000 2.7999815E-03 4.6116398E-03 4.8425328E-04 0.000000 0.000000 - Av 2018 1 24 24 0 0.7492546 0.000000 2.7586774E-03 4.6104514E-03 2.6250549E-04 0.000000 0.000000 - Av 2018 1 25 1 0 0.7337750 0.000000 2.7179825E-03 4.5049558E-03 1.5697173E-04 0.000000 0.000000 - Av 2018 1 25 2 0 0.7253282 0.000000 2.6778879E-03 4.5038550E-03 1.0099000E-04 0.000000 0.000000 - Av 2018 1 25 3 0 0.7221044 0.000000 2.6383849E-03 4.5027025E-03 6.8732028E-05 0.000000 0.000000 - Av 2018 1 25 4 0 0.7173829 0.000000 2.5994645E-03 4.5014988E-03 4.8898917E-05 0.000000 0.000000 - Av 2018 1 25 5 0 0.7133858 0.000000 2.5611185E-03 4.5002447E-03 3.6054214E-05 0.000000 0.000000 - Av 2018 1 25 6 0 0.9835899 7.3717696E-05 2.5769994E-03 4.5286100E-03 3.7496213E-02 4.9999900E-02 0.000000 - Av 2018 1 25 7 0 1.778064 2.2057008E-03 2.8455995E-03 4.5940047E-03 0.1010569 0.1099998 0.000000 + Av 2018 1 24 17 0 0.8340920 0.000000 2.8970109E-03 4.5483983E-03 4.6691955E-03 0.000000 0.000000 + Av 2018 1 24 18 0 0.7612574 0.000000 2.8542753E-03 4.5474907E-03 1.5856423E-03 0.000000 0.000000 + Av 2018 1 24 19 0 1.093861 1.4406582E-04 2.8913796E-03 4.5791366E-03 4.6545327E-02 5.9999879E-02 0.000000 + Av 2018 1 24 20 0 1.039660 9.6840552E-07 2.9275930E-03 4.6135848E-03 9.2258258E-03 0.000000 0.000000 + Av 2018 1 24 21 0 0.7410390 0.000000 2.8844543E-03 4.6138465E-03 2.6406674E-03 0.000000 0.000000 + Av 2018 1 24 22 0 0.7832025 0.000000 2.8419041E-03 4.6127718E-03 1.0240019E-03 0.000000 0.000000 + Av 2018 1 24 23 0 0.7480010 0.000000 2.7999815E-03 4.6116398E-03 4.8425328E-04 0.000000 0.000000 + Av 2018 1 24 24 0 0.7492546 0.000000 2.7586774E-03 4.6104514E-03 2.6250549E-04 0.000000 0.000000 + Av 2018 1 25 1 0 0.7337750 0.000000 2.7179825E-03 4.5049558E-03 1.5697173E-04 0.000000 0.000000 + Av 2018 1 25 2 0 0.7253282 0.000000 2.6778879E-03 4.5038550E-03 1.0099000E-04 0.000000 0.000000 + Av 2018 1 25 3 0 0.7221044 0.000000 2.6383849E-03 4.5027025E-03 6.8732028E-05 0.000000 0.000000 + Av 2018 1 25 4 0 0.7173829 0.000000 2.5994645E-03 4.5014988E-03 4.8898917E-05 0.000000 0.000000 + Av 2018 1 25 5 0 0.7133858 0.000000 2.5611185E-03 4.5002447E-03 3.6054214E-05 0.000000 0.000000 + Av 2018 1 25 6 0 0.9835899 7.3717696E-05 2.5769994E-03 4.5286100E-03 3.7496213E-02 4.9999900E-02 0.000000 + Av 2018 1 25 7 0 1.778064 2.2057008E-03 2.8455995E-03 4.5940047E-03 0.1010569 0.1099998 0.000000 Av 2018 1 25 8 0 1.576632 5.1609951E-04 3.0813231E-03 4.4630305E-03 3.9632142E-02 2.9999940E-02 8.6400204E-04 Av 2018 1 25 9 0 0.8735477 4.0669693E-05 3.0635055E-03 4.1799014E-03 1.4553867E-02 9.9999802E-03 2.2888938E-03 Av 2018 1 25 10 0 0.7908225 0.000000 3.0203336E-03 3.9682817E-03 3.6892868E-03 0.000000 3.2817847E-03 @@ -616,21 +616,21 @@ Av 2018 1 25 14 0 0.7104824 2.5242418E-05 2.8472936E-03 3.9705671E-03 2.5077923E-03 9.9999802E-03 3.2817847E-03 Av 2018 1 25 15 0 0.9200668 3.0153622E-05 2.8383201E-03 4.2190291E-03 2.8768750E-02 3.9999921E-02 2.2888938E-03 Av 2018 1 25 16 0 1.343855 4.4021718E-04 2.9358200E-03 4.5923511E-03 6.2221106E-02 6.9999859E-02 8.6400204E-04 - Av 2018 1 25 17 0 1.116656 1.3664292E-06 2.9997991E-03 4.8193228E-03 1.0701873E-02 0.000000 0.000000 - Av 2018 1 25 18 0 0.9231930 1.3656299E-05 2.9754960E-03 4.8404820E-03 2.5046073E-02 2.9999940E-02 0.000000 - Av 2018 1 25 19 0 1.081319 1.9187733E-04 2.9609932E-03 4.8766630E-03 2.1295432E-02 1.9999960E-02 0.000000 - Av 2018 1 25 20 0 0.8831620 0.000000 2.9268751E-03 4.8914677E-03 4.8579071E-03 0.000000 0.000000 - Av 2018 1 25 21 0 0.7964040 0.000000 2.8836993E-03 4.8898295E-03 1.6340031E-03 0.000000 0.000000 - Av 2018 1 25 22 0 0.7922910 0.000000 2.8411602E-03 4.8881359E-03 7.0314412E-04 0.000000 0.000000 - Av 2018 1 25 23 0 0.8889916 1.8149690E-04 2.8083439E-03 4.9017509E-03 1.3916790E-02 1.9999960E-02 0.000000 - Av 2018 1 25 24 0 0.8758044 0.000000 2.7759667E-03 4.9161143E-03 4.0831249E-03 0.000000 0.000000 - Av 2018 1 26 1 0 0.7676672 0.000000 2.7350166E-03 4.8018713E-03 1.4318272E-03 0.000000 0.000000 - Av 2018 1 26 2 0 0.7684255 0.000000 2.6946708E-03 4.8001609E-03 6.3324417E-04 0.000000 0.000000 - Av 2018 1 26 3 0 0.7549813 0.000000 2.6549203E-03 4.7984016E-03 3.2757156E-04 0.000000 0.000000 - Av 2018 1 26 4 0 0.7968520 4.1558375E-05 2.6178402E-03 4.8045423E-03 6.1420328E-03 9.9999802E-03 0.000000 - Av 2018 1 26 5 0 0.8452662 4.4190772E-05 2.5835137E-03 4.8190956E-03 9.3715712E-03 9.9999802E-03 0.000000 - Av 2018 1 26 6 0 0.8517351 4.4010241E-05 2.5498169E-03 4.8338613E-03 9.9171875E-03 9.9999802E-03 0.000000 - Av 2018 1 26 7 0 0.7966056 0.000000 2.5144008E-03 4.8403637E-03 2.7986150E-03 0.000000 0.000000 + Av 2018 1 25 17 0 1.116656 1.3664292E-06 2.9997991E-03 4.8193228E-03 1.0701873E-02 0.000000 0.000000 + Av 2018 1 25 18 0 0.9231930 1.3656299E-05 2.9754960E-03 4.8404820E-03 2.5046073E-02 2.9999940E-02 0.000000 + Av 2018 1 25 19 0 1.081319 1.9187733E-04 2.9609932E-03 4.8766630E-03 2.1295432E-02 1.9999960E-02 0.000000 + Av 2018 1 25 20 0 0.8831620 0.000000 2.9268751E-03 4.8914677E-03 4.8579071E-03 0.000000 0.000000 + Av 2018 1 25 21 0 0.7964040 0.000000 2.8836993E-03 4.8898295E-03 1.6340031E-03 0.000000 0.000000 + Av 2018 1 25 22 0 0.7922910 0.000000 2.8411602E-03 4.8881359E-03 7.0314412E-04 0.000000 0.000000 + Av 2018 1 25 23 0 0.8889916 1.8149690E-04 2.8083439E-03 4.9017509E-03 1.3916790E-02 1.9999960E-02 0.000000 + Av 2018 1 25 24 0 0.8758044 0.000000 2.7759667E-03 4.9161143E-03 4.0831249E-03 0.000000 0.000000 + Av 2018 1 26 1 0 0.7676672 0.000000 2.7350166E-03 4.8018713E-03 1.4318272E-03 0.000000 0.000000 + Av 2018 1 26 2 0 0.7684255 0.000000 2.6946708E-03 4.8001609E-03 6.3324417E-04 0.000000 0.000000 + Av 2018 1 26 3 0 0.7549813 0.000000 2.6549203E-03 4.7984016E-03 3.2757156E-04 0.000000 0.000000 + Av 2018 1 26 4 0 0.7968520 4.1558375E-05 2.6178402E-03 4.8045423E-03 6.1420328E-03 9.9999802E-03 0.000000 + Av 2018 1 26 5 0 0.8452662 4.4190772E-05 2.5835137E-03 4.8190956E-03 9.3715712E-03 9.9999802E-03 0.000000 + Av 2018 1 26 6 0 0.8517351 4.4010241E-05 2.5498169E-03 4.8338613E-03 9.9171875E-03 9.9999802E-03 0.000000 + Av 2018 1 26 7 0 0.7966056 0.000000 2.5144008E-03 4.8403637E-03 2.7986150E-03 0.000000 0.000000 Av 2018 1 26 8 0 0.7328025 0.000000 2.4773094E-03 4.6453597E-03 1.0711489E-03 0.000000 8.7701750E-04 Av 2018 1 26 9 0 0.6996149 0.000000 2.4407653E-03 4.3348102E-03 5.0211878E-04 0.000000 2.2790446E-03 Av 2018 1 26 10 0 0.6647271 0.000000 2.4047601E-03 4.1206898E-03 2.7051152E-04 0.000000 3.2425632E-03 @@ -640,21 +640,21 @@ Av 2018 1 26 14 0 0.6437029 0.000000 2.2659730E-03 4.1116951E-03 4.9750539E-05 0.000000 3.2425632E-03 Av 2018 1 26 15 0 0.6561582 0.000000 2.2325462E-03 4.3213223E-03 3.6618545E-05 9.9999802E-03 2.2790446E-03 Av 2018 1 26 16 0 0.7708062 5.2405585E-06 2.2108748E-03 4.6446598E-03 1.1893631E-02 2.9999940E-02 8.7701750E-04 - Av 2018 1 26 17 0 0.9021636 1.6007348E-04 2.1975106E-03 4.8683179E-03 1.8122045E-02 1.9999960E-02 0.000000 - Av 2018 1 26 18 0 0.9347689 1.6749691E-04 2.1815174E-03 4.8969276E-03 1.9706212E-02 1.9999960E-02 0.000000 - Av 2018 1 26 19 0 0.8170191 0.000000 2.1577154E-03 4.9104951E-03 4.6272329E-03 0.000000 0.000000 - Av 2018 1 26 20 0 0.7162018 0.000000 2.1258856E-03 4.9078604E-03 1.5748150E-03 0.000000 0.000000 - Av 2018 1 26 21 0 0.8301650 1.6567786E-04 2.1028593E-03 4.9205488E-03 1.4490287E-02 1.9999960E-02 0.000000 - Av 2018 1 26 22 0 1.460168 7.7936955E-04 2.2813901E-03 4.9703578E-03 8.7115109E-02 9.9999800E-02 0.000000 - Av 2018 1 26 23 0 1.844571 2.3673368E-03 2.5672717E-03 5.0423238E-03 7.2845608E-02 6.9999859E-02 0.000000 - Av 2018 1 26 24 0 1.677805 4.0872695E-04 2.7940471E-03 5.1154094E-03 7.9121292E-02 7.9999842E-02 0.000000 - Av 2018 1 27 1 0 1.459761 8.2852348E-04 2.9399060E-03 5.0616125E-03 4.5183945E-02 3.9999921E-02 0.000000 - Av 2018 1 27 2 0 1.186927 1.5079606E-05 2.9594612E-03 5.1116166E-03 3.2355618E-02 2.9999940E-02 0.000000 - Av 2018 1 27 3 0 1.014727 5.0717623E-05 2.9395602E-03 5.1417770E-03 1.4152899E-02 9.9999802E-03 0.000000 - Av 2018 1 27 4 0 0.9251471 4.6644596E-05 2.9011085E-03 5.1575801E-03 1.0928930E-02 9.9999802E-03 0.000000 - Av 2018 1 27 5 0 0.9260039 4.6454861E-05 2.8630109E-03 5.1729931E-03 1.0218748E-02 9.9999802E-03 0.000000 - Av 2018 1 27 6 0 0.8617823 0.000000 2.8231158E-03 5.1797424E-03 2.8476417E-03 0.000000 0.000000 - Av 2018 1 27 7 0 0.8115897 0.000000 2.7814705E-03 5.1774960E-03 1.0856388E-03 0.000000 0.000000 + Av 2018 1 26 17 0 0.9021636 1.6007348E-04 2.1975106E-03 4.8683179E-03 1.8122045E-02 1.9999960E-02 0.000000 + Av 2018 1 26 18 0 0.9347689 1.6749691E-04 2.1815174E-03 4.8969276E-03 1.9706212E-02 1.9999960E-02 0.000000 + Av 2018 1 26 19 0 0.8170191 0.000000 2.1577154E-03 4.9104951E-03 4.6272329E-03 0.000000 0.000000 + Av 2018 1 26 20 0 0.7162018 0.000000 2.1258856E-03 4.9078604E-03 1.5748150E-03 0.000000 0.000000 + Av 2018 1 26 21 0 0.8301650 1.6567786E-04 2.1028593E-03 4.9205488E-03 1.4490287E-02 1.9999960E-02 0.000000 + Av 2018 1 26 22 0 1.460168 7.7936955E-04 2.2813901E-03 4.9703578E-03 8.7115109E-02 9.9999800E-02 0.000000 + Av 2018 1 26 23 0 1.844571 2.3673368E-03 2.5672717E-03 5.0423238E-03 7.2845608E-02 6.9999859E-02 0.000000 + Av 2018 1 26 24 0 1.677805 4.0872695E-04 2.7940471E-03 5.1154094E-03 7.9121292E-02 7.9999842E-02 0.000000 + Av 2018 1 27 1 0 1.459761 8.2852348E-04 2.9399060E-03 5.0616125E-03 4.5183945E-02 3.9999921E-02 0.000000 + Av 2018 1 27 2 0 1.186927 1.5079606E-05 2.9594612E-03 5.1116166E-03 3.2355618E-02 2.9999940E-02 0.000000 + Av 2018 1 27 3 0 1.014727 5.0717623E-05 2.9395602E-03 5.1417770E-03 1.4152899E-02 9.9999802E-03 0.000000 + Av 2018 1 27 4 0 0.9251471 4.6644596E-05 2.9011085E-03 5.1575801E-03 1.0928930E-02 9.9999802E-03 0.000000 + Av 2018 1 27 5 0 0.9260039 4.6454861E-05 2.8630109E-03 5.1729931E-03 1.0218748E-02 9.9999802E-03 0.000000 + Av 2018 1 27 6 0 0.8617823 0.000000 2.8231158E-03 5.1797424E-03 2.8476417E-03 0.000000 0.000000 + Av 2018 1 27 7 0 0.8115897 0.000000 2.7814705E-03 5.1774960E-03 1.0856388E-03 0.000000 0.000000 Av 2018 1 27 8 0 0.7917055 0.000000 2.7404395E-03 4.9498319E-03 5.0757197E-04 0.000000 1.0243985E-03 Av 2018 1 27 9 0 0.7477059 0.000000 2.7000136E-03 4.5981184E-03 2.7294323E-04 0.000000 2.6124311E-03 Av 2018 1 27 10 0 0.7145879 0.000000 2.6601842E-03 4.3590399E-03 1.6225487E-04 0.000000 3.6882644E-03 @@ -664,21 +664,21 @@ Av 2018 1 27 14 0 0.6917187 0.000000 2.5066561E-03 4.3489942E-03 3.6787911E-05 0.000000 3.6882644E-03 Av 2018 1 27 15 0 0.7048386 0.000000 2.4696789E-03 4.5830547E-03 1.8193795E-04 0.000000 2.6124311E-03 Av 2018 1 27 16 0 0.7349716 0.000000 2.4332474E-03 4.9297563E-03 0.000000 0.000000 1.0243985E-03 - Av 2018 1 27 17 0 0.7574947 0.000000 2.3973533E-03 5.1524159E-03 0.000000 0.000000 0.000000 - Av 2018 1 27 18 0 0.7637077 0.000000 2.3619884E-03 5.1496672E-03 0.000000 1.9999960E-02 0.000000 - Av 2018 1 27 19 0 0.8326211 1.7313428E-04 2.3359137E-03 5.1627615E-03 8.6882450E-03 1.9999960E-02 0.000000 - Av 2018 1 27 20 0 0.9888178 1.3305474E-05 2.3299996E-03 5.1989872E-03 2.5861122E-02 2.9999940E-02 0.000000 - Av 2018 1 27 21 0 1.079413 9.1126254E-05 2.3357184E-03 5.2422434E-03 2.9611114E-02 2.9999940E-02 0.000000 - Av 2018 1 27 22 0 1.035198 1.7991713E-04 2.3306594E-03 5.2794758E-03 2.1754820E-02 1.9999960E-02 0.000000 - Av 2018 1 27 23 0 0.9938840 1.7418862E-04 2.3142032E-03 5.3097825E-03 2.0332620E-02 1.9999960E-02 0.000000 - Av 2018 1 27 24 0 0.8758327 0.000000 2.2888631E-03 5.3237327E-03 4.6990020E-03 0.000000 0.000000 - Av 2018 1 28 1 0 0.7617941 0.000000 2.2550987E-03 5.1972419E-03 1.5933164E-03 0.000000 0.000000 - Av 2018 1 28 2 0 0.7608514 0.000000 2.2218325E-03 5.1942645E-03 6.8925787E-04 0.000000 0.000000 - Av 2018 1 28 3 0 0.7478451 0.000000 2.1890569E-03 5.1912507E-03 3.5114115E-04 0.000000 0.000000 - Av 2018 1 28 4 0 0.7442152 0.000000 2.1567650E-03 5.1882006E-03 2.0071164E-04 0.000000 0.000000 - Av 2018 1 28 5 0 0.7391671 0.000000 2.1249491E-03 5.1851165E-03 1.2482204E-04 0.000000 0.000000 - Av 2018 1 28 6 0 0.7354078 0.000000 2.0936029E-03 5.1819971E-03 8.2748295E-05 0.000000 0.000000 - Av 2018 1 28 7 0 0.7316043 0.000000 2.0627191E-03 5.1788446E-03 5.7655885E-05 0.000000 0.000000 + Av 2018 1 27 17 0 0.7574947 0.000000 2.3973533E-03 5.1524159E-03 0.000000 0.000000 0.000000 + Av 2018 1 27 18 0 0.7637077 0.000000 2.3619884E-03 5.1496672E-03 0.000000 1.9999960E-02 0.000000 + Av 2018 1 27 19 0 0.8326211 1.7313428E-04 2.3359137E-03 5.1627615E-03 8.6882450E-03 1.9999960E-02 0.000000 + Av 2018 1 27 20 0 0.9888178 1.3305474E-05 2.3299996E-03 5.1989872E-03 2.5861122E-02 2.9999940E-02 0.000000 + Av 2018 1 27 21 0 1.079413 9.1126254E-05 2.3357184E-03 5.2422434E-03 2.9611114E-02 2.9999940E-02 0.000000 + Av 2018 1 27 22 0 1.035198 1.7991713E-04 2.3306594E-03 5.2794758E-03 2.1754820E-02 1.9999960E-02 0.000000 + Av 2018 1 27 23 0 0.9938840 1.7418862E-04 2.3142032E-03 5.3097825E-03 2.0332620E-02 1.9999960E-02 0.000000 + Av 2018 1 27 24 0 0.8758327 0.000000 2.2888631E-03 5.3237327E-03 4.6990020E-03 0.000000 0.000000 + Av 2018 1 28 1 0 0.7617941 0.000000 2.2550987E-03 5.1972419E-03 1.5933164E-03 0.000000 0.000000 + Av 2018 1 28 2 0 0.7608514 0.000000 2.2218325E-03 5.1942645E-03 6.8925787E-04 0.000000 0.000000 + Av 2018 1 28 3 0 0.7478451 0.000000 2.1890569E-03 5.1912507E-03 3.5114115E-04 0.000000 0.000000 + Av 2018 1 28 4 0 0.7442152 0.000000 2.1567650E-03 5.1882006E-03 2.0071164E-04 0.000000 0.000000 + Av 2018 1 28 5 0 0.7391671 0.000000 2.1249491E-03 5.1851165E-03 1.2482204E-04 0.000000 0.000000 + Av 2018 1 28 6 0 0.7354078 0.000000 2.0936029E-03 5.1819971E-03 8.2748295E-05 0.000000 0.000000 + Av 2018 1 28 7 0 0.7316043 0.000000 2.0627191E-03 5.1788446E-03 5.7655885E-05 0.000000 0.000000 Av 2018 1 28 8 0 0.7062654 0.000000 2.0322907E-03 4.8588915E-03 4.1799070E-05 0.000000 1.4398530E-03 Av 2018 1 28 9 0 0.6569508 0.000000 2.0023112E-03 4.3793088E-03 1.9642356E-04 0.000000 3.6051469E-03 Av 2018 1 28 10 0 0.6147618 0.000000 1.9727738E-03 4.0580784E-03 0.000000 0.000000 5.0505144E-03 @@ -688,21 +688,21 @@ Av 2018 1 28 14 0 0.5948862 0.000000 1.8589181E-03 4.0447745E-03 0.000000 0.000000 5.0505144E-03 Av 2018 1 28 15 0 0.6134736 0.000000 1.8314961E-03 4.3593557E-03 0.000000 0.000000 3.6051469E-03 Av 2018 1 28 16 0 0.6574109 0.000000 1.8044787E-03 4.8322934E-03 0.000000 0.000000 1.4398530E-03 - Av 2018 1 28 17 0 0.6925067 0.000000 1.7778599E-03 5.1456057E-03 0.000000 0.000000 0.000000 - Av 2018 1 28 18 0 0.6980104 0.000000 1.7516337E-03 5.1421234E-03 0.000000 0.000000 0.000000 - Av 2018 1 28 19 0 0.6920841 0.000000 1.7257944E-03 5.1386142E-03 0.000000 0.000000 0.000000 - Av 2018 1 28 20 0 0.6901808 0.000000 1.7003362E-03 5.1350789E-03 0.000000 0.000000 0.000000 - Av 2018 1 28 21 0 0.6869265 0.000000 1.6752536E-03 5.1315175E-03 0.000000 0.000000 0.000000 - Av 2018 1 28 22 0 0.6841891 0.000000 1.6505410E-03 5.1279319E-03 0.000000 0.000000 0.000000 - Av 2018 1 28 23 0 0.6813185 0.000000 1.6261928E-03 5.1243212E-03 0.000000 0.000000 0.000000 - Av 2018 1 28 24 0 0.6785401 0.000000 1.6022039E-03 5.1206858E-03 0.000000 0.000000 0.000000 - Av 2018 1 29 1 0 0.6677581 0.000000 1.5785689E-03 4.9990364E-03 0.000000 0.000000 0.000000 - Av 2018 1 29 2 0 0.6598213 0.000000 1.5552825E-03 4.9956157E-03 0.000000 0.000000 0.000000 - Av 2018 1 29 3 0 0.6589736 0.000000 1.5323397E-03 4.9921726E-03 0.000000 0.000000 0.000000 - Av 2018 1 29 4 0 0.6557043 0.000000 1.5097354E-03 4.9887067E-03 0.000000 0.000000 0.000000 - Av 2018 1 29 5 0 0.6533195 0.000000 1.4874644E-03 4.9852189E-03 0.000000 0.000000 0.000000 - Av 2018 1 29 6 0 0.6506692 0.000000 1.4655220E-03 4.9817092E-03 0.000000 0.000000 0.000000 - Av 2018 1 29 7 0 0.6481526 0.000000 1.4439032E-03 4.9781781E-03 0.000000 0.000000 0.000000 + Av 2018 1 28 17 0 0.6925067 0.000000 1.7778599E-03 5.1456057E-03 0.000000 0.000000 0.000000 + Av 2018 1 28 18 0 0.6980104 0.000000 1.7516337E-03 5.1421234E-03 0.000000 0.000000 0.000000 + Av 2018 1 28 19 0 0.6920841 0.000000 1.7257944E-03 5.1386142E-03 0.000000 0.000000 0.000000 + Av 2018 1 28 20 0 0.6901808 0.000000 1.7003362E-03 5.1350789E-03 0.000000 0.000000 0.000000 + Av 2018 1 28 21 0 0.6869265 0.000000 1.6752536E-03 5.1315175E-03 0.000000 0.000000 0.000000 + Av 2018 1 28 22 0 0.6841891 0.000000 1.6505410E-03 5.1279319E-03 0.000000 0.000000 0.000000 + Av 2018 1 28 23 0 0.6813185 0.000000 1.6261928E-03 5.1243212E-03 0.000000 0.000000 0.000000 + Av 2018 1 28 24 0 0.6785401 0.000000 1.6022039E-03 5.1206858E-03 0.000000 0.000000 0.000000 + Av 2018 1 29 1 0 0.6677581 0.000000 1.5785689E-03 4.9990364E-03 0.000000 0.000000 0.000000 + Av 2018 1 29 2 0 0.6598213 0.000000 1.5552825E-03 4.9956157E-03 0.000000 0.000000 0.000000 + Av 2018 1 29 3 0 0.6589736 0.000000 1.5323397E-03 4.9921726E-03 0.000000 0.000000 0.000000 + Av 2018 1 29 4 0 0.6557043 0.000000 1.5097354E-03 4.9887067E-03 0.000000 0.000000 0.000000 + Av 2018 1 29 5 0 0.6533195 0.000000 1.4874644E-03 4.9852189E-03 0.000000 0.000000 0.000000 + Av 2018 1 29 6 0 0.6506692 0.000000 1.4655220E-03 4.9817092E-03 0.000000 0.000000 0.000000 + Av 2018 1 29 7 0 0.6481526 0.000000 1.4439032E-03 4.9781781E-03 0.000000 0.000000 0.000000 Av 2018 1 29 8 0 0.6262124 0.000000 1.4226035E-03 4.6920991E-03 0.000000 0.000000 1.2842142E-03 Av 2018 1 29 9 0 0.5827451 0.000000 1.4016178E-03 4.2762039E-03 0.000000 0.000000 3.1584054E-03 Av 2018 1 29 10 0 0.5476259 0.000000 1.3809417E-03 4.0015527E-03 0.000000 0.000000 4.3904893E-03 @@ -712,21 +712,21 @@ Av 2018 1 29 14 0 0.5350683 0.000000 1.3012427E-03 3.9869868E-03 0.000000 9.9999802E-03 4.3904893E-03 Av 2018 1 29 15 0 0.5530595 5.3888118E-07 1.2820747E-03 4.2554121E-03 0.000000 1.9999960E-02 3.1584054E-03 Av 2018 1 29 16 0 1.283491 1.1765050E-03 1.4973371E-03 4.7011902E-03 8.4848255E-02 0.1199998 1.2842142E-03 - Av 2018 1 29 17 0 1.883273 2.8179015E-03 1.8516462E-03 5.0550280E-03 8.0607526E-02 7.9999842E-02 0.000000 - Av 2018 1 29 18 0 1.823492 8.3391176E-04 2.1768038E-03 5.1270761E-03 9.7747229E-02 9.9999800E-02 0.000000 - Av 2018 1 29 19 0 1.219048 5.4369152E-06 2.3537057E-03 5.1662694E-03 1.4149946E-02 0.000000 0.000000 - Av 2018 1 29 20 0 0.7167690 0.000000 2.3192610E-03 5.1668012E-03 3.6144583E-03 0.000000 0.000000 - Av 2018 1 29 21 0 0.7989510 0.000000 2.2850481E-03 5.1640277E-03 1.3043988E-03 0.000000 0.000000 - Av 2018 1 29 22 0 0.7448176 0.000000 2.2513401E-03 5.1612128E-03 5.8794441E-04 0.000000 0.000000 - Av 2018 1 29 23 0 0.8613567 1.7877120E-04 2.2272530E-03 5.1741465E-03 1.3823263E-02 1.9999960E-02 0.000000 - Av 2018 1 29 24 0 0.8430924 0.000000 2.2034764E-03 5.1881876E-03 4.0726690E-03 0.000000 0.000000 - Av 2018 1 30 1 0 0.7381168 0.000000 2.1709716E-03 5.0653322E-03 1.4290296E-03 0.000000 0.000000 - Av 2018 1 30 2 0 0.7383235 0.000000 2.1389464E-03 5.0625810E-03 6.3226046E-04 0.000000 0.000000 - Av 2018 1 30 3 0 0.7260689 0.000000 2.1073937E-03 5.0597931E-03 3.2715368E-04 0.000000 0.000000 - Av 2018 1 30 4 0 0.7226816 0.000000 2.0763061E-03 5.0569689E-03 1.8911096E-04 0.000000 0.000000 - Av 2018 1 30 5 0 0.7178629 0.000000 2.0456773E-03 5.0541083E-03 1.1859881E-04 0.000000 0.000000 - Av 2018 1 30 6 0 0.7142687 0.000000 2.0155003E-03 5.0512129E-03 7.9132828E-05 0.000000 0.000000 - Av 2018 1 30 7 0 0.7106230 0.000000 1.9857686E-03 5.0482834E-03 5.5419230E-05 0.000000 0.000000 + Av 2018 1 29 17 0 1.883273 2.8179015E-03 1.8516462E-03 5.0550280E-03 8.0607526E-02 7.9999842E-02 0.000000 + Av 2018 1 29 18 0 1.823492 8.3391176E-04 2.1768038E-03 5.1270761E-03 9.7747229E-02 9.9999800E-02 0.000000 + Av 2018 1 29 19 0 1.219048 5.4369152E-06 2.3537057E-03 5.1662694E-03 1.4149946E-02 0.000000 0.000000 + Av 2018 1 29 20 0 0.7167690 0.000000 2.3192610E-03 5.1668012E-03 3.6144583E-03 0.000000 0.000000 + Av 2018 1 29 21 0 0.7989510 0.000000 2.2850481E-03 5.1640277E-03 1.3043988E-03 0.000000 0.000000 + Av 2018 1 29 22 0 0.7448176 0.000000 2.2513401E-03 5.1612128E-03 5.8794441E-04 0.000000 0.000000 + Av 2018 1 29 23 0 0.8613567 1.7877120E-04 2.2272530E-03 5.1741465E-03 1.3823263E-02 1.9999960E-02 0.000000 + Av 2018 1 29 24 0 0.8430924 0.000000 2.2034764E-03 5.1881876E-03 4.0726690E-03 0.000000 0.000000 + Av 2018 1 30 1 0 0.7381168 0.000000 2.1709716E-03 5.0653322E-03 1.4290296E-03 0.000000 0.000000 + Av 2018 1 30 2 0 0.7383235 0.000000 2.1389464E-03 5.0625810E-03 6.3226046E-04 0.000000 0.000000 + Av 2018 1 30 3 0 0.7260689 0.000000 2.1073937E-03 5.0597931E-03 3.2715368E-04 0.000000 0.000000 + Av 2018 1 30 4 0 0.7226816 0.000000 2.0763061E-03 5.0569689E-03 1.8911096E-04 0.000000 0.000000 + Av 2018 1 30 5 0 0.7178629 0.000000 2.0456773E-03 5.0541083E-03 1.1859881E-04 0.000000 0.000000 + Av 2018 1 30 6 0 0.7142687 0.000000 2.0155003E-03 5.0512129E-03 7.9132828E-05 0.000000 0.000000 + Av 2018 1 30 7 0 0.7106230 0.000000 1.9857686E-03 5.0482834E-03 5.5419230E-05 0.000000 0.000000 Av 2018 1 30 8 0 0.6904846 0.000000 1.9564754E-03 4.8020096E-03 4.0343581E-05 0.000000 1.1059542E-03 Av 2018 1 30 9 0 0.6536356 0.000000 1.9276142E-03 4.4542770E-03 1.9229148E-04 0.000000 2.6729351E-03 Av 2018 1 30 10 0 0.6228609 0.000000 1.8991788E-03 4.2281672E-03 0.000000 0.000000 3.6869391E-03 @@ -736,21 +736,21 @@ Av 2018 1 30 14 0 0.6054006 0.000000 1.7895709E-03 4.2157387E-03 0.000000 0.000000 3.6869391E-03 Av 2018 1 30 15 0 0.6176338 0.000000 1.7631719E-03 4.4356375E-03 0.000000 0.000000 2.6729351E-03 Av 2018 1 30 16 0 0.6483931 0.000000 1.7371624E-03 4.7771623E-03 0.000000 0.000000 1.1059542E-03 - Av 2018 1 30 17 0 0.6741517 0.000000 1.7115364E-03 5.0172326E-03 0.000000 0.000000 0.000000 - Av 2018 1 30 18 0 0.6780168 0.000000 1.6862885E-03 5.0139655E-03 0.000000 0.000000 0.000000 - Av 2018 1 30 19 0 0.6728214 0.000000 1.6614131E-03 5.0106714E-03 0.000000 0.000000 0.000000 - Av 2018 1 30 20 0 0.6708231 0.000000 1.6369047E-03 5.0073504E-03 0.000000 0.000000 0.000000 - Av 2018 1 30 21 0 0.6677590 0.000000 1.6127577E-03 5.0040032E-03 0.000000 0.000000 0.000000 - Av 2018 1 30 22 0 0.6651107 0.000000 1.5889669E-03 5.0006304E-03 0.000000 0.000000 0.000000 - Av 2018 1 30 23 0 0.6623625 0.000000 1.5655272E-03 4.9972320E-03 0.000000 0.000000 0.000000 - Av 2018 1 30 24 0 0.6596929 0.000000 1.5424333E-03 4.9938089E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 1 0 0.6492377 0.000000 1.5196799E-03 4.8755393E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 2 0 0.6415495 0.000000 1.4972623E-03 4.8723198E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 3 0 0.6407598 0.000000 1.4751753E-03 4.8690769E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 4 0 0.6376129 0.000000 1.4534141E-03 4.8658107E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 5 0 0.6353264 0.000000 1.4319740E-03 4.8625218E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 6 0 0.6327811 0.000000 1.4108501E-03 4.8592109E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 7 0 0.6303654 0.000000 1.3900379E-03 4.8558777E-03 0.000000 0.000000 0.000000 + Av 2018 1 30 17 0 0.6741517 0.000000 1.7115364E-03 5.0172326E-03 0.000000 0.000000 0.000000 + Av 2018 1 30 18 0 0.6780168 0.000000 1.6862885E-03 5.0139655E-03 0.000000 0.000000 0.000000 + Av 2018 1 30 19 0 0.6728214 0.000000 1.6614131E-03 5.0106714E-03 0.000000 0.000000 0.000000 + Av 2018 1 30 20 0 0.6708231 0.000000 1.6369047E-03 5.0073504E-03 0.000000 0.000000 0.000000 + Av 2018 1 30 21 0 0.6677590 0.000000 1.6127577E-03 5.0040032E-03 0.000000 0.000000 0.000000 + Av 2018 1 30 22 0 0.6651107 0.000000 1.5889669E-03 5.0006304E-03 0.000000 0.000000 0.000000 + Av 2018 1 30 23 0 0.6623625 0.000000 1.5655272E-03 4.9972320E-03 0.000000 0.000000 0.000000 + Av 2018 1 30 24 0 0.6596929 0.000000 1.5424333E-03 4.9938089E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 1 0 0.6492377 0.000000 1.5196799E-03 4.8755393E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 2 0 0.6415495 0.000000 1.4972623E-03 4.8723198E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 3 0 0.6407598 0.000000 1.4751753E-03 4.8690769E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 4 0 0.6376129 0.000000 1.4534141E-03 4.8658107E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 5 0 0.6353264 0.000000 1.4319740E-03 4.8625218E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 6 0 0.6327811 0.000000 1.4108501E-03 4.8592109E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 7 0 0.6303654 0.000000 1.3900379E-03 4.8558777E-03 0.000000 0.000000 0.000000 Av 2018 1 31 8 0 0.6120033 0.000000 1.3695327E-03 4.6205590E-03 0.000000 0.000000 1.0543842E-03 Av 2018 1 31 9 0 0.5773009 0.000000 1.3493298E-03 4.2979759E-03 0.000000 0.000000 2.5053269E-03 Av 2018 1 31 10 0 0.5503144 0.000000 1.3294250E-03 4.0913555E-03 0.000000 0.000000 3.4290773E-03 @@ -760,21 +760,21 @@ Av 2018 1 31 14 0 0.5372451 0.000000 1.2526994E-03 4.0775733E-03 0.000000 0.000000 3.4290773E-03 Av 2018 1 31 15 0 0.5488988 0.000000 1.2342202E-03 4.2773047E-03 0.000000 0.000000 2.5053269E-03 Av 2018 1 31 16 0 0.5777451 0.000000 1.2160136E-03 4.5930003E-03 0.000000 0.000000 1.0543842E-03 - Av 2018 1 31 17 0 0.6026236 0.000000 1.1980754E-03 4.8214342E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 18 0 0.6070030 0.000000 1.1804019E-03 4.8178863E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 19 0 0.6026130 0.000000 1.1629891E-03 4.8143207E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 20 0 0.6013050 0.000000 1.1458332E-03 4.8107379E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 21 0 0.5989577 0.000000 1.1289304E-03 4.8071379E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 22 0 0.5970036 0.000000 1.1122769E-03 4.8035216E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 23 0 0.5949442 0.000000 1.0958691E-03 4.7998889E-03 0.000000 0.000000 0.000000 - Av 2018 1 31 24 0 0.5929523 0.000000 1.0797033E-03 4.7962400E-03 0.000000 0.000000 0.000000 - Av 2018 2 1 1 0 0.5835149 0.000000 1.0637761E-03 4.6828897E-03 0.000000 0.000000 0.000000 - Av 2018 2 1 2 0 0.5767129 0.000000 1.0480836E-03 4.6794503E-03 0.000000 0.000000 0.000000 - Av 2018 2 1 3 0 0.5764930 0.000000 1.0326228E-03 4.6759960E-03 0.000000 0.000000 0.000000 - Av 2018 2 1 4 0 0.5740136 0.000000 1.0173901E-03 4.6725268E-03 0.000000 0.000000 0.000000 - Av 2018 2 1 5 0 0.5723485 0.000000 1.0023819E-03 4.6690428E-03 0.000000 0.000000 0.000000 - Av 2018 2 1 6 0 0.5704286 0.000000 9.8759518E-04 4.6655443E-03 0.000000 0.000000 0.000000 - Av 2018 2 1 7 0 0.5686253 0.000000 9.7302662E-04 4.6620313E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 17 0 0.6026236 0.000000 1.1980754E-03 4.8214342E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 18 0 0.6070030 0.000000 1.1804019E-03 4.8178863E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 19 0 0.6026130 0.000000 1.1629891E-03 4.8143207E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 20 0 0.6013050 0.000000 1.1458332E-03 4.8107379E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 21 0 0.5989577 0.000000 1.1289304E-03 4.8071379E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 22 0 0.5970036 0.000000 1.1122769E-03 4.8035216E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 23 0 0.5949442 0.000000 1.0958691E-03 4.7998889E-03 0.000000 0.000000 0.000000 + Av 2018 1 31 24 0 0.5929523 0.000000 1.0797033E-03 4.7962400E-03 0.000000 0.000000 0.000000 + Av 2018 2 1 1 0 0.5835149 0.000000 1.0637761E-03 4.6828897E-03 0.000000 0.000000 0.000000 + Av 2018 2 1 2 0 0.5767129 0.000000 1.0480836E-03 4.6794503E-03 0.000000 0.000000 0.000000 + Av 2018 2 1 3 0 0.5764930 0.000000 1.0326228E-03 4.6759960E-03 0.000000 0.000000 0.000000 + Av 2018 2 1 4 0 0.5740136 0.000000 1.0173901E-03 4.6725268E-03 0.000000 0.000000 0.000000 + Av 2018 2 1 5 0 0.5723485 0.000000 1.0023819E-03 4.6690428E-03 0.000000 0.000000 0.000000 + Av 2018 2 1 6 0 0.5704286 0.000000 9.8759518E-04 4.6655443E-03 0.000000 0.000000 0.000000 + Av 2018 2 1 7 0 0.5686253 0.000000 9.7302662E-04 4.6620313E-03 0.000000 0.000000 0.000000 Av 2018 2 1 8 0 0.5493590 0.000000 9.5867302E-04 4.4044275E-03 0.000000 0.000000 1.1548953E-03 Av 2018 2 1 9 0 0.5125375 0.000000 9.4453106E-04 4.0562632E-03 0.000000 0.000000 2.7213660E-03 Av 2018 2 1 10 0 0.4843789 0.000000 9.3059771E-04 3.8351240E-03 0.000000 0.000000 3.7103889E-03 @@ -784,21 +784,21 @@ Av 2018 2 1 14 0 0.4772497 0.000000 8.7688974E-04 3.8207765E-03 0.000000 1.9999960E-02 3.7103889E-03 Av 2018 2 1 15 0 0.4880873 0.000000 8.6395425E-04 4.0347427E-03 0.000000 0.000000 2.7213660E-03 Av 2018 2 1 16 0 0.5207224 0.000000 8.5120957E-04 4.3757362E-03 0.000000 1.9999960E-02 1.1548953E-03 - Av 2018 2 1 17 0 0.5729140 1.3389533E-04 8.4550562E-04 4.6405965E-03 1.3806984E-03 2.9999940E-02 0.000000 - Av 2018 2 1 18 0 0.6849232 1.4367934E-04 8.4720866E-04 4.6674712E-03 1.4771973E-02 1.9999960E-02 0.000000 - Av 2018 2 1 19 0 0.6535602 0.000000 8.4203132E-04 4.6799267E-03 4.1757626E-03 0.000000 0.000000 - Av 2018 2 1 20 0 0.5602914 0.000000 8.2961004E-04 4.6761734E-03 1.4565276E-03 0.000000 0.000000 - Av 2018 2 1 21 0 0.6140440 3.5793280E-05 8.1920566E-04 4.6803905E-03 6.9389008E-03 9.9999802E-03 0.000000 - Av 2018 2 1 22 0 0.6013445 0.000000 8.0894557E-04 4.6852846E-03 2.4537784E-03 0.000000 0.000000 - Av 2018 2 1 23 0 0.5596842 0.000000 7.9701236E-04 4.6814717E-03 9.6724310E-04 0.000000 0.000000 - Av 2018 2 1 24 0 0.5585117 0.000000 7.8525522E-04 4.6776487E-03 4.6248763E-04 0.000000 0.000000 - Av 2018 2 2 1 0 0.5447133 0.000000 7.7367149E-04 4.5671859E-03 2.5266752E-04 0.000000 0.000000 - Av 2018 2 2 2 0 0.5380890 0.000000 7.6225860E-04 4.5635886E-03 1.5195587E-04 0.000000 0.000000 - Av 2018 2 2 3 0 0.5373147 0.000000 7.5101410E-04 4.5599937E-03 9.8188524E-05 0.000000 0.000000 - Av 2018 2 2 4 0 0.5350010 0.000000 7.3993544E-04 4.5563886E-03 6.7052220E-05 0.000000 0.000000 - Av 2018 2 2 5 0 0.5334785 0.000000 7.2902022E-04 4.5527732E-03 4.7833077E-05 0.000000 0.000000 - Av 2018 2 2 6 0 0.5318282 0.000000 7.1826600E-04 4.5491476E-03 3.5346129E-05 0.000000 0.000000 - Av 2018 2 2 7 0 0.5313399 0.000000 7.0767046E-04 4.5455117E-03 1.7762635E-04 0.000000 0.000000 + Av 2018 2 1 17 0 0.5729140 1.3389533E-04 8.4550562E-04 4.6405965E-03 1.3806984E-03 2.9999940E-02 0.000000 + Av 2018 2 1 18 0 0.6849232 1.4367934E-04 8.4720866E-04 4.6674712E-03 1.4771973E-02 1.9999960E-02 0.000000 + Av 2018 2 1 19 0 0.6535602 0.000000 8.4203132E-04 4.6799267E-03 4.1757626E-03 0.000000 0.000000 + Av 2018 2 1 20 0 0.5602914 0.000000 8.2961004E-04 4.6761734E-03 1.4565276E-03 0.000000 0.000000 + Av 2018 2 1 21 0 0.6140440 3.5793280E-05 8.1920566E-04 4.6803905E-03 6.9389008E-03 9.9999802E-03 0.000000 + Av 2018 2 1 22 0 0.6013445 0.000000 8.0894557E-04 4.6852846E-03 2.4537784E-03 0.000000 0.000000 + Av 2018 2 1 23 0 0.5596842 0.000000 7.9701236E-04 4.6814717E-03 9.6724310E-04 0.000000 0.000000 + Av 2018 2 1 24 0 0.5585117 0.000000 7.8525522E-04 4.6776487E-03 4.6248763E-04 0.000000 0.000000 + Av 2018 2 2 1 0 0.5447133 0.000000 7.7367149E-04 4.5671859E-03 2.5266752E-04 0.000000 0.000000 + Av 2018 2 2 2 0 0.5380890 0.000000 7.6225860E-04 4.5635886E-03 1.5195587E-04 0.000000 0.000000 + Av 2018 2 2 3 0 0.5373147 0.000000 7.5101410E-04 4.5599937E-03 9.8188524E-05 0.000000 0.000000 + Av 2018 2 2 4 0 0.5350010 0.000000 7.3993544E-04 4.5563886E-03 6.7052220E-05 0.000000 0.000000 + Av 2018 2 2 5 0 0.5334785 0.000000 7.2902022E-04 4.5527732E-03 4.7833077E-05 0.000000 0.000000 + Av 2018 2 2 6 0 0.5318282 0.000000 7.1826600E-04 4.5491476E-03 3.5346129E-05 0.000000 0.000000 + Av 2018 2 2 7 0 0.5313399 0.000000 7.0767046E-04 4.5455117E-03 1.7762635E-04 0.000000 0.000000 Av 2018 2 2 8 0 0.5079587 0.000000 6.9723121E-04 4.2303577E-03 0.000000 0.000000 1.4159492E-03 Av 2018 2 2 9 0 0.4634224 0.000000 6.8694592E-04 3.8160835E-03 0.000000 0.000000 3.2824003E-03 Av 2018 2 2 10 0 0.4313948 0.000000 6.7681237E-04 3.5575544E-03 0.000000 0.000000 4.4408767E-03 @@ -808,21 +808,21 @@ Av 2018 2 2 14 0 0.4210006 0.000000 6.3775131E-04 3.5428065E-03 0.000000 0.000000 4.4408767E-03 Av 2018 2 2 15 0 0.4370531 0.000000 6.2834343E-04 3.7939623E-03 0.000000 0.000000 3.2824003E-03 Av 2018 2 2 16 0 0.4753284 0.000000 6.1907439E-04 4.2008641E-03 0.000000 0.000000 1.4159492E-03 - Av 2018 2 2 17 0 0.5097852 0.000000 6.0994201E-04 4.5086467E-03 0.000000 0.000000 0.000000 - Av 2018 2 2 18 0 0.5174357 0.000000 6.0094445E-04 4.5049130E-03 0.000000 0.000000 0.000000 - Av 2018 2 2 19 0 0.5130540 0.000000 5.9207954E-04 4.5011709E-03 0.000000 0.000000 0.000000 - Av 2018 2 2 20 0 0.5128728 0.000000 5.8334548E-04 4.4974210E-03 0.000000 0.000000 0.000000 - Av 2018 2 2 21 0 0.5112476 0.000000 5.7474017E-04 4.4936636E-03 0.000000 0.000000 0.000000 - Av 2018 2 2 22 0 0.5101408 0.000000 5.6626182E-04 4.4898982E-03 0.000000 0.000000 0.000000 - Av 2018 2 2 23 0 0.5088699 0.000000 5.5790856E-04 4.4861259E-03 0.000000 0.000000 0.000000 - Av 2018 2 2 24 0 0.5076720 0.000000 5.4967857E-04 4.4823461E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 1 0 0.4995634 0.000000 5.4156996E-04 4.3769921E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 2 0 0.4938881 0.000000 5.3358090E-04 4.3734200E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 3 0 0.4942980 0.000000 5.2570977E-04 4.3698410E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 4 0 0.4926069 0.000000 5.1795476E-04 4.3662544E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 5 0 0.4916610 0.000000 5.1031413E-04 4.3626614E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 6 0 0.4904706 0.000000 5.0278619E-04 4.3590614E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 7 0 0.4893795 0.000000 4.9536931E-04 4.3554548E-03 0.000000 0.000000 0.000000 + Av 2018 2 2 17 0 0.5097852 0.000000 6.0994201E-04 4.5086467E-03 0.000000 0.000000 0.000000 + Av 2018 2 2 18 0 0.5174357 0.000000 6.0094445E-04 4.5049130E-03 0.000000 0.000000 0.000000 + Av 2018 2 2 19 0 0.5130540 0.000000 5.9207954E-04 4.5011709E-03 0.000000 0.000000 0.000000 + Av 2018 2 2 20 0 0.5128728 0.000000 5.8334548E-04 4.4974210E-03 0.000000 0.000000 0.000000 + Av 2018 2 2 21 0 0.5112476 0.000000 5.7474017E-04 4.4936636E-03 0.000000 0.000000 0.000000 + Av 2018 2 2 22 0 0.5101408 0.000000 5.6626182E-04 4.4898982E-03 0.000000 0.000000 0.000000 + Av 2018 2 2 23 0 0.5088699 0.000000 5.5790856E-04 4.4861259E-03 0.000000 0.000000 0.000000 + Av 2018 2 2 24 0 0.5076720 0.000000 5.4967857E-04 4.4823461E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 1 0 0.4995634 0.000000 5.4156996E-04 4.3769921E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 2 0 0.4938881 0.000000 5.3358090E-04 4.3734200E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 3 0 0.4942980 0.000000 5.2570977E-04 4.3698410E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 4 0 0.4926069 0.000000 5.1795476E-04 4.3662544E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 5 0 0.4916610 0.000000 5.1031413E-04 4.3626614E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 6 0 0.4904706 0.000000 5.0278619E-04 4.3590614E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 7 0 0.4893795 0.000000 4.9536931E-04 4.3554548E-03 0.000000 0.000000 0.000000 Av 2018 2 3 8 0 0.4639218 0.000000 4.8806181E-04 3.9970810E-03 0.000000 0.000000 1.6125501E-03 Av 2018 2 3 9 0 0.4157785 0.000000 4.8086213E-04 3.5388172E-03 0.000000 0.000000 3.6791130E-03 Av 2018 2 3 10 0 0.3809034 0.000000 4.7376868E-04 3.2579280E-03 0.000000 0.000000 4.9394011E-03 @@ -832,21 +832,21 @@ Av 2018 2 3 14 0 0.3714097 0.000000 4.4642587E-04 3.2433639E-03 0.000000 0.000000 4.9394011E-03 Av 2018 2 3 15 0 0.3905798 0.000000 4.3984037E-04 3.5169711E-03 0.000000 9.9999802E-03 3.6791130E-03 Av 2018 2 3 16 0 0.4326829 0.000000 4.3335202E-04 3.9679538E-03 0.000000 0.000000 1.6125501E-03 - Av 2018 2 3 17 0 0.4708380 0.000000 4.2695939E-04 4.3190480E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 18 0 0.4805361 0.000000 4.2066109E-04 4.3153758E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 19 0 0.4758151 0.000000 4.1445566E-04 4.3116985E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 20 0 0.4761195 0.000000 4.0834179E-04 4.3080156E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 21 0 0.4746881 0.000000 4.0231811E-04 4.3043275E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 22 0 0.4738718 0.000000 3.9638329E-04 4.3006344E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 23 0 0.4728529 0.000000 3.9053601E-04 4.2969361E-03 0.000000 0.000000 0.000000 - Av 2018 2 3 24 0 0.4719157 0.000000 3.8477499E-04 4.2932336E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 1 0 0.4643925 0.000000 3.7909896E-04 4.1928519E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 2 0 0.4591843 0.000000 3.7350666E-04 4.1893488E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 3 0 0.4597646 0.000000 3.6799686E-04 4.1858410E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 4 0 0.4583427 0.000000 3.6256833E-04 4.1823285E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 5 0 0.4576272 0.000000 3.5721989E-04 4.1788113E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 6 0 0.4566763 0.000000 3.5195032E-04 4.1752895E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 7 0 0.4558173 0.000000 3.4675849E-04 4.1717635E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 17 0 0.4708380 0.000000 4.2695939E-04 4.3190480E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 18 0 0.4805361 0.000000 4.2066109E-04 4.3153758E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 19 0 0.4758151 0.000000 4.1445566E-04 4.3116985E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 20 0 0.4761195 0.000000 4.0834179E-04 4.3080156E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 21 0 0.4746881 0.000000 4.0231811E-04 4.3043275E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 22 0 0.4738718 0.000000 3.9638329E-04 4.3006344E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 23 0 0.4728529 0.000000 3.9053601E-04 4.2969361E-03 0.000000 0.000000 0.000000 + Av 2018 2 3 24 0 0.4719157 0.000000 3.8477499E-04 4.2932336E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 1 0 0.4643925 0.000000 3.7909896E-04 4.1928519E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 2 0 0.4591843 0.000000 3.7350666E-04 4.1893488E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 3 0 0.4597646 0.000000 3.6799686E-04 4.1858410E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 4 0 0.4583427 0.000000 3.6256833E-04 4.1823285E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 5 0 0.4576272 0.000000 3.5721989E-04 4.1788113E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 6 0 0.4566763 0.000000 3.5195032E-04 4.1752895E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 7 0 0.4558173 0.000000 3.4675849E-04 4.1717635E-03 0.000000 0.000000 0.000000 Av 2018 2 4 8 0 0.4285043 0.000000 3.4164326E-04 3.7829462E-03 0.000000 0.000000 1.7513033E-03 Av 2018 2 4 9 0 0.3774878 0.000000 3.3660349E-04 3.2991657E-03 0.000000 0.000000 3.9342381E-03 Av 2018 2 4 10 0 0.3414800 0.000000 3.3163806E-04 3.0080243E-03 0.000000 0.000000 5.2415212E-03 @@ -856,21 +856,21 @@ Av 2018 2 4 14 0 0.3326928 0.000000 3.1249807E-04 2.9938277E-03 0.000000 0.000000 5.2415212E-03 Av 2018 2 4 15 0 0.3514605 0.000000 3.0788826E-04 3.2778715E-03 0.000000 0.000000 3.9342381E-03 Av 2018 2 4 16 0 0.3964210 0.000000 3.0334640E-04 3.7545548E-03 0.000000 0.000000 1.7513033E-03 - Av 2018 2 4 17 0 0.4389859 0.000000 2.9887157E-04 4.1362755E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 18 0 0.4495043 0.000000 2.9446278E-04 4.1327057E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 19 0 0.4447669 0.000000 2.9011897E-04 4.1291327E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 20 0 0.4453425 0.000000 2.8583925E-04 4.1255560E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 21 0 0.4440788 0.000000 2.8162269E-04 4.1219760E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 22 0 0.4434628 0.000000 2.7746829E-04 4.1183932E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 23 0 0.4426295 0.000000 2.7337519E-04 4.1148067E-03 0.000000 0.000000 0.000000 - Av 2018 2 4 24 0 0.4418796 0.000000 2.6934250E-04 4.1112169E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 1 0 0.4348593 0.000000 2.6536928E-04 4.0156501E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 2 0 0.4300402 0.000000 2.6145467E-04 4.0122508E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 3 0 0.4307256 0.000000 2.5759780E-04 4.0088482E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 4 0 0.4295045 0.000000 2.5379783E-04 4.0054424E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 5 0 0.4289535 0.000000 2.5005391E-04 4.0020337E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 6 0 0.4281767 0.000000 2.4636521E-04 3.9986223E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 7 0 0.4274854 0.000000 2.4273094E-04 3.9952076E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 17 0 0.4389859 0.000000 2.9887157E-04 4.1362755E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 18 0 0.4495043 0.000000 2.9446278E-04 4.1327057E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 19 0 0.4447669 0.000000 2.9011897E-04 4.1291327E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 20 0 0.4453425 0.000000 2.8583925E-04 4.1255560E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 21 0 0.4440788 0.000000 2.8162269E-04 4.1219760E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 22 0 0.4434628 0.000000 2.7746829E-04 4.1183932E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 23 0 0.4426295 0.000000 2.7337519E-04 4.1148067E-03 0.000000 0.000000 0.000000 + Av 2018 2 4 24 0 0.4418796 0.000000 2.6934250E-04 4.1112169E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 1 0 0.4348593 0.000000 2.6536928E-04 4.0156501E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 2 0 0.4300402 0.000000 2.6145467E-04 4.0122508E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 3 0 0.4307256 0.000000 2.5759780E-04 4.0088482E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 4 0 0.4295045 0.000000 2.5379783E-04 4.0054424E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 5 0 0.4289535 0.000000 2.5005391E-04 4.0020337E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 6 0 0.4281767 0.000000 2.4636521E-04 3.9986223E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 7 0 0.4274854 0.000000 2.4273094E-04 3.9952076E-03 0.000000 0.000000 0.000000 Av 2018 2 5 8 0 0.4017569 0.000000 2.3915028E-04 3.6270544E-03 0.000000 0.000000 1.6578892E-03 Av 2018 2 5 9 0 0.3544343 0.000000 2.3562243E-04 3.1812717E-03 0.000000 0.000000 3.6686303E-03 Av 2018 2 5 10 0 0.3218587 0.000000 2.3214663E-04 2.9178532E-03 0.000000 0.000000 4.8504267E-03 @@ -880,21 +880,21 @@ Av 2018 2 5 14 0 0.3142480 0.000000 2.1874865E-04 2.9041348E-03 0.000000 0.000000 4.8504267E-03 Av 2018 2 5 15 0 0.3312837 0.000000 2.1552177E-04 3.1606946E-03 0.000000 0.000000 3.6686303E-03 Av 2018 2 5 16 0 0.3725534 0.000000 2.1234248E-04 3.5996190E-03 0.000000 0.000000 1.6578892E-03 - Av 2018 2 5 17 0 0.4125866 0.000000 2.0921009E-04 3.9609144E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 18 0 0.4227686 0.000000 2.0612391E-04 3.9574718E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 19 0 0.4183439 0.000000 2.0308325E-04 3.9540264E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 20 0 0.4190040 0.000000 2.0008745E-04 3.9505796E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 21 0 0.4179018 0.000000 1.9713586E-04 3.9471299E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 22 0 0.4174180 0.000000 1.9422779E-04 3.9436789E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 23 0 0.4167249 0.000000 1.9136263E-04 3.9402256E-03 0.000000 0.000000 0.000000 - Av 2018 2 5 24 0 0.4161100 0.000000 1.8853974E-04 3.9367704E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 1 0 0.4095297 0.000000 1.8575847E-04 3.8458344E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 2 0 0.4050415 0.000000 1.8301824E-04 3.8425594E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 3 0 0.4057873 0.000000 1.8031844E-04 3.8392823E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 4 0 0.4047183 0.000000 1.7765847E-04 3.8360031E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 5 0 0.4042855 0.000000 1.7503773E-04 3.8327223E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 6 0 0.4036365 0.000000 1.7245565E-04 3.8294394E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 7 0 0.4030677 0.000000 1.6991165E-04 3.8261549E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 17 0 0.4125866 0.000000 2.0921009E-04 3.9609144E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 18 0 0.4227686 0.000000 2.0612391E-04 3.9574718E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 19 0 0.4183439 0.000000 2.0308325E-04 3.9540264E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 20 0 0.4190040 0.000000 2.0008745E-04 3.9505796E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 21 0 0.4179018 0.000000 1.9713586E-04 3.9471299E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 22 0 0.4174180 0.000000 1.9422779E-04 3.9436789E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 23 0 0.4167249 0.000000 1.9136263E-04 3.9402256E-03 0.000000 0.000000 0.000000 + Av 2018 2 5 24 0 0.4161100 0.000000 1.8853974E-04 3.9367704E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 1 0 0.4095297 0.000000 1.8575847E-04 3.8458344E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 2 0 0.4050415 0.000000 1.8301824E-04 3.8425594E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 3 0 0.4057873 0.000000 1.8031844E-04 3.8392823E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 4 0 0.4047183 0.000000 1.7765847E-04 3.8360031E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 5 0 0.4042855 0.000000 1.7503773E-04 3.8327223E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 6 0 0.4036365 0.000000 1.7245565E-04 3.8294394E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 7 0 0.4030677 0.000000 1.6991165E-04 3.8261549E-03 0.000000 0.000000 0.000000 Av 2018 2 6 8 0 0.3789758 0.000000 1.6740520E-04 3.4801217E-03 0.000000 0.000000 1.5579397E-03 Av 2018 2 6 9 0 0.3353522 0.000000 1.6493571E-04 3.0721906E-03 0.000000 0.000000 3.3972249E-03 Av 2018 2 6 10 0 0.3060719 0.000000 1.6250265E-04 2.8356228E-03 0.000000 0.000000 4.4575403E-03 @@ -904,21 +904,21 @@ Av 2018 2 6 14 0 0.2994261 0.000000 1.5312407E-04 2.8221998E-03 0.000000 0.000000 4.4575403E-03 Av 2018 2 6 15 0 0.3147398 0.000000 1.5086525E-04 3.0520563E-03 0.000000 0.000000 3.3972249E-03 Av 2018 2 6 16 0 0.3523199 0.000000 1.4863975E-04 3.4532677E-03 0.000000 0.000000 1.5579397E-03 - Av 2018 2 6 17 0 0.3896656 0.000000 1.4644708E-04 3.7925709E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 18 0 0.3993962 0.000000 1.4428677E-04 3.7891234E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 19 0 0.3952530 0.000000 1.4215830E-04 3.7856763E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 20 0 0.3959381 0.000000 1.4006125E-04 3.7822290E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 21 0 0.3949485 0.000000 1.3799511E-04 3.7787820E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 22 0 0.3945455 0.000000 1.3595948E-04 3.7753349E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 23 0 0.3939427 0.000000 1.3395386E-04 3.7718881E-03 0.000000 0.000000 0.000000 - Av 2018 2 6 24 0 0.3934134 0.000000 1.3197784E-04 3.7684413E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 1 0 0.3872132 0.000000 1.3003095E-04 3.6818485E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 2 0 0.3830006 0.000000 1.2811279E-04 3.6785759E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 3 0 0.3837619 0.000000 1.2622292E-04 3.6753032E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 4 0 0.3827976 0.000000 1.2436093E-04 3.6720308E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 5 0 0.3824371 0.000000 1.2252641E-04 3.6687581E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 6 0 0.3818702 0.000000 1.2071895E-04 3.6654854E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 7 0 0.3813788 0.000000 1.1893816E-04 3.6622132E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 17 0 0.3896656 0.000000 1.4644708E-04 3.7925709E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 18 0 0.3993962 0.000000 1.4428677E-04 3.7891234E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 19 0 0.3952530 0.000000 1.4215830E-04 3.7856763E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 20 0 0.3959381 0.000000 1.4006125E-04 3.7822290E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 21 0 0.3949485 0.000000 1.3799511E-04 3.7787820E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 22 0 0.3945455 0.000000 1.3595948E-04 3.7753349E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 23 0 0.3939427 0.000000 1.3395386E-04 3.7718881E-03 0.000000 0.000000 0.000000 + Av 2018 2 6 24 0 0.3934134 0.000000 1.3197784E-04 3.7684413E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 1 0 0.3872132 0.000000 1.3003095E-04 3.6818485E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 2 0 0.3830006 0.000000 1.2811279E-04 3.6785759E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 3 0 0.3837619 0.000000 1.2622292E-04 3.6753032E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 4 0 0.3827976 0.000000 1.2436093E-04 3.6720308E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 5 0 0.3824371 0.000000 1.2252641E-04 3.6687581E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 6 0 0.3818702 0.000000 1.2071895E-04 3.6654854E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 7 0 0.3813788 0.000000 1.1893816E-04 3.6622132E-03 0.000000 0.000000 0.000000 Av 2018 2 7 8 0 0.3543479 0.000000 1.1718363E-04 3.2720985E-03 0.000000 0.000000 1.7583742E-03 Av 2018 2 7 9 0 0.3060992 0.000000 1.1545499E-04 2.8240827E-03 0.000000 0.000000 3.7799187E-03 Av 2018 2 7 10 0 0.2745724 0.000000 1.1375184E-04 2.5694771E-03 0.000000 0.000000 4.9222764E-03 @@ -928,21 +928,21 @@ Av 2018 2 7 14 0 0.2679208 0.000000 1.0718684E-04 2.5561461E-03 0.000000 0.000000 4.9222764E-03 Av 2018 2 7 15 0 0.2845287 0.000000 1.0560566E-04 2.8040868E-03 0.000000 0.000000 3.7799187E-03 Av 2018 2 7 16 0 0.3257143 0.000000 1.0404782E-04 3.2454340E-03 0.000000 0.000000 1.7583742E-03 - Av 2018 2 7 17 0 0.3676434 0.000000 1.0251295E-04 3.6288749E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 18 0 0.3788861 0.000000 1.0100072E-04 3.6254718E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 19 0 0.3743105 0.000000 9.9510806E-05 3.6220697E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 20 0 0.3752383 0.000000 9.8042867E-05 3.6186695E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 21 0 0.3742557 0.000000 9.6596581E-05 3.6152704E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 22 0 0.3739405 0.000000 9.5171628E-05 3.6118727E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 23 0 0.3733963 0.000000 9.3767689E-05 3.6084764E-03 0.000000 0.000000 0.000000 - Av 2018 2 7 24 0 0.3729347 0.000000 9.2384471E-05 3.6050817E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 1 0 0.3670831 0.000000 9.1021655E-05 3.5227367E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 2 0 0.3631198 0.000000 8.9678935E-05 3.5195085E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 3 0 0.3638781 0.000000 8.8356035E-05 3.5162815E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 4 0 0.3629976 0.000000 8.7052642E-05 3.5130559E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 5 0 0.3626897 0.000000 8.5768479E-05 3.5098318E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 6 0 0.3621855 0.000000 8.4503263E-05 3.5066090E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 7 0 0.3617523 0.000000 8.3256709E-05 3.5033871E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 17 0 0.3676434 0.000000 1.0251295E-04 3.6288749E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 18 0 0.3788861 0.000000 1.0100072E-04 3.6254718E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 19 0 0.3743105 0.000000 9.9510806E-05 3.6220697E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 20 0 0.3752383 0.000000 9.8042867E-05 3.6186695E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 21 0 0.3742557 0.000000 9.6596581E-05 3.6152704E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 22 0 0.3739405 0.000000 9.5171628E-05 3.6118727E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 23 0 0.3733963 0.000000 9.3767689E-05 3.6084764E-03 0.000000 0.000000 0.000000 + Av 2018 2 7 24 0 0.3729347 0.000000 9.2384471E-05 3.6050817E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 1 0 0.3670831 0.000000 9.1021655E-05 3.5227367E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 2 0 0.3631198 0.000000 8.9678935E-05 3.5195085E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 3 0 0.3638781 0.000000 8.8356035E-05 3.5162815E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 4 0 0.3629976 0.000000 8.7052642E-05 3.5130559E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 5 0 0.3626897 0.000000 8.5768479E-05 3.5098318E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 6 0 0.3621855 0.000000 8.4503263E-05 3.5066090E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 7 0 0.3617523 0.000000 8.3256709E-05 3.5033871E-03 0.000000 0.000000 0.000000 Av 2018 2 8 8 0 0.3359229 0.000000 8.2028550E-05 3.1299097E-03 0.000000 0.000000 1.6829869E-03 Av 2018 2 8 9 0 0.2905410 0.000000 8.0818500E-05 2.7119981E-03 0.000000 0.000000 3.5679410E-03 Av 2018 2 8 10 0 0.2616478 0.000000 7.9626298E-05 2.4792082E-03 0.000000 0.000000 4.6114018E-03 @@ -952,21 +952,21 @@ Av 2018 2 8 14 0 0.2556550 0.000000 7.5030795E-05 2.4661710E-03 0.000000 0.000000 4.6114018E-03 Av 2018 2 8 15 0 0.2708366 0.000000 7.3923977E-05 2.6924429E-03 0.000000 0.000000 3.5679410E-03 Av 2018 2 8 16 0 0.3090419 0.000000 7.2833478E-05 3.1038336E-03 0.000000 0.000000 1.6829869E-03 - Av 2018 2 8 17 0 0.3488819 0.000000 7.1759066E-05 3.4707866E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 18 0 0.3597856 0.000000 7.0700509E-05 3.4674818E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 19 0 0.3554025 0.000000 6.9657566E-05 3.4641791E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 20 0 0.3563372 0.000000 6.8630012E-05 3.4608785E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 21 0 0.3554253 0.000000 6.7617613E-05 3.4575802E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 22 0 0.3551578 0.000000 6.6620145E-05 3.4542840E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 23 0 0.3546685 0.000000 6.5637389E-05 3.4509900E-03 0.000000 0.000000 0.000000 - Av 2018 2 8 24 0 0.3542585 0.000000 6.4669141E-05 3.4476977E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 1 0 0.3487328 0.000000 6.3715168E-05 3.3694867E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 2 0 0.3449985 0.000000 6.2775267E-05 3.3663523E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 3 0 0.3457444 0.000000 6.1849234E-05 3.3632198E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 4 0 0.3449346 0.000000 6.0936862E-05 3.3600894E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 5 0 0.3446679 0.000000 6.0037946E-05 3.3569608E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 6 0 0.3442143 0.000000 5.9152291E-05 3.3538342E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 7 0 0.3438278 0.000000 5.8279697E-05 3.3507096E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 17 0 0.3488819 0.000000 7.1759066E-05 3.4707866E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 18 0 0.3597856 0.000000 7.0700509E-05 3.4674818E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 19 0 0.3554025 0.000000 6.9657566E-05 3.4641791E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 20 0 0.3563372 0.000000 6.8630012E-05 3.4608785E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 21 0 0.3554253 0.000000 6.7617613E-05 3.4575802E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 22 0 0.3551578 0.000000 6.6620145E-05 3.4542840E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 23 0 0.3546685 0.000000 6.5637389E-05 3.4509900E-03 0.000000 0.000000 0.000000 + Av 2018 2 8 24 0 0.3542585 0.000000 6.4669141E-05 3.4476977E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 1 0 0.3487328 0.000000 6.3715168E-05 3.3694867E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 2 0 0.3449985 0.000000 6.2775267E-05 3.3663523E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 3 0 0.3457444 0.000000 6.1849234E-05 3.3632198E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 4 0 0.3449346 0.000000 6.0936862E-05 3.3600894E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 5 0 0.3446679 0.000000 6.0037946E-05 3.3569608E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 6 0 0.3442143 0.000000 5.9152291E-05 3.3538342E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 7 0 0.3438278 0.000000 5.8279697E-05 3.3507096E-03 0.000000 0.000000 0.000000 Av 2018 2 9 8 0 0.3213543 0.000000 5.7419980E-05 3.0255369E-03 0.000000 0.000000 1.4638634E-03 Av 2018 2 9 9 0 0.2825024 0.000000 5.6572946E-05 2.6708825E-03 0.000000 0.000000 3.0617346E-03 Av 2018 2 9 10 0 0.2583934 0.000000 5.5738408E-05 2.4772494E-03 0.000000 0.000000 3.9276741E-03 @@ -976,21 +976,21 @@ Av 2018 2 9 14 0 0.2533248 0.000000 5.2521551E-05 2.4646712E-03 0.000000 0.000000 3.9276741E-03 Av 2018 2 9 15 0 0.2658947 0.000000 5.1746778E-05 2.6520158E-03 0.000000 0.000000 3.0617346E-03 Av 2018 2 9 16 0 0.2980768 0.000000 5.0983428E-05 3.0003795E-03 0.000000 0.000000 1.4638634E-03 - Av 2018 2 9 17 0 0.3324502 0.000000 5.0231345E-05 3.3192590E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 18 0 0.3420136 0.000000 4.9490354E-05 3.3160893E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 19 0 0.3381578 0.000000 4.8760296E-05 3.3129219E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 20 0 0.3389697 0.000000 4.8041002E-05 3.3097565E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 21 0 0.3381604 0.000000 4.7332320E-05 3.3065935E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 22 0 0.3379166 0.000000 4.6634093E-05 3.3034331E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 23 0 0.3374779 0.000000 4.5946166E-05 3.3002750E-03 0.000000 0.000000 0.000000 - Av 2018 2 9 24 0 0.3371086 0.000000 4.5268389E-05 3.2971194E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 1 0 0.3318878 0.000000 4.4600612E-05 3.2228909E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 2 0 0.3283653 0.000000 4.3942684E-05 3.2198832E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 3 0 0.3290928 0.000000 4.3294462E-05 3.2168778E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 4 0 0.3283442 0.000000 4.2655800E-05 3.2138748E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 5 0 0.3281104 0.000000 4.2026561E-05 3.2108738E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 6 0 0.3276992 0.000000 4.1406602E-05 3.2078750E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 7 0 0.3273512 0.000000 4.0795789E-05 3.2048784E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 17 0 0.3324502 0.000000 5.0231345E-05 3.3192590E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 18 0 0.3420136 0.000000 4.9490354E-05 3.3160893E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 19 0 0.3381578 0.000000 4.8760296E-05 3.3129219E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 20 0 0.3389697 0.000000 4.8041002E-05 3.3097565E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 21 0 0.3381604 0.000000 4.7332320E-05 3.3065935E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 22 0 0.3379166 0.000000 4.6634093E-05 3.3034331E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 23 0 0.3374779 0.000000 4.5946166E-05 3.3002750E-03 0.000000 0.000000 0.000000 + Av 2018 2 9 24 0 0.3371086 0.000000 4.5268389E-05 3.2971194E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 1 0 0.3318878 0.000000 4.4600612E-05 3.2228909E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 2 0 0.3283653 0.000000 4.3942684E-05 3.2198832E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 3 0 0.3290928 0.000000 4.3294462E-05 3.2168778E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 4 0 0.3283442 0.000000 4.2655800E-05 3.2138748E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 5 0 0.3281104 0.000000 4.2026561E-05 3.2108738E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 6 0 0.3276992 0.000000 4.1406602E-05 3.2078750E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 7 0 0.3273512 0.000000 4.0795789E-05 3.2048784E-03 0.000000 0.000000 0.000000 Av 2018 2 10 8 0 0.3062798 0.000000 4.0193987E-05 2.8996633E-03 0.000000 0.000000 1.3737304E-03 Av 2018 2 10 9 0 0.2704058 0.000000 3.9601062E-05 2.5750389E-03 0.000000 0.000000 2.8356893E-03 Av 2018 2 10 10 0 0.2487304 0.000000 3.9016886E-05 2.4015228E-03 0.000000 0.000000 3.6107833E-03 @@ -1000,21 +1000,21 @@ Av 2018 2 10 14 0 0.2442023 0.000000 3.6765086E-05 2.3894941E-03 0.000000 0.000000 3.6107833E-03 Av 2018 2 10 15 0 0.2554488 0.000000 3.6222744E-05 2.5569964E-03 0.000000 0.000000 2.8356893E-03 Av 2018 2 10 16 0 0.2847248 0.000000 3.5688405E-05 2.8756051E-03 0.000000 0.000000 1.3737304E-03 - Av 2018 2 10 17 0 0.3167506 0.000000 3.5161942E-05 3.1748028E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 18 0 0.3258199 0.000000 3.4643250E-05 3.1717806E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 19 0 0.3221859 0.000000 3.4132205E-05 3.1687610E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 20 0 0.3229704 0.000000 3.3628701E-05 3.1657438E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 21 0 0.3222199 0.000000 3.3132626E-05 3.1627291E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 22 0 0.3220044 0.000000 3.2643868E-05 3.1597167E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 23 0 0.3216042 0.000000 3.2162319E-05 3.1567069E-03 0.000000 0.000000 0.000000 - Av 2018 2 10 24 0 0.3212696 0.000000 3.1687876E-05 3.1536995E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 1 0 0.3163325 0.000000 3.1220432E-05 3.0832724E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 2 0 0.3130061 0.000000 3.0759878E-05 3.0804037E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 3 0 0.3137109 0.000000 3.0306121E-05 3.0775371E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 4 0 0.3130153 0.000000 2.9859058E-05 3.0746732E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 5 0 0.3128078 0.000000 2.9418588E-05 3.0718113E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 6 0 0.3124318 0.000000 2.8984618E-05 3.0689519E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 7 0 0.3121156 0.000000 2.8557050E-05 3.0660944E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 17 0 0.3167506 0.000000 3.5161942E-05 3.1748028E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 18 0 0.3258199 0.000000 3.4643250E-05 3.1717806E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 19 0 0.3221859 0.000000 3.4132205E-05 3.1687610E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 20 0 0.3229704 0.000000 3.3628701E-05 3.1657438E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 21 0 0.3222199 0.000000 3.3132626E-05 3.1627291E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 22 0 0.3220044 0.000000 3.2643868E-05 3.1597167E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 23 0 0.3216042 0.000000 3.2162319E-05 3.1567069E-03 0.000000 0.000000 0.000000 + Av 2018 2 10 24 0 0.3212696 0.000000 3.1687876E-05 3.1536995E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 1 0 0.3163325 0.000000 3.1220432E-05 3.0832724E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 2 0 0.3130061 0.000000 3.0759878E-05 3.0804037E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 3 0 0.3137109 0.000000 3.0306121E-05 3.0775371E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 4 0 0.3130153 0.000000 2.9859058E-05 3.0746732E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 5 0 0.3128078 0.000000 2.9418588E-05 3.0718113E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 6 0 0.3124318 0.000000 2.8984618E-05 3.0689519E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 7 0 0.3121156 0.000000 2.8557050E-05 3.0660944E-03 0.000000 0.000000 0.000000 Av 2018 2 11 8 0 0.2908558 0.000000 2.8135788E-05 2.7577344E-03 0.000000 0.000000 1.3886583E-03 Av 2018 2 11 9 0 0.2551841 0.000000 2.7720740E-05 2.4377676E-03 0.000000 0.000000 2.8300802E-03 Av 2018 2 11 10 0 0.2342197 0.000000 2.7311817E-05 2.2705521E-03 0.000000 0.000000 3.5771730E-03 @@ -1024,21 +1024,21 @@ Av 2018 2 11 14 0 0.2299549 0.000000 2.5735557E-05 2.2591001E-03 0.000000 0.000000 3.5771730E-03 Av 2018 2 11 15 0 0.2408116 0.000000 2.5355917E-05 2.4205898E-03 0.000000 0.000000 2.8300802E-03 Av 2018 2 11 16 0 0.2695277 0.000000 2.4981877E-05 2.7348297E-03 0.000000 0.000000 1.3886583E-03 - Av 2018 2 11 17 0 0.3016968 0.000000 2.4613355E-05 3.0374606E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 18 0 0.3109783 0.000000 2.4250268E-05 3.0345882E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 19 0 0.3073119 0.000000 2.3892540E-05 3.0317183E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 20 0 0.3081487 0.000000 2.3540088E-05 3.0288508E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 21 0 0.3074207 0.000000 2.3192833E-05 3.0259858E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 22 0 0.3072378 0.000000 2.2850703E-05 3.0231231E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 23 0 0.3068664 0.000000 2.2513619E-05 3.0202630E-03 0.000000 0.000000 0.000000 - Av 2018 2 11 24 0 0.3065616 0.000000 2.2181508E-05 3.0174055E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 1 0 0.3018889 0.000000 2.1854295E-05 2.9505903E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 2 0 0.2987444 0.000000 2.1531911E-05 2.9478623E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 3 0 0.2994238 0.000000 2.1214280E-05 2.9451367E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 4 0 0.2987745 0.000000 2.0901336E-05 2.9424131E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 5 0 0.2985881 0.000000 2.0593008E-05 2.9396918E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 6 0 0.2982417 0.000000 2.0289230E-05 2.9369730E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 7 0 0.2979519 0.000000 1.9989931E-05 2.9342563E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 17 0 0.3016968 0.000000 2.4613355E-05 3.0374606E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 18 0 0.3109783 0.000000 2.4250268E-05 3.0345882E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 19 0 0.3073119 0.000000 2.3892540E-05 3.0317183E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 20 0 0.3081487 0.000000 2.3540088E-05 3.0288508E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 21 0 0.3074207 0.000000 2.3192833E-05 3.0259858E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 22 0 0.3072378 0.000000 2.2850703E-05 3.0231231E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 23 0 0.3068664 0.000000 2.2513619E-05 3.0202630E-03 0.000000 0.000000 0.000000 + Av 2018 2 11 24 0 0.3065616 0.000000 2.2181508E-05 3.0174055E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 1 0 0.3018889 0.000000 2.1854295E-05 2.9505903E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 2 0 0.2987444 0.000000 2.1531911E-05 2.9478623E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 3 0 0.2994238 0.000000 2.1214280E-05 2.9451367E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 4 0 0.2987745 0.000000 2.0901336E-05 2.9424131E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 5 0 0.2985881 0.000000 2.0593008E-05 2.9396918E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 6 0 0.2982417 0.000000 2.0289230E-05 2.9369730E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 7 0 0.2979519 0.000000 1.9989931E-05 2.9342563E-03 0.000000 0.000000 0.000000 Av 2018 2 12 8 0 0.2792255 0.000000 1.9695050E-05 2.6625798E-03 0.000000 0.000000 1.2225544E-03 Av 2018 2 12 9 0 0.2482755 0.000000 1.9404517E-05 2.3874615E-03 0.000000 0.000000 2.4607619E-03 Av 2018 2 12 10 0 0.2305706 0.000000 1.9118268E-05 2.2468236E-03 0.000000 0.000000 3.0876924E-03 @@ -1048,20 +1048,20 @@ Av 2018 2 12 14 0 0.2269068 0.000000 1.8014887E-05 2.2359553E-03 0.000000 0.000000 3.0876924E-03 Av 2018 2 12 15 0 0.2359913 0.000000 1.7749138E-05 2.3711591E-03 0.000000 0.000000 2.4607619E-03 Av 2018 2 12 16 0 0.2604927 0.000000 1.7487311E-05 2.6408427E-03 0.000000 0.000000 1.2225544E-03 - Av 2018 2 12 17 0 0.2886028 0.000000 1.7229346E-05 2.9070831E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 18 0 0.2968287 0.000000 1.6975186E-05 2.9043630E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 19 0 0.2935647 0.000000 1.6724774E-05 2.9016451E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 20 0 0.2942967 0.000000 1.6478058E-05 2.8989296E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 21 0 0.2936401 0.000000 1.6234981E-05 2.8962165E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 22 0 0.2934671 0.000000 1.5995491E-05 2.8935059E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 23 0 0.2931268 0.000000 1.5759531E-05 2.8907976E-03 0.000000 0.000000 0.000000 - Av 2018 2 12 24 0 0.2928454 0.000000 1.5527054E-05 2.8880916E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 1 0 0.2884212 0.000000 1.5298006E-05 2.8247037E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 2 0 0.2854461 0.000000 1.5072337E-05 2.8221188E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 3 0 0.2860990 0.000000 1.4849997E-05 2.8195360E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 4 0 0.2854912 0.000000 1.4630935E-05 2.8169556E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 5 0 0.2853225 0.000000 1.4415105E-05 2.8143772E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 6 0 0.2850018 0.000000 1.4202460E-05 2.8118012E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 17 0 0.2886028 0.000000 1.7229346E-05 2.9070831E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 18 0 0.2968287 0.000000 1.6975186E-05 2.9043630E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 19 0 0.2935647 0.000000 1.6724774E-05 2.9016451E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 20 0 0.2942967 0.000000 1.6478058E-05 2.8989296E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 21 0 0.2936401 0.000000 1.6234981E-05 2.8962165E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 22 0 0.2934671 0.000000 1.5995491E-05 2.8935059E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 23 0 0.2931268 0.000000 1.5759531E-05 2.8907976E-03 0.000000 0.000000 0.000000 + Av 2018 2 12 24 0 0.2928454 0.000000 1.5527054E-05 2.8880916E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 1 0 0.2884212 0.000000 1.5298006E-05 2.8247037E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 2 0 0.2854461 0.000000 1.5072337E-05 2.8221188E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 3 0 0.2860990 0.000000 1.4849997E-05 2.8195360E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 4 0 0.2854912 0.000000 1.4630935E-05 2.8169556E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 5 0 0.2853225 0.000000 1.4415105E-05 2.8143772E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 6 0 0.2850018 0.000000 1.4202460E-05 2.8118012E-03 0.000000 0.000000 0.000000 Av 2018 2 13 7 0 0.2845082 0.000000 1.3992952E-05 2.8059185E-03 0.000000 0.000000 1.5039573E-05 Av 2018 2 13 8 0 0.2644322 0.000000 1.3786534E-05 2.5164373E-03 0.000000 0.000000 1.3191733E-03 Av 2018 2 13 9 0 0.2317707 0.000000 1.3583161E-05 2.2269576E-03 0.000000 0.000000 2.6233071E-03 @@ -1073,19 +1073,19 @@ Av 2018 2 13 15 0 0.2192158 0.000000 1.2424398E-05 2.2115195E-03 0.000000 0.000000 2.6233071E-03 Av 2018 2 13 16 0 0.2448976 0.000000 1.2241118E-05 2.4958525E-03 0.000000 0.000000 1.3191733E-03 Av 2018 2 13 17 0 0.2748374 0.000000 1.2060542E-05 2.7801858E-03 0.000000 0.000000 1.5039573E-05 - Av 2018 2 13 18 0 0.2839071 0.000000 1.1882630E-05 2.7809201E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 19 0 0.2806062 0.000000 1.1707342E-05 2.7783478E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 20 0 0.2813809 0.000000 1.1534640E-05 2.7757778E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 21 0 0.2807392 0.000000 1.1364486E-05 2.7732104E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 22 0 0.2805906 0.000000 1.1196842E-05 2.7706448E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 23 0 0.2802712 0.000000 1.1031671E-05 2.7680818E-03 0.000000 0.000000 0.000000 - Av 2018 2 13 24 0 0.2800119 0.000000 1.0868936E-05 2.7655209E-03 0.000000 0.000000 0.000000 - Av 2018 2 14 1 0 0.2803662 0.000000 1.0708603E-05 2.7053745E-03 0.000000 3.9999921E-02 0.000000 - Av 2018 2 14 2 0 0.2828006 0.000000 1.0550634E-05 2.7029268E-03 0.000000 5.9999879E-02 0.000000 - Av 2018 2 14 3 0 0.4403059 9.1544527E-05 7.3153562E-05 2.7264638E-03 2.0874603E-02 7.9999842E-02 0.000000 - Av 2018 2 14 4 0 0.4827097 2.5516298E-05 1.3583161E-04 2.7600217E-03 1.2984007E-02 9.9999802E-03 0.000000 - Av 2018 2 14 5 0 0.3933345 2.0615134E-05 1.3618841E-04 2.7712500E-03 1.0679265E-02 9.9999802E-03 0.000000 - Av 2018 2 14 6 0 0.4061346 2.0636868E-05 1.3629135E-04 2.7817681E-03 1.0160663E-02 9.9999802E-03 0.000000 + Av 2018 2 13 18 0 0.2839071 0.000000 1.1882630E-05 2.7809201E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 19 0 0.2806062 0.000000 1.1707342E-05 2.7783478E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 20 0 0.2813809 0.000000 1.1534640E-05 2.7757778E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 21 0 0.2807392 0.000000 1.1364486E-05 2.7732104E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 22 0 0.2805906 0.000000 1.1196842E-05 2.7706448E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 23 0 0.2802712 0.000000 1.1031671E-05 2.7680818E-03 0.000000 0.000000 0.000000 + Av 2018 2 13 24 0 0.2800119 0.000000 1.0868936E-05 2.7655209E-03 0.000000 0.000000 0.000000 + Av 2018 2 14 1 0 0.2803662 0.000000 1.0708603E-05 2.7053745E-03 0.000000 3.9999921E-02 0.000000 + Av 2018 2 14 2 0 0.2828006 0.000000 1.0550634E-05 2.7029268E-03 0.000000 5.9999879E-02 0.000000 + Av 2018 2 14 3 0 0.4403059 9.1544527E-05 7.3153562E-05 2.7264638E-03 2.0874603E-02 7.9999842E-02 0.000000 + Av 2018 2 14 4 0 0.4827097 2.5516298E-05 1.3583161E-04 2.7600217E-03 1.2984007E-02 9.9999802E-03 0.000000 + Av 2018 2 14 5 0 0.3933345 2.0615134E-05 1.3618841E-04 2.7712500E-03 1.0679265E-02 9.9999802E-03 0.000000 + Av 2018 2 14 6 0 0.4061346 2.0636868E-05 1.3629135E-04 2.7817681E-03 1.0160663E-02 9.9999802E-03 0.000000 Av 2018 2 14 7 0 0.4557224 8.2634389E-05 1.3957729E-04 2.7867923E-03 1.7618828E-02 1.9999960E-02 4.9273956E-05 Av 2018 2 14 8 0 0.3775826 0.000000 1.4173973E-04 2.4952723E-03 4.4510956E-03 0.000000 1.4214641E-03 Av 2018 2 14 9 0 0.2463439 0.000000 1.3964885E-04 2.1908479E-03 1.5290648E-03 0.000000 2.7936543E-03 @@ -1097,19 +1097,19 @@ Av 2018 2 14 15 0 0.4737266 8.1485048E-08 1.9358229E-04 2.2268812E-03 8.3097741E-03 0.000000 2.7936543E-03 Av 2018 2 14 16 0 0.2567826 0.000000 1.9073083E-04 2.5266497E-03 2.4437669E-03 0.000000 1.4214641E-03 Av 2018 2 14 17 0 0.3231431 0.000000 1.8791725E-04 2.8259633E-03 9.6417137E-04 0.000000 4.9273956E-05 - Av 2018 2 14 18 0 0.3072450 0.000000 1.8514517E-04 2.8342376E-03 4.6130127E-04 0.000000 0.000000 - Av 2018 2 14 19 0 0.3079553 0.000000 1.8241399E-04 2.8316737E-03 2.5212858E-04 0.000000 0.000000 - Av 2018 2 14 20 0 0.3048880 0.000000 1.7972308E-04 2.8291116E-03 1.5168004E-04 0.000000 0.000000 - Av 2018 2 14 21 0 0.3041965 0.000000 1.7707190E-04 2.8265517E-03 9.8034026E-05 0.000000 0.000000 - Av 2018 2 14 22 0 0.3031560 0.000000 1.7445981E-04 2.8239936E-03 6.6959357E-05 0.000000 0.000000 - Av 2018 2 14 23 0 0.3100412 3.3882113E-06 1.7206042E-04 2.8239840E-03 9.2604186E-04 9.9999802E-03 0.000000 - Av 2018 2 14 24 0 0.3569797 2.1401942E-05 1.7079589E-04 2.8304656E-03 6.9075241E-03 9.9999802E-03 0.000000 - Av 2018 2 15 1 0 0.3461196 0.000000 1.6937124E-04 2.7754933E-03 2.4494496E-03 0.000000 0.000000 - Av 2018 2 15 2 0 0.3026928 0.000000 1.6687275E-04 2.7730302E-03 9.6591527E-04 0.000000 0.000000 - Av 2018 2 15 3 0 0.3036174 0.000000 1.6441112E-04 2.7705689E-03 4.6197494E-04 0.000000 0.000000 - Av 2018 2 15 4 0 0.3417650 2.1404270E-05 1.6308649E-04 2.7742549E-03 6.2669171E-03 9.9999802E-03 0.000000 - Av 2018 2 15 5 0 0.3417448 0.000000 1.6177593E-04 2.7786472E-03 2.3567998E-03 0.000000 0.000000 - Av 2018 2 15 6 0 0.3027939 0.000000 1.5938947E-04 2.7761746E-03 9.3734666E-04 0.000000 0.000000 + Av 2018 2 14 18 0 0.3072450 0.000000 1.8514517E-04 2.8342376E-03 4.6130127E-04 0.000000 0.000000 + Av 2018 2 14 19 0 0.3079553 0.000000 1.8241399E-04 2.8316737E-03 2.5212858E-04 0.000000 0.000000 + Av 2018 2 14 20 0 0.3048880 0.000000 1.7972308E-04 2.8291116E-03 1.5168004E-04 0.000000 0.000000 + Av 2018 2 14 21 0 0.3041965 0.000000 1.7707190E-04 2.8265517E-03 9.8034026E-05 0.000000 0.000000 + Av 2018 2 14 22 0 0.3031560 0.000000 1.7445981E-04 2.8239936E-03 6.6959357E-05 0.000000 0.000000 + Av 2018 2 14 23 0 0.3100412 3.3882113E-06 1.7206042E-04 2.8239840E-03 9.2604186E-04 9.9999802E-03 0.000000 + Av 2018 2 14 24 0 0.3569797 2.1401942E-05 1.7079589E-04 2.8304656E-03 6.9075241E-03 9.9999802E-03 0.000000 + Av 2018 2 15 1 0 0.3461196 0.000000 1.6937124E-04 2.7754933E-03 2.4494496E-03 0.000000 0.000000 + Av 2018 2 15 2 0 0.3026928 0.000000 1.6687275E-04 2.7730302E-03 9.6591527E-04 0.000000 0.000000 + Av 2018 2 15 3 0 0.3036174 0.000000 1.6441112E-04 2.7705689E-03 4.6197494E-04 0.000000 0.000000 + Av 2018 2 15 4 0 0.3417650 2.1404270E-05 1.6308649E-04 2.7742549E-03 6.2669171E-03 9.9999802E-03 0.000000 + Av 2018 2 15 5 0 0.3417448 0.000000 1.6177593E-04 2.7786472E-03 2.3567998E-03 0.000000 0.000000 + Av 2018 2 15 6 0 0.3027939 0.000000 1.5938947E-04 2.7761746E-03 9.3734666E-04 0.000000 0.000000 Av 2018 2 15 7 0 0.3014292 0.000000 1.5703823E-04 2.7547071E-03 4.5090396E-04 0.000000 8.6348708E-05 Av 2018 2 15 8 0 0.2737547 0.000000 1.5472167E-04 2.4381406E-03 2.4739269E-04 0.000000 1.5140625E-03 Av 2018 2 15 9 0 0.2376900 0.000000 1.5243927E-04 2.1215766E-03 1.4925154E-04 0.000000 2.9417765E-03 @@ -1121,19 +1121,19 @@ Av 2018 2 15 15 0 0.2220133 0.000000 1.3943487E-04 2.1068137E-03 0.000000 0.000000 2.9417765E-03 Av 2018 2 15 16 0 0.2486295 0.000000 1.3737798E-04 2.4184573E-03 0.000000 0.000000 1.5140625E-03 Av 2018 2 15 17 0 0.2817291 0.000000 1.3535145E-04 2.7301025E-03 0.000000 0.000000 8.6348708E-05 - Av 2018 2 15 18 0 0.2924017 0.000000 1.3335480E-04 2.7466493E-03 0.000000 0.000000 0.000000 - Av 2018 2 15 19 0 0.2893889 0.000000 1.3138760E-04 2.7442011E-03 0.000000 0.000000 0.000000 - Av 2018 2 15 20 0 0.2898386 0.000000 1.2944943E-04 2.7417550E-03 0.000000 0.000000 0.000000 - Av 2018 2 15 21 0 0.2890885 0.000000 1.2753985E-04 2.7393107E-03 0.000000 0.000000 0.000000 - Av 2018 2 15 22 0 0.2887597 0.000000 1.2565844E-04 2.7368683E-03 0.000000 0.000000 0.000000 - Av 2018 2 15 23 0 0.2882885 0.000000 1.2380477E-04 2.7344278E-03 0.000000 0.000000 0.000000 - Av 2018 2 15 24 0 0.2878708 0.000000 1.2197847E-04 2.7319894E-03 0.000000 0.000000 0.000000 - Av 2018 2 16 1 0 0.2835839 0.000000 1.2017909E-04 2.6728215E-03 0.000000 0.000000 0.000000 - Av 2018 2 16 2 0 0.2806534 0.000000 1.1840627E-04 2.6704918E-03 0.000000 0.000000 0.000000 - Av 2018 2 16 3 0 0.2811168 0.000000 1.1665959E-04 2.6681640E-03 0.000000 0.000000 0.000000 - Av 2018 2 16 4 0 0.2815417 0.000000 1.1493867E-04 2.6658380E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 16 5 0 0.2819881 0.000000 1.1324315E-04 2.6635139E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 16 6 0 0.3404470 7.5389777E-05 1.1545057E-04 2.6718471E-03 7.6396810E-03 1.9999960E-02 0.000000 + Av 2018 2 15 18 0 0.2924017 0.000000 1.3335480E-04 2.7466493E-03 0.000000 0.000000 0.000000 + Av 2018 2 15 19 0 0.2893889 0.000000 1.3138760E-04 2.7442011E-03 0.000000 0.000000 0.000000 + Av 2018 2 15 20 0 0.2898386 0.000000 1.2944943E-04 2.7417550E-03 0.000000 0.000000 0.000000 + Av 2018 2 15 21 0 0.2890885 0.000000 1.2753985E-04 2.7393107E-03 0.000000 0.000000 0.000000 + Av 2018 2 15 22 0 0.2887597 0.000000 1.2565844E-04 2.7368683E-03 0.000000 0.000000 0.000000 + Av 2018 2 15 23 0 0.2882885 0.000000 1.2380477E-04 2.7344278E-03 0.000000 0.000000 0.000000 + Av 2018 2 15 24 0 0.2878708 0.000000 1.2197847E-04 2.7319894E-03 0.000000 0.000000 0.000000 + Av 2018 2 16 1 0 0.2835839 0.000000 1.2017909E-04 2.6728215E-03 0.000000 0.000000 0.000000 + Av 2018 2 16 2 0 0.2806534 0.000000 1.1840627E-04 2.6704918E-03 0.000000 0.000000 0.000000 + Av 2018 2 16 3 0 0.2811168 0.000000 1.1665959E-04 2.6681640E-03 0.000000 0.000000 0.000000 + Av 2018 2 16 4 0 0.2815417 0.000000 1.1493867E-04 2.6658380E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 16 5 0 0.2819881 0.000000 1.1324315E-04 2.6635139E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 16 6 0 0.3404470 7.5389777E-05 1.1545057E-04 2.6718471E-03 7.6396810E-03 1.9999960E-02 0.000000 Av 2018 2 16 7 0 0.3895285 2.1355983E-05 1.1870520E-04 2.6590985E-03 9.9622970E-03 9.9999802E-03 1.2910836E-04 Av 2018 2 16 8 0 0.3089498 0.000000 1.1804762E-04 2.3302794E-03 2.8030102E-03 0.000000 1.6437764E-03 Av 2018 2 16 9 0 0.2281379 0.000000 1.1630623E-04 1.9946904E-03 1.0724507E-03 0.000000 3.1584445E-03 @@ -1145,19 +1145,19 @@ Av 2018 2 16 15 0 0.2055538 0.000000 1.0638428E-04 1.9805576E-03 4.9773658E-05 0.000000 3.1584445E-03 Av 2018 2 16 16 0 0.2346159 0.000000 1.0481494E-04 2.3114355E-03 3.6633843E-05 0.000000 1.6437764E-03 Av 2018 2 16 17 0 0.2704429 0.000000 1.0326876E-04 2.6423149E-03 1.8148049E-04 0.000000 1.2910836E-04 - Av 2018 2 16 18 0 0.2819441 0.000000 1.0174538E-04 2.6683731E-03 0.000000 0.000000 0.000000 - Av 2018 2 16 19 0 0.2781317 0.000000 1.0024448E-04 2.6660294E-03 0.000000 0.000000 0.000000 - Av 2018 2 16 20 0 0.2800730 0.000000 9.8765711E-05 2.6636873E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 16 21 0 0.2788804 0.000000 9.7308759E-05 2.6613472E-03 0.000000 0.000000 0.000000 - Av 2018 2 16 22 0 0.2787758 0.000000 9.5873307E-05 2.6590086E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 16 23 0 0.2783009 0.000000 9.4459028E-05 2.6566719E-03 0.000000 0.000000 0.000000 - Av 2018 2 16 24 0 0.2768262 0.000000 9.3065610E-05 2.6543373E-03 0.000000 0.000000 0.000000 - Av 2018 2 17 1 0 0.2731123 0.000000 9.1692746E-05 2.5972310E-03 0.000000 0.000000 0.000000 - Av 2018 2 17 2 0 0.2701868 0.000000 9.0340131E-05 2.5950000E-03 0.000000 0.000000 0.000000 - Av 2018 2 17 3 0 0.2707186 0.000000 8.9007466E-05 2.5927704E-03 0.000000 0.000000 0.000000 - Av 2018 2 17 4 0 0.2700511 0.000000 8.7694469E-05 2.5905424E-03 0.000000 0.000000 0.000000 - Av 2018 2 17 5 0 0.3195246 6.3511216E-05 8.9669949E-05 2.5980715E-03 6.2238937E-03 1.9999960E-02 0.000000 - Av 2018 2 17 6 0 0.3201135 0.000000 9.1600108E-05 2.6067731E-03 2.4171590E-03 0.000000 0.000000 + Av 2018 2 16 18 0 0.2819441 0.000000 1.0174538E-04 2.6683731E-03 0.000000 0.000000 0.000000 + Av 2018 2 16 19 0 0.2781317 0.000000 1.0024448E-04 2.6660294E-03 0.000000 0.000000 0.000000 + Av 2018 2 16 20 0 0.2800730 0.000000 9.8765711E-05 2.6636873E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 16 21 0 0.2788804 0.000000 9.7308759E-05 2.6613472E-03 0.000000 0.000000 0.000000 + Av 2018 2 16 22 0 0.2787758 0.000000 9.5873307E-05 2.6590086E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 16 23 0 0.2783009 0.000000 9.4459028E-05 2.6566719E-03 0.000000 0.000000 0.000000 + Av 2018 2 16 24 0 0.2768262 0.000000 9.3065610E-05 2.6543373E-03 0.000000 0.000000 0.000000 + Av 2018 2 17 1 0 0.2731123 0.000000 9.1692746E-05 2.5972310E-03 0.000000 0.000000 0.000000 + Av 2018 2 17 2 0 0.2701868 0.000000 9.0340131E-05 2.5950000E-03 0.000000 0.000000 0.000000 + Av 2018 2 17 3 0 0.2707186 0.000000 8.9007466E-05 2.5927704E-03 0.000000 0.000000 0.000000 + Av 2018 2 17 4 0 0.2700511 0.000000 8.7694469E-05 2.5905424E-03 0.000000 0.000000 0.000000 + Av 2018 2 17 5 0 0.3195246 6.3511216E-05 8.9669949E-05 2.5980715E-03 6.2238937E-03 1.9999960E-02 0.000000 + Av 2018 2 17 6 0 0.3201135 0.000000 9.1600108E-05 2.6067731E-03 2.4171590E-03 0.000000 0.000000 Av 2018 2 17 7 0 0.4423553 1.9184529E-04 1.0012730E-04 2.5817817E-03 2.2857944E-02 2.9999940E-02 1.7360263E-04 Av 2018 2 17 8 0 0.4522977 2.0951487E-05 1.0955925E-04 2.2561573E-03 1.3049036E-02 9.9999802E-03 1.7492826E-03 Av 2018 2 17 9 0 0.2551467 0.000000 1.0901718E-04 1.9138404E-03 3.4070977E-03 0.000000 3.3249627E-03 @@ -1169,19 +1169,19 @@ Av 2018 2 17 15 0 0.1976302 0.000000 9.9894060E-05 1.9039332E-03 1.0216179E-04 0.000000 3.3249627E-03 Av 2018 2 17 16 0 0.2275612 0.000000 9.8420467E-05 2.2482923E-03 6.9432506E-05 0.000000 1.7492826E-03 Av 2018 2 17 17 0 0.2636820 0.000000 9.6968608E-05 2.5926533E-03 4.9342274E-05 0.000000 1.7360263E-04 - Av 2018 2 17 18 0 0.2767103 0.000000 9.5538177E-05 2.6285590E-03 3.6348159E-05 0.000000 0.000000 - Av 2018 2 17 19 0 0.2751822 0.000000 9.4128838E-05 2.6262740E-03 1.8063019E-04 0.000000 0.000000 - Av 2018 2 17 20 0 0.2749661 0.000000 9.2740287E-05 2.6239904E-03 0.000000 0.000000 0.000000 - Av 2018 2 17 21 0 0.2733165 0.000000 9.1372225E-05 2.6217089E-03 0.000000 0.000000 0.000000 - Av 2018 2 17 22 0 0.2733956 0.000000 9.0024347E-05 2.6194286E-03 0.000000 0.000000 0.000000 - Av 2018 2 17 23 0 0.2728765 0.000000 8.8696339E-05 2.6171501E-03 0.000000 0.000000 0.000000 - Av 2018 2 17 24 0 0.2736906 0.000000 8.7387933E-05 2.6148735E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 18 1 0 0.2692682 0.000000 8.6098822E-05 2.5588246E-03 0.000000 0.000000 0.000000 - Av 2018 2 18 2 0 0.2655538 0.000000 8.4828731E-05 2.5566488E-03 0.000000 0.000000 0.000000 - Av 2018 2 18 3 0 0.2663784 0.000000 8.3577375E-05 2.5544746E-03 0.000000 0.000000 0.000000 - Av 2018 2 18 4 0 0.4644711 1.3975664E-05 1.0310284E-04 2.5721302E-03 2.7905138E-02 4.9999900E-02 0.000000 - Av 2018 2 18 5 0 0.5014578 2.3621556E-05 1.2345589E-04 2.5983928E-03 1.4249536E-02 9.9999802E-03 0.000000 - Av 2018 2 18 6 0 0.4323662 8.7638517E-05 1.2736810E-04 2.6141577E-03 1.8676003E-02 1.9999960E-02 0.000000 + Av 2018 2 17 18 0 0.2767103 0.000000 9.5538177E-05 2.6285590E-03 3.6348159E-05 0.000000 0.000000 + Av 2018 2 17 19 0 0.2751822 0.000000 9.4128838E-05 2.6262740E-03 1.8063019E-04 0.000000 0.000000 + Av 2018 2 17 20 0 0.2749661 0.000000 9.2740287E-05 2.6239904E-03 0.000000 0.000000 0.000000 + Av 2018 2 17 21 0 0.2733165 0.000000 9.1372225E-05 2.6217089E-03 0.000000 0.000000 0.000000 + Av 2018 2 17 22 0 0.2733956 0.000000 9.0024347E-05 2.6194286E-03 0.000000 0.000000 0.000000 + Av 2018 2 17 23 0 0.2728765 0.000000 8.8696339E-05 2.6171501E-03 0.000000 0.000000 0.000000 + Av 2018 2 17 24 0 0.2736906 0.000000 8.7387933E-05 2.6148735E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 18 1 0 0.2692682 0.000000 8.6098822E-05 2.5588246E-03 0.000000 0.000000 0.000000 + Av 2018 2 18 2 0 0.2655538 0.000000 8.4828731E-05 2.5566488E-03 0.000000 0.000000 0.000000 + Av 2018 2 18 3 0 0.2663784 0.000000 8.3577375E-05 2.5544746E-03 0.000000 0.000000 0.000000 + Av 2018 2 18 4 0 0.4644711 1.3975664E-05 1.0310284E-04 2.5721302E-03 2.7905138E-02 4.9999900E-02 0.000000 + Av 2018 2 18 5 0 0.5014578 2.3621556E-05 1.2345589E-04 2.5983928E-03 1.4249536E-02 9.9999802E-03 0.000000 + Av 2018 2 18 6 0 0.4323662 8.7638517E-05 1.2736810E-04 2.6141577E-03 1.8676003E-02 1.9999960E-02 0.000000 Av 2018 2 18 7 0 0.4407494 2.2005182E-05 1.3112364E-04 2.5934237E-03 1.1968967E-02 9.9999802E-03 1.6779335E-04 Av 2018 2 18 8 0 0.3045878 0.000000 1.3031940E-04 2.3249898E-03 3.1984115E-03 0.000000 1.4080814E-03 Av 2018 2 18 9 0 0.2382493 0.000000 1.2839699E-04 2.0498629E-03 1.1874530E-03 0.000000 2.6483694E-03 @@ -1193,19 +1193,19 @@ Av 2018 2 18 15 0 0.2418753 0.000000 8.5306814E-04 2.1564069E-03 5.5043176E-03 0.000000 2.6483694E-03 Av 2018 2 18 16 0 0.3918004 0.000000 8.4048399E-04 2.4274297E-03 1.7958308E-03 0.000000 1.4080814E-03 Av 2018 2 18 17 0 0.5135661 1.1401213E-05 8.4653927E-04 2.7158845E-03 2.4765057E-02 3.9999921E-02 1.6779335E-04 - Av 2018 2 18 18 0 0.6421961 1.2469657E-04 8.5886841E-04 2.7821772E-03 2.1410527E-02 1.9999960E-02 0.000000 - Av 2018 2 18 19 0 0.4625523 0.000000 8.5262128E-04 2.7932881E-03 4.8767505E-03 0.000000 0.000000 - Av 2018 2 18 20 0 0.3778898 0.000000 8.4004377E-04 2.7913922E-03 1.6388030E-03 0.000000 0.000000 - Av 2018 2 18 21 0 0.3770272 0.000000 8.2765176E-04 2.7894937E-03 7.0477655E-04 0.000000 0.000000 - Av 2018 2 18 22 0 0.3666925 0.000000 8.1544265E-04 2.7875933E-03 3.5759510E-04 0.000000 0.000000 - Av 2018 2 18 23 0 0.3649769 0.000000 8.0341357E-04 2.7856901E-03 2.0380582E-04 0.000000 0.000000 - Av 2018 2 18 24 0 0.3621217 0.000000 7.9156191E-04 2.7837849E-03 1.2647099E-04 0.000000 0.000000 - Av 2018 2 19 1 0 0.3564990 0.000000 7.7988516E-04 2.7238631E-03 8.3701329E-05 0.000000 0.000000 - Av 2018 2 19 2 0 0.3522213 0.000000 7.6838059E-04 2.7220550E-03 5.8243044E-05 0.000000 0.000000 - Av 2018 2 19 3 0 0.3516290 0.000000 7.5704575E-04 2.7202447E-03 4.2179883E-05 0.000000 0.000000 - Av 2018 2 19 4 0 0.3510060 0.000000 7.4587815E-04 2.7184321E-03 1.9749510E-04 0.000000 0.000000 - Av 2018 2 19 5 0 0.3491831 0.000000 7.3487527E-04 2.7166172E-03 0.000000 0.000000 0.000000 - Av 2018 2 19 6 0 0.3467442 0.000000 7.2403467E-04 2.7148002E-03 0.000000 0.000000 0.000000 + Av 2018 2 18 18 0 0.6421961 1.2469657E-04 8.5886841E-04 2.7821772E-03 2.1410527E-02 1.9999960E-02 0.000000 + Av 2018 2 18 19 0 0.4625523 0.000000 8.5262128E-04 2.7932881E-03 4.8767505E-03 0.000000 0.000000 + Av 2018 2 18 20 0 0.3778898 0.000000 8.4004377E-04 2.7913922E-03 1.6388030E-03 0.000000 0.000000 + Av 2018 2 18 21 0 0.3770272 0.000000 8.2765176E-04 2.7894937E-03 7.0477655E-04 0.000000 0.000000 + Av 2018 2 18 22 0 0.3666925 0.000000 8.1544265E-04 2.7875933E-03 3.5759510E-04 0.000000 0.000000 + Av 2018 2 18 23 0 0.3649769 0.000000 8.0341357E-04 2.7856901E-03 2.0380582E-04 0.000000 0.000000 + Av 2018 2 18 24 0 0.3621217 0.000000 7.9156191E-04 2.7837849E-03 1.2647099E-04 0.000000 0.000000 + Av 2018 2 19 1 0 0.3564990 0.000000 7.7988516E-04 2.7238631E-03 8.3701329E-05 0.000000 0.000000 + Av 2018 2 19 2 0 0.3522213 0.000000 7.6838059E-04 2.7220550E-03 5.8243044E-05 0.000000 0.000000 + Av 2018 2 19 3 0 0.3516290 0.000000 7.5704575E-04 2.7202447E-03 4.2179883E-05 0.000000 0.000000 + Av 2018 2 19 4 0 0.3510060 0.000000 7.4587815E-04 2.7184321E-03 1.9749510E-04 0.000000 0.000000 + Av 2018 2 19 5 0 0.3491831 0.000000 7.3487527E-04 2.7166172E-03 0.000000 0.000000 0.000000 + Av 2018 2 19 6 0 0.3467442 0.000000 7.2403467E-04 2.7148002E-03 0.000000 0.000000 0.000000 Av 2018 2 19 7 0 0.3432289 0.000000 7.1335403E-04 2.6742471E-03 0.000000 0.000000 1.7606484E-04 Av 2018 2 19 8 0 0.3235809 0.000000 7.0283090E-04 2.4311806E-03 0.000000 0.000000 1.2726331E-03 Av 2018 2 19 9 0 0.3872737 1.0716815E-04 6.9801358E-04 2.1988736E-03 1.1891852E-02 1.9999960E-02 2.3692013E-03 @@ -1217,19 +1217,19 @@ Av 2018 2 19 15 0 0.2843395 0.000000 6.4359442E-04 2.1998251E-03 1.1505595E-04 0.000000 2.3692013E-03 Av 2018 2 19 16 0 0.3040301 0.000000 6.3410035E-04 2.4392097E-03 7.7061028E-05 0.000000 1.2726331E-03 Av 2018 2 19 17 0 0.3282655 0.000000 6.2474638E-04 2.6785927E-03 5.4130811E-05 0.000000 1.7606484E-04 - Av 2018 2 19 18 0 0.3372390 0.000000 6.1553041E-04 2.7154628E-03 3.9501567E-05 0.000000 0.000000 - Av 2018 2 19 19 0 0.3361976 0.000000 6.0645037E-04 2.7135969E-03 1.8987383E-04 0.000000 0.000000 - Av 2018 2 19 20 0 0.3348128 0.000000 5.9750426E-04 2.7117291E-03 0.000000 0.000000 0.000000 - Av 2018 2 19 21 0 0.3325436 0.000000 5.8869016E-04 2.7098595E-03 0.000000 0.000000 0.000000 - Av 2018 2 19 22 0 0.3318896 0.000000 5.8000605E-04 2.7079880E-03 0.000000 0.000000 0.000000 - Av 2018 2 19 23 0 0.3306912 0.000000 5.7145010E-04 2.7061149E-03 0.000000 0.000000 0.000000 - Av 2018 2 19 24 0 0.3296992 0.000000 5.6302035E-04 2.7042401E-03 0.000000 0.000000 0.000000 - Av 2018 2 20 1 0 0.3248470 0.000000 5.5471488E-04 2.6463594E-03 0.000000 0.000000 0.000000 - Av 2018 2 20 2 0 0.3213602 0.000000 5.4653198E-04 2.6445785E-03 0.000000 0.000000 0.000000 - Av 2018 2 20 3 0 0.3212267 0.000000 5.3846976E-04 2.6427961E-03 0.000000 0.000000 0.000000 - Av 2018 2 20 4 0 0.3199433 0.000000 5.3052645E-04 2.6410120E-03 0.000000 0.000000 0.000000 - Av 2018 2 20 5 0 0.3190756 0.000000 5.2270037E-04 2.6392261E-03 0.000000 0.000000 0.000000 - Av 2018 2 20 6 0 0.3180789 0.000000 5.1498978E-04 2.6374387E-03 0.000000 0.000000 0.000000 + Av 2018 2 19 18 0 0.3372390 0.000000 6.1553041E-04 2.7154628E-03 3.9501567E-05 0.000000 0.000000 + Av 2018 2 19 19 0 0.3361976 0.000000 6.0645037E-04 2.7135969E-03 1.8987383E-04 0.000000 0.000000 + Av 2018 2 19 20 0 0.3348128 0.000000 5.9750426E-04 2.7117291E-03 0.000000 0.000000 0.000000 + Av 2018 2 19 21 0 0.3325436 0.000000 5.8869016E-04 2.7098595E-03 0.000000 0.000000 0.000000 + Av 2018 2 19 22 0 0.3318896 0.000000 5.8000605E-04 2.7079880E-03 0.000000 0.000000 0.000000 + Av 2018 2 19 23 0 0.3306912 0.000000 5.7145010E-04 2.7061149E-03 0.000000 0.000000 0.000000 + Av 2018 2 19 24 0 0.3296992 0.000000 5.6302035E-04 2.7042401E-03 0.000000 0.000000 0.000000 + Av 2018 2 20 1 0 0.3248470 0.000000 5.5471488E-04 2.6463594E-03 0.000000 0.000000 0.000000 + Av 2018 2 20 2 0 0.3213602 0.000000 5.4653198E-04 2.6445785E-03 0.000000 0.000000 0.000000 + Av 2018 2 20 3 0 0.3212267 0.000000 5.3846976E-04 2.6427961E-03 0.000000 0.000000 0.000000 + Av 2018 2 20 4 0 0.3199433 0.000000 5.3052645E-04 2.6410120E-03 0.000000 0.000000 0.000000 + Av 2018 2 20 5 0 0.3190756 0.000000 5.2270037E-04 2.6392261E-03 0.000000 0.000000 0.000000 + Av 2018 2 20 6 0 0.3180789 0.000000 5.1498978E-04 2.6374387E-03 0.000000 0.000000 0.000000 Av 2018 2 20 7 0 0.3140417 0.000000 5.0739280E-04 2.5903806E-03 0.000000 0.000000 2.0576759E-04 Av 2018 2 20 8 0 0.2944076 0.000000 4.9990800E-04 2.3451976E-03 0.000000 0.000000 1.3120959E-03 Av 2018 2 20 9 0 0.2666580 0.000000 4.9253355E-04 2.1000132E-03 0.000000 0.000000 2.4184240E-03 @@ -1241,19 +1241,19 @@ Av 2018 2 20 15 0 0.4151852 9.5371070E-05 5.6184304E-04 2.2356855E-03 1.5256383E-02 1.9999960E-02 2.4184240E-03 Av 2018 2 20 16 0 0.4930716 9.9370904E-05 5.6364946E-04 2.4991995E-03 1.7271670E-02 1.9999960E-02 1.3120959E-03 Av 2018 2 20 17 0 0.4172362 0.000000 5.6047365E-04 2.7524456E-03 4.2120907E-03 0.000000 2.0576759E-04 - Av 2018 2 20 18 0 0.3460414 0.000000 5.5220578E-04 2.7957580E-03 1.4661727E-03 0.000000 0.000000 - Av 2018 2 20 19 0 0.3871518 2.3534785E-05 5.4528349E-04 2.7992551E-03 5.8736582E-03 9.9999802E-03 0.000000 - Av 2018 2 20 20 0 0.3772195 0.000000 5.3845730E-04 2.8034283E-03 2.1689734E-03 0.000000 0.000000 - Av 2018 2 20 21 0 0.3429934 0.000000 5.3051423E-04 2.8014518E-03 8.7851397E-04 0.000000 0.000000 - Av 2018 2 20 22 0 0.3417241 0.000000 5.2268832E-04 2.7994737E-03 4.2785477E-04 0.000000 0.000000 - Av 2018 2 20 23 0 0.3364809 0.000000 5.1497784E-04 2.7974937E-03 2.3681246E-04 0.000000 0.000000 - Av 2018 2 20 24 0 0.3350647 0.000000 5.0738110E-04 2.7955119E-03 1.4379459E-04 0.000000 0.000000 - Av 2018 2 21 1 0 0.3293298 0.000000 4.9989647E-04 2.7352422E-03 9.3596551E-05 0.000000 0.000000 - Av 2018 2 21 2 0 0.3255512 0.000000 4.9252220E-04 2.7333603E-03 6.4282751E-05 0.000000 0.000000 - Av 2018 2 21 3 0 0.3252916 0.000000 4.8525672E-04 2.7314764E-03 4.6067573E-05 0.000000 0.000000 - Av 2018 2 21 4 0 0.3666857 3.0009156E-05 4.7965915E-04 2.7356981E-03 5.7684621E-03 9.9999802E-03 0.000000 - Av 2018 2 21 5 0 0.3673206 0.000000 4.7413638E-04 2.7405911E-03 2.2779452E-03 0.000000 0.000000 - Av 2018 2 21 6 0 0.3301987 0.000000 4.6714212E-04 2.7386867E-03 9.1280078E-04 0.000000 0.000000 + Av 2018 2 20 18 0 0.3460414 0.000000 5.5220578E-04 2.7957580E-03 1.4661727E-03 0.000000 0.000000 + Av 2018 2 20 19 0 0.3871518 2.3534785E-05 5.4528349E-04 2.7992551E-03 5.8736582E-03 9.9999802E-03 0.000000 + Av 2018 2 20 20 0 0.3772195 0.000000 5.3845730E-04 2.8034283E-03 2.1689734E-03 0.000000 0.000000 + Av 2018 2 20 21 0 0.3429934 0.000000 5.3051423E-04 2.8014518E-03 8.7851397E-04 0.000000 0.000000 + Av 2018 2 20 22 0 0.3417241 0.000000 5.2268832E-04 2.7994737E-03 4.2785477E-04 0.000000 0.000000 + Av 2018 2 20 23 0 0.3364809 0.000000 5.1497784E-04 2.7974937E-03 2.3681246E-04 0.000000 0.000000 + Av 2018 2 20 24 0 0.3350647 0.000000 5.0738110E-04 2.7955119E-03 1.4379459E-04 0.000000 0.000000 + Av 2018 2 21 1 0 0.3293298 0.000000 4.9989647E-04 2.7352422E-03 9.3596551E-05 0.000000 0.000000 + Av 2018 2 21 2 0 0.3255512 0.000000 4.9252220E-04 2.7333603E-03 6.4282751E-05 0.000000 0.000000 + Av 2018 2 21 3 0 0.3252916 0.000000 4.8525672E-04 2.7314764E-03 4.6067573E-05 0.000000 0.000000 + Av 2018 2 21 4 0 0.3666857 3.0009156E-05 4.7965915E-04 2.7356981E-03 5.7684621E-03 9.9999802E-03 0.000000 + Av 2018 2 21 5 0 0.3673206 0.000000 4.7413638E-04 2.7405911E-03 2.2779452E-03 0.000000 0.000000 + Av 2018 2 21 6 0 0.3301987 0.000000 4.6714212E-04 2.7386867E-03 9.1280078E-04 0.000000 0.000000 Av 2018 2 21 7 0 0.3261250 0.000000 4.6025103E-04 2.6886084E-03 4.4132926E-04 0.000000 2.1896642E-04 Av 2018 2 21 8 0 0.3029072 0.000000 4.5346163E-04 2.4590138E-03 2.4301148E-04 0.000000 1.2539083E-03 Av 2018 2 21 9 0 0.7284144 1.8765764E-04 5.4341601E-04 2.2548849E-03 6.2184364E-02 7.9999842E-02 2.2888503E-03 @@ -1265,19 +1265,19 @@ Av 2018 2 21 15 0 0.3804899 0.000000 1.4329830E-03 2.3876068E-03 5.9583731E-04 0.000000 2.2888503E-03 Av 2018 2 21 16 0 0.4065285 0.000000 1.4118443E-03 2.6141175E-03 3.1157790E-04 0.000000 1.2539083E-03 Av 2018 2 21 17 0 0.4228519 0.000000 1.3910172E-03 2.8406165E-03 1.8148925E-04 0.000000 2.1896642E-04 - Av 2018 2 21 18 0 0.4317793 0.000000 1.3704976E-03 2.8875892E-03 1.1447349E-04 0.000000 0.000000 - Av 2018 2 21 19 0 0.4283348 0.000000 1.3502806E-03 2.8863770E-03 7.6719451E-05 0.000000 0.000000 - Av 2018 2 21 20 0 0.4262286 0.000000 1.3303618E-03 2.8851540E-03 5.3917909E-05 0.000000 0.000000 - Av 2018 2 21 21 0 0.4238534 0.000000 1.3107369E-03 2.8839193E-03 3.9362174E-05 0.000000 0.000000 - Av 2018 2 21 22 0 0.4227846 0.000000 1.2914015E-03 2.8826734E-03 1.8947161E-04 0.000000 0.000000 - Av 2018 2 21 23 0 0.4201106 0.000000 1.2723512E-03 2.8814166E-03 0.000000 0.000000 0.000000 - Av 2018 2 21 24 0 0.4170119 0.000000 1.2535821E-03 2.8801486E-03 0.000000 0.000000 0.000000 - Av 2018 2 22 1 0 0.4112784 0.000000 1.2350898E-03 2.8184347E-03 0.000000 0.000000 0.000000 - Av 2018 2 22 2 0 0.4078723 0.000000 1.2168703E-03 2.8172454E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 22 3 0 0.4064367 0.000000 1.1989195E-03 2.8160454E-03 0.000000 0.000000 0.000000 - Av 2018 2 22 4 0 0.4029822 0.000000 1.1812336E-03 2.8148352E-03 0.000000 0.000000 0.000000 - Av 2018 2 22 5 0 0.4016327 0.000000 1.1638086E-03 2.8136149E-03 0.000000 0.000000 0.000000 - Av 2018 2 22 6 0 0.3995850 0.000000 1.1466405E-03 2.8123844E-03 0.000000 0.000000 0.000000 + Av 2018 2 21 18 0 0.4317793 0.000000 1.3704976E-03 2.8875892E-03 1.1447349E-04 0.000000 0.000000 + Av 2018 2 21 19 0 0.4283348 0.000000 1.3502806E-03 2.8863770E-03 7.6719451E-05 0.000000 0.000000 + Av 2018 2 21 20 0 0.4262286 0.000000 1.3303618E-03 2.8851540E-03 5.3917909E-05 0.000000 0.000000 + Av 2018 2 21 21 0 0.4238534 0.000000 1.3107369E-03 2.8839193E-03 3.9362174E-05 0.000000 0.000000 + Av 2018 2 21 22 0 0.4227846 0.000000 1.2914015E-03 2.8826734E-03 1.8947161E-04 0.000000 0.000000 + Av 2018 2 21 23 0 0.4201106 0.000000 1.2723512E-03 2.8814166E-03 0.000000 0.000000 0.000000 + Av 2018 2 21 24 0 0.4170119 0.000000 1.2535821E-03 2.8801486E-03 0.000000 0.000000 0.000000 + Av 2018 2 22 1 0 0.4112784 0.000000 1.2350898E-03 2.8184347E-03 0.000000 0.000000 0.000000 + Av 2018 2 22 2 0 0.4078723 0.000000 1.2168703E-03 2.8172454E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 22 3 0 0.4064367 0.000000 1.1989195E-03 2.8160454E-03 0.000000 0.000000 0.000000 + Av 2018 2 22 4 0 0.4029822 0.000000 1.1812336E-03 2.8148352E-03 0.000000 0.000000 0.000000 + Av 2018 2 22 5 0 0.4016327 0.000000 1.1638086E-03 2.8136149E-03 0.000000 0.000000 0.000000 + Av 2018 2 22 6 0 0.3995850 0.000000 1.1466405E-03 2.8123844E-03 0.000000 0.000000 0.000000 Av 2018 2 22 7 0 0.3935368 0.000000 1.1297258E-03 2.7487676E-03 0.000000 0.000000 2.8352914E-04 Av 2018 2 22 8 0 0.8808008 4.1071288E-04 1.2619809E-03 2.5107001E-03 6.7418143E-02 8.9999817E-02 1.4783437E-03 Av 2018 2 22 9 0 1.224405 1.3698939E-03 1.4683958E-03 2.3009658E-03 6.0770229E-02 5.9999879E-02 2.6731584E-03 @@ -1289,19 +1289,19 @@ Av 2018 2 22 15 0 0.3845078 0.000000 1.4293595E-03 2.3598443E-03 4.0790078E-04 0.000000 2.6731584E-03 Av 2018 2 22 16 0 0.4013280 0.000000 1.4082743E-03 2.6215720E-03 2.2755830E-04 0.000000 1.4783437E-03 Av 2018 2 22 17 0 0.4266888 0.000000 1.3875001E-03 2.8832860E-03 1.3898464E-04 0.000000 2.8352914E-04 - Av 2018 2 22 18 0 0.4362787 0.000000 1.3670323E-03 2.9445039E-03 9.0869893E-05 0.000000 0.000000 - Av 2018 2 22 19 0 0.4337836 0.000000 1.3468665E-03 2.9433321E-03 6.2628511E-05 0.000000 0.000000 - Av 2018 2 22 20 0 0.4314593 0.000000 1.3269981E-03 2.9421472E-03 4.5007982E-05 0.000000 0.000000 - Av 2018 2 22 21 0 0.4292275 0.000000 1.3074228E-03 2.9409493E-03 3.3459277E-05 0.000000 0.000000 - Av 2018 2 22 22 0 0.4280614 0.000000 1.2881362E-03 2.9397390E-03 1.7187594E-04 0.000000 0.000000 - Av 2018 2 22 23 0 0.4254727 0.000000 1.2691342E-03 2.9385160E-03 0.000000 0.000000 0.000000 - Av 2018 2 22 24 0 0.4224749 0.000000 1.2504125E-03 2.9372806E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 1 0 0.4166190 0.000000 1.2319669E-03 2.8741558E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 2 0 0.4117995 0.000000 1.2137934E-03 2.8729986E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 3 0 0.4108660 0.000000 1.1958880E-03 2.8718298E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 4 0 0.4086157 0.000000 1.1782468E-03 2.8706493E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 5 0 0.4068574 0.000000 1.1608658E-03 2.8694575E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 6 0 0.4049616 0.000000 1.1437412E-03 2.8682544E-03 0.000000 0.000000 0.000000 + Av 2018 2 22 18 0 0.4362787 0.000000 1.3670323E-03 2.9445039E-03 9.0869893E-05 0.000000 0.000000 + Av 2018 2 22 19 0 0.4337836 0.000000 1.3468665E-03 2.9433321E-03 6.2628511E-05 0.000000 0.000000 + Av 2018 2 22 20 0 0.4314593 0.000000 1.3269981E-03 2.9421472E-03 4.5007982E-05 0.000000 0.000000 + Av 2018 2 22 21 0 0.4292275 0.000000 1.3074228E-03 2.9409493E-03 3.3459277E-05 0.000000 0.000000 + Av 2018 2 22 22 0 0.4280614 0.000000 1.2881362E-03 2.9397390E-03 1.7187594E-04 0.000000 0.000000 + Av 2018 2 22 23 0 0.4254727 0.000000 1.2691342E-03 2.9385160E-03 0.000000 0.000000 0.000000 + Av 2018 2 22 24 0 0.4224749 0.000000 1.2504125E-03 2.9372806E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 1 0 0.4166190 0.000000 1.2319669E-03 2.8741558E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 2 0 0.4117995 0.000000 1.2137934E-03 2.8729986E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 3 0 0.4108660 0.000000 1.1958880E-03 2.8718298E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 4 0 0.4086157 0.000000 1.1782468E-03 2.8706493E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 5 0 0.4068574 0.000000 1.1608658E-03 2.8694575E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 6 0 0.4049616 0.000000 1.1437412E-03 2.8682544E-03 0.000000 0.000000 0.000000 Av 2018 2 23 7 0 0.3991236 0.000000 1.1268692E-03 2.8083650E-03 0.000000 0.000000 2.6670352E-04 Av 2018 2 23 8 0 0.3794039 0.000000 1.1102462E-03 2.5841801E-03 0.000000 0.000000 1.2801571E-03 Av 2018 2 23 9 0 0.3532924 0.000000 1.0938683E-03 2.3599844E-03 0.000000 0.000000 2.2936107E-03 @@ -1313,19 +1313,19 @@ Av 2018 2 23 15 0 0.3353173 0.000000 1.0005516E-03 2.3523488E-03 0.000000 0.000000 2.2936107E-03 Av 2018 2 23 16 0 0.3526415 0.000000 9.8579191E-04 2.5740007E-03 0.000000 0.000000 1.2801571E-03 Av 2018 2 23 17 0 0.3749947 0.000000 9.7124983E-04 2.7956429E-03 0.000000 0.000000 2.6670352E-04 - Av 2018 2 23 18 0 0.3843769 0.000000 9.5692236E-04 2.8529905E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 19 0 0.3830224 0.000000 9.4280625E-04 2.8516541E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 20 0 0.3814070 0.000000 9.2889846E-04 2.8503081E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 21 0 0.3799092 0.000000 9.1519573E-04 2.8489530E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 22 0 0.3783970 0.000000 9.0169517E-04 2.8475891E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 23 0 0.3769158 0.000000 8.8839373E-04 2.8462159E-03 0.000000 0.000000 0.000000 - Av 2018 2 23 24 0 0.3754494 0.000000 8.7528856E-04 2.8448340E-03 0.000000 0.000000 0.000000 - Av 2018 2 24 1 0 0.3712733 0.000000 8.6237671E-04 2.7839118E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 24 2 0 0.7148814 1.5845669E-04 9.3788147E-04 2.8080505E-03 4.6981778E-02 7.9999842E-02 0.000000 - Av 2018 2 24 3 0 0.6716192 8.8401299E-07 1.0118822E-03 2.8361599E-03 9.3841963E-03 0.000000 0.000000 - Av 2018 2 24 4 0 0.4231988 3.7855862E-05 9.9898537E-04 2.8423555E-03 9.8235318E-03 9.9999802E-03 0.000000 - Av 2018 2 24 5 0 0.8121101 1.0973903E-04 1.0575741E-03 2.8728659E-03 5.0572552E-02 5.9999879E-02 0.000000 - Av 2018 2 24 6 0 1.090811 7.2446465E-04 1.1891685E-03 2.9244279E-03 5.9372399E-02 5.9999879E-02 0.000000 + Av 2018 2 23 18 0 0.3843769 0.000000 9.5692236E-04 2.8529905E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 19 0 0.3830224 0.000000 9.4280625E-04 2.8516541E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 20 0 0.3814070 0.000000 9.2889846E-04 2.8503081E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 21 0 0.3799092 0.000000 9.1519573E-04 2.8489530E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 22 0 0.3783970 0.000000 9.0169517E-04 2.8475891E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 23 0 0.3769158 0.000000 8.8839373E-04 2.8462159E-03 0.000000 0.000000 0.000000 + Av 2018 2 23 24 0 0.3754494 0.000000 8.7528856E-04 2.8448340E-03 0.000000 0.000000 0.000000 + Av 2018 2 24 1 0 0.3712733 0.000000 8.6237671E-04 2.7839118E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 24 2 0 0.7148814 1.5845669E-04 9.3788147E-04 2.8080505E-03 4.6981778E-02 7.9999842E-02 0.000000 + Av 2018 2 24 3 0 0.6716192 8.8401299E-07 1.0118822E-03 2.8361599E-03 9.3841963E-03 0.000000 0.000000 + Av 2018 2 24 4 0 0.4231988 3.7855862E-05 9.9898537E-04 2.8423555E-03 9.8235318E-03 9.9999802E-03 0.000000 + Av 2018 2 24 5 0 0.8121101 1.0973903E-04 1.0575741E-03 2.8728659E-03 5.0572552E-02 5.9999879E-02 0.000000 + Av 2018 2 24 6 0 1.090811 7.2446465E-04 1.1891685E-03 2.9244279E-03 5.9372399E-02 5.9999879E-02 0.000000 Av 2018 2 24 7 0 0.7732633 4.5628200E-05 1.2498426E-03 2.8796634E-03 1.7851967E-02 9.9999802E-03 3.5683619E-04 Av 2018 2 24 8 0 0.4286162 0.000000 1.2337894E-03 2.6145929E-03 4.2782407E-03 0.000000 1.5908922E-03 Av 2018 2 24 9 0 0.3926792 0.000000 1.2155891E-03 2.3418879E-03 1.4836761E-03 0.000000 2.8249484E-03 @@ -1337,19 +1337,19 @@ Av 2018 2 24 15 0 0.3448215 0.000000 1.1118886E-03 2.3343521E-03 5.6184559E-05 0.000000 2.8249484E-03 Av 2018 2 24 16 0 0.3657544 0.000000 1.0954865E-03 2.6045467E-03 4.0842486E-05 0.000000 1.5908922E-03 Av 2018 2 24 17 0 0.3942196 0.000000 1.0793264E-03 2.8747299E-03 1.9371448E-04 0.000000 3.5683619E-04 - Av 2018 2 24 18 0 0.4056686 0.000000 1.0634045E-03 2.9519137E-03 0.000000 0.000000 0.000000 - Av 2018 2 24 19 0 0.4034249 0.000000 1.0477176E-03 2.9505822E-03 0.000000 0.000000 0.000000 - Av 2018 2 24 20 0 0.4019074 0.000000 1.0322622E-03 2.9492397E-03 0.000000 0.000000 0.000000 - Av 2018 2 24 21 0 0.4001672 0.000000 1.0170346E-03 2.9478865E-03 0.000000 0.000000 0.000000 - Av 2018 2 24 22 0 0.3985337 0.000000 1.0020318E-03 2.9465226E-03 0.000000 0.000000 0.000000 - Av 2018 2 24 23 0 0.3968920 0.000000 9.8725036E-04 2.9451482E-03 0.000000 0.000000 0.000000 - Av 2018 2 24 24 0 0.3952815 0.000000 9.7268680E-04 2.9437633E-03 0.000000 0.000000 0.000000 - Av 2018 2 25 1 0 0.3894734 0.000000 9.5833809E-04 2.8803360E-03 0.000000 0.000000 0.000000 - Av 2018 2 25 2 0 0.3851596 0.000000 9.4420114E-04 2.8790350E-03 0.000000 0.000000 0.000000 - Av 2018 2 25 3 0 0.3845751 0.000000 9.3027262E-04 2.8777237E-03 0.000000 0.000000 0.000000 - Av 2018 2 25 4 0 0.3840506 0.000000 9.1654964E-04 2.8764026E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 25 5 0 0.3835343 0.000000 9.0302911E-04 2.8750722E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 25 6 0 0.4527320 1.4838573E-04 8.9750532E-04 2.8854508E-03 8.5789757E-03 1.9999960E-02 0.000000 + Av 2018 2 24 18 0 0.4056686 0.000000 1.0634045E-03 2.9519137E-03 0.000000 0.000000 0.000000 + Av 2018 2 24 19 0 0.4034249 0.000000 1.0477176E-03 2.9505822E-03 0.000000 0.000000 0.000000 + Av 2018 2 24 20 0 0.4019074 0.000000 1.0322622E-03 2.9492397E-03 0.000000 0.000000 0.000000 + Av 2018 2 24 21 0 0.4001672 0.000000 1.0170346E-03 2.9478865E-03 0.000000 0.000000 0.000000 + Av 2018 2 24 22 0 0.3985337 0.000000 1.0020318E-03 2.9465226E-03 0.000000 0.000000 0.000000 + Av 2018 2 24 23 0 0.3968920 0.000000 9.8725036E-04 2.9451482E-03 0.000000 0.000000 0.000000 + Av 2018 2 24 24 0 0.3952815 0.000000 9.7268680E-04 2.9437633E-03 0.000000 0.000000 0.000000 + Av 2018 2 25 1 0 0.3894734 0.000000 9.5833809E-04 2.8803360E-03 0.000000 0.000000 0.000000 + Av 2018 2 25 2 0 0.3851596 0.000000 9.4420114E-04 2.8790350E-03 0.000000 0.000000 0.000000 + Av 2018 2 25 3 0 0.3845751 0.000000 9.3027262E-04 2.8777237E-03 0.000000 0.000000 0.000000 + Av 2018 2 25 4 0 0.3840506 0.000000 9.1654964E-04 2.8764026E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 25 5 0 0.3835343 0.000000 9.0302911E-04 2.8750722E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 25 6 0 0.4527320 1.4838573E-04 8.9750532E-04 2.8854508E-03 8.5789757E-03 1.9999960E-02 0.000000 Av 2018 2 25 7 0 0.4958244 3.7788588E-05 8.9401094E-04 2.8089995E-03 1.0233843E-02 9.9999802E-03 4.2947449E-04 Av 2018 2 25 8 0 0.4538983 3.5259458E-05 8.8465353E-04 2.5211731E-03 9.7294804E-03 9.9999802E-03 1.7916922E-03 Av 2018 2 25 9 0 0.4758103 1.3046864E-04 8.8030996E-04 2.2381111E-03 1.6098194E-02 1.9999960E-02 3.1539102E-03 @@ -1361,19 +1361,19 @@ Av 2018 2 25 15 0 0.4991620 7.6446868E-06 9.1856695E-04 2.3459238E-03 2.1554906E-02 2.9999940E-02 3.1539102E-03 Av 2018 2 25 16 0 0.4777989 2.8541098E-08 9.1975200E-04 2.6616061E-03 5.2920063E-03 0.000000 1.7916922E-03 Av 2018 2 25 17 0 0.3873266 0.000000 9.0618571E-04 2.9599329E-03 1.7433011E-03 0.000000 4.2947449E-04 - Av 2018 2 25 18 0 0.6567500 4.4222092E-05 9.3489332E-04 3.0751766E-03 3.4507502E-02 4.9999900E-02 0.000000 - Av 2018 2 25 19 0 0.6157770 2.1906779E-07 9.6298085E-04 3.0992243E-03 7.5297691E-03 0.000000 0.000000 - Av 2018 2 25 20 0 0.4034687 0.000000 9.4878691E-04 3.0982145E-03 2.2710168E-03 0.000000 0.000000 - Av 2018 2 25 21 0 0.4302088 0.000000 9.3479082E-04 3.0966066E-03 9.1063371E-04 0.000000 0.000000 - Av 2018 2 25 22 0 0.4063665 0.000000 9.2100119E-04 3.0949886E-03 4.4048109E-04 0.000000 0.000000 - Av 2018 2 25 23 0 0.4080374 0.000000 9.0741500E-04 3.0933609E-03 2.4262244E-04 0.000000 0.000000 - Av 2018 2 25 24 0 0.4034066 0.000000 8.9402922E-04 3.0917237E-03 1.4679665E-04 0.000000 0.000000 - Av 2018 2 26 1 0 0.3975178 0.000000 8.8084087E-04 3.0242989E-03 9.5290619E-05 0.000000 0.000000 - Av 2018 2 26 2 0 0.3925469 0.000000 8.6784706E-04 3.0227578E-03 6.5306835E-05 0.000000 0.000000 - Av 2018 2 26 3 0 0.3919826 0.000000 8.5504499E-04 3.0212072E-03 4.6721623E-05 0.000000 0.000000 - Av 2018 2 26 4 0 0.4334928 3.7855571E-05 8.4442936E-04 3.0261630E-03 5.7698688E-03 9.9999802E-03 0.000000 - Av 2018 2 26 5 0 0.4335066 0.000000 8.3396037E-04 3.0317807E-03 2.2781757E-03 0.000000 0.000000 - Av 2018 2 26 6 0 0.3953131 0.000000 8.2165812E-04 3.0301877E-03 9.1287290E-04 0.000000 0.000000 + Av 2018 2 25 18 0 0.6567500 4.4222092E-05 9.3489332E-04 3.0751766E-03 3.4507502E-02 4.9999900E-02 0.000000 + Av 2018 2 25 19 0 0.6157770 2.1906779E-07 9.6298085E-04 3.0992243E-03 7.5297691E-03 0.000000 0.000000 + Av 2018 2 25 20 0 0.4034687 0.000000 9.4878691E-04 3.0982145E-03 2.2710168E-03 0.000000 0.000000 + Av 2018 2 25 21 0 0.4302088 0.000000 9.3479082E-04 3.0966066E-03 9.1063371E-04 0.000000 0.000000 + Av 2018 2 25 22 0 0.4063665 0.000000 9.2100119E-04 3.0949886E-03 4.4048109E-04 0.000000 0.000000 + Av 2018 2 25 23 0 0.4080374 0.000000 9.0741500E-04 3.0933609E-03 2.4262244E-04 0.000000 0.000000 + Av 2018 2 25 24 0 0.4034066 0.000000 8.9402922E-04 3.0917237E-03 1.4679665E-04 0.000000 0.000000 + Av 2018 2 26 1 0 0.3975178 0.000000 8.8084087E-04 3.0242989E-03 9.5290619E-05 0.000000 0.000000 + Av 2018 2 26 2 0 0.3925469 0.000000 8.6784706E-04 3.0227578E-03 6.5306835E-05 0.000000 0.000000 + Av 2018 2 26 3 0 0.3919826 0.000000 8.5504499E-04 3.0212072E-03 4.6721623E-05 0.000000 0.000000 + Av 2018 2 26 4 0 0.4334928 3.7855571E-05 8.4442936E-04 3.0261630E-03 5.7698688E-03 9.9999802E-03 0.000000 + Av 2018 2 26 5 0 0.4335066 0.000000 8.3396037E-04 3.0317807E-03 2.2781757E-03 0.000000 0.000000 + Av 2018 2 26 6 0 0.3953131 0.000000 8.2165812E-04 3.0301877E-03 9.1287290E-04 0.000000 0.000000 Av 2018 2 26 7 0 0.3873695 0.000000 8.0953736E-04 2.9284246E-03 4.4135749E-04 0.000000 4.5527858E-04 Av 2018 2 26 8 0 0.3567594 0.000000 7.9759542E-04 2.6335279E-03 2.4302445E-04 0.000000 1.7884002E-03 Av 2018 2 26 9 0 0.3233899 0.000000 7.8582962E-04 2.3386222E-03 1.4700388E-04 0.000000 3.1215218E-03 @@ -1385,19 +1385,19 @@ Av 2018 2 26 15 0 0.3045746 0.000000 7.1879145E-04 2.3287390E-03 0.000000 0.000000 3.1215218E-03 Av 2018 2 26 16 0 0.3267332 0.000000 7.0818816E-04 2.6203510E-03 0.000000 0.000000 1.7884002E-03 Av 2018 2 26 17 0 0.3575344 0.000000 6.9774123E-04 2.9119554E-03 0.000000 0.000000 4.5527858E-04 - Av 2018 2 26 18 0 0.3721324 0.000000 6.8744848E-04 3.0104264E-03 0.000000 0.000000 0.000000 - Av 2018 2 26 19 0 0.3723008 0.000000 6.7730754E-04 3.0087291E-03 0.000000 0.000000 0.000000 - Av 2018 2 26 20 0 0.3706432 0.000000 6.6731620E-04 3.0070243E-03 0.000000 0.000000 0.000000 - Av 2018 2 26 21 0 0.3696397 0.000000 6.5747224E-04 3.0053125E-03 0.000000 0.000000 0.000000 - Av 2018 2 26 22 0 0.3684277 0.000000 6.4777350E-04 3.0035935E-03 0.000000 0.000000 0.000000 - Av 2018 2 26 23 0 0.3673069 0.000000 6.3821784E-04 3.0018676E-03 0.000000 0.000000 0.000000 - Av 2018 2 26 24 0 0.3661727 0.000000 6.2880316E-04 3.0001346E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 1 0 0.3607502 0.000000 6.1952730E-04 2.9349460E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 2 0 0.3568441 0.000000 6.1038829E-04 2.9333103E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 3 0 0.3567469 0.000000 6.0138415E-04 2.9316682E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 4 0 0.3553425 0.000000 5.9251278E-04 2.9300193E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 5 0 0.3544097 0.000000 5.8377226E-04 2.9283643E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 6 0 0.3533297 0.000000 5.7516072E-04 2.9267024E-03 0.000000 0.000000 0.000000 + Av 2018 2 26 18 0 0.3721324 0.000000 6.8744848E-04 3.0104264E-03 0.000000 0.000000 0.000000 + Av 2018 2 26 19 0 0.3723008 0.000000 6.7730754E-04 3.0087291E-03 0.000000 0.000000 0.000000 + Av 2018 2 26 20 0 0.3706432 0.000000 6.6731620E-04 3.0070243E-03 0.000000 0.000000 0.000000 + Av 2018 2 26 21 0 0.3696397 0.000000 6.5747224E-04 3.0053125E-03 0.000000 0.000000 0.000000 + Av 2018 2 26 22 0 0.3684277 0.000000 6.4777350E-04 3.0035935E-03 0.000000 0.000000 0.000000 + Av 2018 2 26 23 0 0.3673069 0.000000 6.3821784E-04 3.0018676E-03 0.000000 0.000000 0.000000 + Av 2018 2 26 24 0 0.3661727 0.000000 6.2880316E-04 3.0001346E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 1 0 0.3607502 0.000000 6.1952730E-04 2.9349460E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 2 0 0.3568441 0.000000 6.1038829E-04 2.9333103E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 3 0 0.3567469 0.000000 6.0138415E-04 2.9316682E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 4 0 0.3553425 0.000000 5.9251278E-04 2.9300193E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 5 0 0.3544097 0.000000 5.8377226E-04 2.9283643E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 6 0 0.3533297 0.000000 5.7516072E-04 2.9267024E-03 0.000000 0.000000 0.000000 Av 2018 2 27 7 0 0.3450996 0.000000 5.6667620E-04 2.8197020E-03 0.000000 0.000000 4.7878310E-04 Av 2018 2 27 8 0 0.3197560 0.000000 5.5831682E-04 2.5316922E-03 0.000000 0.000000 1.7803090E-03 Av 2018 2 27 9 0 0.2880001 0.000000 5.5008079E-04 2.2436758E-03 0.000000 0.000000 3.0818349E-03 @@ -1409,19 +1409,19 @@ Av 2018 2 27 15 0 0.2726469 0.000000 5.0315406E-04 2.2334680E-03 0.000000 0.000000 3.0818349E-03 Av 2018 2 27 16 0 0.2953635 0.000000 4.9573177E-04 2.5180825E-03 0.000000 0.000000 1.7803090E-03 Av 2018 2 27 17 0 0.3254237 0.000000 4.8841897E-04 2.8026910E-03 0.000000 0.000000 4.7878310E-04 - Av 2018 2 27 18 0 0.3418133 0.000000 4.8121400E-04 2.9062908E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 2 27 19 0 0.3421211 0.000000 4.7411534E-04 2.9045532E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 20 0 0.3395702 0.000000 4.6712140E-04 2.9028098E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 21 0 0.3392765 0.000000 4.6023063E-04 2.9010614E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 22 0 0.3382112 0.000000 4.5344152E-04 2.8993080E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 23 0 0.3374272 0.000000 4.4675253E-04 2.8975492E-03 0.000000 0.000000 0.000000 - Av 2018 2 27 24 0 0.3365582 0.000000 4.4016223E-04 2.8957853E-03 0.000000 0.000000 0.000000 - Av 2018 2 28 1 0 0.3316002 0.000000 4.3366916E-04 2.8332141E-03 0.000000 0.000000 0.000000 - Av 2018 2 28 2 0 0.3280837 0.000000 4.2727188E-04 2.8315464E-03 0.000000 0.000000 0.000000 - Av 2018 2 28 3 0 0.3282166 0.000000 4.2096892E-04 2.8298735E-03 0.000000 0.000000 0.000000 - Av 2018 2 28 4 0 0.3270925 0.000000 4.1475898E-04 2.8281955E-03 0.000000 0.000000 0.000000 - Av 2018 2 28 5 0 0.3264174 0.000000 4.0864063E-04 2.8265130E-03 0.000000 0.000000 0.000000 - Av 2018 2 28 6 0 0.3255979 0.000000 4.0261255E-04 2.8248257E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 18 0 0.3418133 0.000000 4.8121400E-04 2.9062908E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 2 27 19 0 0.3421211 0.000000 4.7411534E-04 2.9045532E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 20 0 0.3395702 0.000000 4.6712140E-04 2.9028098E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 21 0 0.3392765 0.000000 4.6023063E-04 2.9010614E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 22 0 0.3382112 0.000000 4.5344152E-04 2.8993080E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 23 0 0.3374272 0.000000 4.4675253E-04 2.8975492E-03 0.000000 0.000000 0.000000 + Av 2018 2 27 24 0 0.3365582 0.000000 4.4016223E-04 2.8957853E-03 0.000000 0.000000 0.000000 + Av 2018 2 28 1 0 0.3316002 0.000000 4.3366916E-04 2.8332141E-03 0.000000 0.000000 0.000000 + Av 2018 2 28 2 0 0.3280837 0.000000 4.2727188E-04 2.8315464E-03 0.000000 0.000000 0.000000 + Av 2018 2 28 3 0 0.3282166 0.000000 4.2096892E-04 2.8298735E-03 0.000000 0.000000 0.000000 + Av 2018 2 28 4 0 0.3270925 0.000000 4.1475898E-04 2.8281955E-03 0.000000 0.000000 0.000000 + Av 2018 2 28 5 0 0.3264174 0.000000 4.0864063E-04 2.8265130E-03 0.000000 0.000000 0.000000 + Av 2018 2 28 6 0 0.3255979 0.000000 4.0261255E-04 2.8248257E-03 0.000000 0.000000 0.000000 Av 2018 2 28 7 0 0.3172858 0.000000 3.9667339E-04 2.6949686E-03 0.000000 9.9999802E-03 5.8257033E-04 Av 2018 2 28 8 0 0.3061718 8.1586550E-05 3.9513208E-04 2.3775043E-03 1.0038102E-03 3.9999921E-02 2.0599777E-03 Av 2018 2 28 9 0 0.3643641 1.1745211E-04 3.9979917E-04 2.0719634E-03 1.2903497E-02 1.9999960E-02 3.5373850E-03 @@ -1433,19 +1433,19 @@ Av 2018 2 28 15 0 0.3975996 2.2375447E-08 5.1625515E-04 2.2320796E-03 5.4697399E-03 0.000000 3.5373850E-03 Av 2018 2 28 16 0 0.3051990 0.000000 5.0864078E-04 2.5554397E-03 1.7873149E-03 0.000000 2.0599777E-03 Av 2018 2 28 17 0 0.4010149 5.5824858E-05 5.0409598E-04 2.8866422E-03 7.4164928E-03 1.9999960E-02 5.8257033E-04 - Av 2018 2 28 18 0 0.4042187 0.000000 4.9960363E-04 3.0219133E-03 2.5546474E-03 0.000000 0.000000 - Av 2018 2 28 19 0 0.4666163 1.3570269E-04 4.9942738E-04 3.0319449E-03 1.4544673E-02 1.9999960E-02 0.000000 - Av 2018 2 28 20 0 0.8739282 1.6809821E-04 5.9167936E-04 3.0698499E-03 6.0933366E-02 6.9999859E-02 0.000000 - Av 2018 2 28 21 0 0.7710459 4.9460923E-05 6.7758001E-04 3.1053396E-03 1.8629003E-02 9.9999802E-03 0.000000 - Av 2018 2 28 22 0 0.5259811 1.4757780E-04 6.7803089E-04 3.1243002E-03 1.9692915E-02 1.9999960E-02 0.000000 - Av 2018 2 28 23 0 0.9325913 1.7946700E-04 7.7198341E-04 3.1630187E-03 6.1628308E-02 6.9999859E-02 0.000000 - Av 2018 2 28 24 0 0.7349890 1.0184388E-06 8.5633289E-04 3.1925004E-03 1.0804440E-02 0.000000 0.000000 - Av 2018 3 1 1 0 0.3827288 0.000000 8.4375450E-04 3.1235924E-03 2.9668997E-03 0.000000 0.000000 - Av 2018 3 1 2 0 0.4328475 0.000000 8.3130779E-04 3.1218571E-03 1.1206118E-03 0.000000 0.000000 - Av 2018 3 1 3 0 0.4436626 3.8061949E-05 8.2106784E-04 3.1268224E-03 6.7411903E-03 9.9999802E-03 0.000000 - Av 2018 3 1 4 0 0.4481101 0.000000 8.1096886E-04 3.1324439E-03 2.4261887E-03 0.000000 0.000000 - Av 2018 3 1 5 0 0.4021181 0.000000 7.9900579E-04 3.1306678E-03 9.5876987E-04 0.000000 0.000000 - Av 2018 3 1 6 0 0.4028899 0.000000 7.8721927E-04 3.1288837E-03 4.5921313E-04 0.000000 0.000000 + Av 2018 2 28 18 0 0.4042187 0.000000 4.9960363E-04 3.0219133E-03 2.5546474E-03 0.000000 0.000000 + Av 2018 2 28 19 0 0.4666163 1.3570269E-04 4.9942738E-04 3.0319449E-03 1.4544673E-02 1.9999960E-02 0.000000 + Av 2018 2 28 20 0 0.8739282 1.6809821E-04 5.9167936E-04 3.0698499E-03 6.0933366E-02 6.9999859E-02 0.000000 + Av 2018 2 28 21 0 0.7710459 4.9460923E-05 6.7758001E-04 3.1053396E-03 1.8629003E-02 9.9999802E-03 0.000000 + Av 2018 2 28 22 0 0.5259811 1.4757780E-04 6.7803089E-04 3.1243002E-03 1.9692915E-02 1.9999960E-02 0.000000 + Av 2018 2 28 23 0 0.9325913 1.7946700E-04 7.7198341E-04 3.1630187E-03 6.1628308E-02 6.9999859E-02 0.000000 + Av 2018 2 28 24 0 0.7349890 1.0184388E-06 8.5633289E-04 3.1925004E-03 1.0804440E-02 0.000000 0.000000 + Av 2018 3 1 1 0 0.3827288 0.000000 8.4375450E-04 3.1235924E-03 2.9668997E-03 0.000000 0.000000 + Av 2018 3 1 2 0 0.4328475 0.000000 8.3130779E-04 3.1218571E-03 1.1206118E-03 0.000000 0.000000 + Av 2018 3 1 3 0 0.4436626 3.8061949E-05 8.2106784E-04 3.1268224E-03 6.7411903E-03 9.9999802E-03 0.000000 + Av 2018 3 1 4 0 0.4481101 0.000000 8.1096886E-04 3.1324439E-03 2.4261887E-03 0.000000 0.000000 + Av 2018 3 1 5 0 0.4021181 0.000000 7.9900579E-04 3.1306678E-03 9.5876987E-04 0.000000 0.000000 + Av 2018 3 1 6 0 0.4028899 0.000000 7.8721927E-04 3.1288837E-03 4.5921313E-04 0.000000 0.000000 Av 2018 3 1 7 0 0.3850495 0.000000 7.7560649E-04 2.9676436E-03 2.5117918E-04 0.000000 7.2476518E-04 Av 2018 3 1 8 0 0.3540107 0.000000 7.6416513E-04 2.6388890E-03 1.5119390E-04 0.000000 2.2109244E-03 Av 2018 3 1 9 0 0.3464101 2.2400935E-05 7.5408351E-04 2.3153711E-03 3.9284974E-03 9.9999802E-03 3.6970838E-03 @@ -1457,19 +1457,19 @@ Av 2018 3 1 15 0 0.3003720 0.000000 6.9085381E-04 2.3100993E-03 8.5527543E-05 0.000000 3.6970838E-03 Av 2018 3 1 16 0 0.3250386 0.000000 6.8066263E-04 2.6351828E-03 5.9365411E-05 0.000000 2.2109244E-03 Av 2018 3 1 17 0 0.3605737 0.000000 6.7062175E-04 2.9602600E-03 4.2906369E-05 9.9999802E-03 7.2476518E-04 - Av 2018 3 1 18 0 0.3808709 0.000000 6.6072901E-04 3.1178233E-03 1.9952866E-04 0.000000 0.000000 - Av 2018 3 1 19 0 0.3829280 0.000000 6.5098226E-04 3.1159318E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 3 1 20 0 0.3792849 0.000000 6.4137921E-04 3.1140337E-03 0.000000 0.000000 0.000000 - Av 2018 3 1 21 0 0.3776647 0.000000 6.3191785E-04 3.1121292E-03 0.000000 0.000000 0.000000 - Av 2018 3 1 22 0 0.4214872 9.4847252E-05 6.2764110E-04 3.1204047E-03 5.1036556E-03 1.9999960E-02 0.000000 - Av 2018 3 1 23 0 0.4212271 0.000000 6.2340242E-04 3.1299039E-03 2.1117744E-03 0.000000 0.000000 - Av 2018 3 1 24 0 0.3830037 0.000000 6.1420631E-04 3.1279579E-03 8.6033944E-04 0.000000 0.000000 - Av 2018 3 2 1 0 0.3787682 0.000000 6.0514576E-04 3.0593227E-03 4.2066356E-04 0.000000 0.000000 - Av 2018 3 2 2 0 0.3699714 0.000000 5.9621892E-04 3.0574847E-03 2.3348774E-04 0.000000 0.000000 - Av 2018 3 2 3 0 0.3696829 0.000000 5.8742374E-04 3.0556403E-03 1.4207057E-04 0.000000 0.000000 - Av 2018 3 2 4 0 0.3673888 0.000000 5.7875837E-04 3.0537900E-03 9.2620998E-05 0.000000 0.000000 - Av 2018 3 2 5 0 0.3662333 0.000000 5.7022076E-04 3.0519341E-03 6.3691754E-05 0.000000 0.000000 - Av 2018 3 2 6 0 0.3649119 0.000000 5.6180917E-04 3.0500719E-03 4.5689449E-05 0.000000 0.000000 + Av 2018 3 1 18 0 0.3808709 0.000000 6.6072901E-04 3.1178233E-03 1.9952866E-04 0.000000 0.000000 + Av 2018 3 1 19 0 0.3829280 0.000000 6.5098226E-04 3.1159318E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 3 1 20 0 0.3792849 0.000000 6.4137921E-04 3.1140337E-03 0.000000 0.000000 0.000000 + Av 2018 3 1 21 0 0.3776647 0.000000 6.3191785E-04 3.1121292E-03 0.000000 0.000000 0.000000 + Av 2018 3 1 22 0 0.4214872 9.4847252E-05 6.2764110E-04 3.1204047E-03 5.1036556E-03 1.9999960E-02 0.000000 + Av 2018 3 1 23 0 0.4212271 0.000000 6.2340242E-04 3.1299039E-03 2.1117744E-03 0.000000 0.000000 + Av 2018 3 1 24 0 0.3830037 0.000000 6.1420631E-04 3.1279579E-03 8.6033944E-04 0.000000 0.000000 + Av 2018 3 2 1 0 0.3787682 0.000000 6.0514576E-04 3.0593227E-03 4.2066356E-04 0.000000 0.000000 + Av 2018 3 2 2 0 0.3699714 0.000000 5.9621892E-04 3.0574847E-03 2.3348774E-04 0.000000 0.000000 + Av 2018 3 2 3 0 0.3696829 0.000000 5.8742374E-04 3.0556403E-03 1.4207057E-04 0.000000 0.000000 + Av 2018 3 2 4 0 0.3673888 0.000000 5.7875837E-04 3.0537900E-03 9.2620998E-05 0.000000 0.000000 + Av 2018 3 2 5 0 0.3662333 0.000000 5.7022076E-04 3.0519341E-03 6.3691754E-05 0.000000 0.000000 + Av 2018 3 2 6 0 0.3649119 0.000000 5.6180917E-04 3.0500719E-03 4.5689449E-05 0.000000 0.000000 Av 2018 3 2 7 0 0.3525579 0.000000 5.5352156E-04 2.8844434E-03 3.3915781E-05 0.000000 7.4436737E-04 Av 2018 3 2 8 0 0.3233228 0.000000 5.4535625E-04 2.5643064E-03 1.7327885E-04 0.000000 2.1910190E-03 Av 2018 3 2 9 0 0.2883173 0.000000 5.3731137E-04 2.2441638E-03 0.000000 0.000000 3.6376705E-03 @@ -1481,19 +1481,19 @@ Av 2018 3 2 15 0 0.2717527 0.000000 4.9147406E-04 2.2327765E-03 0.000000 0.000000 3.6376705E-03 Av 2018 3 2 16 0 0.2960536 0.000000 4.8422403E-04 2.5491240E-03 0.000000 0.000000 2.1910190E-03 Av 2018 3 2 17 0 0.3299277 0.000000 4.7708096E-04 2.8654658E-03 0.000000 0.000000 7.4436737E-04 - Av 2018 3 2 18 0 0.3499228 0.000000 4.7004331E-04 3.0273006E-03 0.000000 0.000000 0.000000 - Av 2018 3 2 19 0 0.3529754 0.000000 4.6310943E-04 3.0253697E-03 0.000000 0.000000 0.000000 - Av 2018 3 2 20 0 0.3532592 0.000000 4.5627783E-04 3.0234337E-03 0.000000 1.9999960E-02 0.000000 - Av 2018 3 2 21 0 0.3519756 0.000000 4.4954705E-04 3.0214931E-03 0.000000 0.000000 0.000000 - Av 2018 3 2 22 0 0.3487068 0.000000 4.4291551E-04 3.0195480E-03 0.000000 0.000000 0.000000 - Av 2018 3 2 23 0 0.3486843 0.000000 4.3638182E-04 3.0175981E-03 0.000000 0.000000 0.000000 - Av 2018 3 2 24 0 0.3475455 0.000000 4.2994448E-04 3.0156435E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 1 0 0.3424705 0.000000 4.2360212E-04 2.9498562E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 2 0 0.3387841 0.000000 4.1735332E-04 2.9480066E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 3 0 0.3389714 0.000000 4.1119670E-04 2.9461531E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 4 0 0.3378236 0.000000 4.0513091E-04 2.9442948E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 5 0 0.3371517 0.000000 3.9915458E-04 2.9424324E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 6 0 0.3363259 0.000000 3.9326644E-04 2.9405656E-03 0.000000 0.000000 0.000000 + Av 2018 3 2 18 0 0.3499228 0.000000 4.7004331E-04 3.0273006E-03 0.000000 0.000000 0.000000 + Av 2018 3 2 19 0 0.3529754 0.000000 4.6310943E-04 3.0253697E-03 0.000000 0.000000 0.000000 + Av 2018 3 2 20 0 0.3532592 0.000000 4.5627783E-04 3.0234337E-03 0.000000 1.9999960E-02 0.000000 + Av 2018 3 2 21 0 0.3519756 0.000000 4.4954705E-04 3.0214931E-03 0.000000 0.000000 0.000000 + Av 2018 3 2 22 0 0.3487068 0.000000 4.4291551E-04 3.0195480E-03 0.000000 0.000000 0.000000 + Av 2018 3 2 23 0 0.3486843 0.000000 4.3638182E-04 3.0175981E-03 0.000000 0.000000 0.000000 + Av 2018 3 2 24 0 0.3475455 0.000000 4.2994448E-04 3.0156435E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 1 0 0.3424705 0.000000 4.2360212E-04 2.9498562E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 2 0 0.3387841 0.000000 4.1735332E-04 2.9480066E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 3 0 0.3389714 0.000000 4.1119670E-04 2.9461531E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 4 0 0.3378236 0.000000 4.0513091E-04 2.9442948E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 5 0 0.3371517 0.000000 3.9915458E-04 2.9424324E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 6 0 0.3363259 0.000000 3.9326644E-04 2.9405656E-03 0.000000 0.000000 0.000000 Av 2018 3 3 7 0 0.3230401 0.000000 3.8746514E-04 2.7558799E-03 0.000000 0.000000 8.3097443E-04 Av 2018 3 3 8 0 0.2909795 0.000000 3.8174941E-04 2.4163914E-03 0.000000 0.000000 2.3655801E-03 Av 2018 3 3 9 0 0.2548900 0.000000 3.7611803E-04 2.0768989E-03 0.000000 0.000000 3.9001855E-03 @@ -1505,19 +1505,19 @@ Av 2018 3 3 15 0 0.2399619 0.000000 3.4403184E-04 2.0655396E-03 0.000000 0.000000 3.9001855E-03 Av 2018 3 3 16 0 0.2658027 0.000000 3.3895683E-04 2.4012458E-03 0.000000 0.000000 2.3655801E-03 Av 2018 3 3 17 0 0.3020623 0.000000 3.3395668E-04 2.7369489E-03 0.000000 0.000000 8.3097443E-04 - Av 2018 3 3 18 0 0.3241320 0.000000 3.2903030E-04 2.9178495E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 19 0 0.3280501 0.000000 3.2417657E-04 2.9159319E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 20 0 0.3257723 0.000000 3.1939446E-04 2.9140108E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 21 0 0.3256580 0.000000 3.1468287E-04 2.9120862E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 22 0 0.3248004 0.000000 3.1004081E-04 2.9101581E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 23 0 0.3242102 0.000000 3.0546723E-04 2.9082266E-03 0.000000 0.000000 0.000000 - Av 2018 3 3 24 0 0.3235358 0.000000 3.0096111E-04 2.9062917E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 1 0 0.3187510 0.000000 2.9652147E-04 2.8432980E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 2 0 0.3154112 0.000000 2.9214731E-04 2.8414647E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 3 0 0.3157331 0.000000 2.8783770E-04 2.8396284E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 4 0 0.3147901 0.000000 2.8359162E-04 2.8377885E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 5 0 0.3142951 0.000000 2.7940821E-04 2.8359457E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 6 0 0.3136523 0.000000 2.7528650E-04 2.8340996E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 18 0 0.3241320 0.000000 3.2903030E-04 2.9178495E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 19 0 0.3280501 0.000000 3.2417657E-04 2.9159319E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 20 0 0.3257723 0.000000 3.1939446E-04 2.9140108E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 21 0 0.3256580 0.000000 3.1468287E-04 2.9120862E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 22 0 0.3248004 0.000000 3.1004081E-04 2.9101581E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 23 0 0.3242102 0.000000 3.0546723E-04 2.9082266E-03 0.000000 0.000000 0.000000 + Av 2018 3 3 24 0 0.3235358 0.000000 3.0096111E-04 2.9062917E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 1 0 0.3187510 0.000000 2.9652147E-04 2.8432980E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 2 0 0.3154112 0.000000 2.9214731E-04 2.8414647E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 3 0 0.3157331 0.000000 2.8783770E-04 2.8396284E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 4 0 0.3147901 0.000000 2.8359162E-04 2.8377885E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 5 0 0.3142951 0.000000 2.7940821E-04 2.8359457E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 6 0 0.3136523 0.000000 2.7528650E-04 2.8340996E-03 0.000000 0.000000 0.000000 Av 2018 3 4 7 0 0.3005369 0.000000 2.7122561E-04 2.6492802E-03 0.000000 0.000000 8.3168235E-04 Av 2018 3 4 8 0 0.2697344 0.000000 2.6722459E-04 2.3255856E-03 0.000000 0.000000 2.2946026E-03 Av 2018 3 4 9 0 0.2356133 0.000000 2.6328262E-04 2.0018877E-03 0.000000 0.000000 3.7575231E-03 @@ -1529,19 +1529,19 @@ Av 2018 3 4 15 0 0.2222791 0.000000 2.4082231E-04 1.9906936E-03 0.000000 0.000000 3.7575231E-03 Av 2018 3 4 16 0 0.2468357 0.000000 2.3726981E-04 2.3106607E-03 0.000000 0.000000 2.2946026E-03 Av 2018 3 4 17 0 0.2815823 0.000000 2.3376972E-04 2.6306247E-03 0.000000 0.000000 8.3168235E-04 - Av 2018 3 4 18 0 0.3033071 0.000000 2.3032125E-04 2.8117136E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 19 0 0.3075563 0.000000 2.2692364E-04 2.8098300E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 20 0 0.3053644 0.000000 2.2357618E-04 2.8079438E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 21 0 0.3054185 0.000000 2.2027807E-04 2.8060549E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 22 0 0.3046980 0.000000 2.1702862E-04 2.8041636E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 23 0 0.3042530 0.000000 2.1382711E-04 2.8022698E-03 0.000000 0.000000 0.000000 - Av 2018 3 4 24 0 0.3037184 0.000000 2.1067282E-04 2.8003736E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 1 0 0.2992546 0.000000 2.0756507E-04 2.7400979E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 2 0 0.2961699 0.000000 2.0450316E-04 2.7382991E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 3 0 0.2965849 0.000000 2.0148641E-04 2.7364979E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 4 0 0.2957888 0.000000 1.9851419E-04 2.7346942E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 5 0 0.2954194 0.000000 1.9558579E-04 2.7328879E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 6 0 0.2949072 0.000000 1.9270058E-04 2.7310795E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 18 0 0.3033071 0.000000 2.3032125E-04 2.8117136E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 19 0 0.3075563 0.000000 2.2692364E-04 2.8098300E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 20 0 0.3053644 0.000000 2.2357618E-04 2.8079438E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 21 0 0.3054185 0.000000 2.2027807E-04 2.8060549E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 22 0 0.3046980 0.000000 2.1702862E-04 2.8041636E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 23 0 0.3042530 0.000000 2.1382711E-04 2.8022698E-03 0.000000 0.000000 0.000000 + Av 2018 3 4 24 0 0.3037184 0.000000 2.1067282E-04 2.8003736E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 1 0 0.2992546 0.000000 2.0756507E-04 2.7400979E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 2 0 0.2961699 0.000000 2.0450316E-04 2.7382991E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 3 0 0.2965849 0.000000 2.0148641E-04 2.7364979E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 4 0 0.2957888 0.000000 1.9851419E-04 2.7346942E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 5 0 0.2954194 0.000000 1.9558579E-04 2.7328879E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 6 0 0.2949072 0.000000 1.9270058E-04 2.7310795E-03 0.000000 0.000000 0.000000 Av 2018 3 5 7 0 0.2810591 0.000000 1.8985794E-04 2.5337045E-03 0.000000 0.000000 8.8892784E-04 Av 2018 3 5 8 0 0.2504940 0.000000 1.8705725E-04 2.2035397E-03 0.000000 9.9999802E-03 2.3814361E-03 Av 2018 3 5 9 0 0.2155795 0.000000 1.8429785E-04 1.8733726E-03 0.000000 0.000000 3.8739443E-03 @@ -1553,19 +1553,19 @@ Av 2018 3 5 15 0 0.2021480 0.000000 1.6857563E-04 1.8624347E-03 0.000000 0.000000 3.8739443E-03 Av 2018 3 5 16 0 0.2271153 0.000000 1.6608888E-04 2.1889561E-03 0.000000 0.000000 2.3814361E-03 Av 2018 3 5 17 0 0.2627445 0.000000 1.6363880E-04 2.5154757E-03 0.000000 0.000000 8.8892784E-04 - Av 2018 3 5 18 0 0.2856061 0.000000 1.6122486E-04 2.7092057E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 19 0 0.2904645 0.000000 1.5884654E-04 2.7073694E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 20 0 0.2882048 0.000000 1.5650332E-04 2.7055312E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 21 0 0.2884245 0.000000 1.5419464E-04 2.7036911E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 22 0 0.2877865 0.000000 1.5192003E-04 2.7018492E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 23 0 0.2874511 0.000000 1.4967898E-04 2.7000054E-03 0.000000 0.000000 0.000000 - Av 2018 3 5 24 0 0.2870148 0.000000 1.4747097E-04 2.6981598E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 1 0 0.2828266 0.000000 1.4529553E-04 2.6405146E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 2 0 0.2799537 0.000000 1.4315220E-04 2.6387621E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 3 0 0.2804252 0.000000 1.4104048E-04 2.6370077E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 4 0 0.2797379 0.000000 1.3895992E-04 2.6352515E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 5 0 0.2794575 0.000000 1.3691004E-04 2.6334936E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 6 0 0.2790395 0.000000 1.3489040E-04 2.6317339E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 18 0 0.2856061 0.000000 1.6122486E-04 2.7092057E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 19 0 0.2904645 0.000000 1.5884654E-04 2.7073694E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 20 0 0.2882048 0.000000 1.5650332E-04 2.7055312E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 21 0 0.2884245 0.000000 1.5419464E-04 2.7036911E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 22 0 0.2877865 0.000000 1.5192003E-04 2.7018492E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 23 0 0.2874511 0.000000 1.4967898E-04 2.7000054E-03 0.000000 0.000000 0.000000 + Av 2018 3 5 24 0 0.2870148 0.000000 1.4747097E-04 2.6981598E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 1 0 0.2828266 0.000000 1.4529553E-04 2.6405146E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 2 0 0.2799537 0.000000 1.4315220E-04 2.6387621E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 3 0 0.2804252 0.000000 1.4104048E-04 2.6370077E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 4 0 0.2797379 0.000000 1.3895992E-04 2.6352515E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 5 0 0.2794575 0.000000 1.3691004E-04 2.6334936E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 6 0 0.2790395 0.000000 1.3489040E-04 2.6317339E-03 0.000000 0.000000 0.000000 Av 2018 3 6 7 0 0.2640287 0.000000 1.3290056E-04 2.4160596E-03 0.000000 0.000000 9.7233168E-04 Av 2018 3 6 8 0 0.2305952 0.000000 1.3094007E-04 2.0707941E-03 0.000000 0.000000 2.5337061E-03 Av 2018 3 6 9 0 0.1947430 0.000000 1.2900849E-04 1.7255270E-03 0.000000 0.000000 4.0950808E-03 @@ -1577,19 +1577,19 @@ Av 2018 3 6 15 0 0.1822778 0.000000 1.1800294E-04 1.7149050E-03 0.000000 0.000000 4.0950808E-03 Av 2018 3 6 16 0 0.2081842 0.000000 1.1626221E-04 2.0566315E-03 0.000000 0.000000 2.5337061E-03 Av 2018 3 6 17 0 0.2456500 0.000000 1.1454715E-04 2.3983568E-03 0.000000 0.000000 9.7233168E-04 - Av 2018 3 6 18 0 0.2702584 0.000000 1.1285741E-04 2.6104911E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 19 0 0.2758666 0.000000 1.1119259E-04 2.6087109E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 20 0 0.2734500 0.000000 1.0955232E-04 2.6069293E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 21 0 0.2738268 0.000000 1.0793625E-04 2.6051465E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 22 0 0.2732354 0.000000 1.0634402E-04 2.6033621E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 23 0 0.2729837 0.000000 1.0477528E-04 2.6015767E-03 0.000000 0.000000 0.000000 - Av 2018 3 6 24 0 0.2726169 0.000000 1.0322969E-04 2.5997898E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 1 0 0.2686702 0.000000 1.0170689E-04 2.5446794E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 2 0 0.2659773 0.000000 1.0020655E-04 2.5429812E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 3 0 0.2664804 0.000000 9.8728342E-05 2.5412813E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 4 0 0.2658750 0.000000 9.7271943E-05 2.5395800E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 5 0 0.2656577 0.000000 9.5837029E-05 2.5378775E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 6 0 0.2653083 0.000000 9.4423282E-05 2.5361739E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 18 0 0.2702584 0.000000 1.1285741E-04 2.6104911E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 19 0 0.2758666 0.000000 1.1119259E-04 2.6087109E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 20 0 0.2734500 0.000000 1.0955232E-04 2.6069293E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 21 0 0.2738268 0.000000 1.0793625E-04 2.6051465E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 22 0 0.2732354 0.000000 1.0634402E-04 2.6033621E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 23 0 0.2729837 0.000000 1.0477528E-04 2.6015767E-03 0.000000 0.000000 0.000000 + Av 2018 3 6 24 0 0.2726169 0.000000 1.0322969E-04 2.5997898E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 1 0 0.2686702 0.000000 1.0170689E-04 2.5446794E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 2 0 0.2659773 0.000000 1.0020655E-04 2.5429812E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 3 0 0.2664804 0.000000 9.8728342E-05 2.5412813E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 4 0 0.2658750 0.000000 9.7271943E-05 2.5395800E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 5 0 0.2656577 0.000000 9.5837029E-05 2.5378775E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 6 0 0.2653083 0.000000 9.4423282E-05 2.5361739E-03 0.000000 0.000000 0.000000 Av 2018 3 7 7 0 0.2463410 0.000000 9.3030394E-05 2.2617551E-03 0.000000 0.000000 1.2396080E-03 Av 2018 3 7 8 0 0.2051554 0.000000 9.1658054E-05 1.8404543E-03 0.000000 0.000000 3.1468554E-03 Av 2018 3 7 9 0 0.1617130 0.000000 9.0305955E-05 1.4191522E-03 0.000000 0.000000 5.0541027E-03 @@ -1601,19 +1601,19 @@ Av 2018 3 7 15 0 0.1473963 0.000000 8.2602062E-05 1.4085571E-03 0.000000 0.000000 5.0541027E-03 Av 2018 3 7 16 0 0.1790088 0.000000 8.1383550E-05 1.8263222E-03 0.000000 0.000000 3.1468554E-03 Av 2018 3 7 17 0 0.2249100 0.000000 8.0183017E-05 2.2440741E-03 0.000000 0.000000 1.2396080E-03 - Av 2018 3 7 18 0 0.2558391 0.000000 7.9000187E-05 2.5149388E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 19 0 0.2633241 0.000000 7.7834811E-05 2.5130876E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 20 0 0.2603128 0.000000 7.6686621E-05 2.5112364E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 21 0 0.2609534 0.000000 7.5555377E-05 2.5093851E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 22 0 0.2603265 0.000000 7.4440817E-05 2.5075336E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 23 0 0.2601425 0.000000 7.3342700E-05 2.5056824E-03 0.000000 0.000000 0.000000 - Av 2018 3 7 24 0 0.2598068 0.000000 7.2260780E-05 2.5038312E-03 0.000000 0.000000 0.000000 - Av 2018 3 8 1 0 0.2560670 0.000000 7.1194823E-05 2.4510699E-03 0.000000 0.000000 0.000000 - Av 2018 3 8 2 0 0.2535189 0.000000 7.0144582E-05 2.4493057E-03 0.000000 0.000000 0.000000 - Av 2018 3 8 3 0 0.2540235 0.000000 6.9109847E-05 2.4475416E-03 0.000000 0.000000 0.000000 - Av 2018 3 8 4 0 0.2534688 0.000000 6.8090369E-05 2.4457772E-03 0.000000 0.000000 0.000000 - Av 2018 3 8 5 0 0.2532844 0.000000 6.7085930E-05 2.4440128E-03 0.000000 0.000000 0.000000 - Av 2018 3 8 6 0 0.2529732 0.000000 6.6096305E-05 2.4422482E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 18 0 0.2558391 0.000000 7.9000187E-05 2.5149388E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 19 0 0.2633241 0.000000 7.7834811E-05 2.5130876E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 20 0 0.2603128 0.000000 7.6686621E-05 2.5112364E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 21 0 0.2609534 0.000000 7.5555377E-05 2.5093851E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 22 0 0.2603265 0.000000 7.4440817E-05 2.5075336E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 23 0 0.2601425 0.000000 7.3342700E-05 2.5056824E-03 0.000000 0.000000 0.000000 + Av 2018 3 7 24 0 0.2598068 0.000000 7.2260780E-05 2.5038312E-03 0.000000 0.000000 0.000000 + Av 2018 3 8 1 0 0.2560670 0.000000 7.1194823E-05 2.4510699E-03 0.000000 0.000000 0.000000 + Av 2018 3 8 2 0 0.2535189 0.000000 7.0144582E-05 2.4493057E-03 0.000000 0.000000 0.000000 + Av 2018 3 8 3 0 0.2540235 0.000000 6.9109847E-05 2.4475416E-03 0.000000 0.000000 0.000000 + Av 2018 3 8 4 0 0.2534688 0.000000 6.8090369E-05 2.4457772E-03 0.000000 0.000000 0.000000 + Av 2018 3 8 5 0 0.2532844 0.000000 6.7085930E-05 2.4440128E-03 0.000000 0.000000 0.000000 + Av 2018 3 8 6 0 0.2529732 0.000000 6.6096305E-05 2.4422482E-03 0.000000 0.000000 0.000000 Av 2018 3 8 7 0 0.2349457 0.000000 6.5121276E-05 2.1651436E-03 0.000000 9.9999802E-03 1.2515462E-03 Av 2018 3 8 8 0 0.1982062 0.000000 6.4160638E-05 1.7567959E-03 0.000000 3.9999921E-02 3.0996518E-03 Av 2018 3 8 9 0 0.1594345 0.000000 6.3214167E-05 1.3484483E-03 0.000000 5.9999879E-02 4.9477578E-03 @@ -1625,19 +1625,19 @@ Av 2018 3 8 15 0 0.1570836 0.000000 1.5215777E-04 1.4166493E-03 4.0061667E-04 0.000000 4.9477578E-03 Av 2018 3 8 16 0 0.1894773 0.000000 1.4991320E-04 1.8214223E-03 2.2415731E-04 0.000000 3.0996518E-03 Av 2018 3 8 17 0 0.2324008 0.000000 1.4770175E-04 2.2261951E-03 1.3720802E-04 9.9999802E-03 1.2515462E-03 - Av 2018 3 8 18 0 0.2637037 0.000000 1.4552291E-04 2.4997245E-03 8.9858804E-05 9.9999802E-03 0.000000 - Av 2018 3 8 19 0 0.2696092 0.000000 1.4337622E-04 2.4979138E-03 6.2013212E-05 0.000000 0.000000 - Av 2018 3 8 20 0 0.2656333 0.000000 1.4126119E-04 2.4961026E-03 4.4612869E-05 0.000000 0.000000 - Av 2018 3 8 21 0 0.3124181 7.9355792E-05 1.4341167E-04 2.5035506E-03 5.5670976E-03 1.9999960E-02 0.000000 - Av 2018 3 8 22 0 0.3123351 0.000000 1.4550948E-04 2.5121798E-03 2.2233760E-03 0.000000 0.000000 - Av 2018 3 8 23 0 0.2734697 0.000000 1.4336297E-04 2.5103472E-03 8.9568534E-04 0.000000 0.000000 - Av 2018 3 8 24 0 0.2742914 0.000000 1.4124814E-04 2.5085143E-03 4.3461792E-04 0.000000 0.000000 - Av 2018 3 9 1 0 0.2655499 0.000000 1.3916451E-04 2.4556699E-03 2.3992882E-04 0.000000 0.000000 - Av 2018 3 9 2 0 0.2626342 0.000000 1.3711161E-04 2.4539239E-03 1.4540651E-04 0.000000 0.000000 - Av 2018 3 9 3 0 0.2621458 0.000000 1.3508901E-04 2.4521777E-03 9.4506882E-05 0.000000 0.000000 - Av 2018 3 9 4 0 0.2612581 0.000000 1.3309623E-04 2.4504312E-03 6.4833395E-05 0.000000 0.000000 - Av 2018 3 9 5 0 0.2607338 0.000000 1.3113285E-04 2.4486845E-03 4.6419445E-05 0.000000 0.000000 - Av 2018 3 9 6 0 0.2602072 0.000000 1.2919844E-04 2.4469376E-03 3.4403827E-05 0.000000 0.000000 + Av 2018 3 8 18 0 0.2637037 0.000000 1.4552291E-04 2.4997245E-03 8.9858804E-05 9.9999802E-03 0.000000 + Av 2018 3 8 19 0 0.2696092 0.000000 1.4337622E-04 2.4979138E-03 6.2013212E-05 0.000000 0.000000 + Av 2018 3 8 20 0 0.2656333 0.000000 1.4126119E-04 2.4961026E-03 4.4612869E-05 0.000000 0.000000 + Av 2018 3 8 21 0 0.3124181 7.9355792E-05 1.4341167E-04 2.5035506E-03 5.5670976E-03 1.9999960E-02 0.000000 + Av 2018 3 8 22 0 0.3123351 0.000000 1.4550948E-04 2.5121798E-03 2.2233760E-03 0.000000 0.000000 + Av 2018 3 8 23 0 0.2734697 0.000000 1.4336297E-04 2.5103472E-03 8.9568534E-04 0.000000 0.000000 + Av 2018 3 8 24 0 0.2742914 0.000000 1.4124814E-04 2.5085143E-03 4.3461792E-04 0.000000 0.000000 + Av 2018 3 9 1 0 0.2655499 0.000000 1.3916451E-04 2.4556699E-03 2.3992882E-04 0.000000 0.000000 + Av 2018 3 9 2 0 0.2626342 0.000000 1.3711161E-04 2.4539239E-03 1.4540651E-04 0.000000 0.000000 + Av 2018 3 9 3 0 0.2621458 0.000000 1.3508901E-04 2.4521777E-03 9.4506882E-05 0.000000 0.000000 + Av 2018 3 9 4 0 0.2612581 0.000000 1.3309623E-04 2.4504312E-03 6.4833395E-05 0.000000 0.000000 + Av 2018 3 9 5 0 0.2607338 0.000000 1.3113285E-04 2.4486845E-03 4.6419445E-05 0.000000 0.000000 + Av 2018 3 9 6 0 0.2602072 0.000000 1.2919844E-04 2.4469376E-03 3.4403827E-05 0.000000 0.000000 Av 2018 3 9 7 0 0.2413708 0.000000 1.2729254E-04 2.1618383E-03 1.7477035E-04 0.000000 1.2879649E-03 Av 2018 3 9 8 0 0.2002968 0.000000 1.2541479E-04 1.7578949E-03 0.000000 0.000000 3.1161304E-03 Av 2018 3 9 9 0 0.1579389 0.000000 1.2356472E-04 1.3539511E-03 0.000000 0.000000 4.9442956E-03 @@ -1649,19 +1649,19 @@ Av 2018 3 9 15 0 0.1443922 0.000000 1.1302358E-04 1.3434639E-03 0.000000 0.000000 4.9442956E-03 Av 2018 3 9 16 0 0.1749796 0.000000 1.1135630E-04 1.7439120E-03 0.000000 9.9999802E-03 3.1161304E-03 Av 2018 3 9 17 0 0.2188092 0.000000 1.0971362E-04 2.1443598E-03 0.000000 0.000000 1.2879649E-03 - Av 2018 3 9 18 0 0.2491199 0.000000 1.0809517E-04 2.4259638E-03 0.000000 0.000000 0.000000 - Av 2018 3 9 19 0 0.2575012 0.000000 1.0650059E-04 2.4242152E-03 0.000000 0.000000 0.000000 - Av 2018 3 9 20 0 0.2541343 0.000000 1.0492955E-04 2.4224666E-03 0.000000 0.000000 0.000000 - Av 2018 3 9 21 0 0.2548555 0.000000 1.0338167E-04 2.4207181E-03 0.000000 0.000000 0.000000 - Av 2018 3 9 22 0 0.2541583 0.000000 1.0185663E-04 2.4189695E-03 0.000000 0.000000 0.000000 - Av 2018 3 9 23 0 0.2539574 0.000000 1.0035410E-04 2.4172210E-03 0.000000 0.000000 0.000000 - Av 2018 3 9 24 0 0.2535870 0.000000 9.8873708E-05 2.4154724E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 1 0 0.2499708 0.000000 9.7415163E-05 2.3650408E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 2 0 0.2474916 0.000000 9.5978146E-05 2.3633735E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 3 0 0.2479332 0.000000 9.4562318E-05 2.3617065E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 4 0 0.2473622 0.000000 9.3167379E-05 2.3600394E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 5 0 0.2471460 0.000000 9.1793016E-05 2.3583721E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 6 0 0.2468092 0.000000 9.0438924E-05 2.3567046E-03 0.000000 0.000000 0.000000 + Av 2018 3 9 18 0 0.2491199 0.000000 1.0809517E-04 2.4259638E-03 0.000000 0.000000 0.000000 + Av 2018 3 9 19 0 0.2575012 0.000000 1.0650059E-04 2.4242152E-03 0.000000 0.000000 0.000000 + Av 2018 3 9 20 0 0.2541343 0.000000 1.0492955E-04 2.4224666E-03 0.000000 0.000000 0.000000 + Av 2018 3 9 21 0 0.2548555 0.000000 1.0338167E-04 2.4207181E-03 0.000000 0.000000 0.000000 + Av 2018 3 9 22 0 0.2541583 0.000000 1.0185663E-04 2.4189695E-03 0.000000 0.000000 0.000000 + Av 2018 3 9 23 0 0.2539574 0.000000 1.0035410E-04 2.4172210E-03 0.000000 0.000000 0.000000 + Av 2018 3 9 24 0 0.2535870 0.000000 9.8873708E-05 2.4154724E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 1 0 0.2499708 0.000000 9.7415163E-05 2.3650408E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 2 0 0.2474916 0.000000 9.5978146E-05 2.3633735E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 3 0 0.2479332 0.000000 9.4562318E-05 2.3617065E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 4 0 0.2473622 0.000000 9.3167379E-05 2.3600394E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 5 0 0.2471460 0.000000 9.1793016E-05 2.3583721E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 6 0 0.2468092 0.000000 9.0438924E-05 2.3567046E-03 0.000000 0.000000 0.000000 Av 2018 3 10 7 0 0.2255567 0.000000 8.9104804E-05 2.0487304E-03 0.000000 0.000000 1.3923038E-03 Av 2018 3 10 8 0 0.1829710 0.000000 8.7790373E-05 1.6285335E-03 0.000000 0.000000 3.2947117E-03 Av 2018 3 10 9 0 0.1401998 0.000000 8.6495325E-05 1.2083362E-03 0.000000 0.000000 5.1971194E-03 @@ -1673,19 +1673,19 @@ Av 2018 3 10 15 0 0.1264478 0.000000 7.9116522E-05 1.1983315E-03 0.000000 0.000000 5.1971194E-03 Av 2018 3 10 16 0 0.1572213 0.000000 7.7949429E-05 1.6151939E-03 0.000000 0.000000 3.2947117E-03 Av 2018 3 10 17 0 0.2032729 0.000000 7.6799552E-05 2.0320560E-03 0.000000 0.000000 1.3923038E-03 - Av 2018 3 10 18 0 0.2363824 0.000000 7.5666641E-05 2.3366956E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 19 0 0.2454310 0.000000 7.4550437E-05 2.3350280E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 20 0 0.2419076 0.000000 7.3450698E-05 2.3333607E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 21 0 0.2427578 0.000000 7.2367184E-05 2.3316932E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 22 0 0.2420894 0.000000 7.1299663E-05 2.3300259E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 23 0 0.2419513 0.000000 7.0247879E-05 2.3283588E-03 0.000000 0.000000 0.000000 - Av 2018 3 10 24 0 0.2416309 0.000000 6.9211608E-05 2.3266918E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 1 0 0.2382188 0.000000 6.8190631E-05 2.2785580E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 2 0 0.2358890 0.000000 6.7184716E-05 2.2769675E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 3 0 0.2363474 0.000000 6.6193636E-05 2.2753775E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 4 0 0.2358382 0.000000 6.5217173E-05 2.2737873E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 5 0 0.2356675 0.000000 6.4255117E-05 2.2721970E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 6 0 0.2353810 0.000000 6.3307249E-05 2.2706070E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 18 0 0.2363824 0.000000 7.5666641E-05 2.3366956E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 19 0 0.2454310 0.000000 7.4550437E-05 2.3350280E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 20 0 0.2419076 0.000000 7.3450698E-05 2.3333607E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 21 0 0.2427578 0.000000 7.2367184E-05 2.3316932E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 22 0 0.2420894 0.000000 7.1299663E-05 2.3300259E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 23 0 0.2419513 0.000000 7.0247879E-05 2.3283588E-03 0.000000 0.000000 0.000000 + Av 2018 3 10 24 0 0.2416309 0.000000 6.9211608E-05 2.3266918E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 1 0 0.2382188 0.000000 6.8190631E-05 2.2785580E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 2 0 0.2358890 0.000000 6.7184716E-05 2.2769675E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 3 0 0.2363474 0.000000 6.6193636E-05 2.2753775E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 4 0 0.2358382 0.000000 6.5217173E-05 2.2737873E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 5 0 0.2356675 0.000000 6.4255117E-05 2.2721970E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 6 0 0.2353810 0.000000 6.3307249E-05 2.2706070E-03 0.000000 0.000000 0.000000 Av 2018 3 11 7 0 0.2099001 0.000000 6.2373372E-05 1.9001585E-03 0.000000 0.000000 1.6766300E-03 Av 2018 3 11 8 0 0.1599886 0.000000 6.1453262E-05 1.4127526E-03 0.000000 0.000000 3.8848841E-03 Av 2018 3 11 9 0 0.1106794 0.000000 6.0546732E-05 9.2534663E-04 0.000000 0.000000 6.0931384E-03 @@ -1697,19 +1697,19 @@ Av 2018 3 11 15 0 9.5475987E-02 0.000000 5.5381566E-05 9.1580802E-04 0.000000 0.000000 6.0931384E-03 Av 2018 3 11 16 0 0.1309614 0.000000 5.4564603E-05 1.4000344E-03 0.000000 0.000000 3.8848841E-03 Av 2018 3 11 17 0 0.1845640 0.000000 5.3759690E-05 1.8842610E-03 0.000000 0.000000 1.6766300E-03 - Av 2018 3 11 18 0 0.2239346 0.000000 5.2966650E-05 2.2515305E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 19 0 0.2351297 0.000000 5.2185307E-05 2.2499415E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 20 0 0.2309157 0.000000 5.1415493E-05 2.2483524E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 21 0 0.2320612 0.000000 5.0657036E-05 2.2467636E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 22 0 0.2313447 0.000000 4.9909766E-05 2.2451750E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 23 0 0.2312772 0.000000 4.9173515E-05 2.2435861E-03 0.000000 0.000000 0.000000 - Av 2018 3 11 24 0 0.2309854 0.000000 4.8448128E-05 2.2419975E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 1 0 0.2277593 0.000000 4.7733443E-05 2.1960505E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 2 0 0.2255598 0.000000 4.7029298E-05 2.1945343E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 3 0 0.2260236 0.000000 4.6335543E-05 2.1930183E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 4 0 0.2255627 0.000000 4.5652021E-05 2.1915026E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 5 0 0.2254248 0.000000 4.4978580E-05 2.1899869E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 6 0 0.2251759 0.000000 4.4315075E-05 2.1884709E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 18 0 0.2239346 0.000000 5.2966650E-05 2.2515305E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 19 0 0.2351297 0.000000 5.2185307E-05 2.2499415E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 20 0 0.2309157 0.000000 5.1415493E-05 2.2483524E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 21 0 0.2320612 0.000000 5.0657036E-05 2.2467636E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 22 0 0.2313447 0.000000 4.9909766E-05 2.2451750E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 23 0 0.2312772 0.000000 4.9173515E-05 2.2435861E-03 0.000000 0.000000 0.000000 + Av 2018 3 11 24 0 0.2309854 0.000000 4.8448128E-05 2.2419975E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 1 0 0.2277593 0.000000 4.7733443E-05 2.1960505E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 2 0 0.2255598 0.000000 4.7029298E-05 2.1945343E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 3 0 0.2260236 0.000000 4.6335543E-05 2.1930183E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 4 0 0.2255627 0.000000 4.5652021E-05 2.1915026E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 5 0 0.2254248 0.000000 4.4978580E-05 2.1899869E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 6 0 0.2251759 0.000000 4.4315075E-05 2.1884709E-03 0.000000 0.000000 0.000000 Av 2018 3 12 7 0 0.1965687 0.000000 4.3661355E-05 1.7718228E-03 0.000000 0.000000 1.8869663E-03 Av 2018 3 12 8 0 0.1417831 0.000000 4.3017284E-05 1.2426074E-03 0.000000 0.000000 4.2856014E-03 Av 2018 3 12 9 0 8.8535845E-02 0.000000 4.2382711E-05 7.1339181E-04 0.000000 0.000000 6.6842362E-03 @@ -1721,19 +1721,19 @@ Av 2018 3 12 15 0 7.2546586E-02 0.000000 3.8767095E-05 7.0403086E-04 0.000000 0.000000 6.6842362E-03 Av 2018 3 12 16 0 0.1107877 0.000000 3.8195223E-05 1.2301239E-03 0.000000 0.000000 4.2856014E-03 Av 2018 3 12 17 0 0.1691256 0.000000 3.7631784E-05 1.7562080E-03 0.000000 0.000000 1.8869663E-03 - Av 2018 3 12 18 0 0.2128594 0.000000 3.7076657E-05 2.1697199E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 19 0 0.2257180 0.000000 3.6529716E-05 2.1680987E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 20 0 0.2209529 0.000000 3.5990844E-05 2.1664780E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 21 0 0.2223169 0.000000 3.5459925E-05 2.1648579E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 22 0 0.2215509 0.000000 3.4936838E-05 2.1632388E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 23 0 0.2215267 0.000000 3.4421464E-05 2.1616207E-03 0.000000 0.000000 0.000000 - Av 2018 3 12 24 0 0.2212458 0.000000 3.3913693E-05 2.1600029E-03 0.000000 0.000000 0.000000 - Av 2018 3 13 1 0 0.2181797 0.000000 3.3413413E-05 2.1160650E-03 0.000000 0.000000 0.000000 - Av 2018 3 13 2 0 0.2160879 0.000000 3.2920510E-05 2.1145176E-03 0.000000 0.000000 0.000000 - Av 2018 3 13 3 0 0.2165385 0.000000 3.2434880E-05 2.1129712E-03 0.000000 0.000000 0.000000 - Av 2018 3 13 4 0 0.2161062 0.000000 3.1956413E-05 2.1114249E-03 0.000000 0.000000 0.000000 - Av 2018 3 13 5 0 0.2159819 0.000000 3.1485004E-05 2.1098799E-03 0.000000 0.000000 0.000000 - Av 2018 3 13 6 0 0.2157516 0.000000 3.1020554E-05 2.1083353E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 18 0 0.2128594 0.000000 3.7076657E-05 2.1697199E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 19 0 0.2257180 0.000000 3.6529716E-05 2.1680987E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 20 0 0.2209529 0.000000 3.5990844E-05 2.1664780E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 21 0 0.2223169 0.000000 3.5459925E-05 2.1648579E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 22 0 0.2215509 0.000000 3.4936838E-05 2.1632388E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 23 0 0.2215267 0.000000 3.4421464E-05 2.1616207E-03 0.000000 0.000000 0.000000 + Av 2018 3 12 24 0 0.2212458 0.000000 3.3913693E-05 2.1600029E-03 0.000000 0.000000 0.000000 + Av 2018 3 13 1 0 0.2181797 0.000000 3.3413413E-05 2.1160650E-03 0.000000 0.000000 0.000000 + Av 2018 3 13 2 0 0.2160879 0.000000 3.2920510E-05 2.1145176E-03 0.000000 0.000000 0.000000 + Av 2018 3 13 3 0 0.2165385 0.000000 3.2434880E-05 2.1129712E-03 0.000000 0.000000 0.000000 + Av 2018 3 13 4 0 0.2161062 0.000000 3.1956413E-05 2.1114249E-03 0.000000 0.000000 0.000000 + Av 2018 3 13 5 0 0.2159819 0.000000 3.1485004E-05 2.1098799E-03 0.000000 0.000000 0.000000 + Av 2018 3 13 6 0 0.2157516 0.000000 3.1020554E-05 2.1083353E-03 0.000000 0.000000 0.000000 Av 2018 3 13 7 0 0.1929617 0.000000 3.0562951E-05 1.7472124E-03 0.000000 1.9999960E-02 1.6344502E-03 Av 2018 3 13 8 0 0.1511817 0.000000 3.0112100E-05 1.3040033E-03 0.000000 5.9999879E-02 3.6420231E-03 Av 2018 3 13 9 0 0.1161332 1.0621781E-04 3.5337798E-05 8.7110989E-04 0.000000 5.9999879E-02 5.6495960E-03 @@ -1745,19 +1745,19 @@ Av 2018 3 13 15 0 0.1185525 0.000000 9.5000963E-05 9.5790334E-04 9.7511470E-04 0.000000 5.6495960E-03 Av 2018 3 13 16 0 0.1407554 0.000000 9.3599556E-05 1.3979314E-03 4.6552363E-04 0.000000 3.6420231E-03 Av 2018 3 13 17 0 0.1880261 0.000000 9.2218812E-05 1.8379602E-03 2.5404547E-04 0.000000 1.6344502E-03 - Av 2018 3 13 18 0 0.2237570 0.000000 9.0858441E-05 2.1959026E-03 1.5266059E-04 0.000000 0.000000 - Av 2018 3 13 19 0 0.2344472 0.000000 8.9518137E-05 2.1942670E-03 9.8583070E-05 0.000000 0.000000 - Av 2018 3 13 20 0 0.2307732 0.000000 8.8197601E-05 2.1926318E-03 6.7289242E-05 9.9999802E-03 0.000000 - Av 2018 3 13 21 0 0.2313067 0.000000 8.6896544E-05 2.1909976E-03 4.7983685E-05 0.000000 0.000000 - Av 2018 3 13 22 0 0.2617396 4.0008064E-05 8.7754248E-05 2.1961136E-03 3.9914865E-03 1.9999960E-02 0.000000 - Av 2018 3 13 23 0 0.2637064 0.000000 8.8588698E-05 2.2020824E-03 1.7671059E-03 0.000000 0.000000 - Av 2018 3 13 24 0 0.2829620 2.6158295E-05 8.8681118E-05 2.2059944E-03 7.1066893E-03 9.9999802E-03 0.000000 - Av 2018 3 14 1 0 0.2787179 0.000000 8.8765257E-05 2.1670312E-03 2.4766228E-03 0.000000 0.000000 - Av 2018 3 14 2 0 0.3371508 9.1604139E-05 9.2356851E-05 2.1752042E-03 1.4959217E-02 1.9999960E-02 0.000000 - Av 2018 3 14 3 0 0.3301766 0.000000 9.5871226E-05 2.1844388E-03 4.1953670E-03 0.000000 0.000000 - Av 2018 3 14 4 0 0.2332941 0.000000 9.4456969E-05 2.1828299E-03 1.4617352E-03 0.000000 0.000000 - Av 2018 3 14 5 0 0.2424403 0.000000 9.3063580E-05 2.1812220E-03 6.4373086E-04 0.000000 0.000000 - Av 2018 3 14 6 0 0.2311779 0.000000 9.1690745E-05 2.1796145E-03 3.3201795E-04 0.000000 0.000000 + Av 2018 3 13 18 0 0.2237570 0.000000 9.0858441E-05 2.1959026E-03 1.5266059E-04 0.000000 0.000000 + Av 2018 3 13 19 0 0.2344472 0.000000 8.9518137E-05 2.1942670E-03 9.8583070E-05 0.000000 0.000000 + Av 2018 3 13 20 0 0.2307732 0.000000 8.8197601E-05 2.1926318E-03 6.7289242E-05 9.9999802E-03 0.000000 + Av 2018 3 13 21 0 0.2313067 0.000000 8.6896544E-05 2.1909976E-03 4.7983685E-05 0.000000 0.000000 + Av 2018 3 13 22 0 0.2617396 4.0008064E-05 8.7754248E-05 2.1961136E-03 3.9914865E-03 1.9999960E-02 0.000000 + Av 2018 3 13 23 0 0.2637064 0.000000 8.8588698E-05 2.2020824E-03 1.7671059E-03 0.000000 0.000000 + Av 2018 3 13 24 0 0.2829620 2.6158295E-05 8.8681118E-05 2.2059944E-03 7.1066893E-03 9.9999802E-03 0.000000 + Av 2018 3 14 1 0 0.2787179 0.000000 8.8765257E-05 2.1670312E-03 2.4766228E-03 0.000000 0.000000 + Av 2018 3 14 2 0 0.3371508 9.1604139E-05 9.2356851E-05 2.1752042E-03 1.4959217E-02 1.9999960E-02 0.000000 + Av 2018 3 14 3 0 0.3301766 0.000000 9.5871226E-05 2.1844388E-03 4.1953670E-03 0.000000 0.000000 + Av 2018 3 14 4 0 0.2332941 0.000000 9.4456969E-05 2.1828299E-03 1.4617352E-03 0.000000 0.000000 + Av 2018 3 14 5 0 0.2424403 0.000000 9.3063580E-05 2.1812220E-03 6.4373086E-04 0.000000 0.000000 + Av 2018 3 14 6 0 0.2311779 0.000000 9.1690745E-05 2.1796145E-03 3.3201795E-04 0.000000 0.000000 Av 2018 3 14 7 0 0.2108572 0.000000 9.0338166E-05 1.8745668E-03 1.9147656E-04 0.000000 1.3792779E-03 Av 2018 3 14 8 0 0.1706854 0.000000 8.9005531E-05 1.5124204E-03 1.1987322E-04 0.000000 3.0180980E-03 Av 2018 3 14 9 0 0.1342556 0.000000 8.7692562E-05 1.1502746E-03 7.9875659E-05 0.000000 4.6569179E-03 @@ -1769,19 +1769,19 @@ Av 2018 3 14 15 0 0.1216496 0.000000 8.0211619E-05 1.1406580E-03 0.000000 0.000000 4.6569179E-03 Av 2018 3 14 16 0 0.1473371 0.000000 7.9028374E-05 1.4995979E-03 0.000000 0.000000 3.0180980E-03 Av 2018 3 14 17 0 0.1872449 0.000000 7.7862584E-05 1.8585387E-03 0.000000 0.000000 1.3792779E-03 - Av 2018 3 14 18 0 0.2183356 0.000000 7.6713986E-05 2.1603808E-03 0.000000 0.000000 0.000000 - Av 2018 3 14 19 0 0.2278929 0.000000 7.5582335E-05 2.1587827E-03 0.000000 0.000000 0.000000 - Av 2018 3 14 20 0 0.2242000 0.000000 7.4467374E-05 2.1571852E-03 0.000000 0.000000 0.000000 - Av 2018 3 14 21 0 0.2251166 0.000000 7.3368865E-05 2.1555885E-03 0.000000 0.000000 0.000000 - Av 2018 3 14 22 0 0.2244328 0.000000 7.2286566E-05 2.1539924E-03 0.000000 0.000000 0.000000 - Av 2018 3 14 23 0 0.2243077 0.000000 7.1220224E-05 2.1523971E-03 0.000000 0.000000 0.000000 - Av 2018 3 14 24 0 0.2239906 0.000000 7.0169619E-05 2.1508024E-03 0.000000 0.000000 0.000000 - Av 2018 3 15 1 0 0.2208852 0.000000 6.9134505E-05 2.1071541E-03 0.000000 0.000000 0.000000 - Av 2018 3 15 2 0 0.2187560 0.000000 6.8114663E-05 2.1056291E-03 0.000000 0.000000 0.000000 - Av 2018 3 15 3 0 0.2191516 0.000000 6.7109868E-05 2.1041043E-03 0.000000 0.000000 0.000000 - Av 2018 3 15 4 0 0.2186714 0.000000 6.6119894E-05 2.1025804E-03 0.000000 0.000000 0.000000 - Av 2018 3 15 5 0 0.2184978 0.000000 6.5144523E-05 2.1010570E-03 0.000000 0.000000 0.000000 - Av 2018 3 15 6 0 0.2182196 0.000000 6.4183536E-05 2.0995343E-03 0.000000 0.000000 0.000000 + Av 2018 3 14 18 0 0.2183356 0.000000 7.6713986E-05 2.1603808E-03 0.000000 0.000000 0.000000 + Av 2018 3 14 19 0 0.2278929 0.000000 7.5582335E-05 2.1587827E-03 0.000000 0.000000 0.000000 + Av 2018 3 14 20 0 0.2242000 0.000000 7.4467374E-05 2.1571852E-03 0.000000 0.000000 0.000000 + Av 2018 3 14 21 0 0.2251166 0.000000 7.3368865E-05 2.1555885E-03 0.000000 0.000000 0.000000 + Av 2018 3 14 22 0 0.2244328 0.000000 7.2286566E-05 2.1539924E-03 0.000000 0.000000 0.000000 + Av 2018 3 14 23 0 0.2243077 0.000000 7.1220224E-05 2.1523971E-03 0.000000 0.000000 0.000000 + Av 2018 3 14 24 0 0.2239906 0.000000 7.0169619E-05 2.1508024E-03 0.000000 0.000000 0.000000 + Av 2018 3 15 1 0 0.2208852 0.000000 6.9134505E-05 2.1071541E-03 0.000000 0.000000 0.000000 + Av 2018 3 15 2 0 0.2187560 0.000000 6.8114663E-05 2.1056291E-03 0.000000 0.000000 0.000000 + Av 2018 3 15 3 0 0.2191516 0.000000 6.7109868E-05 2.1041043E-03 0.000000 0.000000 0.000000 + Av 2018 3 15 4 0 0.2186714 0.000000 6.6119894E-05 2.1025804E-03 0.000000 0.000000 0.000000 + Av 2018 3 15 5 0 0.2184978 0.000000 6.5144523E-05 2.1010570E-03 0.000000 0.000000 0.000000 + Av 2018 3 15 6 0 0.2182196 0.000000 6.4183536E-05 2.0995343E-03 0.000000 0.000000 0.000000 Av 2018 3 15 7 0 0.1970066 0.000000 6.3236730E-05 1.7913888E-03 0.000000 0.000000 1.3937427E-03 Av 2018 3 15 8 0 0.1589741 0.000000 6.2303887E-05 1.4370775E-03 0.000000 0.000000 2.9973343E-03 Av 2018 3 15 9 0 0.1236932 0.000000 6.1384802E-05 1.0827667E-03 0.000000 0.000000 4.6009258E-03 @@ -1793,19 +1793,19 @@ Av 2018 3 15 15 0 0.1127351 0.000000 5.6148143E-05 1.0736565E-03 0.000000 0.000000 4.6009258E-03 Av 2018 3 15 16 0 0.1375921 0.000000 5.5319870E-05 1.4249305E-03 0.000000 0.000000 2.9973343E-03 Av 2018 3 15 17 0 0.1767808 0.000000 5.4503817E-05 1.7762055E-03 0.000000 0.000000 1.3937427E-03 - Av 2018 3 15 18 0 0.2078595 0.000000 5.3699801E-05 2.0813143E-03 0.000000 0.000000 0.000000 - Av 2018 3 15 19 0 0.2176927 0.000000 5.2907642E-05 2.0798002E-03 0.000000 0.000000 0.000000 - Av 2018 3 15 20 0 0.2179233 0.000000 5.2127172E-05 2.0782868E-03 0.000000 3.9999921E-02 0.000000 - Av 2018 3 15 21 0 0.5960779 1.7810446E-04 1.4653539E-04 2.0983394E-03 5.1269364E-02 9.9999800E-02 0.000000 - Av 2018 3 15 22 0 0.7358053 2.7763017E-04 2.5395298E-04 2.1358789E-03 3.4196667E-02 2.9999940E-02 0.000000 - Av 2018 3 15 23 0 0.3744880 0.000000 2.6500615E-04 2.1508653E-03 6.8089110E-03 0.000000 0.000000 - Av 2018 3 15 24 0 0.3089690 2.8019878E-05 2.6259874E-04 2.1548644E-03 9.0592178E-03 9.9999802E-03 0.000000 - Av 2018 3 16 1 0 0.3012968 0.000000 2.6021941E-04 2.1172627E-03 2.7106509E-03 0.000000 0.000000 - Av 2018 3 16 2 0 0.2434672 0.000000 2.5638076E-04 2.1158156E-03 1.0449812E-03 0.000000 0.000000 - Av 2018 3 16 3 0 0.2928610 2.1245693E-05 2.5373776E-04 2.1192075E-03 6.6936905E-03 9.9999802E-03 0.000000 - Av 2018 3 16 4 0 0.2851633 0.000000 2.5112811E-04 2.1231037E-03 2.4194478E-03 0.000000 0.000000 - Av 2018 3 16 5 0 0.2460653 0.000000 2.4742360E-04 2.1216457E-03 9.5669559E-04 0.000000 0.000000 - Av 2018 3 16 6 0 0.2456381 0.000000 2.4377368E-04 2.1201880E-03 4.5841053E-04 0.000000 0.000000 + Av 2018 3 15 18 0 0.2078595 0.000000 5.3699801E-05 2.0813143E-03 0.000000 0.000000 0.000000 + Av 2018 3 15 19 0 0.2176927 0.000000 5.2907642E-05 2.0798002E-03 0.000000 0.000000 0.000000 + Av 2018 3 15 20 0 0.2179233 0.000000 5.2127172E-05 2.0782868E-03 0.000000 3.9999921E-02 0.000000 + Av 2018 3 15 21 0 0.5960779 1.7810446E-04 1.4653539E-04 2.0983394E-03 5.1269364E-02 9.9999800E-02 0.000000 + Av 2018 3 15 22 0 0.7358053 2.7763017E-04 2.5395298E-04 2.1358789E-03 3.4196667E-02 2.9999940E-02 0.000000 + Av 2018 3 15 23 0 0.3744880 0.000000 2.6500615E-04 2.1508653E-03 6.8089110E-03 0.000000 0.000000 + Av 2018 3 15 24 0 0.3089690 2.8019878E-05 2.6259874E-04 2.1548644E-03 9.0592178E-03 9.9999802E-03 0.000000 + Av 2018 3 16 1 0 0.3012968 0.000000 2.6021941E-04 2.1172627E-03 2.7106509E-03 0.000000 0.000000 + Av 2018 3 16 2 0 0.2434672 0.000000 2.5638076E-04 2.1158156E-03 1.0449812E-03 0.000000 0.000000 + Av 2018 3 16 3 0 0.2928610 2.1245693E-05 2.5373776E-04 2.1192075E-03 6.6936905E-03 9.9999802E-03 0.000000 + Av 2018 3 16 4 0 0.2851633 0.000000 2.5112811E-04 2.1231037E-03 2.4194478E-03 0.000000 0.000000 + Av 2018 3 16 5 0 0.2460653 0.000000 2.4742360E-04 2.1216457E-03 9.5669559E-04 0.000000 0.000000 + Av 2018 3 16 6 0 0.2456381 0.000000 2.4377368E-04 2.1201880E-03 4.5841053E-04 0.000000 0.000000 Av 2018 3 16 7 0 0.2161319 0.000000 2.4017764E-04 1.7655120E-03 2.5081410E-04 0.000000 1.6055395E-03 Av 2018 3 16 8 0 0.1725354 0.000000 2.3663466E-04 1.3701308E-03 1.5100685E-04 0.000000 3.3961036E-03 Av 2018 3 16 9 0 0.1321815 0.000000 2.3314393E-04 9.7474991E-04 9.7656732E-05 0.000000 5.1866677E-03 @@ -1817,19 +1817,19 @@ Av 2018 3 16 15 0 0.1175338 0.000000 2.1325471E-04 9.6601318E-04 0.000000 0.000000 5.1866677E-03 Av 2018 3 16 16 0 0.1452027 0.000000 2.1010886E-04 1.3584818E-03 0.000000 0.000000 3.3961036E-03 Av 2018 3 16 17 0 0.1887258 0.000000 2.0700942E-04 1.7509508E-03 0.000000 0.000000 1.6055395E-03 - Av 2018 3 16 18 0 0.2239926 0.000000 2.0395570E-04 2.1027145E-03 0.000000 0.000000 0.000000 - Av 2018 3 16 19 0 0.2384328 0.000000 2.0094703E-04 2.1012600E-03 0.000000 2.9999940E-02 0.000000 - Av 2018 3 16 20 0 0.2328083 0.000000 1.9798275E-04 2.0998055E-03 0.000000 0.000000 0.000000 - Av 2018 3 16 21 0 0.2309964 0.000000 1.9506220E-04 2.0983515E-03 0.000000 0.000000 0.000000 - Av 2018 3 16 22 0 0.2310349 0.000000 1.9218473E-04 2.0968977E-03 0.000000 0.000000 0.000000 - Av 2018 3 16 23 0 0.2304358 0.000000 1.8934970E-04 2.0954444E-03 0.000000 0.000000 0.000000 - Av 2018 3 16 24 0 0.2300642 0.000000 1.8655648E-04 2.0939910E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 1 0 0.2268592 0.000000 1.8380450E-04 2.0519164E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 2 0 0.2246493 0.000000 1.8109308E-04 2.0505276E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 3 0 0.2248633 0.000000 1.7842169E-04 2.0491390E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 4 0 0.2242399 0.000000 1.7578968E-04 2.0477504E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 5 0 0.2239129 0.000000 1.7319650E-04 2.0463620E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 6 0 0.2234882 0.000000 1.7064158E-04 2.0449741E-03 0.000000 0.000000 0.000000 + Av 2018 3 16 18 0 0.2239926 0.000000 2.0395570E-04 2.1027145E-03 0.000000 0.000000 0.000000 + Av 2018 3 16 19 0 0.2384328 0.000000 2.0094703E-04 2.1012600E-03 0.000000 2.9999940E-02 0.000000 + Av 2018 3 16 20 0 0.2328083 0.000000 1.9798275E-04 2.0998055E-03 0.000000 0.000000 0.000000 + Av 2018 3 16 21 0 0.2309964 0.000000 1.9506220E-04 2.0983515E-03 0.000000 0.000000 0.000000 + Av 2018 3 16 22 0 0.2310349 0.000000 1.9218473E-04 2.0968977E-03 0.000000 0.000000 0.000000 + Av 2018 3 16 23 0 0.2304358 0.000000 1.8934970E-04 2.0954444E-03 0.000000 0.000000 0.000000 + Av 2018 3 16 24 0 0.2300642 0.000000 1.8655648E-04 2.0939910E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 1 0 0.2268592 0.000000 1.8380450E-04 2.0519164E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 2 0 0.2246493 0.000000 1.8109308E-04 2.0505276E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 3 0 0.2248633 0.000000 1.7842169E-04 2.0491390E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 4 0 0.2242399 0.000000 1.7578968E-04 2.0477504E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 5 0 0.2239129 0.000000 1.7319650E-04 2.0463620E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 6 0 0.2234882 0.000000 1.7064158E-04 2.0449741E-03 0.000000 0.000000 0.000000 Av 2018 3 17 7 0 0.1997190 0.000000 1.6812436E-04 1.7017496E-03 0.000000 0.000000 1.5538024E-03 Av 2018 3 17 8 0 0.1588070 0.000000 1.6564426E-04 1.3304934E-03 0.000000 0.000000 3.2350237E-03 Av 2018 3 17 9 0 0.1220092 0.000000 1.6320075E-04 9.5923746E-04 0.000000 0.000000 4.9162451E-03 @@ -1841,19 +1841,19 @@ Av 2018 3 17 15 0 0.1112299 0.000000 1.4927830E-04 9.5091911E-04 0.000000 9.9999802E-03 4.9162451E-03 Av 2018 3 17 16 0 0.1365644 0.000000 1.4707622E-04 1.3194025E-03 0.000000 9.9999802E-03 3.2350237E-03 Av 2018 3 17 17 0 0.1770332 0.000000 1.4490662E-04 1.6878860E-03 0.000000 0.000000 1.5538024E-03 - Av 2018 3 17 18 0 0.2103515 0.000000 1.4276901E-04 2.0283377E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 19 0 0.2216503 0.000000 1.4066295E-04 2.0269530E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 20 0 0.2172494 0.000000 1.3858794E-04 2.0255686E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 21 0 0.2183116 0.000000 1.3654355E-04 2.0241847E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 22 0 0.2174785 0.000000 1.3452931E-04 2.0228007E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 23 0 0.2173084 0.000000 1.3254480E-04 2.0214173E-03 0.000000 0.000000 0.000000 - Av 2018 3 17 24 0 0.2169119 0.000000 1.3058954E-04 2.0200340E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 1 0 0.2139620 0.000000 1.2866316E-04 1.9798542E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 2 0 0.2119080 0.000000 1.2676517E-04 1.9785315E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 3 0 0.2121865 0.000000 1.2489519E-04 1.9772090E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 4 0 0.2116577 0.000000 1.2305279E-04 1.9758868E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 5 0 0.2114134 0.000000 1.2123756E-04 1.9745647E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 6 0 0.2110739 0.000000 1.1944912E-04 1.9732430E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 18 0 0.2103515 0.000000 1.4276901E-04 2.0283377E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 19 0 0.2216503 0.000000 1.4066295E-04 2.0269530E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 20 0 0.2172494 0.000000 1.3858794E-04 2.0255686E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 21 0 0.2183116 0.000000 1.3654355E-04 2.0241847E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 22 0 0.2174785 0.000000 1.3452931E-04 2.0228007E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 23 0 0.2173084 0.000000 1.3254480E-04 2.0214173E-03 0.000000 0.000000 0.000000 + Av 2018 3 17 24 0 0.2169119 0.000000 1.3058954E-04 2.0200340E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 1 0 0.2139620 0.000000 1.2866316E-04 1.9798542E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 2 0 0.2119080 0.000000 1.2676517E-04 1.9785315E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 3 0 0.2121865 0.000000 1.2489519E-04 1.9772090E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 4 0 0.2116577 0.000000 1.2305279E-04 1.9758868E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 5 0 0.2114134 0.000000 1.2123756E-04 1.9745647E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 6 0 0.2110739 0.000000 1.1944912E-04 1.9732430E-03 0.000000 0.000000 0.000000 Av 2018 3 18 7 0 0.1873248 0.000000 1.1768705E-04 1.6291051E-03 0.000000 0.000000 1.5582569E-03 Av 2018 3 18 8 0 0.1471216 0.000000 1.1595097E-04 1.2675938E-03 0.000000 0.000000 3.1954853E-03 Av 2018 3 18 9 0 0.1115201 0.000000 1.1424052E-04 9.0608257E-04 0.000000 0.000000 4.8327134E-03 @@ -1865,19 +1865,19 @@ Av 2018 3 18 15 0 0.1004088 0.000000 1.0449479E-04 8.9816283E-04 0.000000 0.000000 4.8327134E-03 Av 2018 3 18 16 0 0.1250690 0.000000 1.0295332E-04 1.2570340E-03 0.000000 0.000000 3.1954853E-03 Av 2018 3 18 17 0 0.1652519 0.000000 1.0143460E-04 1.6159054E-03 0.000000 0.000000 1.5582569E-03 - Av 2018 3 18 18 0 0.1988792 0.000000 9.9938276E-05 1.9574035E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 19 0 0.2102274 0.000000 9.8464028E-05 1.9560854E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 20 0 0.2059036 0.000000 9.7011529E-05 1.9547676E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 21 0 0.2070320 0.000000 9.5580457E-05 1.9534500E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 22 0 0.2062676 0.000000 9.4170500E-05 1.9521328E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 23 0 0.2061642 0.000000 9.2781331E-05 1.9508159E-03 0.000000 0.000000 0.000000 - Av 2018 3 18 24 0 0.2058339 0.000000 9.1412665E-05 1.9494994E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 1 0 0.2030671 0.000000 9.0064183E-05 1.9111210E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 2 0 0.2011541 0.000000 8.8735600E-05 1.9098612E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 3 0 0.2014689 0.000000 8.7426612E-05 1.9086018E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 4 0 0.2010117 0.000000 8.6136934E-05 1.9073426E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 5 0 0.2008256 0.000000 8.4866275E-05 1.9060835E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 6 0 0.2005479 0.000000 8.3614366E-05 1.9048250E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 18 0 0.1988792 0.000000 9.9938276E-05 1.9574035E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 19 0 0.2102274 0.000000 9.8464028E-05 1.9560854E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 20 0 0.2059036 0.000000 9.7011529E-05 1.9547676E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 21 0 0.2070320 0.000000 9.5580457E-05 1.9534500E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 22 0 0.2062676 0.000000 9.4170500E-05 1.9521328E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 23 0 0.2061642 0.000000 9.2781331E-05 1.9508159E-03 0.000000 0.000000 0.000000 + Av 2018 3 18 24 0 0.2058339 0.000000 9.1412665E-05 1.9494994E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 1 0 0.2030671 0.000000 9.0064183E-05 1.9111210E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 2 0 0.2011541 0.000000 8.8735600E-05 1.9098612E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 3 0 0.2014689 0.000000 8.7426612E-05 1.9086018E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 4 0 0.2010117 0.000000 8.6136934E-05 1.9073426E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 5 0 0.2008256 0.000000 8.4866275E-05 1.9060835E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 6 0 0.2005479 0.000000 8.3614366E-05 1.9048250E-03 0.000000 0.000000 0.000000 Av 2018 3 19 7 0 0.1742935 0.000000 8.2380924E-05 1.5231876E-03 0.000000 0.000000 1.7289958E-03 Av 2018 3 19 8 0 0.1305614 0.000000 8.1165672E-05 1.1335207E-03 0.000000 0.000000 3.4944899E-03 Av 2018 3 19 9 0 9.2439026E-02 0.000000 7.9968355E-05 7.4385421E-04 0.000000 0.000000 5.2599842E-03 @@ -1889,18 +1889,18 @@ Av 2018 3 19 15 0 8.1082627E-02 0.000000 7.3146351E-05 7.3631352E-04 0.000000 0.000000 5.2599842E-03 Av 2018 3 19 16 0 0.1074992 0.000000 7.2067327E-05 1.1234663E-03 0.000000 0.000000 3.4944899E-03 Av 2018 3 19 17 0 0.1509638 0.000000 7.1004222E-05 1.5106197E-03 0.000000 0.000000 1.7289958E-03 - Av 2018 3 19 18 0 0.1879855 0.000000 6.9956797E-05 1.8897435E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 19 0 0.2007813 0.000000 6.8924826E-05 1.8884887E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 20 0 0.1960223 0.000000 6.7908077E-05 1.8872340E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 21 0 0.1973694 0.000000 6.6906330E-05 1.8859797E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 22 0 0.1965955 0.000000 6.5919361E-05 1.8847258E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 23 0 0.1965611 0.000000 6.4946944E-05 1.8834721E-03 0.000000 0.000000 0.000000 - Av 2018 3 19 24 0 0.1962715 0.000000 6.3988875E-05 1.8822188E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 1 0 0.1936666 0.000000 6.3044943E-05 1.8455533E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 2 0 0.1918723 0.000000 6.2114930E-05 1.8443534E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 3 0 0.1922077 0.000000 6.1198632E-05 1.8431537E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 4 0 0.1918045 0.000000 6.0295861E-05 1.8419544E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 5 0 0.1916600 0.000000 5.9406404E-05 1.8407553E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 18 0 0.1879855 0.000000 6.9956797E-05 1.8897435E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 19 0 0.2007813 0.000000 6.8924826E-05 1.8884887E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 20 0 0.1960223 0.000000 6.7908077E-05 1.8872340E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 21 0 0.1973694 0.000000 6.6906330E-05 1.8859797E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 22 0 0.1965955 0.000000 6.5919361E-05 1.8847258E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 23 0 0.1965611 0.000000 6.4946944E-05 1.8834721E-03 0.000000 0.000000 0.000000 + Av 2018 3 19 24 0 0.1962715 0.000000 6.3988875E-05 1.8822188E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 1 0 0.1936666 0.000000 6.3044943E-05 1.8455533E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 2 0 0.1918723 0.000000 6.2114930E-05 1.8443534E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 3 0 0.1922077 0.000000 6.1198632E-05 1.8431537E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 4 0 0.1918045 0.000000 6.0295861E-05 1.8419544E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 5 0 0.1916600 0.000000 5.9406404E-05 1.8407553E-03 0.000000 0.000000 0.000000 Av 2018 3 20 6 0 0.1912390 0.000000 5.8530066E-05 1.8368016E-03 0.000000 0.000000 1.2522619E-05 Av 2018 3 20 7 0 0.1635835 0.000000 5.7666661E-05 1.4358404E-03 0.000000 0.000000 1.8296265E-03 Av 2018 3 20 8 0 0.1183092 0.000000 5.6815989E-05 1.0348794E-03 0.000000 0.000000 3.6467304E-03 @@ -1914,17 +1914,17 @@ Av 2018 3 20 16 0 9.5054649E-02 0.000000 5.0447146E-05 1.0253042E-03 0.000000 0.000000 3.6467304E-03 Av 2018 3 20 17 0 0.1398191 0.000000 4.9702969E-05 1.4238714E-03 0.000000 0.000000 1.8296265E-03 Av 2018 3 20 18 0 0.1785176 0.000000 4.8969770E-05 1.8224381E-03 0.000000 0.000000 1.2522619E-05 - Av 2018 3 20 19 0 0.1922864 0.000000 4.8247388E-05 1.8239960E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 20 0 0.1874271 0.000000 4.7535665E-05 1.8227992E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 21 0 0.1888581 0.000000 4.6834441E-05 1.8216029E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 22 0 0.1881034 0.000000 4.6143559E-05 1.8204068E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 23 0 0.1881101 0.000000 4.5462868E-05 1.8192109E-03 0.000000 0.000000 0.000000 - Av 2018 3 20 24 0 0.1878535 0.000000 4.4792218E-05 1.8180156E-03 0.000000 0.000000 0.000000 - Av 2018 3 21 1 0 0.1853904 0.000000 4.4131462E-05 1.7829777E-03 0.000000 0.000000 0.000000 - Av 2018 3 21 2 0 0.1836993 0.000000 4.3480457E-05 1.7818327E-03 0.000000 0.000000 0.000000 - Av 2018 3 21 3 0 0.1840439 0.000000 4.2839052E-05 1.7806879E-03 0.000000 0.000000 0.000000 - Av 2018 3 21 4 0 0.1836820 0.000000 4.2207110E-05 1.7795435E-03 0.000000 0.000000 0.000000 - Av 2018 3 21 5 0 0.1835671 0.000000 4.1584488E-05 1.7783993E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 19 0 0.1922864 0.000000 4.8247388E-05 1.8239960E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 20 0 0.1874271 0.000000 4.7535665E-05 1.8227992E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 21 0 0.1888581 0.000000 4.6834441E-05 1.8216029E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 22 0 0.1881034 0.000000 4.6143559E-05 1.8204068E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 23 0 0.1881101 0.000000 4.5462868E-05 1.8192109E-03 0.000000 0.000000 0.000000 + Av 2018 3 20 24 0 0.1878535 0.000000 4.4792218E-05 1.8180156E-03 0.000000 0.000000 0.000000 + Av 2018 3 21 1 0 0.1853904 0.000000 4.4131462E-05 1.7829777E-03 0.000000 0.000000 0.000000 + Av 2018 3 21 2 0 0.1836993 0.000000 4.3480457E-05 1.7818327E-03 0.000000 0.000000 0.000000 + Av 2018 3 21 3 0 0.1840439 0.000000 4.2839052E-05 1.7806879E-03 0.000000 0.000000 0.000000 + Av 2018 3 21 4 0 0.1836820 0.000000 4.2207110E-05 1.7795435E-03 0.000000 0.000000 0.000000 + Av 2018 3 21 5 0 0.1835671 0.000000 4.1584488E-05 1.7783993E-03 0.000000 0.000000 0.000000 Av 2018 3 21 6 0 0.1824885 0.000000 4.0971052E-05 1.7643959E-03 0.000000 0.000000 5.8452450E-05 Av 2018 3 21 7 0 0.1562322 0.000000 4.0366667E-05 1.3900273E-03 0.000000 0.000000 1.7549295E-03 Av 2018 3 21 8 0 0.1141449 0.000000 3.9771192E-05 1.0156576E-03 0.000000 0.000000 3.4514065E-03 @@ -1938,17 +1938,17 @@ Av 2018 3 21 16 0 9.2653766E-02 0.000000 3.5312998E-05 1.0063346E-03 0.000000 0.000000 3.4514065E-03 Av 2018 3 21 17 0 0.1349894 0.000000 3.4792076E-05 1.3783886E-03 0.000000 9.9999802E-03 1.7549295E-03 Av 2018 3 21 18 0 0.1717830 0.000000 3.4278837E-05 1.7504431E-03 0.000000 9.9999802E-03 5.8452450E-05 - Av 2018 3 21 19 0 0.1900308 0.000000 3.3773173E-05 1.7621327E-03 0.000000 5.9999879E-02 0.000000 - Av 2018 3 21 20 0 0.2033522 8.3495379E-06 4.9164268E-05 1.7750282E-03 1.8508779E-03 4.9999900E-02 0.000000 - Av 2018 3 21 21 0 0.7373945 3.0549284E-04 1.7283918E-04 1.8096500E-03 7.3862500E-02 8.9999817E-02 0.000000 - Av 2018 3 21 22 0 0.7630845 1.3298409E-04 2.8548448E-04 1.8411726E-03 2.8669957E-02 1.9999960E-02 0.000000 - Av 2018 3 21 23 0 0.2740219 0.000000 2.8838057E-04 1.8513987E-03 6.0085682E-03 0.000000 0.000000 - Av 2018 3 21 24 0 0.2489811 0.000000 2.8412652E-04 1.8502360E-03 1.9181435E-03 0.000000 0.000000 - Av 2018 3 22 1 0 0.2654222 2.1310298E-05 2.8108028E-04 1.8188426E-03 7.1842065E-03 9.9999802E-03 0.000000 - Av 2018 3 22 2 0 0.4208854 6.4087126E-06 2.9166613E-04 1.8359566E-03 2.5114253E-02 2.9999940E-02 0.000000 - Av 2018 3 22 3 0 0.6486779 6.5036627E-05 3.3937642E-04 1.8680643E-03 4.6151422E-02 4.9999900E-02 0.000000 - Av 2018 3 22 4 0 0.9671115 3.9789386E-04 4.7353146E-04 1.9083248E-03 7.5495765E-02 7.9999842E-02 0.000000 - Av 2018 3 22 5 0 0.7575948 1.4286301E-04 5.7460403E-04 1.9408164E-03 2.8220445E-02 1.9999960E-02 0.000000 + Av 2018 3 21 19 0 0.1900308 0.000000 3.3773173E-05 1.7621327E-03 0.000000 5.9999879E-02 0.000000 + Av 2018 3 21 20 0 0.2033522 8.3495379E-06 4.9164268E-05 1.7750282E-03 1.8508779E-03 4.9999900E-02 0.000000 + Av 2018 3 21 21 0 0.7373945 3.0549284E-04 1.7283918E-04 1.8096500E-03 7.3862500E-02 8.9999817E-02 0.000000 + Av 2018 3 21 22 0 0.7630845 1.3298409E-04 2.8548448E-04 1.8411726E-03 2.8669957E-02 1.9999960E-02 0.000000 + Av 2018 3 21 23 0 0.2740219 0.000000 2.8838057E-04 1.8513987E-03 6.0085682E-03 0.000000 0.000000 + Av 2018 3 21 24 0 0.2489811 0.000000 2.8412652E-04 1.8502360E-03 1.9181435E-03 0.000000 0.000000 + Av 2018 3 22 1 0 0.2654222 2.1310298E-05 2.8108028E-04 1.8188426E-03 7.1842065E-03 9.9999802E-03 0.000000 + Av 2018 3 22 2 0 0.4208854 6.4087126E-06 2.9166613E-04 1.8359566E-03 2.5114253E-02 2.9999940E-02 0.000000 + Av 2018 3 22 3 0 0.6486779 6.5036627E-05 3.3937642E-04 1.8680643E-03 4.6151422E-02 4.9999900E-02 0.000000 + Av 2018 3 22 4 0 0.9671115 3.9789386E-04 4.7353146E-04 1.9083248E-03 7.5495765E-02 7.9999842E-02 0.000000 + Av 2018 3 22 5 0 0.7575948 1.4286301E-04 5.7460403E-04 1.9408164E-03 2.8220445E-02 1.9999960E-02 0.000000 Av 2018 3 22 6 0 0.6741672 7.8338853E-05 6.3398160E-04 1.9496371E-03 5.4770347E-02 5.9999879E-02 1.0041802E-04 Av 2018 3 22 7 0 0.9413437 5.2598421E-04 7.4878905E-04 1.6356751E-03 5.9592996E-02 5.9999879E-02 1.7197012E-03 Av 2018 3 22 8 0 0.6107219 1.2378416E-04 8.0836046E-04 1.3111790E-03 2.4591628E-02 1.9999960E-02 3.3389844E-03 @@ -1962,17 +1962,17 @@ Av 2018 3 22 16 0 0.2011442 0.000000 7.4947689E-04 1.3484301E-03 1.0165641E-04 0.000000 3.3389844E-03 Av 2018 3 22 17 0 0.2392005 0.000000 7.3842093E-04 1.7035424E-03 6.9130547E-05 0.000000 1.7197012E-03 Av 2018 3 22 18 0 0.5194328 5.7827190E-05 7.7801151E-04 2.0786971E-03 3.3807501E-02 7.9999842E-02 1.0041802E-04 - Av 2018 3 22 19 0 0.5066289 2.6145028E-07 8.1678247E-04 2.1225077E-03 7.5240941E-03 0.000000 0.000000 - Av 2018 3 22 20 0 0.2889626 0.000000 8.0474775E-04 2.1219561E-03 2.2697411E-03 0.000000 0.000000 - Av 2018 3 22 21 0 0.4250700 1.3459165E-04 8.0014911E-04 2.1311073E-03 1.4780626E-02 1.9999960E-02 0.000000 - Av 2018 3 22 22 0 0.3913476 0.000000 7.9558243E-04 2.1413807E-03 4.1692960E-03 0.000000 0.000000 - Av 2018 3 22 23 0 0.3003615 0.000000 7.8384631E-04 2.1402298E-03 1.4548083E-03 0.000000 0.000000 - Av 2018 3 22 24 0 0.7757732 2.4626509E-04 8.8868075E-04 2.1609890E-03 6.4464942E-02 7.9999842E-02 0.000000 - Av 2018 3 23 1 0 1.374870 1.9288110E-03 1.1435992E-03 2.1631012E-03 8.7685719E-02 8.9999817E-02 0.000000 - Av 2018 3 23 2 0 1.370757 8.5106352E-04 1.4120090E-03 2.2087297E-03 8.1073634E-02 7.9999842E-02 0.000000 - Av 2018 3 23 3 0 0.7996510 5.4227035E-05 1.5272817E-03 2.2390196E-03 2.0379193E-02 9.9999802E-03 0.000000 - Av 2018 3 23 4 0 0.4644881 3.9934646E-05 1.5098391E-03 2.2512611E-03 1.2147402E-02 9.9999802E-03 0.000000 - Av 2018 3 23 5 0 1.373953 1.9635288E-03 1.7747309E-03 2.2794001E-03 0.1124021 0.1299997 0.000000 + Av 2018 3 22 19 0 0.5066289 2.6145028E-07 8.1678247E-04 2.1225077E-03 7.5240941E-03 0.000000 0.000000 + Av 2018 3 22 20 0 0.2889626 0.000000 8.0474775E-04 2.1219561E-03 2.2697411E-03 0.000000 0.000000 + Av 2018 3 22 21 0 0.4250700 1.3459165E-04 8.0014911E-04 2.1311073E-03 1.4780626E-02 1.9999960E-02 0.000000 + Av 2018 3 22 22 0 0.3913476 0.000000 7.9558243E-04 2.1413807E-03 4.1692960E-03 0.000000 0.000000 + Av 2018 3 22 23 0 0.3003615 0.000000 7.8384631E-04 2.1402298E-03 1.4548083E-03 0.000000 0.000000 + Av 2018 3 22 24 0 0.7757732 2.4626509E-04 8.8868075E-04 2.1609890E-03 6.4464942E-02 7.9999842E-02 0.000000 + Av 2018 3 23 1 0 1.374870 1.9288110E-03 1.1435992E-03 2.1631012E-03 8.7685719E-02 8.9999817E-02 0.000000 + Av 2018 3 23 2 0 1.370757 8.5106352E-04 1.4120090E-03 2.2087297E-03 8.1073634E-02 7.9999842E-02 0.000000 + Av 2018 3 23 3 0 0.7996510 5.4227035E-05 1.5272817E-03 2.2390196E-03 2.0379193E-02 9.9999802E-03 0.000000 + Av 2018 3 23 4 0 0.4644881 3.9934646E-05 1.5098391E-03 2.2512611E-03 1.2147402E-02 9.9999802E-03 0.000000 + Av 2018 3 23 5 0 1.373953 1.9635288E-03 1.7747309E-03 2.2794001E-03 0.1124021 0.1299997 0.000000 Av 2018 3 23 6 0 1.257787 2.7492686E-04 2.0470638E-03 2.2854335E-03 3.2792464E-02 1.9999960E-02 1.4130733E-04 Av 2018 3 23 7 0 0.4201995 0.000000 2.0317046E-03 1.9520118E-03 6.6097928E-03 0.000000 1.7190403E-03 Av 2018 3 23 8 0 0.4277742 0.000000 2.0017338E-03 1.6044731E-03 2.0603829E-03 0.000000 3.2967734E-03 @@ -1986,17 +1986,17 @@ Av 2018 3 23 16 0 0.3319864 0.000000 1.7773478E-03 1.6005427E-03 3.3683318E-05 9.9999802E-03 3.2967734E-03 Av 2018 3 23 17 0 0.4078353 1.2861587E-04 1.7581099E-03 1.9566149E-03 4.3070153E-03 1.9999960E-02 1.7190403E-03 Av 2018 3 23 18 0 0.6485110 3.1377691E-05 1.7744894E-03 2.3315086E-03 3.1004019E-02 3.9999921E-02 1.4130733E-04 - Av 2018 3 23 19 0 0.9090396 2.4913219E-04 1.8445327E-03 2.4026935E-03 4.7337703E-02 4.9999900E-02 0.000000 - Av 2018 3 23 20 0 0.9987929 4.5109083E-04 1.9411487E-03 2.4464217E-03 4.9823143E-02 4.9999900E-02 0.000000 - Av 2018 3 23 21 0 1.011619 3.3623111E-04 2.0391564E-03 2.4905868E-03 4.9974784E-02 4.9999900E-02 0.000000 - Av 2018 3 23 22 0 0.8247983 1.4711176E-04 2.0835833E-03 2.5252618E-03 2.4742851E-02 1.9999960E-02 0.000000 - Av 2018 3 23 23 0 0.5581679 1.3740136E-09 2.0637626E-03 2.5375844E-03 5.4092617E-03 0.000000 0.000000 - Av 2018 3 23 24 0 0.5925431 1.8517411E-04 2.0434035E-03 2.5483596E-03 1.6146338E-02 1.9999960E-02 0.000000 - Av 2018 3 24 1 0 0.7350504 1.2768320E-05 2.0440873E-03 2.5228909E-03 2.7560143E-02 2.9999940E-02 0.000000 - Av 2018 3 24 2 0 0.7240584 1.9276286E-04 2.0451304E-03 2.5503305E-03 2.1593248E-02 1.9999960E-02 0.000000 - Av 2018 3 24 3 0 0.5690789 0.000000 2.0254164E-03 2.5622980E-03 4.9065994E-03 0.000000 0.000000 - Av 2018 3 24 4 0 0.4679986 0.000000 1.9955384E-03 2.5617206E-03 1.6463953E-03 0.000000 0.000000 - Av 2018 3 24 5 0 0.4705041 0.000000 1.9661011E-03 2.5611292E-03 7.0735638E-04 0.000000 0.000000 + Av 2018 3 23 19 0 0.9090396 2.4913219E-04 1.8445327E-03 2.4026935E-03 4.7337703E-02 4.9999900E-02 0.000000 + Av 2018 3 23 20 0 0.9987929 4.5109083E-04 1.9411487E-03 2.4464217E-03 4.9823143E-02 4.9999900E-02 0.000000 + Av 2018 3 23 21 0 1.011619 3.3623111E-04 2.0391564E-03 2.4905868E-03 4.9974784E-02 4.9999900E-02 0.000000 + Av 2018 3 23 22 0 0.8247983 1.4711176E-04 2.0835833E-03 2.5252618E-03 2.4742851E-02 1.9999960E-02 0.000000 + Av 2018 3 23 23 0 0.5581679 1.3740136E-09 2.0637626E-03 2.5375844E-03 5.4092617E-03 0.000000 0.000000 + Av 2018 3 23 24 0 0.5925431 1.8517411E-04 2.0434035E-03 2.5483596E-03 1.6146338E-02 1.9999960E-02 0.000000 + Av 2018 3 24 1 0 0.7350504 1.2768320E-05 2.0440873E-03 2.5228909E-03 2.7560143E-02 2.9999940E-02 0.000000 + Av 2018 3 24 2 0 0.7240584 1.9276286E-04 2.0451304E-03 2.5503305E-03 2.1593248E-02 1.9999960E-02 0.000000 + Av 2018 3 24 3 0 0.5690789 0.000000 2.0254164E-03 2.5622980E-03 4.9065994E-03 0.000000 0.000000 + Av 2018 3 24 4 0 0.4679986 0.000000 1.9955384E-03 2.5617206E-03 1.6463953E-03 0.000000 0.000000 + Av 2018 3 24 5 0 0.4705041 0.000000 1.9661011E-03 2.5611292E-03 7.0735638E-04 0.000000 0.000000 Av 2018 3 24 6 0 0.4540900 0.000000 1.9370980E-03 2.5205612E-03 3.5866501E-04 0.000000 1.8164878E-04 Av 2018 3 24 7 0 0.4262314 0.000000 1.9085228E-03 2.1786727E-03 2.0431766E-04 0.000000 1.7328745E-03 Av 2018 3 24 8 0 0.3836082 0.000000 1.8803690E-03 1.8367709E-03 1.2674330E-04 0.000000 3.2841002E-03 @@ -2010,17 +2010,17 @@ Av 2018 3 24 16 0 0.3625055 0.000000 1.6984879E-03 1.8909979E-03 8.9831685E-04 0.000000 3.2841002E-03 Av 2018 3 24 17 0 0.3915738 0.000000 1.6734325E-03 2.2314705E-03 4.3565166E-04 0.000000 1.7328745E-03 Av 2018 3 24 18 0 0.4458291 3.3770229E-05 1.6505904E-03 2.5773786E-03 3.1891144E-03 1.9999960E-02 1.8164878E-04 - Av 2018 3 24 19 0 0.5072557 4.3418720E-05 1.6304468E-03 2.6286799E-03 8.0221221E-03 9.9999802E-03 0.000000 - Av 2018 3 24 20 0 0.5942489 1.7837163E-04 1.6184958E-03 2.6462940E-03 1.7261395E-02 1.9999960E-02 0.000000 - Av 2018 3 24 21 0 0.5353251 0.000000 1.6043137E-03 2.6582184E-03 4.4224779E-03 0.000000 0.000000 - Av 2018 3 24 22 0 0.4825050 4.4502234E-05 1.5830790E-03 2.6636641E-03 8.2478644E-03 9.9999802E-03 0.000000 - Av 2018 3 24 23 0 0.4865374 0.000000 1.5621454E-03 2.6696958E-03 2.6197752E-03 0.000000 0.000000 - Av 2018 3 24 24 0 0.4781292 4.4300032E-05 1.5415221E-03 2.6751142E-03 7.5178174E-03 9.9999802E-03 0.000000 - Av 2018 3 25 1 0 0.5272939 3.3545821E-05 1.5230245E-03 2.6314980E-03 9.6312054E-03 9.9999802E-03 0.000000 - Av 2018 3 25 2 0 0.4682723 0.000000 1.5023820E-03 2.6366259E-03 2.7706288E-03 0.000000 0.000000 - Av 2018 3 25 3 0 0.4733941 4.4013963E-05 1.4826256E-03 2.6420900E-03 7.5849248E-03 9.9999802E-03 0.000000 - Av 2018 3 25 4 0 0.4681488 0.000000 1.4631487E-03 2.6480269E-03 2.5390694E-03 0.000000 0.000000 - Av 2018 3 25 5 0 0.5295296 1.7527539E-04 1.4511489E-03 2.6588717E-03 1.4984915E-02 1.9999960E-02 0.000000 + Av 2018 3 24 19 0 0.5072557 4.3418720E-05 1.6304468E-03 2.6286799E-03 8.0221221E-03 9.9999802E-03 0.000000 + Av 2018 3 24 20 0 0.5942489 1.7837163E-04 1.6184958E-03 2.6462940E-03 1.7261395E-02 1.9999960E-02 0.000000 + Av 2018 3 24 21 0 0.5353251 0.000000 1.6043137E-03 2.6582184E-03 4.4224779E-03 0.000000 0.000000 + Av 2018 3 24 22 0 0.4825050 4.4502234E-05 1.5830790E-03 2.6636641E-03 8.2478644E-03 9.9999802E-03 0.000000 + Av 2018 3 24 23 0 0.4865374 0.000000 1.5621454E-03 2.6696958E-03 2.6197752E-03 0.000000 0.000000 + Av 2018 3 24 24 0 0.4781292 4.4300032E-05 1.5415221E-03 2.6751142E-03 7.5178174E-03 9.9999802E-03 0.000000 + Av 2018 3 25 1 0 0.5272939 3.3545821E-05 1.5230245E-03 2.6314980E-03 9.6312054E-03 9.9999802E-03 0.000000 + Av 2018 3 25 2 0 0.4682723 0.000000 1.5023820E-03 2.6366259E-03 2.7706288E-03 0.000000 0.000000 + Av 2018 3 25 3 0 0.4733941 4.4013963E-05 1.4826256E-03 2.6420900E-03 7.5849248E-03 9.9999802E-03 0.000000 + Av 2018 3 25 4 0 0.4681488 0.000000 1.4631487E-03 2.6480269E-03 2.5390694E-03 0.000000 0.000000 + Av 2018 3 25 5 0 0.5295296 1.7527539E-04 1.4511489E-03 2.6588717E-03 1.4984915E-02 1.9999960E-02 0.000000 Av 2018 3 25 6 0 0.6822573 1.3511948E-05 1.4608712E-03 2.6357318E-03 2.7411301E-02 2.9999940E-02 2.3274083E-04 Av 2018 3 25 7 0 0.5295197 6.4093058E-08 1.4608102E-03 2.2986180E-03 6.0332743E-03 0.000000 1.8420706E-03 Av 2018 3 25 8 0 0.4555577 1.4859276E-04 1.4473964E-03 1.9549238E-03 1.4752591E-02 1.9999960E-02 3.4514004E-03 @@ -2034,17 +2034,17 @@ Av 2018 3 25 16 0 0.3173742 0.000000 1.2924412E-03 1.9585253E-03 5.5193079E-05 0.000000 3.4514004E-03 Av 2018 3 25 17 0 0.3541159 0.000000 1.2733755E-03 2.3114854E-03 4.0195966E-05 0.000000 1.8420706E-03 Av 2018 3 25 18 0 0.3880330 0.000000 1.2545912E-03 2.6644359E-03 1.9186913E-04 0.000000 2.3274083E-04 - Av 2018 3 25 19 0 0.4010476 0.000000 1.2360840E-03 2.7145271E-03 0.000000 0.000000 0.000000 - Av 2018 3 25 20 0 0.3960800 0.000000 1.2178499E-03 2.7134062E-03 0.000000 0.000000 0.000000 - Av 2018 3 25 21 0 0.3951947 0.000000 1.1998847E-03 2.7122758E-03 0.000000 0.000000 0.000000 - Av 2018 3 25 22 0 0.3929251 0.000000 1.1821846E-03 2.7111366E-03 0.000000 0.000000 0.000000 - Av 2018 3 25 23 0 0.3911713 0.000000 1.1647454E-03 2.7099880E-03 0.000000 0.000000 0.000000 - Av 2018 3 25 24 0 0.3892722 0.000000 1.1475637E-03 2.7088311E-03 0.000000 0.000000 0.000000 - Av 2018 3 26 1 0 0.3836721 0.000000 1.1306354E-03 2.6519576E-03 0.000000 0.000000 0.000000 - Av 2018 3 26 2 0 0.3793978 0.000000 1.1139567E-03 2.6508712E-03 0.000000 0.000000 0.000000 - Av 2018 3 26 3 0 0.3784861 0.000000 1.0975241E-03 2.6497764E-03 0.000000 0.000000 0.000000 - Av 2018 3 26 4 0 0.3777564 0.000000 1.0813340E-03 2.6486733E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 3 26 5 0 0.3756758 0.000000 1.0653825E-03 2.6475617E-03 0.000000 0.000000 0.000000 + Av 2018 3 25 19 0 0.4010476 0.000000 1.2360840E-03 2.7145271E-03 0.000000 0.000000 0.000000 + Av 2018 3 25 20 0 0.3960800 0.000000 1.2178499E-03 2.7134062E-03 0.000000 0.000000 0.000000 + Av 2018 3 25 21 0 0.3951947 0.000000 1.1998847E-03 2.7122758E-03 0.000000 0.000000 0.000000 + Av 2018 3 25 22 0 0.3929251 0.000000 1.1821846E-03 2.7111366E-03 0.000000 0.000000 0.000000 + Av 2018 3 25 23 0 0.3911713 0.000000 1.1647454E-03 2.7099880E-03 0.000000 0.000000 0.000000 + Av 2018 3 25 24 0 0.3892722 0.000000 1.1475637E-03 2.7088311E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 1 0 0.3836721 0.000000 1.1306354E-03 2.6519576E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 2 0 0.3793978 0.000000 1.1139567E-03 2.6508712E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 3 0 0.3784861 0.000000 1.0975241E-03 2.6497764E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 4 0 0.3777564 0.000000 1.0813340E-03 2.6486733E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 3 26 5 0 0.3756758 0.000000 1.0653825E-03 2.6475617E-03 0.000000 0.000000 0.000000 Av 2018 3 26 6 0 0.3687901 0.000000 1.0496665E-03 2.5882761E-03 0.000000 0.000000 2.6439241E-04 Av 2018 3 26 7 0 0.3417648 0.000000 1.0341823E-03 2.2492039E-03 0.000000 0.000000 1.8005025E-03 Av 2018 3 26 8 0 0.3026265 0.000000 1.0189264E-03 1.9101239E-03 0.000000 0.000000 3.3366128E-03 @@ -2058,17 +2058,17 @@ Av 2018 3 26 16 0 0.2735689 0.000000 9.0663327E-04 1.9098999E-03 0.000000 0.000000 3.3366128E-03 Av 2018 3 26 17 0 0.3090119 0.000000 8.9325896E-04 2.2466304E-03 0.000000 0.000000 1.8005025E-03 Av 2018 3 26 18 0 0.3409699 0.000000 8.8008202E-04 2.5833545E-03 0.000000 0.000000 2.6439241E-04 - Av 2018 3 26 19 0 0.3550373 0.000000 8.6709944E-04 2.6402930E-03 0.000000 0.000000 0.000000 - Av 2018 3 26 20 0 0.3522119 0.000000 8.5430837E-04 2.6390587E-03 0.000000 0.000000 0.000000 - Av 2018 3 26 21 0 0.3513008 0.000000 8.4170594E-04 2.6378173E-03 0.000000 0.000000 0.000000 - Av 2018 3 26 22 0 0.3497486 0.000000 8.2928949E-04 2.6365693E-03 0.000000 0.000000 0.000000 - Av 2018 3 26 23 0 0.3484434 0.000000 8.1705611E-04 2.6353151E-03 0.000000 0.000000 0.000000 - Av 2018 3 26 24 0 0.3470762 0.000000 8.0500328E-04 2.6340538E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 1 0 0.3420970 0.000000 7.9312822E-04 2.5789626E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 2 0 0.3384027 0.000000 7.8142830E-04 2.5777742E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 3 0 0.3379472 0.000000 7.6990103E-04 2.5765798E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 4 0 0.3363879 0.000000 7.5854379E-04 2.5753789E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 5 0 0.3352346 0.000000 7.4735406E-04 2.5741719E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 19 0 0.3550373 0.000000 8.6709944E-04 2.6402930E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 20 0 0.3522119 0.000000 8.5430837E-04 2.6390587E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 21 0 0.3513008 0.000000 8.4170594E-04 2.6378173E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 22 0 0.3497486 0.000000 8.2928949E-04 2.6365693E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 23 0 0.3484434 0.000000 8.1705611E-04 2.6353151E-03 0.000000 0.000000 0.000000 + Av 2018 3 26 24 0 0.3470762 0.000000 8.0500328E-04 2.6340538E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 1 0 0.3420970 0.000000 7.9312822E-04 2.5789626E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 2 0 0.3384027 0.000000 7.8142830E-04 2.5777742E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 3 0 0.3379472 0.000000 7.6990103E-04 2.5765798E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 4 0 0.3363879 0.000000 7.5854379E-04 2.5753789E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 5 0 0.3352346 0.000000 7.4735406E-04 2.5741719E-03 0.000000 0.000000 0.000000 Av 2018 3 27 6 0 0.3283489 0.000000 7.3632941E-04 2.4910287E-03 0.000000 0.000000 3.7240874E-04 Av 2018 3 27 7 0 0.2953608 0.000000 7.2546740E-04 2.0793208E-03 0.000000 0.000000 2.2382655E-03 Av 2018 3 27 8 0 0.2490084 0.000000 7.1476563E-04 1.6676075E-03 0.000000 0.000000 4.1041221E-03 @@ -2082,17 +2082,17 @@ Av 2018 3 27 16 0 0.2185765 0.000000 6.3464337E-04 1.6576002E-03 0.000000 0.000000 4.1041221E-03 Av 2018 3 27 17 0 0.2620302 0.000000 6.2528136E-04 2.0668129E-03 0.000000 0.000000 2.2382655E-03 Av 2018 3 27 18 0 0.3016115 0.000000 6.1605748E-04 2.4760205E-03 0.000000 0.000000 3.7240874E-04 - Av 2018 3 27 19 0 0.3201244 0.000000 6.0696964E-04 2.5566644E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 20 0 0.3178954 0.000000 5.9801590E-04 2.5553729E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 21 0 0.3172869 0.000000 5.8919418E-04 2.5540765E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 22 0 0.3161321 0.000000 5.8050262E-04 2.5527750E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 23 0 0.3151840 0.000000 5.7193934E-04 2.5514683E-03 0.000000 0.000000 0.000000 - Av 2018 3 27 24 0 0.3141807 0.000000 5.6350231E-04 2.5501570E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 1 0 0.3096991 0.000000 5.5518979E-04 2.4971240E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 2 0 0.3064487 0.000000 5.4699986E-04 2.4958851E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 3 0 0.3063055 0.000000 5.3893076E-04 2.4946413E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 4 0 0.3050976 0.000000 5.3098064E-04 2.4933929E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 5 0 0.3042753 0.000000 5.2314787E-04 2.4921396E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 19 0 0.3201244 0.000000 6.0696964E-04 2.5566644E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 20 0 0.3178954 0.000000 5.9801590E-04 2.5553729E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 21 0 0.3172869 0.000000 5.8919418E-04 2.5540765E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 22 0 0.3161321 0.000000 5.8050262E-04 2.5527750E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 23 0 0.3151840 0.000000 5.7193934E-04 2.5514683E-03 0.000000 0.000000 0.000000 + Av 2018 3 27 24 0 0.3141807 0.000000 5.6350231E-04 2.5501570E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 1 0 0.3096991 0.000000 5.5518979E-04 2.4971240E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 2 0 0.3064487 0.000000 5.4699986E-04 2.4958851E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 3 0 0.3063055 0.000000 5.3893076E-04 2.4946413E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 4 0 0.3050976 0.000000 5.3098064E-04 2.4933929E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 5 0 0.3042753 0.000000 5.2314787E-04 2.4921396E-03 0.000000 0.000000 0.000000 Av 2018 3 28 6 0 0.2967582 0.000000 5.1543064E-04 2.3948604E-03 0.000000 0.000000 4.3646109E-04 Av 2018 3 28 7 0 0.2626268 0.000000 5.0782721E-04 1.9706613E-03 0.000000 0.000000 2.3589006E-03 Av 2018 3 28 8 0 0.2154300 0.000000 5.0033594E-04 1.5464580E-03 0.000000 0.000000 4.2813402E-03 @@ -2106,17 +2106,17 @@ Av 2018 3 28 16 0 0.1869200 0.000000 4.4425027E-04 1.5361676E-03 0.000000 0.000000 4.2813402E-03 Av 2018 3 28 17 0 0.2317201 0.000000 4.3769687E-04 1.9577993E-03 0.000000 0.000000 2.3589006E-03 Av 2018 3 28 18 0 0.2728772 0.000000 4.3124016E-04 2.3794267E-03 0.000000 0.000000 4.3646109E-04 - Av 2018 3 28 19 0 0.2930113 0.000000 4.2487867E-04 2.4741353E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 20 0 0.2915449 0.000000 4.1861105E-04 2.4728181E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 21 0 0.2910301 0.000000 4.1243588E-04 2.4714970E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 22 0 0.2901964 0.000000 4.0635181E-04 2.4701725E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 23 0 0.2894853 0.000000 4.0035750E-04 2.4688439E-03 0.000000 0.000000 0.000000 - Av 2018 3 28 24 0 0.2887433 0.000000 3.9445161E-04 2.4675119E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 1 0 0.2846502 0.000000 3.8863282E-04 2.4165295E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 2 0 0.2817388 0.000000 3.8289986E-04 2.4152682E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 3 0 0.2818062 0.000000 3.7725148E-04 2.4140035E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 4 0 0.2808488 0.000000 3.7168644E-04 2.4127353E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 5 0 0.2802585 0.000000 3.6620346E-04 2.4114635E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 19 0 0.2930113 0.000000 4.2487867E-04 2.4741353E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 20 0 0.2915449 0.000000 4.1861105E-04 2.4728181E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 21 0 0.2910301 0.000000 4.1243588E-04 2.4714970E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 22 0 0.2901964 0.000000 4.0635181E-04 2.4701725E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 23 0 0.2894853 0.000000 4.0035750E-04 2.4688439E-03 0.000000 0.000000 0.000000 + Av 2018 3 28 24 0 0.2887433 0.000000 3.9445161E-04 2.4675119E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 1 0 0.2846502 0.000000 3.8863282E-04 2.4165295E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 2 0 0.2817388 0.000000 3.8289986E-04 2.4152682E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 3 0 0.2818062 0.000000 3.7725148E-04 2.4140035E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 4 0 0.2808488 0.000000 3.7168644E-04 2.4127353E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 5 0 0.2802585 0.000000 3.6620346E-04 2.4114635E-03 0.000000 0.000000 0.000000 Av 2018 3 29 6 0 0.2716686 0.000000 3.6080138E-04 2.2950503E-03 0.000000 0.000000 5.2335393E-04 Av 2018 3 29 7 0 0.2349004 0.000000 3.5547899E-04 1.8412657E-03 0.000000 0.000000 2.5801975E-03 Av 2018 3 29 8 0 0.1849093 0.000000 3.5023512E-04 1.3874776E-03 0.000000 0.000000 4.6370411E-03 @@ -2130,17 +2130,17 @@ Av 2018 3 29 16 0 0.1567519 0.000000 3.1097521E-04 1.3770259E-03 0.000000 0.000000 4.6370411E-03 Av 2018 3 29 17 0 0.2046183 0.000000 3.0638784E-04 1.8281459E-03 0.000000 0.000000 2.5801975E-03 Av 2018 3 29 18 0 0.2489625 0.000000 3.0186813E-04 2.2792479E-03 0.000000 0.000000 5.2335393E-04 - Av 2018 3 29 19 0 0.2715486 0.000000 2.9741510E-04 2.3929728E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 20 0 0.2707787 0.000000 2.9302776E-04 2.3915567E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 21 0 0.2702621 0.000000 2.8870514E-04 2.3901386E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 22 0 0.2696658 0.000000 2.8444629E-04 2.3887185E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 23 0 0.2691056 0.000000 2.8025027E-04 2.3872962E-03 0.000000 0.000000 0.000000 - Av 2018 3 29 24 0 0.2685410 0.000000 2.7611613E-04 2.3858720E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 1 0 0.2647515 0.000000 2.7204299E-04 2.3368406E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 2 0 0.2620964 0.000000 2.6802992E-04 2.3354879E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 3 0 0.2622944 0.000000 2.6407608E-04 2.3341333E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 4 0 0.2615080 0.000000 2.6018053E-04 2.3327763E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 5 0 0.2610714 0.000000 2.5634246E-04 2.3314175E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 19 0 0.2715486 0.000000 2.9741510E-04 2.3929728E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 20 0 0.2707787 0.000000 2.9302776E-04 2.3915567E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 21 0 0.2702621 0.000000 2.8870514E-04 2.3901386E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 22 0 0.2696658 0.000000 2.8444629E-04 2.3887185E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 23 0 0.2691056 0.000000 2.8025027E-04 2.3872962E-03 0.000000 0.000000 0.000000 + Av 2018 3 29 24 0 0.2685410 0.000000 2.7611613E-04 2.3858720E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 1 0 0.2647515 0.000000 2.7204299E-04 2.3368406E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 2 0 0.2620964 0.000000 2.6802992E-04 2.3354879E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 3 0 0.2622944 0.000000 2.6407608E-04 2.3341333E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 4 0 0.2615080 0.000000 2.6018053E-04 2.3327763E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 5 0 0.2610714 0.000000 2.5634246E-04 2.3314175E-03 0.000000 0.000000 0.000000 Av 2018 3 30 6 0 0.2515566 0.000000 2.5256100E-04 2.1990854E-03 0.000000 0.000000 5.9532496E-04 Av 2018 3 30 7 0 0.2134082 0.000000 2.4883533E-04 1.7329827E-03 0.000000 0.000000 2.7077738E-03 Av 2018 3 30 8 0 0.1624515 0.000000 2.4516461E-04 1.2668722E-03 0.000000 0.000000 4.8202225E-03 @@ -2154,17 +2154,17 @@ Av 2018 3 30 16 0 0.1349134 0.000000 2.1768264E-04 1.2550933E-03 0.000000 0.000000 4.8202225E-03 Av 2018 3 30 17 0 0.1838995 0.000000 2.1447148E-04 1.7182622E-03 0.000000 0.000000 2.7077738E-03 Av 2018 3 30 18 0 0.2296540 0.000000 2.1130769E-04 2.1814199E-03 0.000000 0.000000 5.9532496E-04 - Av 2018 3 30 19 0 0.2538127 0.000000 2.0819057E-04 2.3108053E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 20 0 0.2537333 0.000000 2.0511943E-04 2.3092180E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 21 0 0.2531309 0.000000 2.0209359E-04 2.3076308E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 22 0 0.2527165 0.000000 1.9911240E-04 2.3060434E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 23 0 0.2522428 0.000000 1.9617518E-04 2.3044560E-03 0.000000 0.000000 0.000000 - Av 2018 3 30 24 0 0.2517956 0.000000 1.9328129E-04 2.3028683E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 1 0 0.2482513 0.000000 1.9043009E-04 2.2557476E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 2 0 0.2457946 0.000000 1.8762094E-04 2.2542335E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 3 0 0.2460641 0.000000 1.8485326E-04 2.2527189E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 4 0 0.2453913 0.000000 1.8212637E-04 2.2512041E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 5 0 0.2450516 0.000000 1.7943971E-04 2.2496893E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 19 0 0.2538127 0.000000 2.0819057E-04 2.3108053E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 20 0 0.2537333 0.000000 2.0511943E-04 2.3092180E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 21 0 0.2531309 0.000000 2.0209359E-04 2.3076308E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 22 0 0.2527165 0.000000 1.9911240E-04 2.3060434E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 23 0 0.2522428 0.000000 1.9617518E-04 2.3044560E-03 0.000000 0.000000 0.000000 + Av 2018 3 30 24 0 0.2517956 0.000000 1.9328129E-04 2.3028683E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 1 0 0.2482513 0.000000 1.9043009E-04 2.2557476E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 2 0 0.2457946 0.000000 1.8762094E-04 2.2542335E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 3 0 0.2460641 0.000000 1.8485326E-04 2.2527189E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 4 0 0.2453913 0.000000 1.8212637E-04 2.2512041E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 5 0 0.2450516 0.000000 1.7943971E-04 2.2496893E-03 0.000000 0.000000 0.000000 Av 2018 3 31 6 0 0.2353668 0.000000 1.7679270E-04 2.1132196E-03 0.000000 0.000000 6.1343046E-04 Av 2018 3 31 7 0 0.1990762 0.000000 1.7418472E-04 1.6751657E-03 0.000000 0.000000 2.5976945E-03 Av 2018 3 31 8 0 0.1514720 0.000000 1.7161523E-04 1.2371072E-03 0.000000 0.000000 4.5819590E-03 @@ -2178,17 +2178,17 @@ Av 2018 3 31 16 0 0.1262587 0.000000 1.5237785E-04 1.2244682E-03 0.000000 0.000000 4.5819590E-03 Av 2018 3 31 17 0 0.1720624 0.000000 1.5013004E-04 1.6593686E-03 0.000000 0.000000 2.5976945E-03 Av 2018 3 31 18 0 0.2151856 0.000000 1.4791539E-04 2.0942625E-03 0.000000 0.000000 6.1343046E-04 - Av 2018 3 31 19 0 0.2387156 0.000000 1.4573341E-04 2.2275706E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 20 0 0.2392433 0.000000 1.4358362E-04 2.2259238E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 21 0 0.2385462 0.000000 1.4146553E-04 2.2242782E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 22 0 0.2382793 0.000000 1.3937870E-04 2.2226332E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 23 0 0.2378671 0.000000 1.3732264E-04 2.2209887E-03 0.000000 0.000000 0.000000 - Av 2018 3 31 24 0 0.2375097 0.000000 1.3529691E-04 2.2193450E-03 0.000000 0.000000 0.000000 - Av 2018 4 1 1 0 0.2341847 0.000000 1.3330107E-04 2.1742445E-03 0.000000 0.000000 0.000000 - Av 2018 4 1 2 0 0.2319005 0.000000 1.3133467E-04 2.1726724E-03 0.000000 0.000000 0.000000 - Av 2018 4 1 3 0 0.2322159 0.000000 1.2939727E-04 2.1711013E-03 0.000000 0.000000 0.000000 - Av 2018 4 1 4 0 0.2316315 0.000000 1.2748846E-04 2.1695306E-03 0.000000 0.000000 0.000000 - Av 2018 4 1 5 0 0.2313638 0.000000 1.2560780E-04 2.1679606E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 19 0 0.2387156 0.000000 1.4573341E-04 2.2275706E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 20 0 0.2392433 0.000000 1.4358362E-04 2.2259238E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 21 0 0.2385462 0.000000 1.4146553E-04 2.2242782E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 22 0 0.2382793 0.000000 1.3937870E-04 2.2226332E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 23 0 0.2378671 0.000000 1.3732264E-04 2.2209887E-03 0.000000 0.000000 0.000000 + Av 2018 3 31 24 0 0.2375097 0.000000 1.3529691E-04 2.2193450E-03 0.000000 0.000000 0.000000 + Av 2018 4 1 1 0 0.2341847 0.000000 1.3330107E-04 2.1742445E-03 0.000000 0.000000 0.000000 + Av 2018 4 1 2 0 0.2319005 0.000000 1.3133467E-04 2.1726724E-03 0.000000 0.000000 0.000000 + Av 2018 4 1 3 0 0.2322159 0.000000 1.2939727E-04 2.1711013E-03 0.000000 0.000000 0.000000 + Av 2018 4 1 4 0 0.2316315 0.000000 1.2748846E-04 2.1695306E-03 0.000000 0.000000 0.000000 + Av 2018 4 1 5 0 0.2313638 0.000000 1.2560780E-04 2.1679606E-03 0.000000 0.000000 0.000000 Av 2018 4 1 6 0 0.2235560 0.000000 1.2375489E-04 2.0577314E-03 0.000000 0.000000 4.9390923E-04 Av 2018 4 1 7 0 0.1953511 0.000000 1.2192931E-04 1.7195401E-03 0.000000 0.000000 2.0240091E-03 Av 2018 4 1 8 0 0.1586868 0.000000 1.2013066E-04 1.3813477E-03 0.000000 0.000000 3.5541088E-03 @@ -2202,17 +2202,17 @@ Av 2018 4 1 16 0 0.1973560 1.0561597E-04 1.1245102E-04 1.3790918E-03 5.6031300E-03 0.1599997 3.5541088E-03 Av 2018 4 1 17 0 0.2625343 1.3854186E-05 1.1730941E-04 1.7298287E-03 6.7095952E-03 9.9999802E-03 2.0240091E-03 Av 2018 4 1 18 0 0.2843819 1.8814699E-05 1.1736576E-04 2.0742901E-03 7.5836508E-03 9.9999802E-03 4.9390923E-04 - Av 2018 4 1 19 0 0.2761980 0.000000 1.1666063E-04 2.1866215E-03 2.3324592E-03 0.000000 0.000000 - Av 2018 4 1 20 0 0.2388881 0.000000 1.1493971E-04 2.1849545E-03 9.2979294E-04 0.000000 0.000000 - Av 2018 4 1 21 0 0.2385984 0.000000 1.1324416E-04 2.1832883E-03 4.4796374E-04 0.000000 0.000000 - Av 2018 4 1 22 0 0.2335984 0.000000 1.1157364E-04 2.1816231E-03 2.4604934E-04 0.000000 0.000000 - Av 2018 4 1 23 0 0.2328512 0.000000 1.0992774E-04 2.1799589E-03 1.4856113E-04 0.000000 0.000000 - Av 2018 4 1 24 0 0.2316453 0.000000 1.0830614E-04 2.1782957E-03 9.6283606E-05 0.000000 0.000000 - Av 2018 4 2 1 0 0.2281754 0.000000 1.0670845E-04 2.1342023E-03 6.5905799E-05 0.000000 0.000000 - Av 2018 4 2 2 0 0.2257282 0.000000 1.0513434E-04 2.1326097E-03 4.7103505E-05 0.000000 0.000000 - Av 2018 4 2 3 0 0.2259395 0.000000 1.0358344E-04 2.1310181E-03 3.4860270E-05 0.000000 0.000000 - Av 2018 4 2 4 0 0.2263174 0.000000 1.0205542E-04 2.1294274E-03 1.7615763E-04 0.000000 0.000000 - Av 2018 4 2 5 0 0.2255270 0.000000 1.0054994E-04 2.1278376E-03 0.000000 0.000000 0.000000 + Av 2018 4 1 19 0 0.2761980 0.000000 1.1666063E-04 2.1866215E-03 2.3324592E-03 0.000000 0.000000 + Av 2018 4 1 20 0 0.2388881 0.000000 1.1493971E-04 2.1849545E-03 9.2979294E-04 0.000000 0.000000 + Av 2018 4 1 21 0 0.2385984 0.000000 1.1324416E-04 2.1832883E-03 4.4796374E-04 0.000000 0.000000 + Av 2018 4 1 22 0 0.2335984 0.000000 1.1157364E-04 2.1816231E-03 2.4604934E-04 0.000000 0.000000 + Av 2018 4 1 23 0 0.2328512 0.000000 1.0992774E-04 2.1799589E-03 1.4856113E-04 0.000000 0.000000 + Av 2018 4 1 24 0 0.2316453 0.000000 1.0830614E-04 2.1782957E-03 9.6283606E-05 0.000000 0.000000 + Av 2018 4 2 1 0 0.2281754 0.000000 1.0670845E-04 2.1342023E-03 6.5905799E-05 0.000000 0.000000 + Av 2018 4 2 2 0 0.2257282 0.000000 1.0513434E-04 2.1326097E-03 4.7103505E-05 0.000000 0.000000 + Av 2018 4 2 3 0 0.2259395 0.000000 1.0358344E-04 2.1310181E-03 3.4860270E-05 0.000000 0.000000 + Av 2018 4 2 4 0 0.2263174 0.000000 1.0205542E-04 2.1294274E-03 1.7615763E-04 0.000000 0.000000 + Av 2018 4 2 5 0 0.2255270 0.000000 1.0054994E-04 2.1278376E-03 0.000000 0.000000 0.000000 Av 2018 4 2 6 0 0.2159791 0.000000 9.9066674E-05 2.0062784E-03 0.000000 0.000000 5.4531975E-04 Av 2018 4 2 7 0 0.1872396 0.000000 9.7605283E-05 1.6619710E-03 0.000000 0.000000 2.1031357E-03 Av 2018 4 2 8 0 0.1499820 0.000000 9.6165451E-05 1.3176645E-03 0.000000 0.000000 3.6609517E-03 @@ -2226,17 +2226,17 @@ Av 2018 4 2 16 0 0.1305253 0.000000 8.5385684E-05 1.3050023E-03 0.000000 0.000000 3.6609517E-03 Av 2018 4 2 17 0 0.1662088 0.000000 8.4126114E-05 1.6461432E-03 0.000000 0.000000 2.1031357E-03 Av 2018 4 2 18 0 0.2002009 0.000000 8.2885126E-05 1.9872852E-03 0.000000 0.000000 5.4531975E-04 - Av 2018 4 2 19 0 0.2196118 0.000000 8.1662445E-05 2.1056789E-03 0.000000 0.000000 0.000000 - Av 2018 4 2 20 0 0.2206848 0.000000 8.0457794E-05 2.1041031E-03 0.000000 0.000000 0.000000 - Av 2018 4 2 21 0 0.2199351 0.000000 7.9270911E-05 2.1025280E-03 0.000000 0.000000 0.000000 - Av 2018 4 2 22 0 0.2198217 0.000000 7.8101541E-05 2.1009541E-03 0.000000 0.000000 0.000000 - Av 2018 4 2 23 0 0.2194896 0.000000 7.6949422E-05 2.0993811E-03 0.000000 0.000000 0.000000 - Av 2018 4 2 24 0 0.2192360 0.000000 7.5814292E-05 2.0978090E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 1 0 0.2162095 0.000000 7.4695912E-05 2.0557928E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 2 0 0.2141539 0.000000 7.3594034E-05 2.0542869E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 3 0 0.2145154 0.000000 7.2508403E-05 2.0527816E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 4 0 0.2140388 0.000000 7.1438786E-05 2.0512773E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 5 0 0.2138559 0.000000 7.0384951E-05 2.0497739E-03 0.000000 0.000000 0.000000 + Av 2018 4 2 19 0 0.2196118 0.000000 8.1662445E-05 2.1056789E-03 0.000000 0.000000 0.000000 + Av 2018 4 2 20 0 0.2206848 0.000000 8.0457794E-05 2.1041031E-03 0.000000 0.000000 0.000000 + Av 2018 4 2 21 0 0.2199351 0.000000 7.9270911E-05 2.1025280E-03 0.000000 0.000000 0.000000 + Av 2018 4 2 22 0 0.2198217 0.000000 7.8101541E-05 2.1009541E-03 0.000000 0.000000 0.000000 + Av 2018 4 2 23 0 0.2194896 0.000000 7.6949422E-05 2.0993811E-03 0.000000 0.000000 0.000000 + Av 2018 4 2 24 0 0.2192360 0.000000 7.5814292E-05 2.0978090E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 1 0 0.2162095 0.000000 7.4695912E-05 2.0557928E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 2 0 0.2141539 0.000000 7.3594034E-05 2.0542869E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 3 0 0.2145154 0.000000 7.2508403E-05 2.0527816E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 4 0 0.2140388 0.000000 7.1438786E-05 2.0512773E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 5 0 0.2138559 0.000000 7.0384951E-05 2.0497739E-03 0.000000 0.000000 0.000000 Av 2018 4 3 6 0 0.2039892 0.000000 6.9346657E-05 1.9081482E-03 0.000000 0.000000 6.3692295E-04 Av 2018 4 3 7 0 0.1720986 0.000000 6.8323687E-05 1.5352227E-03 0.000000 0.000000 2.3252124E-03 Av 2018 4 3 8 0 0.1321026 0.000000 6.7315807E-05 1.1622983E-03 0.000000 0.000000 4.0135016E-03 @@ -2250,17 +2250,17 @@ Av 2018 4 3 16 0 0.1117263 0.000000 5.9769973E-05 1.1503224E-03 0.000000 0.000000 4.0135016E-03 Av 2018 4 3 17 0 0.1502222 0.000000 5.8888272E-05 1.5202531E-03 0.000000 0.000000 2.3252124E-03 Av 2018 4 3 18 0 0.1871915 0.000000 5.8019574E-05 1.8901846E-03 0.000000 0.000000 6.3692295E-04 - Av 2018 4 3 19 0 0.2089553 0.000000 5.7163696E-05 2.0288164E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 20 0 0.2106466 0.000000 5.6320441E-05 2.0273260E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 21 0 0.2097423 0.000000 5.5489629E-05 2.0258364E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 22 0 0.2097423 0.000000 5.4671069E-05 2.0243477E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 23 0 0.2094297 0.000000 5.3864587E-05 2.0228596E-03 0.000000 0.000000 0.000000 - Av 2018 4 3 24 0 0.2092275 0.000000 5.3069998E-05 2.0213728E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 1 0 0.2063684 0.000000 5.2287131E-05 1.9813227E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 2 0 0.2044389 0.000000 5.1515814E-05 1.9798973E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 3 0 0.2048121 0.000000 5.0755873E-05 1.9784728E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 4 0 0.2043864 0.000000 5.0007144E-05 1.9770493E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 5 0 0.2052123 0.000000 4.9269460E-05 1.9756267E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 4 3 19 0 0.2089553 0.000000 5.7163696E-05 2.0288164E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 20 0 0.2106466 0.000000 5.6320441E-05 2.0273260E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 21 0 0.2097423 0.000000 5.5489629E-05 2.0258364E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 22 0 0.2097423 0.000000 5.4671069E-05 2.0243477E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 23 0 0.2094297 0.000000 5.3864587E-05 2.0228596E-03 0.000000 0.000000 0.000000 + Av 2018 4 3 24 0 0.2092275 0.000000 5.3069998E-05 2.0213728E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 1 0 0.2063684 0.000000 5.2287131E-05 1.9813227E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 2 0 0.2044389 0.000000 5.1515814E-05 1.9798973E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 3 0 0.2048121 0.000000 5.0755873E-05 1.9784728E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 4 0 0.2043864 0.000000 5.0007144E-05 1.9770493E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 5 0 0.2052123 0.000000 4.9269460E-05 1.9756267E-03 0.000000 9.9999802E-03 0.000000 Av 2018 4 4 6 0 0.1931598 0.000000 4.8542657E-05 1.8064480E-03 0.000000 0.000000 7.6253078E-04 Av 2018 4 4 7 0 0.1562622 0.000000 4.7826576E-05 1.3902050E-03 0.000000 0.000000 2.6480847E-03 Av 2018 4 4 8 0 0.1121530 0.000000 4.7121059E-05 9.7396295E-04 0.000000 0.000000 4.5336382E-03 @@ -2274,17 +2274,17 @@ Av 2018 4 4 16 0 9.0024784E-02 0.000000 4.1838975E-05 9.6262922E-04 0.000000 0.000000 4.5336382E-03 Av 2018 4 4 17 0 0.1327962 0.000000 4.1221785E-05 1.3760377E-03 0.000000 0.000000 2.6480847E-03 Av 2018 4 4 18 0 0.1742076 0.000000 4.0613701E-05 1.7894474E-03 0.000000 0.000000 7.6253078E-04 - Av 2018 4 4 19 0 0.1993082 0.000000 4.0014584E-05 1.9557925E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 20 0 0.2017701 0.000000 3.9424307E-05 1.9543818E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 21 0 0.2006429 0.000000 3.8842736E-05 1.9529721E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 22 0 0.2007649 0.000000 3.8269747E-05 1.9515631E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 23 0 0.2004537 0.000000 3.7705209E-05 1.9501548E-03 0.000000 0.000000 0.000000 - Av 2018 4 4 24 0 0.2002945 0.000000 3.7148995E-05 1.9487473E-03 0.000000 0.000000 0.000000 - Av 2018 4 5 1 0 0.1975844 0.000000 3.6600988E-05 1.9105579E-03 0.000000 0.000000 0.000000 - Av 2018 4 5 2 0 0.1957664 0.000000 3.6061068E-05 1.9092084E-03 0.000000 0.000000 0.000000 - Av 2018 4 5 3 0 0.1961424 0.000000 3.5529109E-05 1.9078596E-03 0.000000 0.000000 0.000000 - Av 2018 4 5 4 0 0.1957566 0.000000 3.5005000E-05 1.9065116E-03 0.000000 0.000000 0.000000 - Av 2018 4 5 5 0 0.1956369 0.000000 3.4488625E-05 1.9051643E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 19 0 0.1993082 0.000000 4.0014584E-05 1.9557925E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 20 0 0.2017701 0.000000 3.9424307E-05 1.9543818E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 21 0 0.2006429 0.000000 3.8842736E-05 1.9529721E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 22 0 0.2007649 0.000000 3.8269747E-05 1.9515631E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 23 0 0.2004537 0.000000 3.7705209E-05 1.9501548E-03 0.000000 0.000000 0.000000 + Av 2018 4 4 24 0 0.2002945 0.000000 3.7148995E-05 1.9487473E-03 0.000000 0.000000 0.000000 + Av 2018 4 5 1 0 0.1975844 0.000000 3.6600988E-05 1.9105579E-03 0.000000 0.000000 0.000000 + Av 2018 4 5 2 0 0.1957664 0.000000 3.6061068E-05 1.9092084E-03 0.000000 0.000000 0.000000 + Av 2018 4 5 3 0 0.1961424 0.000000 3.5529109E-05 1.9078596E-03 0.000000 0.000000 0.000000 + Av 2018 4 5 4 0 0.1957566 0.000000 3.5005000E-05 1.9065116E-03 0.000000 0.000000 0.000000 + Av 2018 4 5 5 0 0.1956369 0.000000 3.4488625E-05 1.9051643E-03 0.000000 0.000000 0.000000 Av 2018 4 5 6 0 0.1863874 0.000000 3.3979861E-05 1.7159900E-03 0.000000 3.9999921E-02 8.5376261E-04 Av 2018 4 5 7 0 0.1476637 0.000000 3.3478605E-05 1.2793455E-03 0.000000 9.9999802E-03 2.8323927E-03 Av 2018 4 5 8 0 9.8385304E-02 0.000000 3.2984743E-05 8.4270176E-04 0.000000 9.9999802E-03 4.8110229E-03 @@ -2298,17 +2298,17 @@ Av 2018 4 5 16 0 0.5252742 4.8381444E-05 2.5271700E-04 9.9102245E-04 4.9315616E-02 5.9999879E-02 4.8110229E-03 Av 2018 4 5 17 0 0.4263689 1.8052087E-07 2.9501884E-04 1.4473748E-03 9.1025559E-03 0.000000 2.8323927E-03 Av 2018 4 5 18 0 0.1967736 0.000000 2.9067675E-04 1.8817368E-03 2.6145198E-03 0.000000 8.5376261E-04 - Av 2018 4 5 19 0 0.2637693 0.000000 2.8638879E-04 2.0681128E-03 1.0161259E-03 0.000000 0.000000 - Av 2018 4 5 20 0 0.2380231 0.000000 2.8216411E-04 2.0666614E-03 4.8125032E-04 0.000000 0.000000 - Av 2018 4 5 21 0 0.2410786 0.000000 2.7800174E-04 2.0652104E-03 2.6115371E-04 0.000000 0.000000 - Av 2018 4 5 22 0 0.2370496 0.000000 2.7390078E-04 2.0637601E-03 1.5628464E-04 0.000000 0.000000 - Av 2018 4 5 23 0 0.2366095 0.000000 2.6986032E-04 2.0623102E-03 1.0060715E-04 0.000000 0.000000 - Av 2018 4 5 24 0 0.2354241 0.000000 2.6587947E-04 2.0608611E-03 6.8502901E-05 0.000000 0.000000 - Av 2018 4 6 1 0 0.2320671 0.000000 2.6195732E-04 2.0199241E-03 4.8753740E-05 0.000000 0.000000 - Av 2018 4 6 2 0 0.2296085 0.000000 2.5809306E-04 2.0185371E-03 3.5957884E-05 0.000000 0.000000 - Av 2018 4 6 3 0 0.2813548 4.3742228E-05 2.5669116E-04 2.0239046E-03 6.8107452E-03 1.9999960E-02 0.000000 - Av 2018 4 6 4 0 0.4410648 6.6056182E-06 2.6946337E-04 2.0439632E-03 2.5209192E-02 2.9999940E-02 0.000000 - Av 2018 4 6 5 0 0.4957351 1.1844630E-04 2.8610136E-04 2.0683543E-03 2.1379590E-02 1.9999960E-02 0.000000 + Av 2018 4 5 19 0 0.2637693 0.000000 2.8638879E-04 2.0681128E-03 1.0161259E-03 0.000000 0.000000 + Av 2018 4 5 20 0 0.2380231 0.000000 2.8216411E-04 2.0666614E-03 4.8125032E-04 0.000000 0.000000 + Av 2018 4 5 21 0 0.2410786 0.000000 2.7800174E-04 2.0652104E-03 2.6115371E-04 0.000000 0.000000 + Av 2018 4 5 22 0 0.2370496 0.000000 2.7390078E-04 2.0637601E-03 1.5628464E-04 0.000000 0.000000 + Av 2018 4 5 23 0 0.2366095 0.000000 2.6986032E-04 2.0623102E-03 1.0060715E-04 0.000000 0.000000 + Av 2018 4 5 24 0 0.2354241 0.000000 2.6587947E-04 2.0608611E-03 6.8502901E-05 0.000000 0.000000 + Av 2018 4 6 1 0 0.2320671 0.000000 2.6195732E-04 2.0199241E-03 4.8753740E-05 0.000000 0.000000 + Av 2018 4 6 2 0 0.2296085 0.000000 2.5809306E-04 2.0185371E-03 3.5957884E-05 0.000000 0.000000 + Av 2018 4 6 3 0 0.2813548 4.3742228E-05 2.5669116E-04 2.0239046E-03 6.8107452E-03 1.9999960E-02 0.000000 + Av 2018 4 6 4 0 0.4410648 6.6056182E-06 2.6946337E-04 2.0439632E-03 2.5209192E-02 2.9999940E-02 0.000000 + Av 2018 4 6 5 0 0.4957351 1.1844630E-04 2.8610136E-04 2.0683543E-03 2.1379590E-02 1.9999960E-02 0.000000 Av 2018 4 6 6 0 0.3228117 0.000000 2.8836643E-04 1.8569223E-03 4.8716874E-03 0.000000 1.0059020E-03 Av 2018 4 6 7 0 0.2340748 2.4617753E-05 2.8546766E-04 1.3780540E-03 7.6890751E-03 9.9999802E-03 3.1997545E-03 Av 2018 4 6 8 0 0.2174518 1.6333708E-05 2.8350423E-04 9.0389734E-04 7.2034560E-03 9.9999802E-03 5.3936071E-03 @@ -2322,17 +2322,17 @@ Av 2018 4 6 16 0 0.1036089 0.000000 2.5253094E-04 8.9685072E-04 4.6251127E-05 0.000000 5.3936071E-03 Av 2018 4 6 17 0 0.1525792 0.000000 2.4880571E-04 1.3780377E-03 3.4291388E-05 0.000000 3.1997545E-03 Av 2018 4 6 18 0 0.2015413 0.000000 2.4513542E-04 1.8592257E-03 1.7442748E-04 0.000000 1.0059020E-03 - Av 2018 4 6 19 0 0.2316662 0.000000 2.4151929E-04 2.0790650E-03 0.000000 0.000000 0.000000 - Av 2018 4 6 20 0 0.2344472 0.000000 2.3795648E-04 2.0776063E-03 0.000000 0.000000 0.000000 - Av 2018 4 6 21 0 0.2328015 0.000000 2.3444626E-04 2.0761478E-03 0.000000 0.000000 0.000000 - Av 2018 4 6 22 0 0.2327021 0.000000 2.3098782E-04 2.0746903E-03 0.000000 0.000000 0.000000 - Av 2018 4 6 23 0 0.2320721 0.000000 2.2758039E-04 2.0732330E-03 0.000000 0.000000 0.000000 - Av 2018 4 6 24 0 0.7440261 4.0073387E-04 3.6689063E-04 2.0930755E-03 6.7633711E-02 0.1399997 0.000000 - Av 2018 4 7 1 0 1.452085 2.5250763E-03 6.6426565E-04 2.0950977E-03 9.7031228E-02 9.9999800E-02 0.000000 - Av 2018 4 7 2 0 0.8939666 3.9797906E-05 8.1669114E-04 2.1231060E-03 2.2263670E-02 9.9999802E-03 0.000000 - Av 2018 4 7 3 0 0.9825679 7.9544220E-04 1.0040036E-03 2.1501589E-03 9.7100884E-02 0.1099998 0.000000 - Av 2018 4 7 4 0 1.493872 2.0393913E-03 1.2977559E-03 2.1944237E-03 7.3947757E-02 6.9999859E-02 0.000000 - Av 2018 4 7 5 0 0.7035900 0.000000 1.3904180E-03 2.2170995E-03 1.1675520E-02 0.000000 0.000000 + Av 2018 4 6 19 0 0.2316662 0.000000 2.4151929E-04 2.0790650E-03 0.000000 0.000000 0.000000 + Av 2018 4 6 20 0 0.2344472 0.000000 2.3795648E-04 2.0776063E-03 0.000000 0.000000 0.000000 + Av 2018 4 6 21 0 0.2328015 0.000000 2.3444626E-04 2.0761478E-03 0.000000 0.000000 0.000000 + Av 2018 4 6 22 0 0.2327021 0.000000 2.3098782E-04 2.0746903E-03 0.000000 0.000000 0.000000 + Av 2018 4 6 23 0 0.2320721 0.000000 2.2758039E-04 2.0732330E-03 0.000000 0.000000 0.000000 + Av 2018 4 6 24 0 0.7440261 4.0073387E-04 3.6689063E-04 2.0930755E-03 6.7633711E-02 0.1399997 0.000000 + Av 2018 4 7 1 0 1.452085 2.5250763E-03 6.6426565E-04 2.0950977E-03 9.7031228E-02 9.9999800E-02 0.000000 + Av 2018 4 7 2 0 0.8939666 3.9797906E-05 8.1669114E-04 2.1231060E-03 2.2263670E-02 9.9999802E-03 0.000000 + Av 2018 4 7 3 0 0.9825679 7.9544220E-04 1.0040036E-03 2.1501589E-03 9.7100884E-02 0.1099998 0.000000 + Av 2018 4 7 4 0 1.493872 2.0393913E-03 1.2977559E-03 2.1944237E-03 7.3947757E-02 6.9999859E-02 0.000000 + Av 2018 4 7 5 0 0.7035900 0.000000 1.3904180E-03 2.2170995E-03 1.1675520E-02 0.000000 0.000000 Av 2018 4 7 6 0 0.3304576 0.000000 1.3699072E-03 2.0067587E-03 3.1407399E-03 0.000000 9.5176836E-04 Av 2018 4 7 7 0 0.3419936 0.000000 1.3496989E-03 1.5744767E-03 1.1709271E-03 0.000000 2.9123388E-03 Av 2018 4 7 8 0 0.2583984 0.000000 1.3297887E-03 1.1421903E-03 5.3932954E-04 0.000000 4.8729093E-03 @@ -2346,17 +2346,17 @@ Av 2018 4 7 16 0 1.340678 2.4728514E-03 1.7193212E-03 1.2778204E-03 8.2348235E-02 8.9999817E-02 4.8729093E-03 Av 2018 4 7 17 0 1.320318 6.3551374E-04 2.0060728E-03 1.7555011E-03 7.6001033E-02 7.9999842E-02 2.9123388E-03 Av 2018 4 7 18 0 1.970255 6.2394869E-03 2.4506727E-03 2.2337269E-03 0.1209835 0.1299997 9.5176836E-04 - Av 2018 4 7 19 0 3.482270 1.4775434E-02 3.2432557E-03 2.4906651E-03 0.1646775 0.1699997 0.000000 - Av 2018 4 7 20 0 2.572559 9.9669804E-04 3.9314283E-03 2.5393714E-03 9.7602762E-02 8.9999817E-02 0.000000 - Av 2018 4 7 21 0 2.742428 1.3599158E-02 4.6116444E-03 2.5891892E-03 0.1445245 0.1499997 0.000000 - Av 2018 4 7 22 0 3.957706 1.1404822E-02 5.5942456E-03 2.6397810E-03 0.1585114 0.1599997 0.000000 - Av 2018 4 7 23 0 2.798487 5.6081987E-03 6.3492861E-03 2.6913329E-03 9.7035229E-02 8.9999817E-02 0.000000 - Av 2018 4 7 24 0 1.998101 7.6992635E-04 6.7663770E-03 2.7436889E-03 8.1975721E-02 7.9999842E-02 0.000000 - Av 2018 4 8 1 0 1.644203 1.1614603E-03 6.9543226E-03 2.7351053E-03 4.5517005E-02 3.9999921E-02 0.000000 - Av 2018 4 8 2 0 1.509422 1.4811056E-04 7.0063351E-03 2.7820098E-03 4.9283028E-02 4.9999900E-02 0.000000 - Av 2018 4 8 3 0 1.432694 4.8121536E-04 7.0286407E-03 2.8257109E-03 3.3002842E-02 2.9999940E-02 0.000000 - Av 2018 4 8 4 0 1.207189 6.6967907E-05 6.9643604E-03 2.8530105E-03 1.4252554E-02 9.9999802E-03 0.000000 - Av 2018 4 8 5 0 1.334829 1.4748142E-04 6.9555016E-03 2.8852201E-03 4.3253537E-02 4.9999900E-02 0.000000 + Av 2018 4 7 19 0 3.482270 1.4775434E-02 3.2432557E-03 2.4906651E-03 0.1646775 0.1699997 0.000000 + Av 2018 4 7 20 0 2.572559 9.9669804E-04 3.9314283E-03 2.5393714E-03 9.7602762E-02 8.9999817E-02 0.000000 + Av 2018 4 7 21 0 2.742428 1.3599158E-02 4.6116444E-03 2.5891892E-03 0.1445245 0.1499997 0.000000 + Av 2018 4 7 22 0 3.957706 1.1404822E-02 5.5942456E-03 2.6397810E-03 0.1585114 0.1599997 0.000000 + Av 2018 4 7 23 0 2.798487 5.6081987E-03 6.3492861E-03 2.6913329E-03 9.7035229E-02 8.9999817E-02 0.000000 + Av 2018 4 7 24 0 1.998101 7.6992635E-04 6.7663770E-03 2.7436889E-03 8.1975721E-02 7.9999842E-02 0.000000 + Av 2018 4 8 1 0 1.644203 1.1614603E-03 6.9543226E-03 2.7351053E-03 4.5517005E-02 3.9999921E-02 0.000000 + Av 2018 4 8 2 0 1.509422 1.4811056E-04 7.0063351E-03 2.7820098E-03 4.9283028E-02 4.9999900E-02 0.000000 + Av 2018 4 8 3 0 1.432694 4.8121536E-04 7.0286407E-03 2.8257109E-03 3.3002842E-02 2.9999940E-02 0.000000 + Av 2018 4 8 4 0 1.207189 6.6967907E-05 6.9643604E-03 2.8530105E-03 1.4252554E-02 9.9999802E-03 0.000000 + Av 2018 4 8 5 0 1.334829 1.4748142E-04 6.9555016E-03 2.8852201E-03 4.3253537E-02 4.9999900E-02 0.000000 Av 2018 4 8 6 0 1.882483 2.2962654E-03 7.1764430E-03 2.7459823E-03 7.5252838E-02 7.9999842E-02 8.6830399E-04 Av 2018 4 8 7 0 2.587888 6.5234625E-03 7.6822271E-03 2.4274555E-03 0.1052872 0.1099998 2.5631406E-03 Av 2018 4 8 8 0 2.039917 6.8679161E-04 8.0041261E-03 2.1048547E-03 4.6130668E-02 3.9999921E-02 4.2579775E-03 @@ -2370,17 +2370,17 @@ Av 2018 4 8 16 0 0.9320986 0.000000 7.1623442E-03 2.1524564E-03 7.4399730E-05 0.000000 4.2579775E-03 Av 2018 4 8 17 0 0.9593856 0.000000 7.0566884E-03 2.5268577E-03 5.2468386E-05 0.000000 2.5631406E-03 Av 2018 4 8 18 0 0.9869666 0.000000 6.9525912E-03 2.9011930E-03 3.8411159E-05 0.000000 8.6830399E-04 - Av 2018 4 8 19 0 1.003291 0.000000 6.8500298E-03 3.0936264E-03 1.8671209E-04 0.000000 0.000000 - Av 2018 4 8 20 0 0.9968699 0.000000 6.7489813E-03 3.0949698E-03 0.000000 0.000000 0.000000 - Av 2018 4 8 21 0 0.9843823 0.000000 6.6494234E-03 3.0962513E-03 0.000000 0.000000 0.000000 - Av 2018 4 8 22 0 0.9754654 0.000000 6.5513337E-03 3.0974727E-03 0.000000 0.000000 0.000000 - Av 2018 4 8 23 0 0.9654970 0.000000 6.4546913E-03 3.0986350E-03 0.000000 0.000000 0.000000 - Av 2018 4 8 24 0 0.9560814 0.000000 6.3594743E-03 3.0997396E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 1 0 0.9422098 0.000000 6.2656617E-03 3.0353181E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 2 0 0.9300750 0.000000 6.1732335E-03 3.0363938E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 3 0 0.9219697 0.000000 6.0821688E-03 3.0374161E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 4 0 0.9126399 0.000000 5.9924470E-03 3.0383859E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 5 0 0.9039100 0.000000 5.9040491E-03 3.0393044E-03 0.000000 0.000000 0.000000 + Av 2018 4 8 19 0 1.003291 0.000000 6.8500298E-03 3.0936264E-03 1.8671209E-04 0.000000 0.000000 + Av 2018 4 8 20 0 0.9968699 0.000000 6.7489813E-03 3.0949698E-03 0.000000 0.000000 0.000000 + Av 2018 4 8 21 0 0.9843823 0.000000 6.6494234E-03 3.0962513E-03 0.000000 0.000000 0.000000 + Av 2018 4 8 22 0 0.9754654 0.000000 6.5513337E-03 3.0974727E-03 0.000000 0.000000 0.000000 + Av 2018 4 8 23 0 0.9654970 0.000000 6.4546913E-03 3.0986350E-03 0.000000 0.000000 0.000000 + Av 2018 4 8 24 0 0.9560814 0.000000 6.3594743E-03 3.0997396E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 1 0 0.9422098 0.000000 6.2656617E-03 3.0353181E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 2 0 0.9300750 0.000000 6.1732335E-03 3.0363938E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 3 0 0.9219697 0.000000 6.0821688E-03 3.0374161E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 4 0 0.9126399 0.000000 5.9924470E-03 3.0383859E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 5 0 0.9039100 0.000000 5.9040491E-03 3.0393044E-03 0.000000 0.000000 0.000000 Av 2018 4 9 6 0 0.8770494 0.000000 5.8169551E-03 2.7774477E-03 0.000000 0.000000 1.1942029E-03 Av 2018 4 9 7 0 0.8231169 0.000000 5.7311454E-03 2.2909353E-03 0.000000 0.000000 3.4093440E-03 Av 2018 4 9 8 0 0.7633489 0.000000 5.6466023E-03 1.8043746E-03 0.000000 0.000000 5.6244847E-03 @@ -2394,17 +2394,17 @@ Av 2018 4 9 16 0 0.6764261 0.000000 5.0136400E-03 1.8089085E-03 0.000000 0.000000 5.6244847E-03 Av 2018 4 9 17 0 0.7184291 0.000000 4.9396809E-03 2.2966154E-03 0.000000 0.000000 3.4093440E-03 Av 2018 4 9 18 0 0.7608768 0.000000 4.8668128E-03 2.7842824E-03 0.000000 0.000000 1.1942029E-03 - Av 2018 4 9 19 0 0.7879050 0.000000 4.7950200E-03 3.0473045E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 20 0 0.7869322 0.000000 4.7242860E-03 3.0475636E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 21 0 0.7777620 0.000000 4.6545952E-03 3.0477850E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 22 0 0.7715778 0.000000 4.5859325E-03 3.0479697E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 23 0 0.7644891 0.000000 4.5182831E-03 3.0481180E-03 0.000000 0.000000 0.000000 - Av 2018 4 9 24 0 0.7578467 0.000000 4.4516316E-03 3.0482309E-03 0.000000 0.000000 0.000000 - Av 2018 4 10 1 0 0.7468208 0.000000 4.3859631E-03 2.9841661E-03 0.000000 0.000000 0.000000 - Av 2018 4 10 2 0 0.7374532 0.000000 4.3212627E-03 2.9843014E-03 0.000000 0.000000 0.000000 - Av 2018 4 10 3 0 0.7338415 0.000000 4.2575174E-03 2.9844034E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 4 10 4 0 0.7265105 0.000000 4.1947118E-03 2.9844723E-03 0.000000 0.000000 0.000000 - Av 2018 4 10 5 0 0.7205768 0.000000 4.1328333E-03 2.9845093E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 4 9 19 0 0.7879050 0.000000 4.7950200E-03 3.0473045E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 20 0 0.7869322 0.000000 4.7242860E-03 3.0475636E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 21 0 0.7777620 0.000000 4.6545952E-03 3.0477850E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 22 0 0.7715778 0.000000 4.5859325E-03 3.0479697E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 23 0 0.7644891 0.000000 4.5182831E-03 3.0481180E-03 0.000000 0.000000 0.000000 + Av 2018 4 9 24 0 0.7578467 0.000000 4.4516316E-03 3.0482309E-03 0.000000 0.000000 0.000000 + Av 2018 4 10 1 0 0.7468208 0.000000 4.3859631E-03 2.9841661E-03 0.000000 0.000000 0.000000 + Av 2018 4 10 2 0 0.7374532 0.000000 4.3212627E-03 2.9843014E-03 0.000000 0.000000 0.000000 + Av 2018 4 10 3 0 0.7338415 0.000000 4.2575174E-03 2.9844034E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 4 10 4 0 0.7265105 0.000000 4.1947118E-03 2.9844723E-03 0.000000 0.000000 0.000000 + Av 2018 4 10 5 0 0.7205768 0.000000 4.1328333E-03 2.9845093E-03 0.000000 9.9999802E-03 0.000000 Av 2018 4 10 6 0 0.7011698 0.000000 4.0718676E-03 2.7141413E-03 0.000000 2.9999940E-02 1.2289708E-03 Av 2018 4 10 7 0 0.6517502 0.000000 4.0118014E-03 2.2362620E-03 0.000000 2.9999940E-02 3.4010347E-03 Av 2018 4 10 8 0 0.5935383 4.3595178E-06 3.9528650E-03 1.7603494E-03 0.000000 1.9999960E-02 5.5730990E-03 @@ -2418,17 +2418,17 @@ Av 2018 4 10 16 0 0.5465321 0.000000 3.6861375E-03 1.8139158E-03 2.0908380E-04 0.000000 5.5730990E-03 Av 2018 4 10 17 0 0.5869943 0.000000 3.6317613E-03 2.2914945E-03 1.2927341E-04 0.000000 3.4010347E-03 Av 2018 4 10 18 0 0.6303093 0.000000 3.5781872E-03 2.7690453E-03 8.5316460E-05 0.000000 1.2289708E-03 - Av 2018 4 10 19 0 0.6588898 0.000000 3.5254033E-03 3.0390888E-03 5.9235859E-05 0.000000 0.000000 - Av 2018 4 10 20 0 0.6600732 0.000000 3.4733980E-03 3.0387321E-03 4.2822609E-05 0.000000 0.000000 - Av 2018 4 10 21 0 0.6535484 0.000000 3.4221599E-03 3.0383491E-03 1.9929491E-04 0.000000 0.000000 - Av 2018 4 10 22 0 0.6485611 0.000000 3.3716778E-03 3.0379407E-03 0.000000 0.000000 0.000000 - Av 2018 4 10 23 0 0.6420745 0.000000 3.3219403E-03 3.0375072E-03 0.000000 0.000000 0.000000 - Av 2018 4 10 24 0 0.6375604 0.000000 3.2729364E-03 3.0370485E-03 0.000000 0.000000 0.000000 - Av 2018 4 11 1 0 0.6281177 0.000000 3.2246555E-03 2.9727134E-03 0.000000 0.000000 0.000000 - Av 2018 4 11 2 0 0.6204895 0.000000 3.1770868E-03 2.9723030E-03 0.000000 0.000000 0.000000 - Av 2018 4 11 3 0 0.6166681 0.000000 3.1302196E-03 2.9718690E-03 0.000000 0.000000 0.000000 - Av 2018 4 11 4 0 0.6116146 0.000000 3.0840442E-03 2.9714119E-03 0.000000 0.000000 0.000000 - Av 2018 4 11 5 0 0.6070796 0.000000 3.0385496E-03 2.9709323E-03 0.000000 0.000000 0.000000 + Av 2018 4 10 19 0 0.6588898 0.000000 3.5254033E-03 3.0390888E-03 5.9235859E-05 0.000000 0.000000 + Av 2018 4 10 20 0 0.6600732 0.000000 3.4733980E-03 3.0387321E-03 4.2822609E-05 0.000000 0.000000 + Av 2018 4 10 21 0 0.6535484 0.000000 3.4221599E-03 3.0383491E-03 1.9929491E-04 0.000000 0.000000 + Av 2018 4 10 22 0 0.6485611 0.000000 3.3716778E-03 3.0379407E-03 0.000000 0.000000 0.000000 + Av 2018 4 10 23 0 0.6420745 0.000000 3.3219403E-03 3.0375072E-03 0.000000 0.000000 0.000000 + Av 2018 4 10 24 0 0.6375604 0.000000 3.2729364E-03 3.0370485E-03 0.000000 0.000000 0.000000 + Av 2018 4 11 1 0 0.6281177 0.000000 3.2246555E-03 2.9727134E-03 0.000000 0.000000 0.000000 + Av 2018 4 11 2 0 0.6204895 0.000000 3.1770868E-03 2.9723030E-03 0.000000 0.000000 0.000000 + Av 2018 4 11 3 0 0.6166681 0.000000 3.1302196E-03 2.9718690E-03 0.000000 0.000000 0.000000 + Av 2018 4 11 4 0 0.6116146 0.000000 3.0840442E-03 2.9714119E-03 0.000000 0.000000 0.000000 + Av 2018 4 11 5 0 0.6070796 0.000000 3.0385496E-03 2.9709323E-03 0.000000 0.000000 0.000000 Av 2018 4 11 6 0 0.5849367 0.000000 2.9937262E-03 2.7154724E-03 0.000000 0.000000 1.1588988E-03 Av 2018 4 11 7 0 0.5394530 0.000000 2.9495638E-03 2.2845771E-03 0.000000 0.000000 3.1151315E-03 Av 2018 4 11 8 0 0.4901688 0.000000 2.9060531E-03 1.8536602E-03 0.000000 0.000000 5.0713639E-03 @@ -2442,17 +2442,17 @@ Av 2018 4 11 16 0 0.4421135 0.000000 2.5802960E-03 1.8485528E-03 0.000000 2.9999940E-02 5.0713639E-03 Av 2018 4 11 17 0 0.4827171 2.4290317E-05 2.5435961E-03 2.2829212E-03 0.000000 1.9999960E-02 3.1151315E-03 Av 2018 4 11 18 0 0.9775000 7.4746495E-04 2.7222957E-03 2.7427562E-03 5.5582453E-02 8.9999817E-02 1.1588988E-03 - Av 2018 4 11 19 0 1.155617 5.7316327E-04 2.9281401E-03 3.0425100E-03 3.3826008E-02 2.9999940E-02 0.000000 - Av 2018 4 11 20 0 0.7325097 0.000000 2.9169868E-03 3.0616447E-03 6.7566116E-03 0.000000 0.000000 - Av 2018 4 11 21 0 0.6148997 0.000000 2.8739565E-03 3.0610180E-03 2.0945414E-03 0.000000 0.000000 - Av 2018 4 11 22 0 0.6594780 5.4465730E-05 2.8346227E-03 3.0672604E-03 7.2718826E-03 9.9999802E-03 0.000000 - Av 2018 4 11 23 0 0.6422991 0.000000 2.7958541E-03 3.0740043E-03 2.4986272E-03 0.000000 0.000000 - Av 2018 4 11 24 0 0.6954790 4.9526298E-06 2.7668006E-03 3.0860091E-03 1.4969730E-02 1.9999960E-02 0.000000 - Av 2018 4 12 1 0 0.8506620 3.6149333E-05 2.7641151E-03 3.0502181E-03 2.7404986E-02 2.9999940E-02 0.000000 - Av 2018 4 12 2 0 0.7299386 9.8550963E-08 2.7492167E-03 3.0680622E-03 6.0328282E-03 0.000000 0.000000 - Av 2018 4 12 3 0 0.6407268 5.4124197E-05 2.7117124E-03 3.0746597E-03 8.8088615E-03 9.9999802E-03 0.000000 - Av 2018 4 12 4 0 0.6448221 0.000000 2.6747407E-03 3.0812968E-03 2.6834998E-03 0.000000 0.000000 - Av 2018 4 12 5 0 0.5805148 0.000000 2.6352841E-03 3.0805417E-03 1.0368592E-03 0.000000 0.000000 + Av 2018 4 11 19 0 1.155617 5.7316327E-04 2.9281401E-03 3.0425100E-03 3.3826008E-02 2.9999940E-02 0.000000 + Av 2018 4 11 20 0 0.7325097 0.000000 2.9169868E-03 3.0616447E-03 6.7566116E-03 0.000000 0.000000 + Av 2018 4 11 21 0 0.6148997 0.000000 2.8739565E-03 3.0610180E-03 2.0945414E-03 0.000000 0.000000 + Av 2018 4 11 22 0 0.6594780 5.4465730E-05 2.8346227E-03 3.0672604E-03 7.2718826E-03 9.9999802E-03 0.000000 + Av 2018 4 11 23 0 0.6422991 0.000000 2.7958541E-03 3.0740043E-03 2.4986272E-03 0.000000 0.000000 + Av 2018 4 11 24 0 0.6954790 4.9526298E-06 2.7668006E-03 3.0860091E-03 1.4969730E-02 1.9999960E-02 0.000000 + Av 2018 4 12 1 0 0.8506620 3.6149333E-05 2.7641151E-03 3.0502181E-03 2.7404986E-02 2.9999940E-02 0.000000 + Av 2018 4 12 2 0 0.7299386 9.8550963E-08 2.7492167E-03 3.0680622E-03 6.0328282E-03 0.000000 0.000000 + Av 2018 4 12 3 0 0.6407268 5.4124197E-05 2.7117124E-03 3.0746597E-03 8.8088615E-03 9.9999802E-03 0.000000 + Av 2018 4 12 4 0 0.6448221 0.000000 2.6747407E-03 3.0812968E-03 2.6834998E-03 0.000000 0.000000 + Av 2018 4 12 5 0 0.5805148 0.000000 2.6352841E-03 3.0805417E-03 1.0368592E-03 0.000000 0.000000 Av 2018 4 12 6 0 0.6653036 4.8796428E-06 2.6085044E-03 2.8677795E-03 1.4158284E-02 1.9999960E-02 1.0218808E-03 Av 2018 4 12 7 0 0.7195723 3.1523788E-05 2.5934542E-03 2.5299347E-03 1.8502083E-02 1.9999960E-02 2.6729484E-03 Av 2018 4 12 8 0 0.6873312 1.7556989E-04 2.5764226E-03 2.1910914E-03 1.7618056E-02 1.9999960E-02 4.3240162E-03 @@ -2466,17 +2466,17 @@ Av 2018 4 12 16 0 0.4691746 0.000000 2.3769210E-03 2.2588640E-03 6.2993198E-04 0.000000 4.3240162E-03 Av 2018 4 12 17 0 0.4945084 0.000000 2.3418579E-03 2.6210456E-03 3.2616395E-04 0.000000 2.6729484E-03 Av 2018 4 12 18 0 0.5276607 0.000000 2.3073119E-03 2.9832087E-03 1.8862879E-04 0.000000 1.0218808E-03 - Av 2018 4 12 19 0 0.5502657 0.000000 2.2732755E-03 3.2069329E-03 1.1833873E-04 0.000000 0.000000 - Av 2018 4 12 20 0 0.5523523 0.000000 2.2397412E-03 3.2058256E-03 7.8981073E-05 0.000000 0.000000 - Av 2018 4 12 21 0 0.5465236 0.000000 2.2067016E-03 3.2047010E-03 5.5325021E-05 0.000000 0.000000 - Av 2018 4 12 22 0 0.5436769 0.000000 2.1741493E-03 3.2035594E-03 4.0282102E-05 0.000000 0.000000 - Av 2018 4 12 23 0 0.5410490 0.000000 2.1420771E-03 3.2024009E-03 1.9211565E-04 0.000000 0.000000 - Av 2018 4 12 24 0 0.5372043 0.000000 2.1104780E-03 3.2012255E-03 0.000000 0.000000 0.000000 - Av 2018 4 13 1 0 0.5281906 0.000000 2.0793453E-03 3.1320064E-03 0.000000 0.000000 0.000000 - Av 2018 4 13 2 0 0.5223479 0.000000 2.0486715E-03 3.1309116E-03 0.000000 0.000000 0.000000 - Av 2018 4 13 3 0 0.5200922 0.000000 2.0184503E-03 3.1298012E-03 0.000000 0.000000 0.000000 - Av 2018 4 13 4 0 0.5181941 0.000000 1.9886750E-03 3.1286748E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 4 13 5 0 0.5869015 4.4926542E-06 1.9708751E-03 3.1405606E-03 9.6556414E-03 2.9999940E-02 0.000000 + Av 2018 4 12 19 0 0.5502657 0.000000 2.2732755E-03 3.2069329E-03 1.1833873E-04 0.000000 0.000000 + Av 2018 4 12 20 0 0.5523523 0.000000 2.2397412E-03 3.2058256E-03 7.8981073E-05 0.000000 0.000000 + Av 2018 4 12 21 0 0.5465236 0.000000 2.2067016E-03 3.2047010E-03 5.5325021E-05 0.000000 0.000000 + Av 2018 4 12 22 0 0.5436769 0.000000 2.1741493E-03 3.2035594E-03 4.0282102E-05 0.000000 0.000000 + Av 2018 4 12 23 0 0.5410490 0.000000 2.1420771E-03 3.2024009E-03 1.9211565E-04 0.000000 0.000000 + Av 2018 4 12 24 0 0.5372043 0.000000 2.1104780E-03 3.2012255E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 1 0 0.5281906 0.000000 2.0793453E-03 3.1320064E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 2 0 0.5223479 0.000000 2.0486715E-03 3.1309116E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 3 0 0.5200922 0.000000 2.0184503E-03 3.1298012E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 4 0 0.5181941 0.000000 1.9886750E-03 3.1286748E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 4 13 5 0 0.5869015 4.4926542E-06 1.9708751E-03 3.1405606E-03 9.6556414E-03 2.9999940E-02 0.000000 Av 2018 4 13 6 0 0.7929161 7.0959642E-05 2.0000995E-03 2.9160071E-03 3.4374025E-02 3.9999921E-02 1.1771264E-03 Av 2018 4 13 7 0 0.7132686 5.0101964E-05 2.0200105E-03 2.5437474E-03 1.3966158E-02 9.9999802E-03 3.0012098E-03 Av 2018 4 13 8 0 0.4668210 0.000000 1.9930264E-03 2.1487223E-03 3.5801935E-03 0.000000 4.8252931E-03 @@ -2490,17 +2490,17 @@ Av 2018 4 13 16 0 0.3851809 0.000000 1.7696157E-03 2.1383776E-03 3.9048573E-05 0.000000 4.8252931E-03 Av 2018 4 13 17 0 0.4230295 0.000000 1.7435111E-03 2.5383183E-03 1.8856462E-04 0.000000 3.0012098E-03 Av 2018 4 13 18 0 0.4608896 0.000000 1.7177915E-03 2.9382457E-03 0.000000 0.000000 1.1771264E-03 - Av 2018 4 13 19 0 0.4880579 0.000000 1.6924514E-03 3.1958288E-03 0.000000 0.000000 0.000000 - Av 2018 4 13 20 0 0.4927679 0.000000 1.6674851E-03 3.1944308E-03 0.000000 0.000000 0.000000 - Av 2018 4 13 21 0 0.4875717 0.000000 1.6428870E-03 3.1930197E-03 0.000000 0.000000 0.000000 - Av 2018 4 13 22 0 0.4858679 0.000000 1.6186519E-03 3.1915959E-03 0.000000 0.000000 0.000000 - Av 2018 4 13 23 0 0.4829970 0.000000 1.5947742E-03 3.1901593E-03 0.000000 0.000000 0.000000 - Av 2018 4 13 24 0 0.4805784 0.000000 1.5712488E-03 3.1887102E-03 0.000000 0.000000 0.000000 - Av 2018 4 14 1 0 0.4734475 0.000000 1.5480705E-03 3.1195330E-03 0.000000 0.000000 0.000000 - Av 2018 4 14 2 0 0.4680080 0.000000 1.5252340E-03 3.1181746E-03 0.000000 0.000000 0.000000 - Av 2018 4 14 3 0 0.4666337 0.000000 1.5027345E-03 3.1168042E-03 0.000000 0.000000 0.000000 - Av 2018 4 14 4 0 0.4638897 0.000000 1.4805667E-03 3.1154221E-03 0.000000 0.000000 0.000000 - Av 2018 4 14 5 0 0.4616650 0.000000 1.4587260E-03 3.1140284E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 19 0 0.4880579 0.000000 1.6924514E-03 3.1958288E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 20 0 0.4927679 0.000000 1.6674851E-03 3.1944308E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 21 0 0.4875717 0.000000 1.6428870E-03 3.1930197E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 22 0 0.4858679 0.000000 1.6186519E-03 3.1915959E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 23 0 0.4829970 0.000000 1.5947742E-03 3.1901593E-03 0.000000 0.000000 0.000000 + Av 2018 4 13 24 0 0.4805784 0.000000 1.5712488E-03 3.1887102E-03 0.000000 0.000000 0.000000 + Av 2018 4 14 1 0 0.4734475 0.000000 1.5480705E-03 3.1195330E-03 0.000000 0.000000 0.000000 + Av 2018 4 14 2 0 0.4680080 0.000000 1.5252340E-03 3.1181746E-03 0.000000 0.000000 0.000000 + Av 2018 4 14 3 0 0.4666337 0.000000 1.5027345E-03 3.1168042E-03 0.000000 0.000000 0.000000 + Av 2018 4 14 4 0 0.4638897 0.000000 1.4805667E-03 3.1154221E-03 0.000000 0.000000 0.000000 + Av 2018 4 14 5 0 0.4616650 0.000000 1.4587260E-03 3.1140284E-03 0.000000 0.000000 0.000000 Av 2018 4 14 6 0 0.4378548 0.000000 1.4372076E-03 2.8000064E-03 0.000000 0.000000 1.4209845E-03 Av 2018 4 14 7 0 0.3896836 0.000000 1.4160065E-03 2.3331225E-03 0.000000 0.000000 3.5367443E-03 Av 2018 4 14 8 0 0.3396030 0.000000 1.3951182E-03 1.8662276E-03 0.000000 0.000000 5.6525040E-03 @@ -2514,17 +2514,17 @@ Av 2018 4 14 16 0 0.3030500 0.000000 1.2387309E-03 1.8544201E-03 0.000000 9.9999802E-03 5.6525040E-03 Av 2018 4 14 17 0 0.3513998 0.000000 1.2204576E-03 2.3183653E-03 0.000000 4.9999900E-02 3.5367443E-03 Av 2018 4 14 18 0 0.3944822 0.000000 1.2024539E-03 2.7823006E-03 0.000000 0.000000 1.4209845E-03 - Av 2018 4 14 19 0 0.4254336 0.000000 1.1847158E-03 3.0933758E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 4 14 20 0 0.4492216 1.4839016E-04 1.1756229E-03 3.1034350E-03 0.000000 2.9999940E-02 0.000000 - Av 2018 4 14 21 0 0.5951859 4.0596937E-05 1.2095019E-03 3.1357391E-03 2.0970618E-02 3.9999921E-02 0.000000 - Av 2018 4 14 22 0 0.9532751 4.1035688E-04 1.3342204E-03 3.1828003E-03 5.4179549E-02 5.9999879E-02 0.000000 - Av 2018 4 14 23 0 0.8235737 6.3399988E-05 1.4175248E-03 3.2169092E-03 1.7598687E-02 9.9999802E-03 0.000000 - Av 2018 4 14 24 0 1.080642 7.2524016E-04 1.6095286E-03 3.2499961E-03 7.8468390E-02 8.9999817E-02 0.000000 - Av 2018 4 15 1 0 1.111606 2.5539706E-04 1.8085556E-03 3.2207540E-03 2.8964067E-02 1.9999960E-02 0.000000 - Av 2018 4 15 2 0 0.5578740 0.000000 1.7962655E-03 3.2347345E-03 6.0523446E-03 0.000000 0.000000 - Av 2018 4 15 3 0 0.5420135 0.000000 1.7697677E-03 3.2334127E-03 1.9286339E-03 0.000000 0.000000 - Av 2018 4 15 4 0 0.5080956 0.000000 1.7436609E-03 3.2320768E-03 8.0127351E-04 0.000000 0.000000 - Av 2018 4 15 5 0 0.5057789 0.000000 1.7179392E-03 3.2307263E-03 3.9704761E-04 0.000000 0.000000 + Av 2018 4 14 19 0 0.4254336 0.000000 1.1847158E-03 3.0933758E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 4 14 20 0 0.4492216 1.4839016E-04 1.1756229E-03 3.1034350E-03 0.000000 2.9999940E-02 0.000000 + Av 2018 4 14 21 0 0.5951859 4.0596937E-05 1.2095019E-03 3.1357391E-03 2.0970618E-02 3.9999921E-02 0.000000 + Av 2018 4 14 22 0 0.9532751 4.1035688E-04 1.3342204E-03 3.1828003E-03 5.4179549E-02 5.9999879E-02 0.000000 + Av 2018 4 14 23 0 0.8235737 6.3399988E-05 1.4175248E-03 3.2169092E-03 1.7598687E-02 9.9999802E-03 0.000000 + Av 2018 4 14 24 0 1.080642 7.2524016E-04 1.6095286E-03 3.2499961E-03 7.8468390E-02 8.9999817E-02 0.000000 + Av 2018 4 15 1 0 1.111606 2.5539706E-04 1.8085556E-03 3.2207540E-03 2.8964067E-02 1.9999960E-02 0.000000 + Av 2018 4 15 2 0 0.5578740 0.000000 1.7962655E-03 3.2347345E-03 6.0523446E-03 0.000000 0.000000 + Av 2018 4 15 3 0 0.5420135 0.000000 1.7697677E-03 3.2334127E-03 1.9286339E-03 0.000000 0.000000 + Av 2018 4 15 4 0 0.5080956 0.000000 1.7436609E-03 3.2320768E-03 8.0127351E-04 0.000000 0.000000 + Av 2018 4 15 5 0 0.5057789 0.000000 1.7179392E-03 3.2307263E-03 3.9704761E-04 0.000000 0.000000 Av 2018 4 15 6 0 0.4792757 0.000000 1.6925968E-03 2.9420105E-03 2.2248636E-04 0.000000 1.3061421E-03 Av 2018 4 15 7 0 0.4351496 0.000000 1.6676283E-03 2.5288344E-03 1.3633331E-04 0.000000 3.1779485E-03 Av 2018 4 15 8 0 0.4119428 2.1511507E-05 1.6442467E-03 2.1204459E-03 2.9031695E-03 9.9999802E-03 5.0497553E-03 @@ -2538,17 +2538,17 @@ Av 2018 4 15 16 0 0.5110639 1.3672361E-05 1.8710373E-03 2.3857099E-03 6.8245200E-03 9.9999802E-03 5.0497553E-03 Av 2018 4 15 17 0 0.4890085 0.000000 1.8442096E-03 2.8000963E-03 2.1102685E-03 0.000000 3.1779485E-03 Av 2018 4 15 18 0 0.8025901 1.2907492E-04 1.9020216E-03 3.2361518E-03 4.0697463E-02 5.9999879E-02 1.3061421E-03 - Av 2018 4 15 19 0 1.845182 4.6032998E-03 2.2977516E-03 3.5769574E-03 0.1091890 0.1199998 0.000000 - Av 2018 4 15 20 0 1.368677 5.2399314E-06 2.6016675E-03 3.6072372E-03 1.5749102E-02 0.000000 0.000000 - Av 2018 4 15 21 0 0.4992279 0.000000 2.5635855E-03 3.6085467E-03 3.9070691E-03 0.000000 0.000000 - Av 2018 4 15 22 0 0.6984293 0.000000 2.5257687E-03 3.6072182E-03 1.3844543E-03 0.000000 0.000000 - Av 2018 4 15 23 0 0.6503260 5.5688357E-05 2.4916786E-03 3.6134114E-03 6.8980837E-03 9.9999802E-03 0.000000 - Av 2018 4 15 24 0 0.9607426 1.1368058E-04 2.5371513E-03 3.6457430E-03 4.1615285E-02 4.9999900E-02 0.000000 - Av 2018 4 16 1 0 1.665762 2.7555465E-03 2.8595454E-03 3.6185635E-03 9.2617497E-02 9.9999800E-02 0.000000 - Av 2018 4 16 2 0 2.586326 8.2948608E-03 3.4802326E-03 3.6742864E-03 0.1174530 0.1199998 0.000000 - Av 2018 4 16 3 0 2.387620 2.0420754E-03 4.1149631E-03 3.7307043E-03 0.1018835 9.9999800E-02 0.000000 - Av 2018 4 16 4 0 1.451042 7.2226621E-04 4.3987953E-03 3.7811033E-03 3.9216775E-02 2.9999940E-02 0.000000 - Av 2018 4 16 5 0 0.9819160 0.000000 4.3749050E-03 3.8033079E-03 7.5001377E-03 0.000000 0.000000 + Av 2018 4 15 19 0 1.845182 4.6032998E-03 2.2977516E-03 3.5769574E-03 0.1091890 0.1199998 0.000000 + Av 2018 4 15 20 0 1.368677 5.2399314E-06 2.6016675E-03 3.6072372E-03 1.5749102E-02 0.000000 0.000000 + Av 2018 4 15 21 0 0.4992279 0.000000 2.5635855E-03 3.6085467E-03 3.9070691E-03 0.000000 0.000000 + Av 2018 4 15 22 0 0.6984293 0.000000 2.5257687E-03 3.6072182E-03 1.3844543E-03 0.000000 0.000000 + Av 2018 4 15 23 0 0.6503260 5.5688357E-05 2.4916786E-03 3.6134114E-03 6.8980837E-03 9.9999802E-03 0.000000 + Av 2018 4 15 24 0 0.9607426 1.1368058E-04 2.5371513E-03 3.6457430E-03 4.1615285E-02 4.9999900E-02 0.000000 + Av 2018 4 16 1 0 1.665762 2.7555465E-03 2.8595454E-03 3.6185635E-03 9.2617497E-02 9.9999800E-02 0.000000 + Av 2018 4 16 2 0 2.586326 8.2948608E-03 3.4802326E-03 3.6742864E-03 0.1174530 0.1199998 0.000000 + Av 2018 4 16 3 0 2.387620 2.0420754E-03 4.1149631E-03 3.7307043E-03 0.1018835 9.9999800E-02 0.000000 + Av 2018 4 16 4 0 1.451042 7.2226621E-04 4.3987953E-03 3.7811033E-03 3.9216775E-02 2.9999940E-02 0.000000 + Av 2018 4 16 5 0 0.9819160 0.000000 4.3749050E-03 3.8033079E-03 7.5001377E-03 0.000000 0.000000 Av 2018 4 16 6 0 0.8678002 6.2050865E-05 4.3139099E-03 3.5407655E-03 9.2728827E-03 9.9999802E-03 1.2268154E-03 Av 2018 4 16 7 0 0.8236181 0.000000 4.2537972E-03 3.1756614E-03 2.7337326E-03 0.000000 2.9216520E-03 Av 2018 4 16 8 0 0.7178380 0.000000 4.1910466E-03 2.8022421E-03 1.0518691E-03 0.000000 4.6164887E-03 @@ -2562,17 +2562,17 @@ Av 2018 4 16 16 0 0.6519032 0.000000 3.7212474E-03 2.7963899E-03 1.8075565E-04 0.000000 4.6164887E-03 Av 2018 4 16 17 0 0.6804668 0.000000 3.6663532E-03 3.1683568E-03 0.000000 0.000000 2.9216520E-03 Av 2018 4 16 18 0 0.7130191 0.000000 3.6122685E-03 3.5402894E-03 0.000000 0.000000 1.2268154E-03 - Av 2018 4 16 19 0 0.7384597 0.000000 3.5589819E-03 3.8092230E-03 0.000000 0.000000 0.000000 - Av 2018 4 16 20 0 0.7408507 0.000000 3.5064814E-03 3.8082239E-03 0.000000 0.000000 0.000000 - Av 2018 4 16 21 0 0.7327996 0.000000 3.4547553E-03 3.8071920E-03 0.000000 0.000000 0.000000 - Av 2018 4 16 22 0 0.7284796 0.000000 3.4037922E-03 3.8061279E-03 0.000000 0.000000 0.000000 - Av 2018 4 16 23 0 0.7229607 0.000000 3.3535808E-03 3.8050322E-03 0.000000 0.000000 0.000000 - Av 2018 4 16 24 0 0.7179558 0.000000 3.3041104E-03 3.8039051E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 1 0 0.7071884 0.000000 3.2553694E-03 3.7191566E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 2 0 0.6985290 0.000000 3.2073476E-03 3.7181161E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 3 0 0.6949191 0.000000 3.1600343E-03 3.7170465E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 4 0 0.6896451 0.000000 3.1134191E-03 3.7159480E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 5 0 0.6850399 0.000000 3.0674911E-03 3.7148211E-03 0.000000 0.000000 0.000000 + Av 2018 4 16 19 0 0.7384597 0.000000 3.5589819E-03 3.8092230E-03 0.000000 0.000000 0.000000 + Av 2018 4 16 20 0 0.7408507 0.000000 3.5064814E-03 3.8082239E-03 0.000000 0.000000 0.000000 + Av 2018 4 16 21 0 0.7327996 0.000000 3.4547553E-03 3.8071920E-03 0.000000 0.000000 0.000000 + Av 2018 4 16 22 0 0.7284796 0.000000 3.4037922E-03 3.8061279E-03 0.000000 0.000000 0.000000 + Av 2018 4 16 23 0 0.7229607 0.000000 3.3535808E-03 3.8050322E-03 0.000000 0.000000 0.000000 + Av 2018 4 16 24 0 0.7179558 0.000000 3.3041104E-03 3.8039051E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 1 0 0.7071884 0.000000 3.2553694E-03 3.7191566E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 2 0 0.6985290 0.000000 3.2073476E-03 3.7181161E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 3 0 0.6949191 0.000000 3.1600343E-03 3.7170465E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 4 0 0.6896451 0.000000 3.1134191E-03 3.7159480E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 5 0 0.6850399 0.000000 3.0674911E-03 3.7148211E-03 0.000000 0.000000 0.000000 Av 2018 4 17 6 0 0.6601341 0.000000 3.0222407E-03 3.4204763E-03 0.000000 0.000000 1.3326820E-03 Av 2018 4 17 7 0 0.6155093 0.000000 2.9776581E-03 3.0282622E-03 0.000000 0.000000 3.1101031E-03 Av 2018 4 17 8 0 0.5711406 0.000000 2.9337329E-03 2.6360205E-03 0.000000 0.000000 4.8875241E-03 @@ -2586,17 +2586,17 @@ Av 2018 4 17 16 0 0.5191350 0.000000 2.6048734E-03 2.6254356E-03 0.000000 0.000000 4.8875241E-03 Av 2018 4 17 17 0 0.5528580 0.000000 2.5664475E-03 3.0150372E-03 0.000000 0.000000 3.1101031E-03 Av 2018 4 17 18 0 0.5894190 0.000000 2.5285883E-03 3.4046154E-03 0.000000 0.000000 1.3326820E-03 - Av 2018 4 17 19 0 0.6183777 0.000000 2.4912877E-03 3.6963290E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 20 0 0.6232120 0.000000 2.4545374E-03 3.6948305E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 21 0 0.6163689 0.000000 2.4183290E-03 3.6933103E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 22 0 0.6136563 0.000000 2.3826549E-03 3.6917687E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 23 0 0.6095766 0.000000 2.3475073E-03 3.6902064E-03 0.000000 0.000000 0.000000 - Av 2018 4 17 24 0 0.6060405 0.000000 2.3128777E-03 3.6886232E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 1 0 0.5969040 0.000000 2.2787589E-03 3.6063881E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 2 0 0.5897909 0.000000 2.2451438E-03 3.6049099E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 3 0 0.5875278 0.000000 2.2120243E-03 3.6034123E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 4 0 0.5836425 0.000000 2.1793935E-03 3.6018952E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 5 0 0.5803845 0.000000 2.1472441E-03 3.6003592E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 19 0 0.6183777 0.000000 2.4912877E-03 3.6963290E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 20 0 0.6232120 0.000000 2.4545374E-03 3.6948305E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 21 0 0.6163689 0.000000 2.4183290E-03 3.6933103E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 22 0 0.6136563 0.000000 2.3826549E-03 3.6917687E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 23 0 0.6095766 0.000000 2.3475073E-03 3.6902064E-03 0.000000 0.000000 0.000000 + Av 2018 4 17 24 0 0.6060405 0.000000 2.3128777E-03 3.6886232E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 1 0 0.5969040 0.000000 2.2787589E-03 3.6063881E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 2 0 0.5897909 0.000000 2.2451438E-03 3.6049099E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 3 0 0.5875278 0.000000 2.2120243E-03 3.6034123E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 4 0 0.5836425 0.000000 2.1793935E-03 3.6018952E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 5 0 0.5803845 0.000000 2.1472441E-03 3.6003592E-03 0.000000 0.000000 0.000000 Av 2018 4 18 6 0 0.5541455 0.000000 2.1155688E-03 3.2664936E-03 0.000000 0.000000 1.5105046E-03 Av 2018 4 18 7 0 0.5065528 0.000000 2.0843609E-03 2.8364523E-03 0.000000 0.000000 3.4580869E-03 Av 2018 4 18 8 0 0.4598923 0.000000 2.0536133E-03 2.4063932E-03 0.000000 0.000000 5.4056691E-03 @@ -2610,17 +2610,17 @@ Av 2018 4 18 16 0 0.4160500 0.000000 1.8234113E-03 2.3930429E-03 0.000000 0.000000 5.4056691E-03 Av 2018 4 18 17 0 0.4542471 0.000000 1.7965132E-03 2.8197686E-03 0.000000 0.000000 3.4580869E-03 Av 2018 4 18 18 0 0.4958336 0.000000 1.7700117E-03 3.2464787E-03 0.000000 0.000000 1.5105046E-03 - Av 2018 4 18 19 0 0.5297381 0.000000 1.7439013E-03 3.5770163E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 20 0 0.5369877 0.000000 1.7181761E-03 3.5752279E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 21 0 0.5307529 0.000000 1.6928302E-03 3.5734246E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 22 0 0.5292560 0.000000 1.6678583E-03 3.5716067E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 23 0 0.5261601 0.000000 1.6432548E-03 3.5697741E-03 0.000000 0.000000 0.000000 - Av 2018 4 18 24 0 0.5236679 0.000000 1.6190142E-03 3.5679275E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 1 0 0.5157444 0.000000 1.5951312E-03 3.4885271E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 2 0 0.5097655 0.000000 1.5716006E-03 3.4867940E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 3 0 0.5084341 0.000000 1.5484169E-03 3.4850473E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 4 0 0.5055315 0.000000 1.5255754E-03 3.4832871E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 5 0 0.5032197 0.000000 1.5030708E-03 3.4815136E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 19 0 0.5297381 0.000000 1.7439013E-03 3.5770163E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 20 0 0.5369877 0.000000 1.7181761E-03 3.5752279E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 21 0 0.5307529 0.000000 1.6928302E-03 3.5734246E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 22 0 0.5292560 0.000000 1.6678583E-03 3.5716067E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 23 0 0.5261601 0.000000 1.6432548E-03 3.5697741E-03 0.000000 0.000000 0.000000 + Av 2018 4 18 24 0 0.5236679 0.000000 1.6190142E-03 3.5679275E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 1 0 0.5157444 0.000000 1.5951312E-03 3.4885271E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 2 0 0.5097655 0.000000 1.5716006E-03 3.4867940E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 3 0 0.5084341 0.000000 1.5484169E-03 3.4850473E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 4 0 0.5055315 0.000000 1.5255754E-03 3.4832871E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 5 0 0.5032197 0.000000 1.5030708E-03 3.4815136E-03 0.000000 0.000000 0.000000 Av 2018 4 19 6 0 0.4756335 0.000000 1.4808981E-03 3.1138458E-03 0.000000 0.000000 1.6630981E-03 Av 2018 4 19 7 0 0.4255666 0.000000 1.4590524E-03 2.6553993E-03 0.000000 0.000000 3.7387684E-03 Av 2018 4 19 8 0 0.3771915 0.000000 1.4375291E-03 2.1969397E-03 0.000000 0.000000 5.8144387E-03 @@ -2634,17 +2634,17 @@ Av 2018 4 19 16 0 0.3390864 0.000000 1.2763877E-03 2.1819649E-03 0.000000 0.000000 5.8144387E-03 Av 2018 4 19 17 0 0.3804698 0.000000 1.2575591E-03 2.6365989E-03 0.000000 0.000000 3.7387684E-03 Av 2018 4 19 18 0 0.4257979 0.000000 1.2390080E-03 3.0911830E-03 0.000000 0.000000 1.6630981E-03 - Av 2018 4 19 19 0 0.4636180 0.000000 1.2207307E-03 3.4549700E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 20 0 0.4728032 0.000000 1.2027230E-03 3.4528596E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 21 0 0.4668931 0.000000 1.1849809E-03 3.4507406E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 22 0 0.4662664 0.000000 1.1675006E-03 3.4486135E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 23 0 0.4638368 0.000000 1.1502781E-03 3.4464779E-03 0.000000 0.000000 0.000000 - Av 2018 4 19 24 0 0.4620678 0.000000 1.1333097E-03 3.4443345E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 1 0 0.4550488 0.000000 1.1165916E-03 3.3678061E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 2 0 0.4498973 0.000000 1.1001203E-03 3.3657844E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 3 0 0.4491915 0.000000 1.0838917E-03 3.3637548E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 4 0 0.4469716 0.000000 1.0679027E-03 3.3617178E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 5 0 0.4453094 0.000000 1.0521495E-03 3.3596728E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 19 0 0.4636180 0.000000 1.2207307E-03 3.4549700E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 20 0 0.4728032 0.000000 1.2027230E-03 3.4528596E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 21 0 0.4668931 0.000000 1.1849809E-03 3.4507406E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 22 0 0.4662664 0.000000 1.1675006E-03 3.4486135E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 23 0 0.4638368 0.000000 1.1502781E-03 3.4464779E-03 0.000000 0.000000 0.000000 + Av 2018 4 19 24 0 0.4620678 0.000000 1.1333097E-03 3.4443345E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 1 0 0.4550488 0.000000 1.1165916E-03 3.3678061E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 2 0 0.4498973 0.000000 1.1001203E-03 3.3657844E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 3 0 0.4491915 0.000000 1.0838917E-03 3.3637548E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 4 0 0.4469716 0.000000 1.0679027E-03 3.3617178E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 5 0 0.4453094 0.000000 1.0521495E-03 3.3596728E-03 0.000000 0.000000 0.000000 Av 2018 4 20 6 0 0.4170872 0.000000 1.0366286E-03 2.9727991E-03 0.000000 0.000000 1.7491872E-03 Av 2018 4 20 7 0 0.3662363 0.000000 1.0213366E-03 2.5052654E-03 0.000000 0.000000 3.8649472E-03 Av 2018 4 20 8 0 0.3178191 0.000000 1.0062704E-03 2.0377042E-03 0.000000 0.000000 5.9807072E-03 @@ -2658,17 +2658,17 @@ Av 2018 4 20 16 0 0.2840283 0.000000 8.9347159E-04 2.0191341E-03 0.000000 0.000000 5.9807072E-03 Av 2018 4 20 17 0 0.3264695 0.000000 8.8029151E-04 2.4820669E-03 0.000000 0.000000 3.8649472E-03 Av 2018 4 20 18 0 0.3732801 0.000000 8.6730585E-04 2.9449705E-03 0.000000 0.000000 1.7491872E-03 - Av 2018 4 20 19 0 0.4131310 0.000000 8.5451169E-04 3.3272104E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 20 0 0.4235666 0.000000 8.4190635E-04 3.3246228E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 21 0 0.4178860 0.000000 8.2948687E-04 3.3220337E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 22 0 0.4178340 0.000000 8.1725064E-04 3.3194427E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 23 0 0.4158494 0.000000 8.0519490E-04 3.3168504E-03 0.000000 0.000000 0.000000 - Av 2018 4 20 24 0 0.4145609 0.000000 7.9331698E-04 3.3142564E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 1 0 0.4082268 0.000000 7.8161433E-04 3.2406126E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 2 0 0.4036798 0.000000 7.7008427E-04 3.2381511E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 3 0 0.4033710 0.000000 7.5872435E-04 3.2356880E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 4 0 0.4016113 0.000000 7.4753194E-04 3.2332232E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 5 0 0.4003785 0.000000 7.3650468E-04 3.2307571E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 19 0 0.4131310 0.000000 8.5451169E-04 3.3272104E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 20 0 0.4235666 0.000000 8.4190635E-04 3.3246228E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 21 0 0.4178860 0.000000 8.2948687E-04 3.3220337E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 22 0 0.4178340 0.000000 8.1725064E-04 3.3194427E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 23 0 0.4158494 0.000000 8.0519490E-04 3.3168504E-03 0.000000 0.000000 0.000000 + Av 2018 4 20 24 0 0.4145609 0.000000 7.9331698E-04 3.3142564E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 1 0 0.4082268 0.000000 7.8161433E-04 3.2406126E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 2 0 0.4036798 0.000000 7.7008427E-04 3.2381511E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 3 0 0.4033710 0.000000 7.5872435E-04 3.2356880E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 4 0 0.4016113 0.000000 7.4753194E-04 3.2332232E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 5 0 0.4003785 0.000000 7.3650468E-04 3.2307571E-03 0.000000 0.000000 0.000000 Av 2018 4 21 6 0 0.3734251 0.000000 7.2564004E-04 2.8554939E-03 0.000000 0.000000 1.6945243E-03 Av 2018 4 21 7 0 0.3254744 0.000000 7.1493571E-04 2.4155169E-03 0.000000 0.000000 3.6831801E-03 Av 2018 4 21 8 0 0.2804731 0.000000 7.0438930E-04 1.9755249E-03 0.000000 0.000000 5.6718360E-03 @@ -2682,17 +2682,17 @@ Av 2018 4 21 16 0 0.2512416 0.000000 6.2543008E-04 1.9546016E-03 0.000000 0.000000 5.6718360E-03 Av 2018 4 21 17 0 0.2911510 0.000000 6.1620399E-04 2.3893719E-03 0.000000 0.000000 3.6831801E-03 Av 2018 4 21 18 0 0.3354953 0.000000 6.0711399E-04 2.8241258E-03 0.000000 0.000000 1.6945243E-03 - Av 2018 4 21 19 0 0.3739408 0.000000 5.9815811E-04 3.1941626E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 20 0 0.3845233 0.000000 5.8933435E-04 3.1914019E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 21 0 0.3792784 0.000000 5.8064074E-04 3.1886424E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 22 0 0.3795546 0.000000 5.7207537E-04 3.1858841E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 23 0 0.3779284 0.000000 5.6363636E-04 3.1831267E-03 0.000000 0.000000 0.000000 - Av 2018 4 21 24 0 0.3769809 0.000000 5.5532181E-04 3.1803704E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 1 0 0.3712188 0.000000 5.4712995E-04 3.1099780E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 2 0 0.3671563 0.000000 5.3905894E-04 3.1073536E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 3 0 0.3671237 0.000000 5.3110695E-04 3.1047300E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 4 0 0.3657060 0.000000 5.2327226E-04 3.1021077E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 5 0 0.3647858 0.000000 5.1555317E-04 3.0994860E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 19 0 0.3739408 0.000000 5.9815811E-04 3.1941626E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 20 0 0.3845233 0.000000 5.8933435E-04 3.1914019E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 21 0 0.3792784 0.000000 5.8064074E-04 3.1886424E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 22 0 0.3795546 0.000000 5.7207537E-04 3.1858841E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 23 0 0.3779284 0.000000 5.6363636E-04 3.1831267E-03 0.000000 0.000000 0.000000 + Av 2018 4 21 24 0 0.3769809 0.000000 5.5532181E-04 3.1803704E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 1 0 0.3712188 0.000000 5.4712995E-04 3.1099780E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 2 0 0.3671563 0.000000 5.3905894E-04 3.1073536E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 3 0 0.3671237 0.000000 5.3110695E-04 3.1047300E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 4 0 0.3657060 0.000000 5.2327226E-04 3.1021077E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 5 0 0.3647858 0.000000 5.1555317E-04 3.0994860E-03 0.000000 0.000000 0.000000 Av 2018 4 22 6 0 0.3367916 0.000000 5.0794799E-04 2.7041114E-03 0.000000 0.000000 1.7852454E-03 Av 2018 4 22 7 0 0.2875834 0.000000 5.0045492E-04 2.2537976E-03 0.000000 0.000000 3.8202051E-03 Av 2018 4 22 8 0 0.2420726 0.000000 4.9307244E-04 1.8034759E-03 0.000000 0.000000 5.8551650E-03 @@ -2706,17 +2706,17 @@ Av 2018 4 22 16 0 0.2148775 0.000000 4.3780092E-04 1.7818268E-03 0.000000 0.000000 5.8551650E-03 Av 2018 4 22 17 0 0.2557420 0.000000 4.3134266E-04 2.2267427E-03 0.000000 0.000000 3.8202051E-03 Av 2018 4 22 18 0 0.3014780 0.000000 4.2497969E-04 2.6716497E-03 0.000000 0.000000 1.7852454E-03 - Av 2018 4 22 19 0 0.3418370 0.000000 4.1871058E-04 3.0616156E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 20 0 0.3534676 0.000000 4.1253393E-04 3.0588277E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 21 0 0.3482117 0.000000 4.0644841E-04 3.0560419E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 22 0 0.3488400 0.000000 4.0045267E-04 3.0532584E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 23 0 0.3474347 0.000000 3.9454538E-04 3.0504770E-03 0.000000 0.000000 0.000000 - Av 2018 4 22 24 0 0.3467487 0.000000 3.8872522E-04 3.0476975E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 1 0 0.3414580 0.000000 3.8299093E-04 2.9806523E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 2 0 0.3377886 0.000000 3.7734117E-04 2.9780001E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 3 0 0.3379421 0.000000 3.7177483E-04 2.9753498E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 4 0 0.3367779 0.000000 3.6629057E-04 2.9727013E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 5 0 0.3360832 0.000000 3.6088721E-04 2.9700550E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 19 0 0.3418370 0.000000 4.1871058E-04 3.0616156E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 20 0 0.3534676 0.000000 4.1253393E-04 3.0588277E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 21 0 0.3482117 0.000000 4.0644841E-04 3.0560419E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 22 0 0.3488400 0.000000 4.0045267E-04 3.0532584E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 23 0 0.3474347 0.000000 3.9454538E-04 3.0504770E-03 0.000000 0.000000 0.000000 + Av 2018 4 22 24 0 0.3467487 0.000000 3.8872522E-04 3.0476975E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 1 0 0.3414580 0.000000 3.8299093E-04 2.9806523E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 2 0 0.3377886 0.000000 3.7734117E-04 2.9780001E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 3 0 0.3379421 0.000000 3.7177483E-04 2.9753498E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 4 0 0.3367779 0.000000 3.6629057E-04 2.9727013E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 5 0 0.3360832 0.000000 3.6088721E-04 2.9700550E-03 0.000000 0.000000 0.000000 Av 2018 4 23 6 0 0.3034107 0.000000 3.5556353E-04 2.5028693E-03 0.000000 0.000000 2.1115497E-03 Av 2018 4 23 7 0 0.2466527 0.000000 3.5031841E-04 1.9853907E-03 0.000000 0.000000 4.4517042E-03 Av 2018 4 23 8 0 0.1949354 0.000000 3.4515065E-04 1.4679077E-03 0.000000 0.000000 6.7918589E-03 @@ -2730,17 +2730,17 @@ Av 2018 4 23 16 0 0.1667328 0.000000 3.0646066E-04 1.4463448E-03 0.000000 0.000000 6.7918589E-03 Av 2018 4 23 17 0 0.2137252 0.000000 3.0193987E-04 1.9584438E-03 0.000000 0.000000 4.4517042E-03 Av 2018 4 23 18 0 0.2667015 0.000000 2.9748576E-04 2.4705385E-03 0.000000 0.000000 2.1115497E-03 - Av 2018 4 23 19 0 0.3142637 0.000000 2.9309740E-04 2.9323390E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 20 0 0.3285477 0.000000 2.8877376E-04 2.9295997E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 21 0 0.3226258 0.000000 2.8451392E-04 2.9268630E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 22 0 0.3237385 0.000000 2.8031689E-04 2.9241284E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 23 0 0.3224141 0.000000 2.7618179E-04 2.9213966E-03 0.000000 0.000000 0.000000 - Av 2018 4 23 24 0 0.3219458 0.000000 2.7210766E-04 2.9186674E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 1 0 0.3170436 0.000000 2.6809363E-04 2.8549382E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 2 0 0.3136994 0.000000 2.6413883E-04 2.8523291E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 3 0 0.3139744 0.000000 2.6024238E-04 2.8497225E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 4 0 0.3129991 0.000000 2.5640338E-04 2.8471183E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 5 0 0.3124667 0.000000 2.5262102E-04 2.8445164E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 19 0 0.3142637 0.000000 2.9309740E-04 2.9323390E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 20 0 0.3285477 0.000000 2.8877376E-04 2.9295997E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 21 0 0.3226258 0.000000 2.8451392E-04 2.9268630E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 22 0 0.3237385 0.000000 2.8031689E-04 2.9241284E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 23 0 0.3224141 0.000000 2.7618179E-04 2.9213966E-03 0.000000 0.000000 0.000000 + Av 2018 4 23 24 0 0.3219458 0.000000 2.7210766E-04 2.9186674E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 1 0 0.3170436 0.000000 2.6809363E-04 2.8549382E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 2 0 0.3136994 0.000000 2.6413883E-04 2.8523291E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 3 0 0.3139744 0.000000 2.6024238E-04 2.8497225E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 4 0 0.3129991 0.000000 2.5640338E-04 2.8471183E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 5 0 0.3124667 0.000000 2.5262102E-04 2.8445164E-03 0.000000 0.000000 0.000000 Av 2018 4 24 6 0 0.2724175 0.000000 2.4889444E-04 2.2670762E-03 0.000000 0.000000 2.6129112E-03 Av 2018 4 24 7 0 0.2037413 0.000000 2.4522288E-04 1.6444768E-03 0.000000 0.000000 5.4310965E-03 Av 2018 4 24 8 0 0.1420923 0.000000 2.4160545E-04 1.0218753E-03 0.000000 0.000000 8.2492828E-03 @@ -2754,17 +2754,17 @@ Av 2018 4 24 16 0 0.1109215 0.000000 2.1452246E-04 1.0008952E-03 0.000000 0.000000 8.2492828E-03 Av 2018 4 24 17 0 0.1673711 0.000000 2.1135791E-04 1.6182580E-03 0.000000 0.000000 5.4310965E-03 Av 2018 4 24 18 0 0.2314837 0.000000 2.0824005E-04 2.2356200E-03 0.000000 0.000000 2.6129112E-03 - Av 2018 4 24 19 0 0.2900206 0.000000 2.0516818E-04 2.8078228E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 20 0 0.3082035 0.000000 2.0214161E-04 2.8051869E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 21 0 0.3011149 0.000000 1.9915971E-04 2.8025536E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 22 0 0.3028198 0.000000 1.9622179E-04 2.7999228E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 23 0 0.3014733 0.000000 1.9332720E-04 2.7972944E-03 0.000000 0.000000 0.000000 - Av 2018 4 24 24 0 0.3011941 0.000000 1.9047532E-04 2.7946683E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 1 0 0.2966176 0.000000 1.8766552E-04 2.7341705E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 2 0 0.2935486 0.000000 1.8489716E-04 2.7316578E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 3 0 0.2939010 0.000000 1.8216964E-04 2.7291472E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 4 0 0.2930697 0.000000 1.7948235E-04 2.7266392E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 5 0 0.2926556 0.000000 1.7683470E-04 2.7241332E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 19 0 0.2900206 0.000000 2.0516818E-04 2.8078228E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 20 0 0.3082035 0.000000 2.0214161E-04 2.8051869E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 21 0 0.3011149 0.000000 1.9915971E-04 2.8025536E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 22 0 0.3028198 0.000000 1.9622179E-04 2.7999228E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 23 0 0.3014733 0.000000 1.9332720E-04 2.7972944E-03 0.000000 0.000000 0.000000 + Av 2018 4 24 24 0 0.3011941 0.000000 1.9047532E-04 2.7946683E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 1 0 0.2966176 0.000000 1.8766552E-04 2.7341705E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 2 0 0.2935486 0.000000 1.8489716E-04 2.7316578E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 3 0 0.2939010 0.000000 1.8216964E-04 2.7291472E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 4 0 0.2930697 0.000000 1.7948235E-04 2.7266392E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 5 0 0.2926556 0.000000 1.7683470E-04 2.7241332E-03 0.000000 0.000000 0.000000 Av 2018 4 25 6 0 0.2449008 0.000000 1.7422611E-04 2.0322811E-03 0.000000 0.000000 3.1334013E-03 Av 2018 4 25 7 0 0.1641543 0.000000 1.7165599E-04 1.3055418E-03 0.000000 0.000000 6.4253896E-03 Av 2018 4 25 8 0 9.2737421E-02 0.000000 1.6912380E-04 5.7880301E-04 0.000000 0.000000 9.7173778E-03 @@ -2778,17 +2778,17 @@ Av 2018 4 25 16 0 5.8513135E-02 0.000000 1.5016570E-04 5.5878353E-04 0.000000 0.000000 9.7173778E-03 Av 2018 4 25 17 0 0.1240990 0.000000 1.4795052E-04 1.2805219E-03 0.000000 0.000000 6.4253896E-03 Av 2018 4 25 18 0 0.1991788 0.000000 1.4576802E-04 2.0022620E-03 0.000000 0.000000 3.1334013E-03 - Av 2018 4 25 19 0 0.2688847 0.000000 1.4361771E-04 2.6891152E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 20 0 0.2911290 0.000000 1.4149913E-04 2.6866223E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 21 0 0.2827701 0.000000 1.3941179E-04 2.6841320E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 22 0 0.2850568 0.000000 1.3735525E-04 2.6816439E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 23 0 0.2836463 0.000000 1.3532904E-04 2.6791578E-03 0.000000 0.000000 0.000000 - Av 2018 4 25 24 0 0.2835258 0.000000 1.3333274E-04 2.6766744E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 1 0 0.2792305 0.000000 1.3136587E-04 2.6192854E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 2 0 0.2763979 0.000000 1.2942801E-04 2.6169072E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 3 0 0.2767984 0.000000 1.2751875E-04 2.6145312E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 4 0 0.2760789 0.000000 1.2563766E-04 2.6121575E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 5 0 0.2757529 0.000000 1.2378431E-04 2.6097856E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 19 0 0.2688847 0.000000 1.4361771E-04 2.6891152E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 20 0 0.2911290 0.000000 1.4149913E-04 2.6866223E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 21 0 0.2827701 0.000000 1.3941179E-04 2.6841320E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 22 0 0.2850568 0.000000 1.3735525E-04 2.6816439E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 23 0 0.2836463 0.000000 1.3532904E-04 2.6791578E-03 0.000000 0.000000 0.000000 + Av 2018 4 25 24 0 0.2835258 0.000000 1.3333274E-04 2.6766744E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 1 0 0.2792305 0.000000 1.3136587E-04 2.6192854E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 2 0 0.2763979 0.000000 1.2942801E-04 2.6169072E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 3 0 0.2767984 0.000000 1.2751875E-04 2.6145312E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 4 0 0.2760789 0.000000 1.2563766E-04 2.6121575E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 5 0 0.2757529 0.000000 1.2378431E-04 2.6097856E-03 0.000000 0.000000 0.000000 Av 2018 4 26 6 0 0.2243485 0.000000 1.2195830E-04 1.8632160E-03 0.000000 0.000000 3.3827273E-03 Av 2018 4 26 7 0 0.1386849 0.000000 1.2015922E-04 1.0985843E-03 0.000000 0.000000 6.8475669E-03 Av 2018 4 26 8 0 6.3990191E-02 0.000000 1.1838668E-04 3.3395365E-04 0.000000 0.000000 1.0312406E-02 @@ -2802,16 +2802,16 @@ Av 2018 4 26 16 0 3.1688262E-02 0.000000 1.0511600E-04 3.1510275E-04 0.000000 0.000000 1.0312406E-02 Av 2018 4 26 17 0 9.7046643E-02 0.000000 1.0356537E-04 1.0750209E-03 0.000000 0.000000 6.8475669E-03 Av 2018 4 26 18 0 0.1773287 0.000000 1.0203762E-04 1.8349406E-03 0.000000 0.000000 3.3827273E-03 - Av 2018 4 26 19 0 0.2515842 0.000000 1.0053240E-04 2.5767982E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 20 0 0.2760807 0.000000 9.9049394E-05 2.5744576E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 21 0 0.2670451 0.000000 9.7588258E-05 2.5721192E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 22 0 0.2696722 0.000000 9.6148680E-05 2.5697832E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 23 0 0.2682472 0.000000 9.4730334E-05 2.5674491E-03 0.000000 0.000000 0.000000 - Av 2018 4 26 24 0 0.2682344 0.000000 9.3332914E-05 2.5651171E-03 0.000000 0.000000 0.000000 - Av 2018 4 27 1 0 0.2641929 0.000000 9.1956099E-05 2.5106757E-03 0.000000 0.000000 0.000000 - Av 2018 4 27 2 0 0.2615617 0.000000 9.0599606E-05 2.5084417E-03 0.000000 0.000000 0.000000 - Av 2018 4 27 3 0 0.2619901 0.000000 8.9263121E-05 2.5062095E-03 0.000000 0.000000 0.000000 - Av 2018 4 27 4 0 0.2613577 0.000000 8.7946348E-05 2.5039795E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 19 0 0.2515842 0.000000 1.0053240E-04 2.5767982E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 20 0 0.2760807 0.000000 9.9049394E-05 2.5744576E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 21 0 0.2670451 0.000000 9.7588258E-05 2.5721192E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 22 0 0.2696722 0.000000 9.6148680E-05 2.5697832E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 23 0 0.2682472 0.000000 9.4730334E-05 2.5674491E-03 0.000000 0.000000 0.000000 + Av 2018 4 26 24 0 0.2682344 0.000000 9.3332914E-05 2.5651171E-03 0.000000 0.000000 0.000000 + Av 2018 4 27 1 0 0.2641929 0.000000 9.1956099E-05 2.5106757E-03 0.000000 0.000000 0.000000 + Av 2018 4 27 2 0 0.2615617 0.000000 9.0599606E-05 2.5084417E-03 0.000000 0.000000 0.000000 + Av 2018 4 27 3 0 0.2619901 0.000000 8.9263121E-05 2.5062095E-03 0.000000 0.000000 0.000000 + Av 2018 4 27 4 0 0.2613577 0.000000 8.7946348E-05 2.5039795E-03 0.000000 0.000000 0.000000 Av 2018 4 27 5 0 0.2610768 0.000000 8.6649008E-05 2.5014544E-03 0.000000 0.000000 1.3504465E-06 Av 2018 4 27 6 0 0.2254614 0.000000 8.5370797E-05 1.9847124E-03 0.000000 0.000000 2.3400590E-03 Av 2018 4 27 7 0 0.1670149 0.000000 8.4111452E-05 1.4679725E-03 0.000000 0.000000 4.6787676E-03 @@ -2827,15 +2827,15 @@ Av 2018 4 27 17 0 0.1387900 0.000000 7.2495764E-05 1.4458401E-03 0.000000 0.000000 4.6787676E-03 Av 2018 4 27 18 0 0.1922622 0.000000 7.1426344E-05 1.9581534E-03 0.000000 0.000000 2.3400590E-03 Av 2018 4 27 19 0 0.2434764 0.000000 7.0372691E-05 2.4704689E-03 0.000000 0.000000 1.3504465E-06 - Av 2018 4 27 20 0 0.2604125 0.000000 6.9334586E-05 2.4685676E-03 0.000000 0.000000 0.000000 - Av 2018 4 27 21 0 0.2541054 0.000000 6.8311791E-05 2.4663711E-03 0.000000 0.000000 0.000000 - Av 2018 4 27 22 0 0.2558621 0.000000 6.7304085E-05 2.4641764E-03 0.000000 0.000000 0.000000 - Av 2018 4 27 23 0 0.2548172 0.000000 6.6311251E-05 2.4619836E-03 0.000000 0.000000 0.000000 - Av 2018 4 27 24 0 0.2547488 0.000000 6.5333057E-05 2.4597929E-03 0.000000 0.000000 0.000000 - Av 2018 4 28 1 0 0.2509812 0.000000 6.4369291E-05 2.4081245E-03 0.000000 0.000000 0.000000 - Av 2018 4 28 2 0 0.2485080 0.000000 6.3419742E-05 2.4060251E-03 0.000000 0.000000 0.000000 - Av 2018 4 28 3 0 0.2489547 0.000000 6.2484200E-05 2.4039270E-03 0.000000 0.000000 0.000000 - Av 2018 4 28 4 0 0.2483883 0.000000 6.1562459E-05 2.4018311E-03 0.000000 0.000000 0.000000 + Av 2018 4 27 20 0 0.2604125 0.000000 6.9334586E-05 2.4685676E-03 0.000000 0.000000 0.000000 + Av 2018 4 27 21 0 0.2541054 0.000000 6.8311791E-05 2.4663711E-03 0.000000 0.000000 0.000000 + Av 2018 4 27 22 0 0.2558621 0.000000 6.7304085E-05 2.4641764E-03 0.000000 0.000000 0.000000 + Av 2018 4 27 23 0 0.2548172 0.000000 6.6311251E-05 2.4619836E-03 0.000000 0.000000 0.000000 + Av 2018 4 27 24 0 0.2547488 0.000000 6.5333057E-05 2.4597929E-03 0.000000 0.000000 0.000000 + Av 2018 4 28 1 0 0.2509812 0.000000 6.4369291E-05 2.4081245E-03 0.000000 0.000000 0.000000 + Av 2018 4 28 2 0 0.2485080 0.000000 6.3419742E-05 2.4060251E-03 0.000000 0.000000 0.000000 + Av 2018 4 28 3 0 0.2489547 0.000000 6.2484200E-05 2.4039270E-03 0.000000 0.000000 0.000000 + Av 2018 4 28 4 0 0.2483883 0.000000 6.1562459E-05 2.4018311E-03 0.000000 0.000000 0.000000 Av 2018 4 28 5 0 0.2474443 0.000000 6.0654318E-05 2.3890422E-03 0.000000 0.000000 4.8613361E-05 Av 2018 4 28 6 0 0.2169406 0.000000 5.9759572E-05 1.9530249E-03 0.000000 0.000000 2.0209996E-03 Av 2018 4 28 7 0 0.1678099 0.000000 5.8878020E-05 1.5170093E-03 0.000000 0.000000 3.9933859E-03 @@ -2851,15 +2851,15 @@ Av 2018 4 28 17 0 0.1437253 0.000000 5.0747043E-05 1.4962045E-03 0.000000 0.000000 3.9933859E-03 Av 2018 4 28 18 0 0.1890549 0.000000 4.9998442E-05 1.9280589E-03 0.000000 0.000000 2.0209996E-03 Av 2018 4 28 19 0 0.2361096 0.000000 4.9260885E-05 2.3599153E-03 0.000000 3.9999921E-02 4.8613361E-05 - Av 2018 4 28 20 0 0.2508560 0.000000 4.8534210E-05 2.3685431E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 4 28 21 0 0.2421397 0.000000 4.7818256E-05 2.3664781E-03 0.000000 0.000000 0.000000 - Av 2018 4 28 22 0 0.2436930 0.000000 4.7112859E-05 2.3644147E-03 0.000000 0.000000 0.000000 - Av 2018 4 28 23 0 0.2427775 0.000000 4.6417870E-05 2.3623533E-03 0.000000 0.000000 0.000000 - Av 2018 4 28 24 0 0.2427221 0.000000 4.5733137E-05 2.3602936E-03 0.000000 0.000000 0.000000 - Av 2018 4 29 1 0 0.2391758 0.000000 4.5058499E-05 2.3112346E-03 0.000000 0.000000 0.000000 - Av 2018 4 29 2 0 0.2368504 0.000000 4.4393815E-05 2.3092597E-03 0.000000 0.000000 0.000000 - Av 2018 4 29 3 0 0.2373010 0.000000 4.3738939E-05 2.3072863E-03 0.000000 0.000000 0.000000 - Av 2018 4 29 4 0 0.2367879 0.000000 4.3093722E-05 2.3053149E-03 0.000000 0.000000 0.000000 + Av 2018 4 28 20 0 0.2508560 0.000000 4.8534210E-05 2.3685431E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 4 28 21 0 0.2421397 0.000000 4.7818256E-05 2.3664781E-03 0.000000 0.000000 0.000000 + Av 2018 4 28 22 0 0.2436930 0.000000 4.7112859E-05 2.3644147E-03 0.000000 0.000000 0.000000 + Av 2018 4 28 23 0 0.2427775 0.000000 4.6417870E-05 2.3623533E-03 0.000000 0.000000 0.000000 + Av 2018 4 28 24 0 0.2427221 0.000000 4.5733137E-05 2.3602936E-03 0.000000 0.000000 0.000000 + Av 2018 4 29 1 0 0.2391758 0.000000 4.5058499E-05 2.3112346E-03 0.000000 0.000000 0.000000 + Av 2018 4 29 2 0 0.2368504 0.000000 4.4393815E-05 2.3092597E-03 0.000000 0.000000 0.000000 + Av 2018 4 29 3 0 0.2373010 0.000000 4.3738939E-05 2.3072863E-03 0.000000 0.000000 0.000000 + Av 2018 4 29 4 0 0.2367879 0.000000 4.3093722E-05 2.3053149E-03 0.000000 0.000000 0.000000 Av 2018 4 29 5 0 0.2353758 0.000000 4.2458021E-05 2.2852838E-03 0.000000 0.000000 8.2096383E-05 Av 2018 4 29 6 0 0.2088005 0.000000 4.1831699E-05 1.9109321E-03 0.000000 0.000000 1.7747482E-03 Av 2018 4 29 7 0 0.1667753 0.000000 4.1214615E-05 1.5365821E-03 0.000000 0.000000 3.4673999E-03 @@ -2875,15 +2875,15 @@ Av 2018 4 29 17 0 0.1455989 0.000000 3.5522931E-05 1.5170085E-03 0.000000 0.000000 3.4673999E-03 Av 2018 4 29 18 0 0.1850601 0.000000 3.4998913E-05 1.8874437E-03 0.000000 0.000000 1.7747482E-03 Av 2018 4 29 19 0 0.2218606 0.000000 3.4482622E-05 2.2578808E-03 0.000000 0.000000 8.2096383E-05 - Av 2018 4 29 20 0 0.2354155 0.000000 3.3973949E-05 2.2739971E-03 0.000000 0.000000 0.000000 - Av 2018 4 29 21 0 0.2316047 0.000000 3.3472781E-05 2.2720539E-03 0.000000 0.000000 0.000000 - Av 2018 4 29 22 0 0.2325982 0.000000 3.2979005E-05 2.2701123E-03 0.000000 0.000000 0.000000 - Av 2018 4 29 23 0 0.2319224 0.000000 3.2492513E-05 2.2681723E-03 0.000000 0.000000 0.000000 - Av 2018 4 29 24 0 0.2318283 0.000000 3.2013199E-05 2.2662343E-03 0.000000 0.000000 0.000000 - Av 2018 4 30 1 0 0.2284984 0.000000 3.1540952E-05 2.2196327E-03 0.000000 0.000000 0.000000 - Av 2018 4 30 2 0 0.2262999 0.000000 3.1075673E-05 2.2177733E-03 0.000000 0.000000 0.000000 - Av 2018 4 30 3 0 0.2267490 0.000000 3.0617259E-05 2.2159156E-03 0.000000 0.000000 0.000000 - Av 2018 4 30 4 0 0.2262787 0.000000 3.0165607E-05 2.2140595E-03 0.000000 0.000000 0.000000 + Av 2018 4 29 20 0 0.2354155 0.000000 3.3973949E-05 2.2739971E-03 0.000000 0.000000 0.000000 + Av 2018 4 29 21 0 0.2316047 0.000000 3.3472781E-05 2.2720539E-03 0.000000 0.000000 0.000000 + Av 2018 4 29 22 0 0.2325982 0.000000 3.2979005E-05 2.2701123E-03 0.000000 0.000000 0.000000 + Av 2018 4 29 23 0 0.2319224 0.000000 3.2492513E-05 2.2681723E-03 0.000000 0.000000 0.000000 + Av 2018 4 29 24 0 0.2318283 0.000000 3.2013199E-05 2.2662343E-03 0.000000 0.000000 0.000000 + Av 2018 4 30 1 0 0.2284984 0.000000 3.1540952E-05 2.2196327E-03 0.000000 0.000000 0.000000 + Av 2018 4 30 2 0 0.2262999 0.000000 3.1075673E-05 2.2177733E-03 0.000000 0.000000 0.000000 + Av 2018 4 30 3 0 0.2267490 0.000000 3.0617259E-05 2.2159156E-03 0.000000 0.000000 0.000000 + Av 2018 4 30 4 0 0.2262787 0.000000 3.0165607E-05 2.2140595E-03 0.000000 0.000000 0.000000 Av 2018 4 30 5 0 0.2240148 0.000000 2.9720619E-05 2.1812983E-03 0.000000 0.000000 1.4048502E-04 Av 2018 4 30 6 0 0.1930668 0.000000 2.9282193E-05 1.7509770E-03 0.000000 0.000000 2.0880674E-03 Av 2018 4 30 7 0 0.1449549 0.000000 2.8850234E-05 1.3206572E-03 0.000000 0.000000 4.0356498E-03 @@ -2899,15 +2899,15 @@ Av 2018 4 30 17 0 0.1216205 0.000000 2.4866054E-05 1.3022270E-03 0.000000 0.000000 4.0356498E-03 Av 2018 4 30 18 0 0.1665689 0.000000 2.4499241E-05 1.7288607E-03 0.000000 0.000000 2.0880674E-03 Av 2018 4 30 19 0 0.2091225 0.000000 2.4137838E-05 2.1554958E-03 0.000000 0.000000 1.4048502E-04 - Av 2018 4 30 20 0 0.2254117 0.000000 2.3781768E-05 2.1845712E-03 0.000000 0.000000 0.000000 - Av 2018 4 30 21 0 0.2215640 0.000000 2.3430950E-05 2.1827412E-03 0.000000 0.000000 0.000000 - Av 2018 4 30 22 0 0.2226060 0.000000 2.3085306E-05 2.1809128E-03 0.000000 0.000000 0.000000 - Av 2018 4 30 23 0 0.2219487 0.000000 2.2744762E-05 2.1790860E-03 0.000000 0.000000 0.000000 - Av 2018 4 30 24 0 0.2218832 0.000000 2.2409242E-05 2.1772606E-03 0.000000 0.000000 0.000000 - Av 2018 5 1 1 0 0.2187277 0.000000 2.2078670E-05 2.1329743E-03 0.000000 0.000000 0.000000 - Av 2018 5 1 2 0 0.2166523 0.000000 2.1752976E-05 2.1312225E-03 0.000000 0.000000 0.000000 - Av 2018 5 1 3 0 0.2170920 0.000000 2.1432084E-05 2.1294721E-03 0.000000 0.000000 0.000000 - Av 2018 5 1 4 0 0.2166581 0.000000 2.1115928E-05 2.1277231E-03 0.000000 0.000000 0.000000 + Av 2018 4 30 20 0 0.2254117 0.000000 2.3781768E-05 2.1845712E-03 0.000000 0.000000 0.000000 + Av 2018 4 30 21 0 0.2215640 0.000000 2.3430950E-05 2.1827412E-03 0.000000 0.000000 0.000000 + Av 2018 4 30 22 0 0.2226060 0.000000 2.3085306E-05 2.1809128E-03 0.000000 0.000000 0.000000 + Av 2018 4 30 23 0 0.2219487 0.000000 2.2744762E-05 2.1790860E-03 0.000000 0.000000 0.000000 + Av 2018 4 30 24 0 0.2218832 0.000000 2.2409242E-05 2.1772606E-03 0.000000 0.000000 0.000000 + Av 2018 5 1 1 0 0.2187277 0.000000 2.2078670E-05 2.1329743E-03 0.000000 0.000000 0.000000 + Av 2018 5 1 2 0 0.2166523 0.000000 2.1752976E-05 2.1312225E-03 0.000000 0.000000 0.000000 + Av 2018 5 1 3 0 0.2170920 0.000000 2.1432084E-05 2.1294721E-03 0.000000 0.000000 0.000000 + Av 2018 5 1 4 0 0.2166581 0.000000 2.1115928E-05 2.1277231E-03 0.000000 0.000000 0.000000 Av 2018 5 1 5 0 0.2128252 0.000000 2.0804435E-05 2.0718295E-03 0.000000 0.000000 2.4611858E-04 Av 2018 5 1 6 0 0.1756131 0.000000 2.0497537E-05 1.5647197E-03 0.000000 0.000000 2.5432275E-03 Av 2018 5 1 7 0 0.1192328 0.000000 2.0195166E-05 1.0576108E-03 0.000000 0.000000 4.8403363E-03 @@ -2923,15 +2923,15 @@ Av 2018 5 1 17 0 9.2262030E-02 0.000000 1.7406242E-05 1.0402431E-03 0.000000 0.000000 4.8403363E-03 Av 2018 5 1 18 0 0.1453918 0.000000 1.7149474E-05 1.5438781E-03 0.000000 0.000000 2.5432275E-03 Av 2018 5 1 19 0 0.1955618 0.000000 1.6896491E-05 2.0475143E-03 0.000000 0.000000 2.4611858E-04 - Av 2018 5 1 20 0 0.2160541 0.000000 1.6647242E-05 2.0999345E-03 0.000000 0.000000 0.000000 - Av 2018 5 1 21 0 0.2123614 0.000000 1.6401667E-05 2.0982097E-03 0.000000 0.000000 0.000000 - Av 2018 5 1 22 0 0.2133780 0.000000 1.6159718E-05 2.0964863E-03 0.000000 0.000000 0.000000 - Av 2018 5 1 23 0 0.2127578 0.000000 1.5921336E-05 2.0947645E-03 0.000000 0.000000 0.000000 - Av 2018 5 1 24 0 0.2127074 0.000000 1.5686472E-05 2.0930441E-03 0.000000 0.000000 0.000000 - Av 2018 5 2 1 0 0.2097157 0.000000 1.5455073E-05 2.0509406E-03 0.000000 0.000000 0.000000 - Av 2018 5 2 2 0 0.2077518 0.000000 1.5227085E-05 2.0492887E-03 0.000000 0.000000 0.000000 - Av 2018 5 2 3 0 0.2081795 0.000000 1.5002462E-05 2.0476382E-03 0.000000 0.000000 0.000000 - Av 2018 5 2 4 0 0.2077763 0.000000 1.4781152E-05 2.0459890E-03 0.000000 0.000000 0.000000 + Av 2018 5 1 20 0 0.2160541 0.000000 1.6647242E-05 2.0999345E-03 0.000000 0.000000 0.000000 + Av 2018 5 1 21 0 0.2123614 0.000000 1.6401667E-05 2.0982097E-03 0.000000 0.000000 0.000000 + Av 2018 5 1 22 0 0.2133780 0.000000 1.6159718E-05 2.0964863E-03 0.000000 0.000000 0.000000 + Av 2018 5 1 23 0 0.2127578 0.000000 1.5921336E-05 2.0947645E-03 0.000000 0.000000 0.000000 + Av 2018 5 1 24 0 0.2127074 0.000000 1.5686472E-05 2.0930441E-03 0.000000 0.000000 0.000000 + Av 2018 5 2 1 0 0.2097157 0.000000 1.5455073E-05 2.0509406E-03 0.000000 0.000000 0.000000 + Av 2018 5 2 2 0 0.2077518 0.000000 1.5227085E-05 2.0492887E-03 0.000000 0.000000 0.000000 + Av 2018 5 2 3 0 0.2081795 0.000000 1.5002462E-05 2.0476382E-03 0.000000 0.000000 0.000000 + Av 2018 5 2 4 0 0.2077763 0.000000 1.4781152E-05 2.0459890E-03 0.000000 0.000000 0.000000 Av 2018 5 2 5 0 0.2026658 0.000000 1.4563107E-05 1.9712772E-03 0.000000 0.000000 3.3210893E-04 Av 2018 5 2 6 0 0.1608151 0.000000 1.4348278E-05 1.4083690E-03 0.000000 0.000000 2.8832960E-03 Av 2018 5 2 7 0 9.8466694E-02 0.000000 1.4136618E-05 8.4546290E-04 0.000000 0.000000 5.4344828E-03 @@ -2947,15 +2947,15 @@ Av 2018 5 2 17 0 6.8929091E-02 0.000000 1.2184368E-05 8.2908280E-04 0.000000 0.000000 5.4344828E-03 Av 2018 5 2 18 0 0.1279411 0.000000 1.2004629E-05 1.3887130E-03 0.000000 0.000000 2.8832960E-03 Av 2018 5 2 19 0 0.1836420 0.000000 1.1827542E-05 1.9483446E-03 0.000000 0.000000 3.3210893E-04 - Av 2018 5 2 20 0 0.2073248 0.000000 1.1653066E-05 2.0197807E-03 0.000000 0.000000 0.000000 - Av 2018 5 2 21 0 0.2038377 0.000000 1.1481166E-05 2.0181537E-03 0.000000 0.000000 0.000000 - Av 2018 5 2 22 0 0.2048060 0.000000 1.1311800E-05 2.0165283E-03 0.000000 0.000000 0.000000 - Av 2018 5 2 23 0 0.2042257 0.000000 1.1144934E-05 2.0149041E-03 0.000000 0.000000 0.000000 - Av 2018 5 2 24 0 0.2041843 0.000000 1.0980529E-05 2.0132810E-03 0.000000 0.000000 0.000000 - Av 2018 5 3 1 0 0.2013455 0.000000 1.0818549E-05 1.9732369E-03 0.000000 0.000000 0.000000 - Av 2018 5 3 2 0 0.1994841 0.000000 1.0658958E-05 1.9716781E-03 0.000000 0.000000 0.000000 - Av 2018 5 3 3 0 0.1998980 0.000000 1.0501722E-05 1.9701202E-03 0.000000 0.000000 0.000000 - Av 2018 5 3 4 0 0.1995213 0.000000 1.0346805E-05 1.9685638E-03 0.000000 0.000000 0.000000 + Av 2018 5 2 20 0 0.2073248 0.000000 1.1653066E-05 2.0197807E-03 0.000000 0.000000 0.000000 + Av 2018 5 2 21 0 0.2038377 0.000000 1.1481166E-05 2.0181537E-03 0.000000 0.000000 0.000000 + Av 2018 5 2 22 0 0.2048060 0.000000 1.1311800E-05 2.0165283E-03 0.000000 0.000000 0.000000 + Av 2018 5 2 23 0 0.2042257 0.000000 1.1144934E-05 2.0149041E-03 0.000000 0.000000 0.000000 + Av 2018 5 2 24 0 0.2041843 0.000000 1.0980529E-05 2.0132810E-03 0.000000 0.000000 0.000000 + Av 2018 5 3 1 0 0.2013455 0.000000 1.0818549E-05 1.9732369E-03 0.000000 0.000000 0.000000 + Av 2018 5 3 2 0 0.1994841 0.000000 1.0658958E-05 1.9716781E-03 0.000000 0.000000 0.000000 + Av 2018 5 3 3 0 0.1998980 0.000000 1.0501722E-05 1.9701202E-03 0.000000 0.000000 0.000000 + Av 2018 5 3 4 0 0.1995213 0.000000 1.0346805E-05 1.9685638E-03 0.000000 0.000000 0.000000 Av 2018 5 3 5 0 0.1925871 0.000000 1.0194172E-05 1.8670850E-03 0.000000 0.000000 4.5419755E-04 Av 2018 5 3 6 0 0.1432740 0.000000 1.0043792E-05 1.2122646E-03 0.000000 0.000000 3.4235907E-03 Av 2018 5 3 7 0 7.1025163E-02 0.000000 9.8956307E-06 5.5744511E-04 0.000000 0.000000 6.3929842E-03 @@ -2971,15 +2971,15 @@ Av 2018 5 3 17 0 3.7598699E-02 0.000000 8.5290549E-06 5.4198399E-04 0.000000 0.000000 6.3929842E-03 Av 2018 5 3 18 0 0.1057538 0.000000 8.4032372E-06 1.1937111E-03 0.000000 0.000000 3.4235907E-03 Av 2018 5 3 19 0 0.1706180 0.000000 8.2792767E-06 1.8454394E-03 0.000000 0.000000 4.5419755E-04 - Av 2018 5 3 20 0 0.1992141 0.000000 8.1571434E-06 1.9438261E-03 0.000000 0.000000 0.000000 - Av 2018 5 3 21 0 0.1958711 0.000000 8.0368127E-06 1.9422903E-03 0.000000 0.000000 0.000000 - Av 2018 5 3 22 0 0.1968087 0.000000 7.9182573E-06 1.9407556E-03 0.000000 0.000000 0.000000 - Av 2018 5 3 23 0 0.1962582 0.000000 7.8014509E-06 1.9392223E-03 0.000000 0.000000 0.000000 - Av 2018 5 3 24 0 0.1962256 0.000000 7.6863671E-06 1.9376902E-03 0.000000 0.000000 0.000000 - Av 2018 5 4 1 0 0.1935286 0.000000 7.5729808E-06 1.8995898E-03 0.000000 0.000000 0.000000 - Av 2018 5 4 2 0 0.1917623 0.000000 7.4612672E-06 1.8981174E-03 0.000000 0.000000 0.000000 - Av 2018 5 4 3 0 0.1921614 0.000000 7.3512015E-06 1.8966461E-03 0.000000 0.000000 0.000000 - Av 2018 5 4 4 0 0.1918080 0.000000 7.2427592E-06 1.8951760E-03 0.000000 0.000000 0.000000 + Av 2018 5 3 20 0 0.1992141 0.000000 8.1571434E-06 1.9438261E-03 0.000000 0.000000 0.000000 + Av 2018 5 3 21 0 0.1958711 0.000000 8.0368127E-06 1.9422903E-03 0.000000 0.000000 0.000000 + Av 2018 5 3 22 0 0.1968087 0.000000 7.9182573E-06 1.9407556E-03 0.000000 0.000000 0.000000 + Av 2018 5 3 23 0 0.1962582 0.000000 7.8014509E-06 1.9392223E-03 0.000000 0.000000 0.000000 + Av 2018 5 3 24 0 0.1962256 0.000000 7.6863671E-06 1.9376902E-03 0.000000 0.000000 0.000000 + Av 2018 5 4 1 0 0.1935286 0.000000 7.5729808E-06 1.8995898E-03 0.000000 0.000000 0.000000 + Av 2018 5 4 2 0 0.1917623 0.000000 7.4612672E-06 1.8981174E-03 0.000000 0.000000 0.000000 + Av 2018 5 4 3 0 0.1921614 0.000000 7.3512015E-06 1.8966461E-03 0.000000 0.000000 0.000000 + Av 2018 5 4 4 0 0.1918080 0.000000 7.2427592E-06 1.8951760E-03 0.000000 0.000000 0.000000 Av 2018 5 4 5 0 0.1845796 0.000000 7.1359173E-06 1.7893238E-03 0.000000 0.000000 4.7446901E-04 Av 2018 5 4 6 0 0.1390820 0.000000 7.0306514E-06 1.1930059E-03 0.000000 0.000000 3.1783320E-03 Av 2018 5 4 7 0 7.3498532E-02 0.000000 6.9269386E-06 5.9668929E-04 0.000000 0.000000 5.8821947E-03 @@ -2995,15 +2995,15 @@ Av 2018 5 4 17 0 4.0076725E-02 0.000000 5.9703366E-06 5.8208429E-04 0.000000 0.000000 5.8821947E-03 Av 2018 5 4 18 0 0.1060482 0.000000 5.8822648E-06 1.1754798E-03 0.000000 0.000000 3.1783320E-03 Av 2018 5 4 19 0 0.1637419 0.000000 5.7954921E-06 1.7688766E-03 0.000000 0.000000 4.7446901E-04 - Av 2018 5 4 20 0 0.1911738 0.000000 5.7099992E-06 1.8718077E-03 0.000000 0.000000 0.000000 - Av 2018 5 4 21 0 0.1885560 0.000000 5.6257682E-06 1.8703567E-03 0.000000 0.000000 0.000000 - Av 2018 5 4 22 0 0.1892578 0.000000 5.5427790E-06 1.8689069E-03 0.000000 0.000000 0.000000 - Av 2018 5 4 23 0 0.1888057 0.000000 5.4610146E-06 1.8674582E-03 0.000000 0.000000 0.000000 - Av 2018 5 4 24 0 0.1887551 0.000000 5.3804561E-06 1.8660106E-03 0.000000 0.000000 0.000000 - Av 2018 5 5 1 0 0.1861994 0.000000 5.3010858E-06 1.8297457E-03 0.000000 0.000000 0.000000 - Av 2018 5 5 2 0 0.1845188 0.000000 5.2228866E-06 1.8283539E-03 0.000000 0.000000 0.000000 - Av 2018 5 5 3 0 0.1849035 0.000000 5.1458405E-06 1.8269630E-03 0.000000 0.000000 0.000000 - Av 2018 5 5 4 0 0.1845704 0.000000 5.0699314E-06 1.8255733E-03 0.000000 0.000000 0.000000 + Av 2018 5 4 20 0 0.1911738 0.000000 5.7099992E-06 1.8718077E-03 0.000000 0.000000 0.000000 + Av 2018 5 4 21 0 0.1885560 0.000000 5.6257682E-06 1.8703567E-03 0.000000 0.000000 0.000000 + Av 2018 5 4 22 0 0.1892578 0.000000 5.5427790E-06 1.8689069E-03 0.000000 0.000000 0.000000 + Av 2018 5 4 23 0 0.1888057 0.000000 5.4610146E-06 1.8674582E-03 0.000000 0.000000 0.000000 + Av 2018 5 4 24 0 0.1887551 0.000000 5.3804561E-06 1.8660106E-03 0.000000 0.000000 0.000000 + Av 2018 5 5 1 0 0.1861994 0.000000 5.3010858E-06 1.8297457E-03 0.000000 0.000000 0.000000 + Av 2018 5 5 2 0 0.1845188 0.000000 5.2228866E-06 1.8283539E-03 0.000000 0.000000 0.000000 + Av 2018 5 5 3 0 0.1849035 0.000000 5.1458405E-06 1.8269630E-03 0.000000 0.000000 0.000000 + Av 2018 5 5 4 0 0.1845704 0.000000 5.0699314E-06 1.8255733E-03 0.000000 0.000000 0.000000 Av 2018 5 5 5 0 0.1758012 0.000000 4.9951418E-06 1.6971291E-03 0.000000 0.000000 5.7752465E-04 Av 2018 5 5 6 0 0.1260508 0.000000 4.9214555E-06 1.0531530E-03 0.000000 0.000000 3.4983822E-03 Av 2018 5 5 7 0 5.5481732E-02 0.000000 4.8488564E-06 4.0917797E-04 0.000000 0.000000 6.4192396E-03 @@ -3019,15 +3019,15 @@ Av 2018 5 5 17 0 2.7206797E-02 0.000000 4.1792355E-06 3.9537030E-04 0.000000 0.000000 6.4192396E-03 Av 2018 5 5 18 0 8.8174477E-02 0.000000 4.1175854E-06 1.0365838E-03 0.000000 0.000000 3.4983822E-03 Av 2018 5 5 19 0 0.1541048 0.000000 4.0568443E-06 1.6777985E-03 0.000000 0.000000 5.7752465E-04 - Av 2018 5 5 20 0 0.1834532 0.000000 3.9969996E-06 1.8034810E-03 0.000000 0.000000 0.000000 - Av 2018 5 5 21 0 0.1817300 0.000000 3.9380375E-06 1.8021092E-03 0.000000 0.000000 0.000000 - Av 2018 5 5 22 0 0.1821349 0.000000 3.8799453E-06 1.8007384E-03 0.000000 0.000000 0.000000 - Av 2018 5 5 23 0 0.1818001 0.000000 3.8227099E-06 1.7993685E-03 0.000000 0.000000 0.000000 - Av 2018 5 5 24 0 0.1817227 0.000000 3.7663192E-06 1.7979998E-03 0.000000 0.000000 0.000000 - Av 2018 5 6 1 0 0.1793029 0.000000 3.7107600E-06 1.7634697E-03 0.000000 0.000000 0.000000 - Av 2018 5 6 2 0 0.1777012 0.000000 3.6560205E-06 1.7621529E-03 0.000000 0.000000 0.000000 - Av 2018 5 6 3 0 0.1780719 0.000000 3.6020883E-06 1.7608372E-03 0.000000 0.000000 0.000000 - Av 2018 5 6 4 0 0.1777570 0.000000 3.5489518E-06 1.7595226E-03 0.000000 0.000000 0.000000 + Av 2018 5 5 20 0 0.1834532 0.000000 3.9969996E-06 1.8034810E-03 0.000000 0.000000 0.000000 + Av 2018 5 5 21 0 0.1817300 0.000000 3.9380375E-06 1.8021092E-03 0.000000 0.000000 0.000000 + Av 2018 5 5 22 0 0.1821349 0.000000 3.8799453E-06 1.8007384E-03 0.000000 0.000000 0.000000 + Av 2018 5 5 23 0 0.1818001 0.000000 3.8227099E-06 1.7993685E-03 0.000000 0.000000 0.000000 + Av 2018 5 5 24 0 0.1817227 0.000000 3.7663192E-06 1.7979998E-03 0.000000 0.000000 0.000000 + Av 2018 5 6 1 0 0.1793029 0.000000 3.7107600E-06 1.7634697E-03 0.000000 0.000000 0.000000 + Av 2018 5 6 2 0 0.1777012 0.000000 3.6560205E-06 1.7621529E-03 0.000000 0.000000 0.000000 + Av 2018 5 6 3 0 0.1780719 0.000000 3.6020883E-06 1.7608372E-03 0.000000 0.000000 0.000000 + Av 2018 5 6 4 0 0.1777570 0.000000 3.5489518E-06 1.7595226E-03 0.000000 0.000000 0.000000 Av 2018 5 6 5 0 0.1683363 0.000000 3.4965992E-06 1.6215082E-03 0.000000 0.000000 6.2136672E-04 Av 2018 5 6 6 0 0.1195650 0.000000 3.4450188E-06 9.9794869E-04 0.000000 0.000000 3.4497620E-03 Av 2018 5 6 7 0 5.1456038E-02 0.000000 3.3941994E-06 3.7438993E-04 0.000000 0.000000 6.2781572E-03 @@ -3043,15 +3043,15 @@ Av 2018 5 6 17 0 2.4771504E-02 0.000000 2.9254647E-06 3.6132627E-04 0.000000 0.000000 6.2781572E-03 Av 2018 5 6 18 0 8.2861729E-02 0.000000 2.8823097E-06 9.8227221E-04 0.000000 0.000000 3.4497620E-03 Av 2018 5 6 19 0 0.1470360 0.000000 2.8397910E-06 1.6032191E-03 0.000000 0.000000 6.2136672E-04 - Av 2018 5 6 20 0 0.1762707 0.000000 2.7978997E-06 1.7386207E-03 0.000000 0.000000 0.000000 - Av 2018 5 6 21 0 0.1752570 0.000000 2.7566261E-06 1.7373227E-03 0.000000 0.000000 0.000000 - Av 2018 5 6 22 0 0.1754276 0.000000 2.7159617E-06 1.7360254E-03 0.000000 0.000000 0.000000 - Av 2018 5 6 23 0 0.1751866 0.000000 2.6758971E-06 1.7347294E-03 0.000000 0.000000 0.000000 - Av 2018 5 6 24 0 0.1750889 0.000000 2.6364235E-06 1.7334342E-03 0.000000 0.000000 0.000000 - Av 2018 5 7 1 0 0.1727948 0.000000 2.5975319E-06 1.7005436E-03 0.000000 0.000000 0.000000 - Av 2018 5 7 2 0 0.1712678 0.000000 2.5592142E-06 1.6992970E-03 0.000000 0.000000 0.000000 - Av 2018 5 7 3 0 0.1716242 0.000000 2.5214617E-06 1.6980515E-03 0.000000 0.000000 0.000000 - Av 2018 5 7 4 0 0.1713260 0.000000 2.4842661E-06 1.6968069E-03 0.000000 0.000000 0.000000 + Av 2018 5 6 20 0 0.1762707 0.000000 2.7978997E-06 1.7386207E-03 0.000000 0.000000 0.000000 + Av 2018 5 6 21 0 0.1752570 0.000000 2.7566261E-06 1.7373227E-03 0.000000 0.000000 0.000000 + Av 2018 5 6 22 0 0.1754276 0.000000 2.7159617E-06 1.7360254E-03 0.000000 0.000000 0.000000 + Av 2018 5 6 23 0 0.1751866 0.000000 2.6758971E-06 1.7347294E-03 0.000000 0.000000 0.000000 + Av 2018 5 6 24 0 0.1750889 0.000000 2.6364235E-06 1.7334342E-03 0.000000 0.000000 0.000000 + Av 2018 5 7 1 0 0.1727948 0.000000 2.5975319E-06 1.7005436E-03 0.000000 0.000000 0.000000 + Av 2018 5 7 2 0 0.1712678 0.000000 2.5592142E-06 1.6992970E-03 0.000000 0.000000 0.000000 + Av 2018 5 7 3 0 0.1716242 0.000000 2.5214617E-06 1.6980515E-03 0.000000 0.000000 0.000000 + Av 2018 5 7 4 0 0.1713260 0.000000 2.4842661E-06 1.6968069E-03 0.000000 0.000000 0.000000 Av 2018 5 7 5 0 0.1607025 0.000000 2.4476194E-06 1.5411632E-03 0.000000 0.000000 7.0181757E-04 Av 2018 5 7 6 0 0.1099674 0.000000 2.4115134E-06 9.0021751E-04 0.000000 0.000000 3.6095574E-03 Av 2018 5 7 7 0 4.0198863E-02 0.000000 2.3759396E-06 2.5927287E-04 0.000000 0.000000 6.5172971E-03 @@ -3067,15 +3067,15 @@ Av 2018 5 7 17 0 1.6907766E-02 0.000000 2.0478253E-06 2.4690339E-04 0.000000 0.000000 6.5172971E-03 Av 2018 5 7 18 0 7.1140990E-02 0.000000 2.0176167E-06 8.8537420E-04 0.000000 0.000000 3.6095574E-03 Av 2018 5 7 19 0 0.1390358 0.000000 1.9878537E-06 1.5238459E-03 0.000000 0.000000 7.0181757E-04 - Av 2018 5 7 20 0 0.1693547 0.000000 1.9585298E-06 1.6770157E-03 0.000000 0.000000 0.000000 - Av 2018 5 7 21 0 0.1691817 0.000000 1.9296383E-06 1.6757863E-03 0.000000 0.000000 0.000000 - Av 2018 5 7 22 0 0.1690710 0.000000 1.9011732E-06 1.6745579E-03 0.000000 0.000000 0.000000 - Av 2018 5 7 23 0 0.1689388 0.000000 1.8731278E-06 1.6733304E-03 0.000000 0.000000 0.000000 - Av 2018 5 7 24 0 0.1688142 0.000000 1.8454963E-06 1.6721039E-03 0.000000 0.000000 0.000000 - Av 2018 5 8 1 0 0.1666412 0.000000 1.8182722E-06 1.6407646E-03 0.000000 0.000000 0.000000 - Av 2018 5 8 2 0 0.1651835 0.000000 1.7914499E-06 1.6395836E-03 0.000000 0.000000 0.000000 - Av 2018 5 8 3 0 0.1655263 0.000000 1.7650232E-06 1.6384034E-03 0.000000 0.000000 0.000000 - Av 2018 5 8 4 0 0.1652433 0.000000 1.7389863E-06 1.6372241E-03 0.000000 0.000000 0.000000 + Av 2018 5 7 20 0 0.1693547 0.000000 1.9585298E-06 1.6770157E-03 0.000000 0.000000 0.000000 + Av 2018 5 7 21 0 0.1691817 0.000000 1.9296383E-06 1.6757863E-03 0.000000 0.000000 0.000000 + Av 2018 5 7 22 0 0.1690710 0.000000 1.9011732E-06 1.6745579E-03 0.000000 0.000000 0.000000 + Av 2018 5 7 23 0 0.1689388 0.000000 1.8731278E-06 1.6733304E-03 0.000000 0.000000 0.000000 + Av 2018 5 7 24 0 0.1688142 0.000000 1.8454963E-06 1.6721039E-03 0.000000 0.000000 0.000000 + Av 2018 5 8 1 0 0.1666412 0.000000 1.8182722E-06 1.6407646E-03 0.000000 0.000000 0.000000 + Av 2018 5 8 2 0 0.1651835 0.000000 1.7914499E-06 1.6395836E-03 0.000000 0.000000 0.000000 + Av 2018 5 8 3 0 0.1655263 0.000000 1.7650232E-06 1.6384034E-03 0.000000 0.000000 0.000000 + Av 2018 5 8 4 0 0.1652433 0.000000 1.7389863E-06 1.6372241E-03 0.000000 0.000000 0.000000 Av 2018 5 8 5 0 0.1524437 0.000000 1.7133335E-06 1.4497152E-03 0.000000 0.000000 8.4695622E-04 Av 2018 5 8 6 0 9.5557980E-02 0.000000 1.6880591E-06 7.3933974E-04 0.000000 0.000000 4.0705828E-03 Av 2018 5 8 7 0 2.5748558E-02 0.000000 1.6631576E-06 2.8965296E-05 0.000000 0.000000 7.2942087E-03 @@ -3091,15 +3091,15 @@ Av 2018 5 8 17 0 1.2818401E-03 0.000000 1.4334778E-06 1.7244136E-05 0.000000 0.000000 7.2942087E-03 Av 2018 5 8 18 0 5.0099518E-02 0.000000 1.4123317E-06 7.2527432E-04 0.000000 0.000000 4.0705828E-03 Av 2018 5 8 19 0 0.1293304 0.000000 1.3914977E-06 1.4333056E-03 0.000000 0.000000 8.4695622E-04 - Av 2018 5 8 20 0 0.1625122 0.000000 1.3709708E-06 1.6184702E-03 0.000000 0.000000 0.000000 - Av 2018 5 8 21 0 0.1644032 0.000000 1.3507469E-06 1.6173052E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 5 8 22 0 0.1635847 0.000000 1.3308213E-06 1.6161412E-03 0.000000 0.000000 0.000000 - Av 2018 5 8 23 0 0.1637042 0.000000 1.3111895E-06 1.6149778E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 5 8 24 0 0.1643764 0.000000 1.2918474E-06 1.6138153E-03 0.000000 9.9999802E-03 0.000000 - Av 2018 5 9 1 0 0.1611630 0.000000 1.2727907E-06 1.5839438E-03 0.000000 0.000000 0.000000 - Av 2018 5 9 2 0 0.1592976 0.000000 1.2540149E-06 1.5828239E-03 0.000000 0.000000 0.000000 - Av 2018 5 9 3 0 0.1597916 0.000000 1.2355163E-06 1.5817048E-03 0.000000 0.000000 0.000000 - Av 2018 5 9 4 0 0.1594653 0.000000 1.2172906E-06 1.5805867E-03 0.000000 0.000000 0.000000 + Av 2018 5 8 20 0 0.1625122 0.000000 1.3709708E-06 1.6184702E-03 0.000000 0.000000 0.000000 + Av 2018 5 8 21 0 0.1644032 0.000000 1.3507469E-06 1.6173052E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 5 8 22 0 0.1635847 0.000000 1.3308213E-06 1.6161412E-03 0.000000 0.000000 0.000000 + Av 2018 5 8 23 0 0.1637042 0.000000 1.3111895E-06 1.6149778E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 5 8 24 0 0.1643764 0.000000 1.2918474E-06 1.6138153E-03 0.000000 9.9999802E-03 0.000000 + Av 2018 5 9 1 0 0.1611630 0.000000 1.2727907E-06 1.5839438E-03 0.000000 0.000000 0.000000 + Av 2018 5 9 2 0 0.1592976 0.000000 1.2540149E-06 1.5828239E-03 0.000000 0.000000 0.000000 + Av 2018 5 9 3 0 0.1597916 0.000000 1.2355163E-06 1.5817048E-03 0.000000 0.000000 0.000000 + Av 2018 5 9 4 0 0.1594653 0.000000 1.2172906E-06 1.5805867E-03 0.000000 0.000000 0.000000 Av 2018 5 9 5 0 0.1474981 0.000000 1.1993336E-06 1.4049429E-03 0.000000 0.000000 7.9330144E-04 Av 2018 5 9 6 0 9.7579338E-02 0.000000 1.1816416E-06 7.8885368E-04 0.000000 0.000000 3.5886313E-03 Av 2018 5 9 7 0 3.0947760E-02 0.000000 1.1642104E-06 1.7276523E-04 0.000000 0.000000 6.3839611E-03 @@ -3115,15 +3115,15 @@ Av 2018 5 9 17 0 1.1051370E-02 0.000000 1.0034342E-06 1.6165001E-04 0.000000 0.000000 6.3839611E-03 Av 2018 5 9 18 0 5.9851252E-02 0.000000 9.8863200E-07 7.7551539E-04 0.000000 0.000000 3.5886313E-03 Av 2018 5 9 19 0 0.1262452 0.000000 9.7404813E-07 1.3893815E-03 0.000000 0.000000 7.9330144E-04 - Av 2018 5 9 20 0 0.1567656 0.000000 9.5967937E-07 1.5628021E-03 0.000000 0.000000 0.000000 - Av 2018 5 9 21 0 0.1579125 0.000000 9.4552263E-07 1.5616972E-03 0.000000 0.000000 0.000000 - Av 2018 5 9 22 0 0.1573617 0.000000 9.3157468E-07 1.5605931E-03 0.000000 0.000000 0.000000 - Av 2018 5 9 23 0 0.1574014 0.000000 9.1783244E-07 1.5594898E-03 0.000000 0.000000 0.000000 - Av 2018 5 9 24 0 0.1572358 0.000000 9.0429296E-07 1.5583872E-03 0.000000 0.000000 0.000000 - Av 2018 5 10 1 0 0.1552815 0.000000 8.9095323E-07 1.5299057E-03 0.000000 0.000000 0.000000 - Av 2018 5 10 2 0 0.1539519 0.000000 8.7781029E-07 1.5288431E-03 0.000000 0.000000 0.000000 - Av 2018 5 10 3 0 0.1542681 0.000000 8.6486119E-07 1.5277812E-03 0.000000 0.000000 0.000000 - Av 2018 5 10 4 0 0.1540121 0.000000 8.5210314E-07 1.5267201E-03 0.000000 0.000000 0.000000 + Av 2018 5 9 20 0 0.1567656 0.000000 9.5967937E-07 1.5628021E-03 0.000000 0.000000 0.000000 + Av 2018 5 9 21 0 0.1579125 0.000000 9.4552263E-07 1.5616972E-03 0.000000 0.000000 0.000000 + Av 2018 5 9 22 0 0.1573617 0.000000 9.3157468E-07 1.5605931E-03 0.000000 0.000000 0.000000 + Av 2018 5 9 23 0 0.1574014 0.000000 9.1783244E-07 1.5594898E-03 0.000000 0.000000 0.000000 + Av 2018 5 9 24 0 0.1572358 0.000000 9.0429296E-07 1.5583872E-03 0.000000 0.000000 0.000000 + Av 2018 5 10 1 0 0.1552815 0.000000 8.9095323E-07 1.5299057E-03 0.000000 0.000000 0.000000 + Av 2018 5 10 2 0 0.1539519 0.000000 8.7781029E-07 1.5288431E-03 0.000000 0.000000 0.000000 + Av 2018 5 10 3 0 0.1542681 0.000000 8.6486119E-07 1.5277812E-03 0.000000 0.000000 0.000000 + Av 2018 5 10 4 0 0.1540121 0.000000 8.5210314E-07 1.5267201E-03 0.000000 0.000000 0.000000 Av 2018 5 10 5 0 0.1448332 0.000000 8.3953330E-07 1.3798177E-03 0.000000 9.9999802E-03 6.6291797E-04 Av 2018 5 10 6 0 0.1059979 0.000000 8.2714888E-07 8.9985901E-04 0.000000 9.9999802E-03 2.8397322E-03 Av 2018 5 10 7 0 5.3193837E-02 0.000000 8.1494710E-07 4.1990075E-04 0.000000 0.000000 5.0165467E-03 @@ -3139,15 +3139,15 @@ Av 2018 5 10 17 0 2.7858060E-02 0.000000 7.0240395E-07 4.0935213E-04 0.000000 0.000000 5.0165467E-03 Av 2018 5 10 18 0 7.8323200E-02 0.000000 6.9204236E-07 8.8720047E-04 0.000000 0.000000 2.8397322E-03 Av 2018 5 10 19 0 0.1256979 0.000000 6.8183368E-07 1.3650494E-03 0.000000 0.000000 6.6291797E-04 - Av 2018 5 10 20 0 0.1516728 0.000000 6.7177558E-07 1.5098420E-03 0.000000 0.000000 0.000000 - Av 2018 5 10 21 0 0.1524516 0.000000 6.6186584E-07 1.5087932E-03 0.000000 0.000000 0.000000 - Av 2018 5 10 22 0 0.1520370 0.000000 6.5210230E-07 1.5077454E-03 0.000000 0.000000 0.000000 - Av 2018 5 10 23 0 0.1520375 0.000000 6.4248275E-07 1.5066982E-03 0.000000 0.000000 0.000000 - Av 2018 5 10 24 0 0.1518938 0.000000 6.3300513E-07 1.5056516E-03 0.000000 0.000000 0.000000 - Av 2018 5 11 1 0 0.1500257 0.000000 6.2366729E-07 1.4784866E-03 0.000000 0.000000 0.000000 - Av 2018 5 11 2 0 0.1487597 0.000000 6.1446724E-07 1.4774776E-03 0.000000 0.000000 0.000000 - Av 2018 5 11 3 0 0.1490616 0.000000 6.0540293E-07 1.4764692E-03 0.000000 0.000000 0.000000 - Av 2018 5 11 4 0 0.1488184 0.000000 5.9647226E-07 1.4754615E-03 0.000000 0.000000 0.000000 + Av 2018 5 10 20 0 0.1516728 0.000000 6.7177558E-07 1.5098420E-03 0.000000 0.000000 0.000000 + Av 2018 5 10 21 0 0.1524516 0.000000 6.6186584E-07 1.5087932E-03 0.000000 0.000000 0.000000 + Av 2018 5 10 22 0 0.1520370 0.000000 6.5210230E-07 1.5077454E-03 0.000000 0.000000 0.000000 + Av 2018 5 10 23 0 0.1520375 0.000000 6.4248275E-07 1.5066982E-03 0.000000 0.000000 0.000000 + Av 2018 5 10 24 0 0.1518938 0.000000 6.3300513E-07 1.5056516E-03 0.000000 0.000000 0.000000 + Av 2018 5 11 1 0 0.1500257 0.000000 6.2366729E-07 1.4784866E-03 0.000000 0.000000 0.000000 + Av 2018 5 11 2 0 0.1487597 0.000000 6.1446724E-07 1.4774776E-03 0.000000 0.000000 0.000000 + Av 2018 5 11 3 0 0.1490616 0.000000 6.0540293E-07 1.4764692E-03 0.000000 0.000000 0.000000 + Av 2018 5 11 4 0 0.1488184 0.000000 5.9647226E-07 1.4754615E-03 0.000000 0.000000 0.000000 Av 2018 5 11 5 0 0.1376735 0.000000 5.8767336E-07 1.3121117E-03 0.000000 0.000000 7.3792151E-04 Av 2018 5 11 6 0 9.6205622E-02 0.000000 5.7900428E-07 8.1150571E-04 0.000000 0.000000 3.0088292E-03 Av 2018 5 11 7 0 4.2366497E-02 0.000000 5.7046310E-07 3.1090039E-04 0.000000 0.000000 5.2797371E-03 @@ -3163,15 +3163,15 @@ Av 2018 5 11 17 0 2.0476611E-02 0.000000 4.9168278E-07 3.0088192E-04 0.000000 0.000000 5.2797371E-03 Av 2018 5 11 18 0 6.7578800E-02 0.000000 4.8442968E-07 7.9948350E-04 0.000000 0.000000 3.0088292E-03 Av 2018 5 11 19 0 0.1189056 0.000000 4.7728361E-07 1.2980858E-03 0.000000 0.000000 7.3792151E-04 - Av 2018 5 11 20 0 0.1460287 0.000000 4.7024290E-07 1.4594318E-03 0.000000 0.000000 0.000000 - Av 2018 5 11 21 0 0.1475403 0.000000 4.6330609E-07 1.4584358E-03 0.000000 0.000000 0.000000 - Av 2018 5 11 22 0 0.1468785 0.000000 4.5647158E-07 1.4574404E-03 0.000000 0.000000 0.000000 - Av 2018 5 11 23 0 0.1469725 0.000000 4.4973791E-07 1.4564458E-03 0.000000 0.000000 0.000000 - Av 2018 5 11 24 0 0.1468038 0.000000 4.4310357E-07 1.4554517E-03 0.000000 0.000000 0.000000 - Av 2018 5 12 1 0 0.1450331 0.000000 4.3656709E-07 1.4295343E-03 0.000000 0.000000 0.000000 - Av 2018 5 12 2 0 0.1438218 0.000000 4.3012705E-07 1.4285754E-03 0.000000 0.000000 0.000000 - Av 2018 5 12 3 0 0.1441118 0.000000 4.2378198E-07 1.4276170E-03 0.000000 0.000000 0.000000 - Av 2018 5 12 4 0 0.1438800 0.000000 4.1753052E-07 1.4266594E-03 0.000000 0.000000 0.000000 + Av 2018 5 11 20 0 0.1460287 0.000000 4.7024290E-07 1.4594318E-03 0.000000 0.000000 0.000000 + Av 2018 5 11 21 0 0.1475403 0.000000 4.6330609E-07 1.4584358E-03 0.000000 0.000000 0.000000 + Av 2018 5 11 22 0 0.1468785 0.000000 4.5647158E-07 1.4574404E-03 0.000000 0.000000 0.000000 + Av 2018 5 11 23 0 0.1469725 0.000000 4.4973791E-07 1.4564458E-03 0.000000 0.000000 0.000000 + Av 2018 5 11 24 0 0.1468038 0.000000 4.4310357E-07 1.4554517E-03 0.000000 0.000000 0.000000 + Av 2018 5 12 1 0 0.1450331 0.000000 4.3656709E-07 1.4295343E-03 0.000000 0.000000 0.000000 + Av 2018 5 12 2 0 0.1438218 0.000000 4.3012705E-07 1.4285754E-03 0.000000 0.000000 0.000000 + Av 2018 5 12 3 0 0.1441118 0.000000 4.2378198E-07 1.4276170E-03 0.000000 0.000000 0.000000 + Av 2018 5 12 4 0 0.1438800 0.000000 4.1753052E-07 1.4266594E-03 0.000000 0.000000 0.000000 Av 2018 5 12 5 0 0.1291680 0.000000 4.1137127E-07 1.2110828E-03 0.000000 0.000000 9.7554334E-04 Av 2018 5 12 6 0 7.7028736E-02 0.000000 4.0530290E-07 5.8806688E-04 0.000000 0.000000 3.8030869E-03 Av 2018 5 12 7 0 1.9812338E-02 0.000000 3.9932405E-07 0.000000 0.000000 0.000000 6.6306307E-03 @@ -3187,15 +3187,15 @@ Av 2018 5 12 17 0 2.3735047E-05 0.000000 3.4417789E-07 0.000000 0.000000 0.000000 6.6306307E-03 Av 2018 5 12 18 0 3.9202437E-02 0.000000 3.3910072E-07 5.7664013E-04 0.000000 0.000000 3.8030869E-03 Av 2018 5 12 19 0 0.1069158 0.000000 3.3409842E-07 1.1977516E-03 0.000000 0.000000 9.7554334E-04 - Av 2018 5 12 20 0 0.1400893 0.000000 3.2916995E-07 1.4114237E-03 0.000000 0.000000 0.000000 - Av 2018 5 12 21 0 0.1430661 0.000000 3.2431416E-07 1.4104769E-03 0.000000 0.000000 0.000000 - Av 2018 5 12 22 0 0.1419018 0.000000 3.1953002E-07 1.4095308E-03 0.000000 0.000000 0.000000 - Av 2018 5 12 23 0 0.1421774 0.000000 3.1481645E-07 1.4085852E-03 0.000000 0.000000 0.000000 - Av 2018 5 12 24 0 0.1419525 0.000000 3.1017242E-07 1.4076404E-03 0.000000 0.000000 0.000000 - Av 2018 5 13 1 0 0.1402853 0.000000 3.0559690E-07 1.3829061E-03 0.000000 0.000000 0.000000 - Av 2018 5 13 2 0 0.1391219 0.000000 3.0108885E-07 1.3819942E-03 0.000000 0.000000 0.000000 - Av 2018 5 13 3 0 0.1394020 0.000000 2.9664733E-07 1.3810828E-03 0.000000 0.000000 0.000000 - Av 2018 5 13 4 0 0.1391603 0.000000 0.000000 1.3801720E-03 0.000000 0.000000 0.000000 + Av 2018 5 12 20 0 0.1400893 0.000000 3.2916995E-07 1.4114237E-03 0.000000 0.000000 0.000000 + Av 2018 5 12 21 0 0.1430661 0.000000 3.2431416E-07 1.4104769E-03 0.000000 0.000000 0.000000 + Av 2018 5 12 22 0 0.1419018 0.000000 3.1953002E-07 1.4095308E-03 0.000000 0.000000 0.000000 + Av 2018 5 12 23 0 0.1421774 0.000000 3.1481645E-07 1.4085852E-03 0.000000 0.000000 0.000000 + Av 2018 5 12 24 0 0.1419525 0.000000 3.1017242E-07 1.4076404E-03 0.000000 0.000000 0.000000 + Av 2018 5 13 1 0 0.1402853 0.000000 3.0559690E-07 1.3829061E-03 0.000000 0.000000 0.000000 + Av 2018 5 13 2 0 0.1391219 0.000000 3.0108885E-07 1.3819942E-03 0.000000 0.000000 0.000000 + Av 2018 5 13 3 0 0.1394020 0.000000 2.9664733E-07 1.3810828E-03 0.000000 0.000000 0.000000 + Av 2018 5 13 4 0 0.1391603 0.000000 0.000000 1.3801720E-03 0.000000 0.000000 0.000000 Av 2018 5 13 5 0 0.1191772 0.000000 0.000000 1.0875959E-03 0.000000 0.000000 1.3257539E-03 Av 2018 5 13 6 0 5.1516153E-02 0.000000 0.000000 2.8701487E-04 0.000000 0.000000 4.9606240E-03 Av 2018 5 13 7 0 1.9206273E-03 0.000000 0.000000 0.000000 0.000000 0.000000 8.5954946E-03 @@ -3211,15 +3211,15 @@ Av 2018 5 13 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.5954946E-03 Av 2018 5 13 18 0 1.8762602E-02 0.000000 0.000000 2.7614692E-04 0.000000 0.000000 4.9606240E-03 Av 2018 5 13 19 0 8.5217729E-02 0.000000 0.000000 1.0749165E-03 0.000000 0.000000 1.3257539E-03 - Av 2018 5 13 20 0 0.1361383 0.000000 0.000000 1.3656812E-03 0.000000 0.000000 0.000000 - Av 2018 5 13 21 0 0.1381827 0.000000 0.000000 1.3647806E-03 0.000000 0.000000 0.000000 - Av 2018 5 13 22 0 0.1373495 0.000000 0.000000 1.3638806E-03 0.000000 0.000000 0.000000 - Av 2018 5 13 23 0 0.1375170 0.000000 0.000000 1.3629812E-03 0.000000 0.000000 0.000000 - Av 2018 5 13 24 0 0.1373366 0.000000 0.000000 1.3620822E-03 0.000000 0.000000 0.000000 - Av 2018 5 14 1 0 0.1357339 0.000000 0.000000 1.3384703E-03 0.000000 0.000000 0.000000 - Av 2018 5 14 2 0 0.1346279 0.000000 0.000000 1.3376023E-03 0.000000 0.000000 0.000000 - Av 2018 5 14 3 0 0.1348946 0.000000 0.000000 1.3367350E-03 0.000000 0.000000 0.000000 - Av 2018 5 14 4 0 0.1346840 0.000000 0.000000 1.3358680E-03 0.000000 0.000000 0.000000 + Av 2018 5 13 20 0 0.1361383 0.000000 0.000000 1.3656812E-03 0.000000 0.000000 0.000000 + Av 2018 5 13 21 0 0.1381827 0.000000 0.000000 1.3647806E-03 0.000000 0.000000 0.000000 + Av 2018 5 13 22 0 0.1373495 0.000000 0.000000 1.3638806E-03 0.000000 0.000000 0.000000 + Av 2018 5 13 23 0 0.1375170 0.000000 0.000000 1.3629812E-03 0.000000 0.000000 0.000000 + Av 2018 5 13 24 0 0.1373366 0.000000 0.000000 1.3620822E-03 0.000000 0.000000 0.000000 + Av 2018 5 14 1 0 0.1357339 0.000000 0.000000 1.3384703E-03 0.000000 0.000000 0.000000 + Av 2018 5 14 2 0 0.1346279 0.000000 0.000000 1.3376023E-03 0.000000 0.000000 0.000000 + Av 2018 5 14 3 0 0.1348946 0.000000 0.000000 1.3367350E-03 0.000000 0.000000 0.000000 + Av 2018 5 14 4 0 0.1346840 0.000000 0.000000 1.3358680E-03 0.000000 0.000000 0.000000 Av 2018 5 14 5 0 0.1131297 0.000000 0.000000 1.0200831E-03 0.000000 0.000000 1.4314491E-03 Av 2018 5 14 6 0 4.5776732E-02 0.000000 0.000000 1.9930501E-04 0.000000 0.000000 5.1583238E-03 Av 2018 5 14 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.8851983E-03 @@ -3235,15 +3235,15 @@ Av 2018 5 14 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.8851983E-03 Av 2018 5 14 18 0 1.2838774E-02 0.000000 0.000000 1.8896034E-04 0.000000 0.000000 5.1583238E-03 Av 2018 5 14 19 0 7.6813608E-02 0.000000 0.000000 1.0080144E-03 0.000000 0.000000 1.4314491E-03 - Av 2018 5 14 20 0 0.1315577 0.000000 0.000000 1.3220754E-03 0.000000 0.000000 0.000000 - Av 2018 5 14 21 0 0.1338529 0.000000 0.000000 1.3212181E-03 0.000000 0.000000 0.000000 - Av 2018 5 14 22 0 0.1329384 0.000000 0.000000 1.3203613E-03 0.000000 0.000000 0.000000 - Av 2018 5 14 23 0 0.1331400 0.000000 0.000000 1.3195050E-03 0.000000 0.000000 0.000000 - Av 2018 5 14 24 0 0.1329536 0.000000 0.000000 1.3186495E-03 0.000000 0.000000 0.000000 - Av 2018 5 15 1 0 0.1314283 0.000000 0.000000 1.2961023E-03 0.000000 0.000000 0.000000 - Av 2018 5 15 2 0 0.1303705 0.000000 0.000000 1.2952758E-03 0.000000 0.000000 0.000000 - Av 2018 5 15 3 0 0.1306260 0.000000 0.000000 1.2944497E-03 0.000000 0.000000 0.000000 - Av 2018 5 15 4 0 0.1304250 0.000000 0.000000 1.2936241E-03 0.000000 0.000000 0.000000 + Av 2018 5 14 20 0 0.1315577 0.000000 0.000000 1.3220754E-03 0.000000 0.000000 0.000000 + Av 2018 5 14 21 0 0.1338529 0.000000 0.000000 1.3212181E-03 0.000000 0.000000 0.000000 + Av 2018 5 14 22 0 0.1329384 0.000000 0.000000 1.3203613E-03 0.000000 0.000000 0.000000 + Av 2018 5 14 23 0 0.1331400 0.000000 0.000000 1.3195050E-03 0.000000 0.000000 0.000000 + Av 2018 5 14 24 0 0.1329536 0.000000 0.000000 1.3186495E-03 0.000000 0.000000 0.000000 + Av 2018 5 15 1 0 0.1314283 0.000000 0.000000 1.2961023E-03 0.000000 0.000000 0.000000 + Av 2018 5 15 2 0 0.1303705 0.000000 0.000000 1.2952758E-03 0.000000 0.000000 0.000000 + Av 2018 5 15 3 0 0.1306260 0.000000 0.000000 1.2944497E-03 0.000000 0.000000 0.000000 + Av 2018 5 15 4 0 0.1304250 0.000000 0.000000 1.2936241E-03 0.000000 0.000000 0.000000 Av 2018 5 15 5 0 0.1100837 0.000000 0.000000 9.9558197E-04 0.000000 0.000000 1.3509863E-03 Av 2018 5 15 6 0 4.6447098E-02 0.000000 0.000000 2.5737972E-04 0.000000 0.000000 4.7027040E-03 Av 2018 5 15 7 0 1.5864492E-03 0.000000 0.000000 0.000000 0.000000 0.000000 8.0544222E-03 @@ -3259,15 +3259,15 @@ Av 2018 5 15 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.0544222E-03 Av 2018 5 15 18 0 1.6818013E-02 0.000000 0.000000 2.4752656E-04 0.000000 0.000000 4.7027040E-03 Av 2018 5 15 19 0 7.7779800E-02 0.000000 0.000000 9.8408666E-04 0.000000 0.000000 1.3509863E-03 - Av 2018 5 15 20 0 0.1267666 0.000000 0.000000 1.2804865E-03 0.000000 0.000000 0.000000 - Av 2018 5 15 21 0 0.1298701 0.000000 0.000000 1.2796697E-03 0.000000 0.000000 0.000000 - Av 2018 5 15 22 0 0.1286800 0.000000 0.000000 1.2788536E-03 0.000000 0.000000 0.000000 - Av 2018 5 15 23 0 0.1289830 0.000000 0.000000 1.2780380E-03 0.000000 0.000000 0.000000 - Av 2018 5 15 24 0 0.1287668 0.000000 0.000000 1.2772230E-03 0.000000 0.000000 0.000000 - Av 2018 5 16 1 0 0.1273234 0.000000 0.000000 1.2556869E-03 0.000000 0.000000 0.000000 - Av 2018 5 16 2 0 0.1263085 0.000000 0.000000 1.2548990E-03 0.000000 0.000000 0.000000 - Av 2018 5 16 3 0 0.1265543 0.000000 0.000000 1.2541115E-03 0.000000 0.000000 0.000000 - Av 2018 5 16 4 0 0.1263619 0.000000 0.000000 1.2533247E-03 0.000000 0.000000 0.000000 + Av 2018 5 15 20 0 0.1267666 0.000000 0.000000 1.2804865E-03 0.000000 0.000000 0.000000 + Av 2018 5 15 21 0 0.1298701 0.000000 0.000000 1.2796697E-03 0.000000 0.000000 0.000000 + Av 2018 5 15 22 0 0.1286800 0.000000 0.000000 1.2788536E-03 0.000000 0.000000 0.000000 + Av 2018 5 15 23 0 0.1289830 0.000000 0.000000 1.2780380E-03 0.000000 0.000000 0.000000 + Av 2018 5 15 24 0 0.1287668 0.000000 0.000000 1.2772230E-03 0.000000 0.000000 0.000000 + Av 2018 5 16 1 0 0.1273234 0.000000 0.000000 1.2556869E-03 0.000000 0.000000 0.000000 + Av 2018 5 16 2 0 0.1263085 0.000000 0.000000 1.2548990E-03 0.000000 0.000000 0.000000 + Av 2018 5 16 3 0 0.1265543 0.000000 0.000000 1.2541115E-03 0.000000 0.000000 0.000000 + Av 2018 5 16 4 0 0.1263619 0.000000 0.000000 1.2533247E-03 0.000000 0.000000 0.000000 Av 2018 5 16 5 0 0.1084786 0.000000 0.000000 9.9125702E-04 0.000000 0.000000 1.1876422E-03 Av 2018 5 16 6 0 5.4478440E-02 0.000000 0.000000 3.7084409E-04 0.000000 0.000000 4.0041292E-03 Av 2018 5 16 7 0 9.1910465E-03 0.000000 0.000000 0.000000 0.000000 0.000000 6.8206163E-03 @@ -3283,15 +3283,15 @@ Av 2018 5 16 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8206163E-03 Av 2018 5 16 18 0 2.4558598E-02 0.000000 0.000000 3.6145205E-04 0.000000 0.000000 4.0041292E-03 Av 2018 5 16 19 0 8.2568489E-02 0.000000 0.000000 9.8029966E-04 0.000000 0.000000 1.1876422E-03 - Av 2018 5 16 20 0 0.1221447 0.000000 0.000000 1.2408019E-03 0.000000 0.000000 0.000000 - Av 2018 5 16 21 0 0.1260871 0.000000 0.000000 1.2400234E-03 0.000000 0.000000 0.000000 - Av 2018 5 16 22 0 0.1246105 0.000000 0.000000 1.2392454E-03 0.000000 0.000000 0.000000 - Av 2018 5 16 23 0 0.1250182 0.000000 0.000000 1.2384678E-03 0.000000 0.000000 0.000000 - Av 2018 5 16 24 0 0.1247708 0.000000 0.000000 1.2376908E-03 0.000000 0.000000 0.000000 - Av 2018 5 17 1 0 0.1234061 0.000000 0.000000 1.2171147E-03 0.000000 0.000000 0.000000 - Av 2018 5 17 2 0 0.1224315 0.000000 0.000000 1.2163633E-03 0.000000 0.000000 0.000000 - Av 2018 5 17 3 0 0.1226683 0.000000 0.000000 1.2156123E-03 0.000000 0.000000 0.000000 - Av 2018 5 17 4 0 0.1224839 0.000000 0.000000 1.2148618E-03 0.000000 0.000000 0.000000 + Av 2018 5 16 20 0 0.1221447 0.000000 0.000000 1.2408019E-03 0.000000 0.000000 0.000000 + Av 2018 5 16 21 0 0.1260871 0.000000 0.000000 1.2400234E-03 0.000000 0.000000 0.000000 + Av 2018 5 16 22 0 0.1246105 0.000000 0.000000 1.2392454E-03 0.000000 0.000000 0.000000 + Av 2018 5 16 23 0 0.1250182 0.000000 0.000000 1.2384678E-03 0.000000 0.000000 0.000000 + Av 2018 5 16 24 0 0.1247708 0.000000 0.000000 1.2376908E-03 0.000000 0.000000 0.000000 + Av 2018 5 17 1 0 0.1234061 0.000000 0.000000 1.2171147E-03 0.000000 0.000000 0.000000 + Av 2018 5 17 2 0 0.1224315 0.000000 0.000000 1.2163633E-03 0.000000 0.000000 0.000000 + Av 2018 5 17 3 0 0.1226683 0.000000 0.000000 1.2156123E-03 0.000000 0.000000 0.000000 + Av 2018 5 17 4 0 0.1224839 0.000000 0.000000 1.2148618E-03 0.000000 0.000000 0.000000 Av 2018 5 17 5 0 0.1023905 0.000000 0.000000 9.2041155E-04 0.000000 0.000000 1.3350011E-03 Av 2018 5 17 6 0 4.3686010E-02 0.000000 0.000000 2.5198632E-04 0.000000 0.000000 4.3698903E-03 Av 2018 5 17 7 0 2.5475491E-03 0.000000 0.000000 0.000000 0.000000 0.000000 7.4047791E-03 @@ -3307,15 +3307,15 @@ Av 2018 5 17 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4047791E-03 Av 2018 5 17 18 0 1.6512325E-02 0.000000 0.000000 2.4302746E-04 0.000000 0.000000 4.3698903E-03 Av 2018 5 17 19 0 7.2544985E-02 0.000000 0.000000 9.0995943E-04 0.000000 0.000000 1.3350011E-03 - Av 2018 5 17 20 0 0.1182809 0.000000 0.000000 1.2029166E-03 0.000000 0.000000 0.000000 - Av 2018 5 17 21 0 0.1222848 0.000000 0.000000 1.2021740E-03 0.000000 0.000000 0.000000 - Av 2018 5 17 22 0 0.1207917 0.000000 0.000000 1.2014317E-03 0.000000 0.000000 0.000000 - Av 2018 5 17 23 0 0.1212101 0.000000 0.000000 1.2006901E-03 0.000000 0.000000 0.000000 - Av 2018 5 17 24 0 0.1209638 0.000000 0.000000 1.1999487E-03 0.000000 0.000000 0.000000 - Av 2018 5 18 1 0 0.1196631 0.000000 0.000000 1.1802850E-03 0.000000 0.000000 0.000000 - Av 2018 5 18 2 0 0.1187306 0.000000 0.000000 1.1795678E-03 0.000000 0.000000 0.000000 - Av 2018 5 18 3 0 0.1189574 0.000000 0.000000 1.1788511E-03 0.000000 0.000000 0.000000 - Av 2018 5 18 4 0 0.1187811 0.000000 0.000000 1.1781347E-03 0.000000 0.000000 0.000000 + Av 2018 5 17 20 0 0.1182809 0.000000 0.000000 1.2029166E-03 0.000000 0.000000 0.000000 + Av 2018 5 17 21 0 0.1222848 0.000000 0.000000 1.2021740E-03 0.000000 0.000000 0.000000 + Av 2018 5 17 22 0 0.1207917 0.000000 0.000000 1.2014317E-03 0.000000 0.000000 0.000000 + Av 2018 5 17 23 0 0.1212101 0.000000 0.000000 1.2006901E-03 0.000000 0.000000 0.000000 + Av 2018 5 17 24 0 0.1209638 0.000000 0.000000 1.1999487E-03 0.000000 0.000000 0.000000 + Av 2018 5 18 1 0 0.1196631 0.000000 0.000000 1.1802850E-03 0.000000 0.000000 0.000000 + Av 2018 5 18 2 0 0.1187306 0.000000 0.000000 1.1795678E-03 0.000000 0.000000 0.000000 + Av 2018 5 18 3 0 0.1189574 0.000000 0.000000 1.1788511E-03 0.000000 0.000000 0.000000 + Av 2018 5 18 4 0 0.1187811 0.000000 0.000000 1.1781347E-03 0.000000 0.000000 0.000000 Av 2018 5 18 5 0 9.8974392E-02 0.000000 0.000000 8.8786858E-04 0.000000 0.000000 1.3161375E-03 Av 2018 5 18 6 0 4.2853761E-02 0.000000 0.000000 2.5452080E-04 0.000000 0.000000 4.1917390E-03 Av 2018 5 18 7 0 3.2796015E-03 0.000000 0.000000 0.000000 0.000000 0.000000 7.0673404E-03 @@ -3331,15 +3331,15 @@ Av 2018 5 18 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.0673404E-03 Av 2018 5 18 18 0 1.6712204E-02 0.000000 0.000000 2.4596928E-04 0.000000 0.000000 4.1917390E-03 Av 2018 5 18 19 0 7.0496984E-02 0.000000 0.000000 8.7789178E-04 0.000000 0.000000 1.3161375E-03 - Av 2018 5 18 20 0 0.1143561 0.000000 0.000000 1.1667327E-03 0.000000 0.000000 0.000000 - Av 2018 5 18 21 0 0.1187348 0.000000 0.000000 1.1660238E-03 0.000000 0.000000 0.000000 - Av 2018 5 18 22 0 0.1171160 0.000000 0.000000 1.1653153E-03 0.000000 0.000000 0.000000 - Av 2018 5 18 23 0 0.1175826 0.000000 0.000000 1.1646072E-03 0.000000 0.000000 0.000000 - Av 2018 5 18 24 0 0.1173242 0.000000 0.000000 1.1638995E-03 0.000000 0.000000 0.000000 - Av 2018 5 19 1 0 0.1160889 0.000000 0.000000 1.1451030E-03 0.000000 0.000000 0.000000 - Av 2018 5 19 2 0 0.1151947 0.000000 0.000000 1.1444180E-03 0.000000 0.000000 0.000000 - Av 2018 5 19 3 0 0.1154126 0.000000 0.000000 1.1437334E-03 0.000000 0.000000 0.000000 - Av 2018 5 19 4 0 0.1152438 0.000000 0.000000 1.1430492E-03 0.000000 0.000000 0.000000 + Av 2018 5 18 20 0 0.1143561 0.000000 0.000000 1.1667327E-03 0.000000 0.000000 0.000000 + Av 2018 5 18 21 0 0.1187348 0.000000 0.000000 1.1660238E-03 0.000000 0.000000 0.000000 + Av 2018 5 18 22 0 0.1171160 0.000000 0.000000 1.1653153E-03 0.000000 0.000000 0.000000 + Av 2018 5 18 23 0 0.1175826 0.000000 0.000000 1.1646072E-03 0.000000 0.000000 0.000000 + Av 2018 5 18 24 0 0.1173242 0.000000 0.000000 1.1638995E-03 0.000000 0.000000 0.000000 + Av 2018 5 19 1 0 0.1160889 0.000000 0.000000 1.1451030E-03 0.000000 0.000000 0.000000 + Av 2018 5 19 2 0 0.1151947 0.000000 0.000000 1.1444180E-03 0.000000 0.000000 0.000000 + Av 2018 5 19 3 0 0.1154126 0.000000 0.000000 1.1437334E-03 0.000000 0.000000 0.000000 + Av 2018 5 19 4 0 0.1152438 0.000000 0.000000 1.1430492E-03 0.000000 0.000000 0.000000 Av 2018 5 19 5 0 9.3325108E-02 0.000000 0.000000 8.2183519E-04 0.000000 0.000000 1.4569560E-03 Av 2018 5 19 6 0 3.5693858E-02 0.000000 0.000000 1.4647085E-04 0.000000 0.000000 4.5236875E-03 Av 2018 5 19 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5904191E-03 @@ -3355,15 +3355,15 @@ Av 2018 5 19 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5904191E-03 Av 2018 5 19 18 0 9.3968594E-03 0.000000 0.000000 1.3830245E-04 0.000000 0.000000 4.5236875E-03 Av 2018 5 19 19 0 6.1277058E-02 0.000000 0.000000 8.1230531E-04 0.000000 0.000000 1.4569560E-03 - Av 2018 5 19 20 0 0.1107647 0.000000 0.000000 1.1321580E-03 0.000000 0.000000 0.000000 - Av 2018 5 19 21 0 0.1152874 0.000000 0.000000 1.1314808E-03 0.000000 0.000000 0.000000 - Av 2018 5 19 22 0 0.1136228 0.000000 0.000000 1.1308038E-03 0.000000 0.000000 0.000000 - Av 2018 5 19 23 0 0.1141097 0.000000 0.000000 1.1301275E-03 0.000000 0.000000 0.000000 - Av 2018 5 19 24 0 0.1138485 0.000000 0.000000 1.1294514E-03 0.000000 0.000000 0.000000 - Av 2018 5 20 1 0 0.1126723 0.000000 0.000000 1.1114792E-03 0.000000 0.000000 0.000000 - Av 2018 5 20 2 0 0.1118157 0.000000 0.000000 1.1108245E-03 0.000000 0.000000 0.000000 - Av 2018 5 20 3 0 0.1120246 0.000000 0.000000 1.1101703E-03 0.000000 0.000000 0.000000 - Av 2018 5 20 4 0 0.1118630 0.000000 0.000000 1.1095162E-03 0.000000 0.000000 0.000000 + Av 2018 5 19 20 0 0.1107647 0.000000 0.000000 1.1321580E-03 0.000000 0.000000 0.000000 + Av 2018 5 19 21 0 0.1152874 0.000000 0.000000 1.1314808E-03 0.000000 0.000000 0.000000 + Av 2018 5 19 22 0 0.1136228 0.000000 0.000000 1.1308038E-03 0.000000 0.000000 0.000000 + Av 2018 5 19 23 0 0.1141097 0.000000 0.000000 1.1301275E-03 0.000000 0.000000 0.000000 + Av 2018 5 19 24 0 0.1138485 0.000000 0.000000 1.1294514E-03 0.000000 0.000000 0.000000 + Av 2018 5 20 1 0 0.1126723 0.000000 0.000000 1.1114792E-03 0.000000 0.000000 0.000000 + Av 2018 5 20 2 0 0.1118157 0.000000 0.000000 1.1108245E-03 0.000000 0.000000 0.000000 + Av 2018 5 20 3 0 0.1120246 0.000000 0.000000 1.1101703E-03 0.000000 0.000000 0.000000 + Av 2018 5 20 4 0 0.1118630 0.000000 0.000000 1.1095162E-03 0.000000 0.000000 0.000000 Av 2018 5 20 5 0 9.1320820E-02 0.000000 0.000000 8.0844812E-04 0.000000 0.000000 1.3655213E-03 Av 2018 5 20 6 0 3.6244437E-02 0.000000 0.000000 1.9726221E-04 0.000000 0.000000 4.1406699E-03 Av 2018 5 20 7 0 8.6413464E-04 0.000000 0.000000 0.000000 0.000000 0.000000 6.9158184E-03 @@ -3379,15 +3379,15 @@ Av 2018 5 20 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.9158184E-03 Av 2018 5 20 18 0 1.2872347E-02 0.000000 0.000000 1.8945447E-04 0.000000 0.000000 4.1406699E-03 Av 2018 5 20 19 0 6.2659442E-02 0.000000 0.000000 7.9933897E-04 0.000000 0.000000 1.3655213E-03 - Av 2018 5 20 20 0 0.1071536 0.000000 0.000000 1.0991059E-03 0.000000 0.000000 0.000000 - Av 2018 5 20 21 0 0.1120536 0.000000 0.000000 1.0984585E-03 0.000000 0.000000 0.000000 - Av 2018 5 20 22 0 0.1102619 0.000000 0.000000 1.0978115E-03 0.000000 0.000000 0.000000 - Av 2018 5 20 23 0 0.1107970 0.000000 0.000000 1.0971648E-03 0.000000 0.000000 0.000000 - Av 2018 5 20 24 0 0.1105231 0.000000 0.000000 1.0965186E-03 0.000000 0.000000 0.000000 - Av 2018 5 21 1 0 0.1094066 0.000000 0.000000 1.0793307E-03 0.000000 0.000000 0.000000 - Av 2018 5 21 2 0 0.1085845 0.000000 0.000000 1.0787045E-03 0.000000 0.000000 0.000000 - Av 2018 5 21 3 0 0.1087853 0.000000 0.000000 1.0780788E-03 0.000000 0.000000 0.000000 - Av 2018 5 21 4 0 0.1086304 0.000000 0.000000 1.0774533E-03 0.000000 0.000000 0.000000 + Av 2018 5 20 20 0 0.1071536 0.000000 0.000000 1.0991059E-03 0.000000 0.000000 0.000000 + Av 2018 5 20 21 0 0.1120536 0.000000 0.000000 1.0984585E-03 0.000000 0.000000 0.000000 + Av 2018 5 20 22 0 0.1102619 0.000000 0.000000 1.0978115E-03 0.000000 0.000000 0.000000 + Av 2018 5 20 23 0 0.1107970 0.000000 0.000000 1.0971648E-03 0.000000 0.000000 0.000000 + Av 2018 5 20 24 0 0.1105231 0.000000 0.000000 1.0965186E-03 0.000000 0.000000 0.000000 + Av 2018 5 21 1 0 0.1094066 0.000000 0.000000 1.0793307E-03 0.000000 0.000000 0.000000 + Av 2018 5 21 2 0 0.1085845 0.000000 0.000000 1.0787045E-03 0.000000 0.000000 0.000000 + Av 2018 5 21 3 0 0.1087853 0.000000 0.000000 1.0780788E-03 0.000000 0.000000 0.000000 + Av 2018 5 21 4 0 0.1086304 0.000000 0.000000 1.0774533E-03 0.000000 0.000000 0.000000 Av 2018 5 21 5 0 8.8478886E-02 0.000000 0.000000 7.8209280E-04 0.000000 0.000000 1.3397066E-03 Av 2018 5 21 6 0 3.5777248E-02 0.000000 0.000000 2.0195130E-04 0.000000 0.000000 3.9738738E-03 Av 2018 5 21 7 0 1.6222781E-03 0.000000 0.000000 0.000000 0.000000 0.000000 6.6080415E-03 @@ -3403,15 +3403,15 @@ Av 2018 5 21 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.6080415E-03 Av 2018 5 21 18 0 1.3214015E-02 0.000000 0.000000 1.9448315E-04 0.000000 0.000000 3.9738738E-03 Av 2018 5 21 19 0 6.1118860E-02 0.000000 0.000000 7.7337993E-04 0.000000 0.000000 1.3397066E-03 - Av 2018 5 21 20 0 0.1037781 0.000000 0.000000 1.0674957E-03 0.000000 0.000000 0.000000 - Av 2018 5 21 21 0 0.1089338 0.000000 0.000000 1.0668763E-03 0.000000 0.000000 0.000000 - Av 2018 5 21 22 0 0.1070570 0.000000 0.000000 1.0662575E-03 0.000000 0.000000 0.000000 - Av 2018 5 21 23 0 0.1076255 0.000000 0.000000 1.0656388E-03 0.000000 0.000000 0.000000 - Av 2018 5 21 24 0 0.1073438 0.000000 0.000000 1.0650207E-03 0.000000 0.000000 0.000000 - Av 2018 5 22 1 0 0.1062826 0.000000 0.000000 1.0485790E-03 0.000000 0.000000 0.000000 - Av 2018 5 22 2 0 0.1054938 0.000000 0.000000 1.0479797E-03 0.000000 0.000000 0.000000 - Av 2018 5 22 3 0 0.1056866 0.000000 0.000000 1.0473807E-03 0.000000 0.000000 0.000000 - Av 2018 5 22 4 0 0.1055382 0.000000 0.000000 1.0467822E-03 0.000000 0.000000 0.000000 + Av 2018 5 21 20 0 0.1037781 0.000000 0.000000 1.0674957E-03 0.000000 0.000000 0.000000 + Av 2018 5 21 21 0 0.1089338 0.000000 0.000000 1.0668763E-03 0.000000 0.000000 0.000000 + Av 2018 5 21 22 0 0.1070570 0.000000 0.000000 1.0662575E-03 0.000000 0.000000 0.000000 + Av 2018 5 21 23 0 0.1076255 0.000000 0.000000 1.0656388E-03 0.000000 0.000000 0.000000 + Av 2018 5 21 24 0 0.1073438 0.000000 0.000000 1.0650207E-03 0.000000 0.000000 0.000000 + Av 2018 5 22 1 0 0.1062826 0.000000 0.000000 1.0485790E-03 0.000000 0.000000 0.000000 + Av 2018 5 22 2 0 0.1054938 0.000000 0.000000 1.0479797E-03 0.000000 0.000000 0.000000 + Av 2018 5 22 3 0 0.1056866 0.000000 0.000000 1.0473807E-03 0.000000 0.000000 0.000000 + Av 2018 5 22 4 0 0.1055382 0.000000 0.000000 1.0467822E-03 0.000000 0.000000 0.000000 Av 2018 5 22 5 0 7.9904661E-02 0.000000 0.000000 6.7109929E-04 0.000000 0.000000 1.7049306E-03 Av 2018 5 22 6 0 2.7127173E-02 0.000000 0.000000 0.000000 0.000000 0.000000 4.9544079E-03 Av 2018 5 22 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2038846E-03 @@ -3427,15 +3427,15 @@ Av 2018 5 22 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2038846E-03 Av 2018 5 22 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9544079E-03 Av 2018 5 22 19 0 4.5030724E-02 0.000000 0.000000 6.6275964E-04 0.000000 0.000000 1.7049306E-03 - Av 2018 5 22 20 0 9.9848419E-02 0.000000 0.000000 1.0372512E-03 0.000000 0.000000 0.000000 - Av 2018 5 22 21 0 0.1061921 0.000000 0.000000 1.0366584E-03 0.000000 0.000000 0.000000 - Av 2018 5 22 22 0 0.1039058 0.000000 0.000000 1.0360660E-03 0.000000 0.000000 0.000000 - Av 2018 5 22 23 0 0.1046203 0.000000 0.000000 1.0354739E-03 0.000000 0.000000 0.000000 - Av 2018 5 22 24 0 0.1042914 0.000000 0.000000 1.0348822E-03 0.000000 0.000000 0.000000 - Av 2018 5 23 1 0 0.1032967 0.000000 0.000000 1.0191507E-03 0.000000 0.000000 0.000000 - Av 2018 5 23 2 0 0.1025347 0.000000 0.000000 1.0185768E-03 0.000000 0.000000 0.000000 - Av 2018 5 23 3 0 0.1027217 0.000000 0.000000 1.0180032E-03 0.000000 0.000000 0.000000 - Av 2018 5 23 4 0 0.1025788 0.000000 0.000000 1.0174299E-03 0.000000 0.000000 0.000000 + Av 2018 5 22 20 0 9.9848419E-02 0.000000 0.000000 1.0372512E-03 0.000000 0.000000 0.000000 + Av 2018 5 22 21 0 0.1061921 0.000000 0.000000 1.0366584E-03 0.000000 0.000000 0.000000 + Av 2018 5 22 22 0 0.1039058 0.000000 0.000000 1.0360660E-03 0.000000 0.000000 0.000000 + Av 2018 5 22 23 0 0.1046203 0.000000 0.000000 1.0354739E-03 0.000000 0.000000 0.000000 + Av 2018 5 22 24 0 0.1042914 0.000000 0.000000 1.0348822E-03 0.000000 0.000000 0.000000 + Av 2018 5 23 1 0 0.1032967 0.000000 0.000000 1.0191507E-03 0.000000 0.000000 0.000000 + Av 2018 5 23 2 0 0.1025347 0.000000 0.000000 1.0185768E-03 0.000000 0.000000 0.000000 + Av 2018 5 23 3 0 0.1027217 0.000000 0.000000 1.0180032E-03 0.000000 0.000000 0.000000 + Av 2018 5 23 4 0 0.1025788 0.000000 0.000000 1.0174299E-03 0.000000 0.000000 0.000000 Av 2018 5 23 5 0 7.5619057E-02 0.000000 0.000000 6.2229612E-04 0.000000 0.000000 1.7934581E-03 Av 2018 5 23 6 0 2.4321431E-02 0.000000 0.000000 0.000000 0.000000 0.000000 5.1127486E-03 Av 2018 5 23 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4320391E-03 @@ -3451,15 +3451,15 @@ Av 2018 5 23 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4320391E-03 Av 2018 5 23 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.1127486E-03 Av 2018 5 23 19 0 4.1738756E-02 0.000000 0.000000 6.1430864E-04 0.000000 0.000000 1.7934581E-03 - Av 2018 5 23 20 0 9.5734105E-02 0.000000 0.000000 1.0083012E-03 0.000000 0.000000 0.000000 - Av 2018 5 23 21 0 0.1036904 0.000000 0.000000 1.0077334E-03 0.000000 0.000000 0.000000 - Av 2018 5 23 22 0 0.1008468 0.000000 0.000000 1.0071659E-03 0.000000 0.000000 0.000000 - Av 2018 5 23 23 0 0.1017585 0.000000 0.000000 1.0065987E-03 0.000000 0.000000 0.000000 - Av 2018 5 23 24 0 0.1013644 0.000000 0.000000 1.0060319E-03 0.000000 0.000000 0.000000 - Av 2018 5 24 1 0 0.1004400 0.000000 0.000000 9.9097670E-04 0.000000 0.000000 0.000000 - Av 2018 5 24 2 0 9.9701144E-02 0.000000 0.000000 9.9042675E-04 0.000000 0.000000 0.000000 - Av 2018 5 24 3 0 9.9883333E-02 0.000000 0.000000 9.8987704E-04 0.000000 0.000000 0.000000 - Av 2018 5 24 4 0 9.9745303E-02 0.000000 0.000000 9.8932756E-04 0.000000 0.000000 0.000000 + Av 2018 5 23 20 0 9.5734105E-02 0.000000 0.000000 1.0083012E-03 0.000000 0.000000 0.000000 + Av 2018 5 23 21 0 0.1036904 0.000000 0.000000 1.0077334E-03 0.000000 0.000000 0.000000 + Av 2018 5 23 22 0 0.1008468 0.000000 0.000000 1.0071659E-03 0.000000 0.000000 0.000000 + Av 2018 5 23 23 0 0.1017585 0.000000 0.000000 1.0065987E-03 0.000000 0.000000 0.000000 + Av 2018 5 23 24 0 0.1013644 0.000000 0.000000 1.0060319E-03 0.000000 0.000000 0.000000 + Av 2018 5 24 1 0 0.1004400 0.000000 0.000000 9.9097670E-04 0.000000 0.000000 0.000000 + Av 2018 5 24 2 0 9.9701144E-02 0.000000 0.000000 9.9042675E-04 0.000000 0.000000 0.000000 + Av 2018 5 24 3 0 9.9883333E-02 0.000000 0.000000 9.8987704E-04 0.000000 0.000000 0.000000 + Av 2018 5 24 4 0 9.9745303E-02 0.000000 0.000000 9.8932756E-04 0.000000 0.000000 0.000000 Av 2018 5 24 5 0 7.2252356E-02 0.000000 0.000000 5.8635749E-04 0.000000 0.000000 1.8291866E-03 Av 2018 5 24 6 0 2.2371529E-02 0.000000 0.000000 0.000000 0.000000 0.000000 5.1221466E-03 Av 2018 5 24 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4151067E-03 @@ -3475,15 +3475,15 @@ Av 2018 5 24 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4151067E-03 Av 2018 5 24 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.1221466E-03 Av 2018 5 24 19 0 3.9319489E-02 0.000000 0.000000 5.7870202E-04 0.000000 0.000000 1.8291866E-03 - Av 2018 5 24 20 0 9.2272446E-02 0.000000 0.000000 9.8057848E-04 0.000000 0.000000 0.000000 - Av 2018 5 24 21 0 0.1011285 0.000000 0.000000 9.8003424E-04 0.000000 0.000000 0.000000 - Av 2018 5 24 22 0 9.7975217E-02 0.000000 0.000000 9.7949035E-04 0.000000 0.000000 0.000000 - Av 2018 5 24 23 0 9.8997727E-02 0.000000 0.000000 9.7894657E-04 0.000000 0.000000 0.000000 - Av 2018 5 24 24 0 9.8568328E-02 0.000000 0.000000 9.7840326E-04 0.000000 0.000000 0.000000 - Av 2018 5 25 1 0 9.7701579E-02 0.000000 0.000000 9.6399232E-04 0.000000 0.000000 0.000000 - Av 2018 5 25 2 0 9.6987970E-02 0.000000 0.000000 9.6346484E-04 0.000000 0.000000 0.000000 - Av 2018 5 25 3 0 9.7164445E-02 0.000000 0.000000 9.6293772E-04 0.000000 0.000000 0.000000 - Av 2018 5 25 4 0 9.7031474E-02 0.000000 0.000000 9.6241082E-04 0.000000 0.000000 0.000000 + Av 2018 5 24 20 0 9.2272446E-02 0.000000 0.000000 9.8057848E-04 0.000000 0.000000 0.000000 + Av 2018 5 24 21 0 0.1011285 0.000000 0.000000 9.8003424E-04 0.000000 0.000000 0.000000 + Av 2018 5 24 22 0 9.7975217E-02 0.000000 0.000000 9.7949035E-04 0.000000 0.000000 0.000000 + Av 2018 5 24 23 0 9.8997727E-02 0.000000 0.000000 9.7894657E-04 0.000000 0.000000 0.000000 + Av 2018 5 24 24 0 9.8568328E-02 0.000000 0.000000 9.7840326E-04 0.000000 0.000000 0.000000 + Av 2018 5 25 1 0 9.7701579E-02 0.000000 0.000000 9.6399232E-04 0.000000 0.000000 0.000000 + Av 2018 5 25 2 0 9.6987970E-02 0.000000 0.000000 9.6346484E-04 0.000000 0.000000 0.000000 + Av 2018 5 25 3 0 9.7164445E-02 0.000000 0.000000 9.6293772E-04 0.000000 0.000000 0.000000 + Av 2018 5 25 4 0 9.7031474E-02 0.000000 0.000000 9.6241082E-04 0.000000 0.000000 0.000000 Av 2018 5 25 5 0 7.3703438E-02 0.000000 0.000000 6.2044500E-04 0.000000 0.000000 1.5519968E-03 Av 2018 5 25 6 0 2.5179699E-02 0.000000 0.000000 2.1090498E-05 0.000000 0.000000 4.2739431E-03 Av 2018 5 25 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.9958894E-03 @@ -3499,15 +3499,15 @@ Av 2018 5 25 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.9958894E-03 Av 2018 5 25 18 0 1.0053931E-03 0.000000 0.000000 1.4797319E-05 0.000000 0.000000 4.2739431E-03 Av 2018 5 25 19 0 4.2295963E-02 0.000000 0.000000 6.1310292E-04 0.000000 0.000000 1.5519968E-03 - Av 2018 5 25 20 0 9.1753662E-02 0.000000 0.000000 9.5401995E-04 0.000000 0.000000 0.000000 - Av 2018 5 25 21 0 9.7701356E-02 0.000000 0.000000 9.5349795E-04 0.000000 0.000000 0.000000 - Av 2018 5 25 22 0 9.5562384E-02 0.000000 0.000000 9.5297623E-04 0.000000 0.000000 0.000000 - Av 2018 5 25 23 0 9.6235245E-02 0.000000 0.000000 9.5245481E-04 0.000000 0.000000 0.000000 - Av 2018 5 25 24 0 9.5930442E-02 0.000000 0.000000 9.5193362E-04 0.000000 0.000000 0.000000 - Av 2018 5 26 1 0 9.5063567E-02 0.000000 0.000000 9.3813642E-04 0.000000 0.000000 0.000000 - Av 2018 5 26 2 0 9.4393164E-02 0.000000 0.000000 9.3763031E-04 0.000000 0.000000 0.000000 - Av 2018 5 26 3 0 9.4557509E-02 0.000000 0.000000 9.3712442E-04 0.000000 0.000000 0.000000 - Av 2018 5 26 4 0 9.4431639E-02 0.000000 0.000000 9.3661883E-04 0.000000 0.000000 0.000000 + Av 2018 5 25 20 0 9.1753662E-02 0.000000 0.000000 9.5401995E-04 0.000000 0.000000 0.000000 + Av 2018 5 25 21 0 9.7701356E-02 0.000000 0.000000 9.5349795E-04 0.000000 0.000000 0.000000 + Av 2018 5 25 22 0 9.5562384E-02 0.000000 0.000000 9.5297623E-04 0.000000 0.000000 0.000000 + Av 2018 5 25 23 0 9.6235245E-02 0.000000 0.000000 9.5245481E-04 0.000000 0.000000 0.000000 + Av 2018 5 25 24 0 9.5930442E-02 0.000000 0.000000 9.5193362E-04 0.000000 0.000000 0.000000 + Av 2018 5 26 1 0 9.5063567E-02 0.000000 0.000000 9.3813642E-04 0.000000 0.000000 0.000000 + Av 2018 5 26 2 0 9.4393164E-02 0.000000 0.000000 9.3763031E-04 0.000000 0.000000 0.000000 + Av 2018 5 26 3 0 9.4557509E-02 0.000000 0.000000 9.3712442E-04 0.000000 0.000000 0.000000 + Av 2018 5 26 4 0 9.4431639E-02 0.000000 0.000000 9.3661883E-04 0.000000 0.000000 0.000000 Av 2018 5 26 5 0 7.3153064E-02 0.000000 0.000000 6.2467880E-04 0.000000 0.000000 1.4156123E-03 Av 2018 5 26 6 0 2.5930028E-02 0.000000 0.000000 9.1250346E-05 0.000000 0.000000 3.8379915E-03 Av 2018 5 26 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.2603708E-03 @@ -3523,15 +3523,15 @@ Av 2018 5 26 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.2603708E-03 Av 2018 5 26 18 0 5.7895966E-03 0.000000 0.000000 8.5210952E-05 0.000000 0.000000 3.8379915E-03 Av 2018 5 26 19 0 4.5708340E-02 0.000000 0.000000 6.1763288E-04 0.000000 0.000000 1.4156123E-03 - Av 2018 5 26 20 0 8.9129403E-02 0.000000 0.000000 9.2856627E-04 0.000000 0.000000 0.000000 - Av 2018 5 26 21 0 9.5156401E-02 0.000000 0.000000 9.2806533E-04 0.000000 0.000000 0.000000 - Av 2018 5 26 22 0 9.2992708E-02 0.000000 0.000000 9.2756463E-04 0.000000 0.000000 0.000000 - Av 2018 5 26 23 0 9.3677014E-02 0.000000 0.000000 9.2706416E-04 0.000000 0.000000 0.000000 - Av 2018 5 26 24 0 9.3371086E-02 0.000000 0.000000 9.2656398E-04 0.000000 0.000000 0.000000 - Av 2018 5 27 1 0 9.2545778E-02 0.000000 0.000000 9.1335172E-04 0.000000 0.000000 0.000000 - Av 2018 5 27 2 0 9.1902025E-02 0.000000 0.000000 9.1286568E-04 0.000000 0.000000 0.000000 - Av 2018 5 27 3 0 9.2059836E-02 0.000000 0.000000 9.1237994E-04 0.000000 0.000000 0.000000 - Av 2018 5 27 4 0 9.1938972E-02 0.000000 0.000000 9.1189443E-04 0.000000 0.000000 0.000000 + Av 2018 5 26 20 0 8.9129403E-02 0.000000 0.000000 9.2856627E-04 0.000000 0.000000 0.000000 + Av 2018 5 26 21 0 9.5156401E-02 0.000000 0.000000 9.2806533E-04 0.000000 0.000000 0.000000 + Av 2018 5 26 22 0 9.2992708E-02 0.000000 0.000000 9.2756463E-04 0.000000 0.000000 0.000000 + Av 2018 5 26 23 0 9.3677014E-02 0.000000 0.000000 9.2706416E-04 0.000000 0.000000 0.000000 + Av 2018 5 26 24 0 9.3371086E-02 0.000000 0.000000 9.2656398E-04 0.000000 0.000000 0.000000 + Av 2018 5 27 1 0 9.2545778E-02 0.000000 0.000000 9.1335172E-04 0.000000 0.000000 0.000000 + Av 2018 5 27 2 0 9.1902025E-02 0.000000 0.000000 9.1286568E-04 0.000000 0.000000 0.000000 + Av 2018 5 27 3 0 9.2059836E-02 0.000000 0.000000 9.1237994E-04 0.000000 0.000000 0.000000 + Av 2018 5 27 4 0 9.1938972E-02 0.000000 0.000000 9.1189443E-04 0.000000 0.000000 0.000000 Av 2018 5 27 5 0 6.6541061E-02 0.000000 0.000000 5.3957663E-04 0.000000 0.000000 1.6901478E-03 Av 2018 5 27 6 0 2.0564644E-02 0.000000 0.000000 0.000000 0.000000 0.000000 4.5159878E-03 Av 2018 5 27 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.3418282E-03 @@ -3547,15 +3547,15 @@ Av 2018 5 27 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.3418282E-03 Av 2018 5 27 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5159878E-03 Av 2018 5 27 19 0 3.6201425E-02 0.000000 0.000000 5.3281052E-04 0.000000 0.000000 1.6901478E-03 - Av 2018 5 27 20 0 8.5046478E-02 0.000000 0.000000 9.0416166E-04 0.000000 0.000000 0.000000 - Av 2018 5 27 21 0 9.3261108E-02 0.000000 0.000000 9.0368051E-04 0.000000 0.000000 0.000000 - Av 2018 5 27 22 0 9.0339437E-02 0.000000 0.000000 9.0319960E-04 0.000000 0.000000 0.000000 - Av 2018 5 27 23 0 9.1289997E-02 0.000000 0.000000 9.0271898E-04 0.000000 0.000000 0.000000 - Av 2018 5 27 24 0 9.0894185E-02 0.000000 0.000000 9.0223859E-04 0.000000 0.000000 0.000000 - Av 2018 5 28 1 0 9.0139367E-02 0.000000 0.000000 8.8958401E-04 0.000000 0.000000 0.000000 - Av 2018 5 28 2 0 8.9510292E-02 0.000000 0.000000 8.8911707E-04 0.000000 0.000000 0.000000 - Av 2018 5 28 3 0 8.9665592E-02 0.000000 0.000000 8.8865036E-04 0.000000 0.000000 0.000000 - Av 2018 5 28 4 0 8.9548185E-02 0.000000 0.000000 8.8818389E-04 0.000000 0.000000 0.000000 + Av 2018 5 27 20 0 8.5046478E-02 0.000000 0.000000 9.0416166E-04 0.000000 0.000000 0.000000 + Av 2018 5 27 21 0 9.3261108E-02 0.000000 0.000000 9.0368051E-04 0.000000 0.000000 0.000000 + Av 2018 5 27 22 0 9.0339437E-02 0.000000 0.000000 9.0319960E-04 0.000000 0.000000 0.000000 + Av 2018 5 27 23 0 9.1289997E-02 0.000000 0.000000 9.0271898E-04 0.000000 0.000000 0.000000 + Av 2018 5 27 24 0 9.0894185E-02 0.000000 0.000000 9.0223859E-04 0.000000 0.000000 0.000000 + Av 2018 5 28 1 0 9.0139367E-02 0.000000 0.000000 8.8958401E-04 0.000000 0.000000 0.000000 + Av 2018 5 28 2 0 8.9510292E-02 0.000000 0.000000 8.8911707E-04 0.000000 0.000000 0.000000 + Av 2018 5 28 3 0 8.9665592E-02 0.000000 0.000000 8.8865036E-04 0.000000 0.000000 0.000000 + Av 2018 5 28 4 0 8.9548185E-02 0.000000 0.000000 8.8818389E-04 0.000000 0.000000 0.000000 Av 2018 5 28 5 0 6.3849419E-02 0.000000 0.000000 5.1143486E-04 0.000000 0.000000 1.7103760E-03 Av 2018 5 28 6 0 1.9068334E-02 0.000000 0.000000 0.000000 0.000000 0.000000 4.5082374E-03 Av 2018 5 28 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.3060989E-03 @@ -3571,15 +3571,15 @@ Av 2018 5 28 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.3060989E-03 Av 2018 5 28 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5082374E-03 Av 2018 5 28 19 0 3.4307320E-02 0.000000 0.000000 5.0493318E-04 0.000000 0.000000 1.7103760E-03 - Av 2018 5 28 20 0 8.2220510E-02 0.000000 0.000000 8.8075333E-04 0.000000 0.000000 0.000000 - Av 2018 5 28 21 0 9.1064081E-02 0.000000 0.000000 8.8029105E-04 0.000000 0.000000 0.000000 - Av 2018 5 28 22 0 8.7926291E-02 0.000000 0.000000 8.7982899E-04 0.000000 0.000000 0.000000 - Av 2018 5 28 23 0 8.8954553E-02 0.000000 0.000000 8.7936711E-04 0.000000 0.000000 0.000000 - Av 2018 5 28 24 0 8.8534266E-02 0.000000 0.000000 8.7890547E-04 0.000000 0.000000 0.000000 - Av 2018 5 29 1 0 8.7825373E-02 0.000000 0.000000 8.6678274E-04 0.000000 0.000000 0.000000 - Av 2018 5 29 2 0 8.7217689E-02 0.000000 0.000000 8.6633378E-04 0.000000 0.000000 0.000000 - Av 2018 5 29 3 0 8.7367997E-02 0.000000 0.000000 8.6588511E-04 0.000000 0.000000 0.000000 - Av 2018 5 29 4 0 8.7254770E-02 0.000000 0.000000 8.6543657E-04 0.000000 0.000000 0.000000 + Av 2018 5 28 20 0 8.2220510E-02 0.000000 0.000000 8.8075333E-04 0.000000 0.000000 0.000000 + Av 2018 5 28 21 0 9.1064081E-02 0.000000 0.000000 8.8029105E-04 0.000000 0.000000 0.000000 + Av 2018 5 28 22 0 8.7926291E-02 0.000000 0.000000 8.7982899E-04 0.000000 0.000000 0.000000 + Av 2018 5 28 23 0 8.8954553E-02 0.000000 0.000000 8.7936711E-04 0.000000 0.000000 0.000000 + Av 2018 5 28 24 0 8.8534266E-02 0.000000 0.000000 8.7890547E-04 0.000000 0.000000 0.000000 + Av 2018 5 29 1 0 8.7825373E-02 0.000000 0.000000 8.6678274E-04 0.000000 0.000000 0.000000 + Av 2018 5 29 2 0 8.7217689E-02 0.000000 0.000000 8.6633378E-04 0.000000 0.000000 0.000000 + Av 2018 5 29 3 0 8.7367997E-02 0.000000 0.000000 8.6588511E-04 0.000000 0.000000 0.000000 + Av 2018 5 29 4 0 8.7254770E-02 0.000000 0.000000 8.6543657E-04 0.000000 0.000000 0.000000 Av 2018 5 29 5 0 6.5285444E-02 0.000000 0.000000 5.4332800E-04 0.000000 0.000000 1.4620923E-03 Av 2018 5 29 6 0 2.1651246E-02 0.000000 0.000000 2.7409231E-05 0.000000 0.000000 3.8051412E-03 Av 2018 5 29 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.1481902E-03 @@ -3595,15 +3595,15 @@ Av 2018 5 29 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.1481902E-03 Av 2018 5 29 18 0 1.4982302E-03 0.000000 0.000000 2.2050866E-05 0.000000 0.000000 3.8051412E-03 Av 2018 5 29 19 0 3.7450351E-02 0.000000 0.000000 5.3707662E-04 0.000000 0.000000 1.4620923E-03 - Av 2018 5 29 20 0 8.1767283E-02 0.000000 0.000000 8.5829210E-04 0.000000 0.000000 0.000000 - Av 2018 5 29 21 0 8.8170648E-02 0.000000 0.000000 8.5784751E-04 0.000000 0.000000 0.000000 - Av 2018 5 29 22 0 8.5883752E-02 0.000000 0.000000 8.5740321E-04 0.000000 0.000000 0.000000 - Av 2018 5 29 23 0 8.6618572E-02 0.000000 0.000000 8.5695914E-04 0.000000 0.000000 0.000000 - Av 2018 5 29 24 0 8.6302727E-02 0.000000 0.000000 8.5651525E-04 0.000000 0.000000 0.000000 - Av 2018 5 30 1 0 8.5593194E-02 0.000000 0.000000 8.4489986E-04 0.000000 0.000000 0.000000 - Av 2018 5 30 2 0 8.5021362E-02 0.000000 0.000000 8.4446796E-04 0.000000 0.000000 0.000000 - Av 2018 5 30 3 0 8.5161515E-02 0.000000 0.000000 8.4403623E-04 0.000000 0.000000 0.000000 - Av 2018 5 30 4 0 8.5054129E-02 0.000000 0.000000 8.4360479E-04 0.000000 0.000000 0.000000 + Av 2018 5 29 20 0 8.1767283E-02 0.000000 0.000000 8.5829210E-04 0.000000 0.000000 0.000000 + Av 2018 5 29 21 0 8.8170648E-02 0.000000 0.000000 8.5784751E-04 0.000000 0.000000 0.000000 + Av 2018 5 29 22 0 8.5883752E-02 0.000000 0.000000 8.5740321E-04 0.000000 0.000000 0.000000 + Av 2018 5 29 23 0 8.6618572E-02 0.000000 0.000000 8.5695914E-04 0.000000 0.000000 0.000000 + Av 2018 5 29 24 0 8.6302727E-02 0.000000 0.000000 8.5651525E-04 0.000000 0.000000 0.000000 + Av 2018 5 30 1 0 8.5593194E-02 0.000000 0.000000 8.4489986E-04 0.000000 0.000000 0.000000 + Av 2018 5 30 2 0 8.5021362E-02 0.000000 0.000000 8.4446796E-04 0.000000 0.000000 0.000000 + Av 2018 5 30 3 0 8.5161515E-02 0.000000 0.000000 8.4403623E-04 0.000000 0.000000 0.000000 + Av 2018 5 30 4 0 8.5054129E-02 0.000000 0.000000 8.4360479E-04 0.000000 0.000000 0.000000 Av 2018 5 30 5 0 6.3991241E-02 0.000000 0.000000 5.3477695E-04 0.000000 0.000000 1.4018026E-03 Av 2018 5 30 6 0 2.1458026E-02 0.000000 0.000000 4.9588096E-05 0.000000 0.000000 3.6052472E-03 Av 2018 5 30 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8086915E-03 @@ -3619,15 +3619,15 @@ Av 2018 5 30 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8086915E-03 Av 2018 5 30 18 0 3.0189597E-03 0.000000 0.000000 4.4432876E-05 0.000000 0.000000 3.6052472E-03 Av 2018 5 30 19 0 3.7871927E-02 0.000000 0.000000 5.2876252E-04 0.000000 0.000000 1.4018026E-03 - Av 2018 5 30 20 0 7.9585366E-02 0.000000 0.000000 8.3673111E-04 0.000000 0.000000 0.000000 - Av 2018 5 30 21 0 8.6000577E-02 0.000000 0.000000 8.3630340E-04 0.000000 0.000000 0.000000 - Av 2018 5 30 22 0 8.3711848E-02 0.000000 0.000000 8.3587586E-04 0.000000 0.000000 0.000000 - Av 2018 5 30 23 0 8.4449574E-02 0.000000 0.000000 8.3544856E-04 0.000000 0.000000 0.000000 - Av 2018 5 30 24 0 8.4135011E-02 0.000000 0.000000 8.3502149E-04 0.000000 0.000000 0.000000 - Av 2018 5 31 1 0 8.3459064E-02 0.000000 0.000000 8.2389021E-04 0.000000 0.000000 0.000000 - Av 2018 5 31 2 0 8.2909539E-02 0.000000 0.000000 8.2347449E-04 0.000000 0.000000 0.000000 - Av 2018 5 31 3 0 8.3044134E-02 0.000000 0.000000 8.2305889E-04 0.000000 0.000000 0.000000 - Av 2018 5 31 4 0 8.2940876E-02 0.000000 0.000000 8.2264357E-04 0.000000 0.000000 0.000000 + Av 2018 5 30 20 0 7.9585366E-02 0.000000 0.000000 8.3673111E-04 0.000000 0.000000 0.000000 + Av 2018 5 30 21 0 8.6000577E-02 0.000000 0.000000 8.3630340E-04 0.000000 0.000000 0.000000 + Av 2018 5 30 22 0 8.3711848E-02 0.000000 0.000000 8.3587586E-04 0.000000 0.000000 0.000000 + Av 2018 5 30 23 0 8.4449574E-02 0.000000 0.000000 8.3544856E-04 0.000000 0.000000 0.000000 + Av 2018 5 30 24 0 8.4135011E-02 0.000000 0.000000 8.3502149E-04 0.000000 0.000000 0.000000 + Av 2018 5 31 1 0 8.3459064E-02 0.000000 0.000000 8.2389021E-04 0.000000 0.000000 0.000000 + Av 2018 5 31 2 0 8.2909539E-02 0.000000 0.000000 8.2347449E-04 0.000000 0.000000 0.000000 + Av 2018 5 31 3 0 8.3044134E-02 0.000000 0.000000 8.2305889E-04 0.000000 0.000000 0.000000 + Av 2018 5 31 4 0 8.2940876E-02 0.000000 0.000000 8.2264357E-04 0.000000 0.000000 0.000000 Av 2018 5 31 5 0 6.1594702E-02 0.000000 0.000000 5.0965254E-04 0.000000 0.000000 1.4207994E-03 Av 2018 5 31 6 0 2.0118376E-02 0.000000 0.000000 2.6740483E-05 0.000000 0.000000 3.6139684E-03 Av 2018 5 31 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8071371E-03 @@ -3643,15 +3643,15 @@ Av 2018 5 31 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8071371E-03 Av 2018 5 31 18 0 1.4796620E-03 0.000000 0.000000 2.1777581E-05 0.000000 0.000000 3.6139684E-03 Av 2018 5 31 19 0 3.5801861E-02 0.000000 0.000000 5.0386251E-04 0.000000 4.9999900E-02 1.4207994E-03 - Av 2018 5 31 20 0 7.7832386E-02 0.000000 0.000000 8.1602641E-04 0.000000 0.000000 0.000000 - Av 2018 5 31 21 0 8.4431328E-02 0.000000 0.000000 8.1561459E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 5 31 22 0 8.2080871E-02 0.000000 0.000000 8.1520301E-04 0.000000 0.000000 0.000000 - Av 2018 5 31 23 0 8.2208559E-02 0.000000 0.000000 8.1479165E-04 0.000000 0.000000 0.000000 - Av 2018 5 31 24 0 8.2108274E-02 0.000000 0.000000 8.1438047E-04 0.000000 0.000000 0.000000 - Av 2018 6 1 1 0 8.1390291E-02 0.000000 0.000000 8.0371124E-04 0.000000 0.000000 0.000000 - Av 2018 6 1 2 0 8.0887817E-02 0.000000 0.000000 8.0331072E-04 0.000000 0.000000 0.000000 - Av 2018 6 1 3 0 8.1008121E-02 0.000000 0.000000 8.0291042E-04 0.000000 0.000000 0.000000 - Av 2018 6 1 4 0 8.0911905E-02 0.000000 0.000000 8.0251036E-04 0.000000 0.000000 0.000000 + Av 2018 5 31 20 0 7.7832386E-02 0.000000 0.000000 8.1602641E-04 0.000000 0.000000 0.000000 + Av 2018 5 31 21 0 8.4431328E-02 0.000000 0.000000 8.1561459E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 5 31 22 0 8.2080871E-02 0.000000 0.000000 8.1520301E-04 0.000000 0.000000 0.000000 + Av 2018 5 31 23 0 8.2208559E-02 0.000000 0.000000 8.1479165E-04 0.000000 0.000000 0.000000 + Av 2018 5 31 24 0 8.2108274E-02 0.000000 0.000000 8.1438047E-04 0.000000 0.000000 0.000000 + Av 2018 6 1 1 0 8.1390291E-02 0.000000 0.000000 8.0371124E-04 0.000000 0.000000 0.000000 + Av 2018 6 1 2 0 8.0887817E-02 0.000000 0.000000 8.0331072E-04 0.000000 0.000000 0.000000 + Av 2018 6 1 3 0 8.1008121E-02 0.000000 0.000000 8.0291042E-04 0.000000 0.000000 0.000000 + Av 2018 6 1 4 0 8.0911905E-02 0.000000 0.000000 8.0251036E-04 0.000000 0.000000 0.000000 Av 2018 6 1 5 0 5.6935456E-02 0.000000 0.000000 4.5096956E-04 0.000000 0.000000 1.5960950E-03 Av 2018 6 1 6 0 1.6474694E-02 0.000000 0.000000 0.000000 0.000000 0.000000 4.0386668E-03 Av 2018 6 1 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.4812386E-03 @@ -3667,15 +3667,15 @@ Av 2018 6 1 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.4812386E-03 Av 2018 6 1 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.0386668E-03 Av 2018 6 1 19 0 3.0261852E-02 0.000000 0.000000 4.4539222E-04 0.000000 0.000000 1.5960950E-03 - Av 2018 6 1 20 0 7.3832437E-02 0.000000 0.000000 7.9613621E-04 0.000000 0.000000 0.000000 - Av 2018 6 1 21 0 8.2486652E-02 0.000000 0.000000 7.9573953E-04 0.000000 0.000000 0.000000 - Av 2018 6 1 22 0 7.9423614E-02 0.000000 0.000000 7.9534302E-04 0.000000 0.000000 0.000000 - Av 2018 6 1 23 0 8.0434784E-02 0.000000 0.000000 7.9494668E-04 0.000000 0.000000 0.000000 - Av 2018 6 1 24 0 8.0029353E-02 0.000000 0.000000 7.9455064E-04 0.000000 0.000000 0.000000 - Av 2018 6 2 1 0 7.9448476E-02 0.000000 0.000000 7.8432256E-04 0.000000 0.000000 0.000000 - Av 2018 6 2 2 0 7.8929290E-02 0.000000 0.000000 7.8393659E-04 0.000000 0.000000 0.000000 - Av 2018 6 2 3 0 7.9057381E-02 0.000000 0.000000 7.8355079E-04 0.000000 0.000000 0.000000 - Av 2018 6 2 4 0 7.8960434E-02 0.000000 0.000000 7.8316522E-04 0.000000 0.000000 0.000000 + Av 2018 6 1 20 0 7.3832437E-02 0.000000 0.000000 7.9613621E-04 0.000000 0.000000 0.000000 + Av 2018 6 1 21 0 8.2486652E-02 0.000000 0.000000 7.9573953E-04 0.000000 0.000000 0.000000 + Av 2018 6 1 22 0 7.9423614E-02 0.000000 0.000000 7.9534302E-04 0.000000 0.000000 0.000000 + Av 2018 6 1 23 0 8.0434784E-02 0.000000 0.000000 7.9494668E-04 0.000000 0.000000 0.000000 + Av 2018 6 1 24 0 8.0029353E-02 0.000000 0.000000 7.9455064E-04 0.000000 0.000000 0.000000 + Av 2018 6 2 1 0 7.9448476E-02 0.000000 0.000000 7.8432256E-04 0.000000 0.000000 0.000000 + Av 2018 6 2 2 0 7.8929290E-02 0.000000 0.000000 7.8393659E-04 0.000000 0.000000 0.000000 + Av 2018 6 2 3 0 7.9057381E-02 0.000000 0.000000 7.8355079E-04 0.000000 0.000000 0.000000 + Av 2018 6 2 4 0 7.8960434E-02 0.000000 0.000000 7.8316522E-04 0.000000 0.000000 0.000000 Av 2018 6 2 5 0 4.9417913E-02 0.000000 0.000000 3.4999746E-04 0.000000 0.000000 1.9671924E-03 Av 2018 6 2 6 0 9.9319359E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.9285959E-03 Av 2018 6 2 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8899991E-03 @@ -3691,15 +3691,15 @@ Av 2018 6 2 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8899991E-03 Av 2018 6 2 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9285959E-03 Av 2018 6 2 19 0 2.3415063E-02 0.000000 0.000000 3.4462157E-04 0.000000 0.000000 1.9671924E-03 - Av 2018 6 2 20 0 6.8067595E-02 0.000000 0.000000 7.7702134E-04 0.000000 0.000000 0.000000 - Av 2018 6 2 21 0 8.1894621E-02 0.000000 0.000000 7.7663898E-04 0.000000 0.000000 0.000000 - Av 2018 6 2 22 0 7.7034891E-02 0.000000 0.000000 7.7625678E-04 0.000000 0.000000 0.000000 - Av 2018 6 2 23 0 7.8672737E-02 0.000000 0.000000 7.7587477E-04 0.000000 0.000000 0.000000 - Av 2018 6 2 24 0 7.8051344E-02 0.000000 0.000000 7.7549292E-04 0.000000 0.000000 0.000000 - Av 2018 6 3 1 0 7.7575147E-02 0.000000 0.000000 7.6568610E-04 0.000000 0.000000 0.000000 - Av 2018 6 3 2 0 7.7049114E-02 0.000000 0.000000 7.6531386E-04 0.000000 0.000000 0.000000 - Av 2018 6 3 3 0 7.7181444E-02 0.000000 0.000000 7.6494180E-04 0.000000 0.000000 0.000000 - Av 2018 6 3 4 0 7.7084891E-02 0.000000 0.000000 7.6456991E-04 0.000000 0.000000 0.000000 + Av 2018 6 2 20 0 6.8067595E-02 0.000000 0.000000 7.7702134E-04 0.000000 0.000000 0.000000 + Av 2018 6 2 21 0 8.1894621E-02 0.000000 0.000000 7.7663898E-04 0.000000 0.000000 0.000000 + Av 2018 6 2 22 0 7.7034891E-02 0.000000 0.000000 7.7625678E-04 0.000000 0.000000 0.000000 + Av 2018 6 2 23 0 7.8672737E-02 0.000000 0.000000 7.7587477E-04 0.000000 0.000000 0.000000 + Av 2018 6 2 24 0 7.8051344E-02 0.000000 0.000000 7.7549292E-04 0.000000 0.000000 0.000000 + Av 2018 6 3 1 0 7.7575147E-02 0.000000 0.000000 7.6568610E-04 0.000000 0.000000 0.000000 + Av 2018 6 3 2 0 7.7049114E-02 0.000000 0.000000 7.6531386E-04 0.000000 0.000000 0.000000 + Av 2018 6 3 3 0 7.7181444E-02 0.000000 0.000000 7.6494180E-04 0.000000 0.000000 0.000000 + Av 2018 6 3 4 0 7.7084891E-02 0.000000 0.000000 7.6456991E-04 0.000000 0.000000 0.000000 Av 2018 6 3 5 0 5.1162563E-02 0.000000 0.000000 3.8443983E-04 0.000000 0.000000 1.7261746E-03 Av 2018 6 3 6 0 1.2613749E-02 0.000000 0.000000 0.000000 0.000000 0.000000 4.2851660E-03 Av 2018 6 3 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8441569E-03 @@ -3715,15 +3715,15 @@ Av 2018 6 3 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8441569E-03 Av 2018 6 3 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2851660E-03 Av 2018 6 3 19 0 2.5768220E-02 0.000000 0.000000 3.7925522E-04 0.000000 0.000000 1.7261746E-03 - Av 2018 6 3 20 0 6.8353944E-02 0.000000 0.000000 7.5864466E-04 0.000000 0.000000 0.000000 - Av 2018 6 3 21 0 7.9298794E-02 0.000000 0.000000 7.5827586E-04 0.000000 0.000000 0.000000 - Av 2018 6 3 22 0 7.5443067E-02 0.000000 0.000000 7.5790723E-04 0.000000 0.000000 0.000000 - Av 2018 6 3 23 0 7.6733656E-02 0.000000 0.000000 7.5753877E-04 0.000000 0.000000 0.000000 - Av 2018 6 3 24 0 7.6234847E-02 0.000000 0.000000 7.5717049E-04 0.000000 0.000000 0.000000 - Av 2018 6 4 1 0 7.6338351E-02 0.000000 0.000000 7.4776600E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 6 4 2 0 7.5638980E-02 0.000000 0.000000 7.4740686E-04 0.000000 0.000000 0.000000 - Av 2018 6 4 3 0 7.5239301E-02 0.000000 0.000000 7.4704783E-04 0.000000 0.000000 0.000000 - Av 2018 6 4 4 0 7.5329497E-02 0.000000 0.000000 7.4668898E-04 0.000000 0.000000 0.000000 + Av 2018 6 3 20 0 6.8353944E-02 0.000000 0.000000 7.5864466E-04 0.000000 0.000000 0.000000 + Av 2018 6 3 21 0 7.9298794E-02 0.000000 0.000000 7.5827586E-04 0.000000 0.000000 0.000000 + Av 2018 6 3 22 0 7.5443067E-02 0.000000 0.000000 7.5790723E-04 0.000000 0.000000 0.000000 + Av 2018 6 3 23 0 7.6733656E-02 0.000000 0.000000 7.5753877E-04 0.000000 0.000000 0.000000 + Av 2018 6 3 24 0 7.6234847E-02 0.000000 0.000000 7.5717049E-04 0.000000 0.000000 0.000000 + Av 2018 6 4 1 0 7.6338351E-02 0.000000 0.000000 7.4776600E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 6 4 2 0 7.5638980E-02 0.000000 0.000000 7.4740686E-04 0.000000 0.000000 0.000000 + Av 2018 6 4 3 0 7.5239301E-02 0.000000 0.000000 7.4704783E-04 0.000000 0.000000 0.000000 + Av 2018 6 4 4 0 7.5329497E-02 0.000000 0.000000 7.4668898E-04 0.000000 0.000000 0.000000 Av 2018 6 4 5 0 5.0573241E-02 0.000000 0.000000 3.8457455E-04 0.000000 0.000000 1.6443443E-03 Av 2018 6 4 6 0 1.2951224E-02 0.000000 0.000000 0.000000 0.000000 0.000000 4.0474162E-03 Av 2018 6 4 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.4504878E-03 @@ -3739,15 +3739,15 @@ Av 2018 6 4 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.4504878E-03 Av 2018 6 4 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.0474162E-03 Av 2018 6 4 19 0 2.5789687E-02 0.000000 0.000000 3.7957114E-04 0.000000 0.000000 1.6443443E-03 - Av 2018 6 4 20 0 6.7167111E-02 0.000000 0.000000 7.4097083E-04 0.000000 0.000000 0.000000 - Av 2018 6 4 21 0 7.7310666E-02 0.000000 0.000000 7.4061489E-04 0.000000 0.000000 0.000000 - Av 2018 6 4 22 0 7.3735312E-02 0.000000 0.000000 7.4025913E-04 0.000000 0.000000 0.000000 - Av 2018 6 4 23 0 7.4930161E-02 0.000000 0.000000 7.3990354E-04 0.000000 0.000000 0.000000 - Av 2018 6 4 24 0 7.4466392E-02 0.000000 0.000000 7.3954812E-04 0.000000 0.000000 0.000000 - Av 2018 6 5 1 0 7.3990643E-02 0.000000 0.000000 7.3052809E-04 0.000000 0.000000 0.000000 - Av 2018 6 5 2 0 7.3519640E-02 0.000000 0.000000 7.3018135E-04 0.000000 0.000000 0.000000 - Av 2018 6 5 3 0 7.3636301E-02 0.000000 0.000000 7.2983472E-04 0.000000 0.000000 0.000000 - Av 2018 6 5 4 0 7.3548645E-02 0.000000 0.000000 7.2948833E-04 0.000000 0.000000 0.000000 + Av 2018 6 4 20 0 6.7167111E-02 0.000000 0.000000 7.4097083E-04 0.000000 0.000000 0.000000 + Av 2018 6 4 21 0 7.7310666E-02 0.000000 0.000000 7.4061489E-04 0.000000 0.000000 0.000000 + Av 2018 6 4 22 0 7.3735312E-02 0.000000 0.000000 7.4025913E-04 0.000000 0.000000 0.000000 + Av 2018 6 4 23 0 7.4930161E-02 0.000000 0.000000 7.3990354E-04 0.000000 0.000000 0.000000 + Av 2018 6 4 24 0 7.4466392E-02 0.000000 0.000000 7.3954812E-04 0.000000 0.000000 0.000000 + Av 2018 6 5 1 0 7.3990643E-02 0.000000 0.000000 7.3052809E-04 0.000000 0.000000 0.000000 + Av 2018 6 5 2 0 7.3519640E-02 0.000000 0.000000 7.3018135E-04 0.000000 0.000000 0.000000 + Av 2018 6 5 3 0 7.3636301E-02 0.000000 0.000000 7.2983472E-04 0.000000 0.000000 0.000000 + Av 2018 6 5 4 0 7.3548645E-02 0.000000 0.000000 7.2948833E-04 0.000000 0.000000 0.000000 Av 2018 6 5 5 0 4.7468733E-02 0.000000 0.000000 3.4703303E-04 0.000000 0.000000 1.7368592E-03 Av 2018 6 5 6 0 1.0689092E-02 0.000000 0.000000 0.000000 0.000000 0.000000 4.2416528E-03 Av 2018 6 5 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7464462E-03 @@ -3763,15 +3763,15 @@ Av 2018 6 5 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7464462E-03 Av 2018 6 5 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2416528E-03 Av 2018 6 5 19 0 2.3250680E-02 0.000000 0.000000 3.4220220E-04 0.000000 0.000000 1.7368592E-03 - Av 2018 6 5 20 0 6.4355657E-02 0.000000 0.000000 7.2396739E-04 0.000000 0.000000 0.000000 - Av 2018 6 5 21 0 7.5978503E-02 0.000000 0.000000 7.2362373E-04 0.000000 0.000000 0.000000 - Av 2018 6 5 22 0 7.1890444E-02 0.000000 0.000000 7.2328025E-04 0.000000 0.000000 0.000000 - Av 2018 6 5 23 0 7.3265232E-02 0.000000 0.000000 7.2293688E-04 0.000000 0.000000 0.000000 - Av 2018 6 5 24 0 7.2740562E-02 0.000000 0.000000 7.2259374E-04 0.000000 0.000000 0.000000 - Av 2018 6 6 1 0 7.2311774E-02 0.000000 0.000000 7.1394112E-04 0.000000 0.000000 0.000000 - Av 2018 6 6 2 0 7.1850210E-02 0.000000 0.000000 7.1360607E-04 0.000000 0.000000 0.000000 - Av 2018 6 6 3 0 7.1965188E-02 0.000000 0.000000 7.1327126E-04 0.000000 0.000000 0.000000 - Av 2018 6 6 4 0 7.1879722E-02 0.000000 0.000000 7.1293657E-04 0.000000 0.000000 0.000000 + Av 2018 6 5 20 0 6.4355657E-02 0.000000 0.000000 7.2396739E-04 0.000000 0.000000 0.000000 + Av 2018 6 5 21 0 7.5978503E-02 0.000000 0.000000 7.2362373E-04 0.000000 0.000000 0.000000 + Av 2018 6 5 22 0 7.1890444E-02 0.000000 0.000000 7.2328025E-04 0.000000 0.000000 0.000000 + Av 2018 6 5 23 0 7.3265232E-02 0.000000 0.000000 7.2293688E-04 0.000000 0.000000 0.000000 + Av 2018 6 5 24 0 7.2740562E-02 0.000000 0.000000 7.2259374E-04 0.000000 0.000000 0.000000 + Av 2018 6 6 1 0 7.2311774E-02 0.000000 0.000000 7.1394112E-04 0.000000 0.000000 0.000000 + Av 2018 6 6 2 0 7.1850210E-02 0.000000 0.000000 7.1360607E-04 0.000000 0.000000 0.000000 + Av 2018 6 6 3 0 7.1965188E-02 0.000000 0.000000 7.1327126E-04 0.000000 0.000000 0.000000 + Av 2018 6 6 4 0 7.1879722E-02 0.000000 0.000000 7.1293657E-04 0.000000 0.000000 0.000000 Av 2018 6 6 5 0 4.1637421E-02 0.000000 0.000000 2.6943733E-04 0.000000 0.000000 2.0143851E-03 Av 2018 6 6 6 0 5.6922110E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.8839408E-03 Av 2018 6 6 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7534965E-03 @@ -3787,15 +3787,15 @@ Av 2018 6 6 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7534965E-03 Av 2018 6 6 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8839408E-03 Av 2018 6 6 19 0 1.7989622E-02 0.000000 0.000000 2.6477023E-04 0.000000 0.000000 2.0143851E-03 - Av 2018 6 6 20 0 5.9812032E-02 0.000000 0.000000 7.0760277E-04 0.000000 0.000000 0.000000 - Av 2018 6 6 21 0 7.5335383E-02 0.000000 0.000000 7.0727069E-04 0.000000 0.000000 0.000000 - Av 2018 6 6 22 0 6.9892660E-02 0.000000 0.000000 7.0693879E-04 0.000000 0.000000 0.000000 - Av 2018 6 6 23 0 7.1740046E-02 0.000000 0.000000 7.0660713E-04 0.000000 0.000000 0.000000 - Av 2018 6 6 24 0 7.1052641E-02 0.000000 0.000000 7.0627558E-04 0.000000 0.000000 0.000000 - Av 2018 6 7 1 0 7.0705093E-02 0.000000 0.000000 6.9797412E-04 0.000000 0.000000 0.000000 - Av 2018 6 7 2 0 7.0239902E-02 0.000000 0.000000 6.9765031E-04 0.000000 0.000000 0.000000 - Av 2018 6 7 3 0 7.0357665E-02 0.000000 0.000000 6.9732667E-04 0.000000 0.000000 0.000000 - Av 2018 6 7 4 0 7.0272744E-02 0.000000 0.000000 6.9700310E-04 0.000000 0.000000 0.000000 + Av 2018 6 6 20 0 5.9812032E-02 0.000000 0.000000 7.0760277E-04 0.000000 0.000000 0.000000 + Av 2018 6 6 21 0 7.5335383E-02 0.000000 0.000000 7.0727069E-04 0.000000 0.000000 0.000000 + Av 2018 6 6 22 0 6.9892660E-02 0.000000 0.000000 7.0693879E-04 0.000000 0.000000 0.000000 + Av 2018 6 6 23 0 7.1740046E-02 0.000000 0.000000 7.0660713E-04 0.000000 0.000000 0.000000 + Av 2018 6 6 24 0 7.1052641E-02 0.000000 0.000000 7.0627558E-04 0.000000 0.000000 0.000000 + Av 2018 6 7 1 0 7.0705093E-02 0.000000 0.000000 6.9797412E-04 0.000000 0.000000 0.000000 + Av 2018 6 7 2 0 7.0239902E-02 0.000000 0.000000 6.9765031E-04 0.000000 0.000000 0.000000 + Av 2018 6 7 3 0 7.0357665E-02 0.000000 0.000000 6.9732667E-04 0.000000 0.000000 0.000000 + Av 2018 6 7 4 0 7.0272744E-02 0.000000 0.000000 6.9700310E-04 0.000000 0.000000 0.000000 Av 2018 6 7 5 0 4.0136658E-02 0.000000 0.000000 2.5503396E-04 0.000000 0.000000 2.0074809E-03 Av 2018 6 7 6 0 4.9945093E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.8350245E-03 Av 2018 6 7 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6625678E-03 @@ -3811,15 +3811,15 @@ Av 2018 6 7 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6625678E-03 Av 2018 6 7 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8350245E-03 Av 2018 6 7 19 0 1.7021574E-02 0.000000 0.000000 2.5052257E-04 0.000000 0.000000 2.0074809E-03 - Av 2018 6 7 20 0 5.8110081E-02 0.000000 0.000000 6.9184724E-04 0.000000 0.000000 0.000000 - Av 2018 6 7 21 0 7.3786914E-02 0.000000 0.000000 6.9152622E-04 0.000000 0.000000 0.000000 - Av 2018 6 7 22 0 6.8292335E-02 0.000000 0.000000 6.9120544E-04 0.000000 0.000000 0.000000 - Av 2018 6 7 23 0 7.0159271E-02 0.000000 0.000000 6.9088477E-04 0.000000 0.000000 0.000000 - Av 2018 6 7 24 0 6.9466546E-02 0.000000 0.000000 6.9056422E-04 0.000000 0.000000 0.000000 - Av 2018 6 8 1 0 6.9144413E-02 0.000000 0.000000 6.8259850E-04 0.000000 0.000000 0.000000 - Av 2018 6 8 2 0 6.8693921E-02 0.000000 0.000000 6.8228535E-04 0.000000 0.000000 0.000000 - Av 2018 6 8 3 0 6.8808004E-02 0.000000 0.000000 6.8197231E-04 0.000000 0.000000 0.000000 - Av 2018 6 8 4 0 6.8725809E-02 0.000000 0.000000 6.8165944E-04 0.000000 0.000000 0.000000 + Av 2018 6 7 20 0 5.8110081E-02 0.000000 0.000000 6.9184724E-04 0.000000 0.000000 0.000000 + Av 2018 6 7 21 0 7.3786914E-02 0.000000 0.000000 6.9152622E-04 0.000000 0.000000 0.000000 + Av 2018 6 7 22 0 6.8292335E-02 0.000000 0.000000 6.9120544E-04 0.000000 0.000000 0.000000 + Av 2018 6 7 23 0 7.0159271E-02 0.000000 0.000000 6.9088477E-04 0.000000 0.000000 0.000000 + Av 2018 6 7 24 0 6.9466546E-02 0.000000 0.000000 6.9056422E-04 0.000000 0.000000 0.000000 + Av 2018 6 8 1 0 6.9144413E-02 0.000000 0.000000 6.8259850E-04 0.000000 0.000000 0.000000 + Av 2018 6 8 2 0 6.8693921E-02 0.000000 0.000000 6.8228535E-04 0.000000 0.000000 0.000000 + Av 2018 6 8 3 0 6.8808004E-02 0.000000 0.000000 6.8197231E-04 0.000000 0.000000 0.000000 + Av 2018 6 8 4 0 6.8725809E-02 0.000000 0.000000 6.8165944E-04 0.000000 0.000000 0.000000 Av 2018 6 8 5 0 4.1494481E-02 0.000000 0.000000 2.8226644E-04 0.000000 0.000000 1.8140011E-03 Av 2018 6 8 6 0 7.1259579E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.3426729E-03 Av 2018 6 8 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8713441E-03 @@ -3835,15 +3835,15 @@ Av 2018 6 8 17 0 4.2100519E-02 0.000000 0.000000 0.000000 6.1963312E-03 3.9999921E-02 6.8713441E-03 Av 2018 6 8 18 0 0.1615182 3.9000067E-08 0.000000 0.000000 1.9494561E-02 2.9999940E-02 4.3426729E-03 Av 2018 6 8 19 0 0.1591740 4.3510241E-08 0.000000 2.8293705E-04 9.0062227E-03 9.9999802E-03 1.8140011E-03 - Av 2018 6 8 20 0 0.2364056 8.8738830E-07 0.000000 6.9043302E-04 2.3796607E-02 2.9999940E-02 0.000000 - Av 2018 6 8 21 0 0.2137733 0.000000 0.000000 6.9753476E-04 5.6085959E-03 0.000000 0.000000 - Av 2018 6 8 22 0 7.0916757E-02 0.000000 0.000000 6.9720991E-04 1.8214205E-03 0.000000 0.000000 - Av 2018 6 8 23 0 8.7642670E-02 0.000000 0.000000 6.9688517E-04 7.6603488E-04 0.000000 0.000000 - Av 2018 6 8 24 0 7.2008014E-02 0.000000 0.000000 6.9656066E-04 3.8277119E-04 0.000000 0.000000 - Av 2018 6 9 1 0 7.3134139E-02 0.000000 0.000000 6.8847445E-04 2.1577156E-04 0.000000 0.000000 - Av 2018 6 9 2 0 7.0473254E-02 0.000000 0.000000 6.8815745E-04 1.3280618E-04 0.000000 0.000000 - Av 2018 6 9 3 0 7.0482805E-02 0.000000 0.000000 6.8784051E-04 8.7344350E-05 0.000000 0.000000 - Av 2018 6 9 4 0 6.9945008E-02 0.000000 0.000000 6.8752375E-04 6.0478458E-05 0.000000 0.000000 + Av 2018 6 8 20 0 0.2364056 8.8738830E-07 0.000000 6.9043302E-04 2.3796607E-02 2.9999940E-02 0.000000 + Av 2018 6 8 21 0 0.2137733 0.000000 0.000000 6.9753476E-04 5.6085959E-03 0.000000 0.000000 + Av 2018 6 8 22 0 7.0916757E-02 0.000000 0.000000 6.9720991E-04 1.8214205E-03 0.000000 0.000000 + Av 2018 6 8 23 0 8.7642670E-02 0.000000 0.000000 6.9688517E-04 7.6603488E-04 0.000000 0.000000 + Av 2018 6 8 24 0 7.2008014E-02 0.000000 0.000000 6.9656066E-04 3.8277119E-04 0.000000 0.000000 + Av 2018 6 9 1 0 7.3134139E-02 0.000000 0.000000 6.8847445E-04 2.1577156E-04 0.000000 0.000000 + Av 2018 6 9 2 0 7.0473254E-02 0.000000 0.000000 6.8815745E-04 1.3280618E-04 0.000000 0.000000 + Av 2018 6 9 3 0 7.0482805E-02 0.000000 0.000000 6.8784051E-04 8.7344350E-05 0.000000 0.000000 + Av 2018 6 9 4 0 6.9945008E-02 0.000000 0.000000 6.8752375E-04 6.0478458E-05 0.000000 0.000000 Av 2018 6 9 5 0 4.5856819E-02 0.000000 0.000000 3.3626554E-04 4.3624972E-05 0.000000 1.5951892E-03 Av 2018 6 9 6 0 1.0897393E-02 0.000000 0.000000 0.000000 3.2530093E-05 0.000000 3.7979474E-03 Av 2018 6 9 7 0 1.1482347E-03 0.000000 0.000000 0.000000 1.6899654E-04 0.000000 6.0007055E-03 @@ -3859,15 +3859,15 @@ Av 2018 6 9 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 1.9999960E-02 6.0007055E-03 Av 2018 6 9 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.7979474E-03 Av 2018 6 9 19 0 2.2547184E-02 0.000000 0.000000 3.3184816E-04 0.000000 0.000000 1.5951892E-03 - Av 2018 6 9 20 0 6.1077617E-02 0.000000 0.000000 6.8247534E-04 0.000000 0.000000 0.000000 - Av 2018 6 9 21 0 7.2078377E-02 0.000000 0.000000 6.8216101E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 6 9 22 0 6.8767220E-02 0.000000 0.000000 6.8184693E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 6 9 23 0 6.9279477E-02 0.000000 0.000000 6.8153290E-04 0.000000 0.000000 0.000000 - Av 2018 6 9 24 0 6.8502098E-02 0.000000 0.000000 6.8121904E-04 0.000000 0.000000 0.000000 - Av 2018 6 10 1 0 6.8787783E-02 0.000000 0.000000 6.7345920E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 6 10 2 0 6.9846004E-02 8.3658741E-10 0.000000 6.7338964E-04 0.000000 2.9999940E-02 0.000000 - Av 2018 6 10 3 0 6.8905517E-02 0.000000 0.000000 6.7333272E-04 0.000000 0.000000 0.000000 - Av 2018 6 10 4 0 6.7518309E-02 0.000000 0.000000 6.7302596E-04 0.000000 0.000000 0.000000 + Av 2018 6 9 20 0 6.1077617E-02 0.000000 0.000000 6.8247534E-04 0.000000 0.000000 0.000000 + Av 2018 6 9 21 0 7.2078377E-02 0.000000 0.000000 6.8216101E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 6 9 22 0 6.8767220E-02 0.000000 0.000000 6.8184693E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 6 9 23 0 6.9279477E-02 0.000000 0.000000 6.8153290E-04 0.000000 0.000000 0.000000 + Av 2018 6 9 24 0 6.8502098E-02 0.000000 0.000000 6.8121904E-04 0.000000 0.000000 0.000000 + Av 2018 6 10 1 0 6.8787783E-02 0.000000 0.000000 6.7345920E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 6 10 2 0 6.9846004E-02 8.3658741E-10 0.000000 6.7338964E-04 0.000000 2.9999940E-02 0.000000 + Av 2018 6 10 3 0 6.8905517E-02 0.000000 0.000000 6.7333272E-04 0.000000 0.000000 0.000000 + Av 2018 6 10 4 0 6.7518309E-02 0.000000 0.000000 6.7302596E-04 0.000000 0.000000 0.000000 Av 2018 6 10 5 0 4.5602508E-02 0.000000 0.000000 3.4490900E-04 0.000000 0.000000 1.4900466E-03 Av 2018 6 10 6 0 1.1489602E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.5301372E-03 Av 2018 6 10 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5702277E-03 @@ -3883,15 +3883,15 @@ Av 2018 6 10 17 0 3.4386937E-06 5.0610502E-08 0.000000 0.000000 0.000000 1.9999960E-02 5.5702277E-03 Av 2018 6 10 18 0 1.4382640E-02 2.5774565E-07 0.000000 0.000000 2.0978048E-03 1.9999960E-02 3.5301372E-03 Av 2018 6 10 19 0 0.1193005 3.3587403E-07 0.000000 3.5670013E-04 1.2507714E-02 1.9999960E-02 1.4900466E-03 - Av 2018 6 10 20 0 0.2368474 4.1101100E-07 0.000000 6.9367839E-04 1.7555369E-02 1.9999960E-02 0.000000 - Av 2018 6 10 21 0 0.1628683 0.000000 0.000000 6.9848879E-04 4.3205670E-03 0.000000 0.000000 - Av 2018 6 10 22 0 0.1241264 1.1772185E-07 0.000000 7.0084207E-04 8.2099922E-03 9.9999802E-03 0.000000 - Av 2018 6 10 23 0 0.1263427 0.000000 0.000000 7.0336828E-04 2.6153326E-03 0.000000 0.000000 - Av 2018 6 10 24 0 0.1212062 1.1828652E-07 0.000000 7.0572633E-04 7.5158197E-03 9.9999802E-03 0.000000 - Av 2018 6 11 1 0 0.1222034 0.000000 0.000000 7.0026319E-04 2.5302782E-03 0.000000 0.000000 - Av 2018 6 11 2 0 7.6566890E-02 0.000000 0.000000 6.9993833E-04 9.9060882E-04 0.000000 0.000000 - Av 2018 6 11 3 0 7.8402624E-02 0.000000 0.000000 6.9961359E-04 4.7148301E-04 0.000000 0.000000 - Av 2018 6 11 4 0 7.2734021E-02 0.000000 0.000000 6.9928897E-04 2.5674482E-04 0.000000 0.000000 + Av 2018 6 10 20 0 0.2368474 4.1101100E-07 0.000000 6.9367839E-04 1.7555369E-02 1.9999960E-02 0.000000 + Av 2018 6 10 21 0 0.1628683 0.000000 0.000000 6.9848879E-04 4.3205670E-03 0.000000 0.000000 + Av 2018 6 10 22 0 0.1241264 1.1772185E-07 0.000000 7.0084207E-04 8.2099922E-03 9.9999802E-03 0.000000 + Av 2018 6 10 23 0 0.1263427 0.000000 0.000000 7.0336828E-04 2.6153326E-03 0.000000 0.000000 + Av 2018 6 10 24 0 0.1212062 1.1828652E-07 0.000000 7.0572633E-04 7.5158197E-03 9.9999802E-03 0.000000 + Av 2018 6 11 1 0 0.1222034 0.000000 0.000000 7.0026319E-04 2.5302782E-03 0.000000 0.000000 + Av 2018 6 11 2 0 7.6566890E-02 0.000000 0.000000 6.9993833E-04 9.9060882E-04 0.000000 0.000000 + Av 2018 6 11 3 0 7.8402624E-02 0.000000 0.000000 6.9961359E-04 4.7148301E-04 0.000000 0.000000 + Av 2018 6 11 4 0 7.2734021E-02 0.000000 0.000000 6.9928897E-04 2.5674482E-04 0.000000 0.000000 Av 2018 6 11 5 0 4.4916999E-02 0.000000 0.000000 2.9451505E-04 1.5403905E-04 0.000000 1.8384067E-03 Av 2018 6 11 6 0 8.1744296E-03 0.000000 0.000000 0.000000 9.9353900E-05 0.000000 4.3363045E-03 Av 2018 6 11 7 0 4.6033517E-04 0.000000 0.000000 0.000000 6.7751876E-05 0.000000 6.8342024E-03 @@ -3907,15 +3907,15 @@ Av 2018 6 11 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8342024E-03 Av 2018 6 11 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.3363045E-03 Av 2018 6 11 19 0 1.9703077E-02 0.000000 0.000000 2.8998876E-04 0.000000 0.000000 1.8384067E-03 - Av 2018 6 11 20 0 6.0013354E-02 0.000000 0.000000 6.9411605E-04 0.000000 0.000000 0.000000 - Av 2018 6 11 21 0 7.3433369E-02 0.000000 0.000000 6.9379399E-04 0.000000 0.000000 0.000000 - Av 2018 6 11 22 0 6.8723358E-02 0.000000 0.000000 6.9347210E-04 0.000000 0.000000 0.000000 - Av 2018 6 11 23 0 7.0317343E-02 0.000000 0.000000 6.9315039E-04 0.000000 0.000000 0.000000 - Av 2018 6 11 24 0 6.9719389E-02 0.000000 0.000000 6.9282879E-04 0.000000 0.000000 0.000000 - Av 2018 6 12 1 0 6.9362417E-02 0.000000 0.000000 6.8483653E-04 0.000000 0.000000 0.000000 - Av 2018 6 12 2 0 6.8922162E-02 0.000000 0.000000 6.8452227E-04 0.000000 0.000000 0.000000 - Av 2018 6 12 3 0 6.9032550E-02 0.000000 0.000000 6.8420824E-04 0.000000 0.000000 0.000000 - Av 2018 6 12 4 0 6.8951502E-02 0.000000 0.000000 6.8389426E-04 0.000000 0.000000 0.000000 + Av 2018 6 11 20 0 6.0013354E-02 0.000000 0.000000 6.9411605E-04 0.000000 0.000000 0.000000 + Av 2018 6 11 21 0 7.3433369E-02 0.000000 0.000000 6.9379399E-04 0.000000 0.000000 0.000000 + Av 2018 6 11 22 0 6.8723358E-02 0.000000 0.000000 6.9347210E-04 0.000000 0.000000 0.000000 + Av 2018 6 11 23 0 7.0317343E-02 0.000000 0.000000 6.9315039E-04 0.000000 0.000000 0.000000 + Av 2018 6 11 24 0 6.9719389E-02 0.000000 0.000000 6.9282879E-04 0.000000 0.000000 0.000000 + Av 2018 6 12 1 0 6.9362417E-02 0.000000 0.000000 6.8483653E-04 0.000000 0.000000 0.000000 + Av 2018 6 12 2 0 6.8922162E-02 0.000000 0.000000 6.8452227E-04 0.000000 0.000000 0.000000 + Av 2018 6 12 3 0 6.9032550E-02 0.000000 0.000000 6.8420824E-04 0.000000 0.000000 0.000000 + Av 2018 6 12 4 0 6.8951502E-02 0.000000 0.000000 6.8389426E-04 0.000000 0.000000 0.000000 Av 2018 6 12 5 0 3.8111873E-02 0.000000 0.000000 2.3160371E-04 0.000000 0.000000 2.0544401E-03 Av 2018 6 12 6 0 3.6308724E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.8270747E-03 Av 2018 6 12 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5997096E-03 @@ -3931,15 +3931,15 @@ Av 2018 6 12 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5997096E-03 Av 2018 6 12 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8270747E-03 Av 2018 6 12 19 0 1.5438696E-02 0.000000 0.000000 2.2722586E-04 0.000000 0.000000 2.0544401E-03 - Av 2018 6 12 20 0 5.6197286E-02 0.000000 0.000000 6.7889103E-04 0.000000 0.000000 0.000000 - Av 2018 6 12 21 0 7.2692066E-02 0.000000 0.000000 6.7857956E-04 0.000000 0.000000 0.000000 - Av 2018 6 12 22 0 6.6914365E-02 0.000000 0.000000 6.7826820E-04 0.000000 0.000000 0.000000 - Av 2018 6 12 23 0 6.8881020E-02 0.000000 0.000000 6.7795697E-04 0.000000 0.000000 0.000000 - Av 2018 6 12 24 0 6.8154916E-02 0.000000 0.000000 6.7764596E-04 0.000000 0.000000 0.000000 - Av 2018 6 13 1 0 6.7865118E-02 0.000000 0.000000 6.6997582E-04 0.000000 0.000000 0.000000 - Av 2018 6 13 2 0 6.7424089E-02 0.000000 0.000000 6.6967180E-04 0.000000 0.000000 0.000000 - Av 2018 6 13 3 0 6.7536131E-02 0.000000 0.000000 6.6936784E-04 0.000000 0.000000 0.000000 - Av 2018 6 13 4 0 6.7455873E-02 0.000000 0.000000 6.6906406E-04 0.000000 0.000000 0.000000 + Av 2018 6 12 20 0 5.6197286E-02 0.000000 0.000000 6.7889103E-04 0.000000 0.000000 0.000000 + Av 2018 6 12 21 0 7.2692066E-02 0.000000 0.000000 6.7857956E-04 0.000000 0.000000 0.000000 + Av 2018 6 12 22 0 6.6914365E-02 0.000000 0.000000 6.7826820E-04 0.000000 0.000000 0.000000 + Av 2018 6 12 23 0 6.8881020E-02 0.000000 0.000000 6.7795697E-04 0.000000 0.000000 0.000000 + Av 2018 6 12 24 0 6.8154916E-02 0.000000 0.000000 6.7764596E-04 0.000000 0.000000 0.000000 + Av 2018 6 13 1 0 6.7865118E-02 0.000000 0.000000 6.6997582E-04 0.000000 0.000000 0.000000 + Av 2018 6 13 2 0 6.7424089E-02 0.000000 0.000000 6.6967180E-04 0.000000 0.000000 0.000000 + Av 2018 6 13 3 0 6.7536131E-02 0.000000 0.000000 6.6936784E-04 0.000000 0.000000 0.000000 + Av 2018 6 13 4 0 6.7455873E-02 0.000000 0.000000 6.6906406E-04 0.000000 0.000000 0.000000 Av 2018 6 13 5 0 3.9696682E-02 0.000000 0.000000 2.6191803E-04 0.000000 0.000000 1.8492835E-03 Av 2018 6 13 6 0 5.9631765E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.3303948E-03 Av 2018 6 13 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8115061E-03 @@ -3955,15 +3955,15 @@ Av 2018 6 13 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8115061E-03 Av 2018 6 13 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.3303948E-03 Av 2018 6 13 19 0 1.7507983E-02 0.000000 0.000000 2.5768150E-04 0.000000 0.000000 1.8492835E-03 - Av 2018 6 13 20 0 5.6550406E-02 0.000000 0.000000 6.6422235E-04 0.000000 0.000000 0.000000 - Av 2018 6 13 21 0 7.0576653E-02 0.000000 0.000000 6.6392089E-04 0.000000 0.000000 0.000000 - Av 2018 6 13 22 0 6.5658644E-02 0.000000 0.000000 6.6361960E-04 0.000000 0.000000 0.000000 - Av 2018 6 13 23 0 6.7327753E-02 0.000000 0.000000 6.6331844E-04 0.000000 0.000000 0.000000 - Av 2018 6 13 24 0 6.6706471E-02 0.000000 0.000000 6.6301739E-04 0.000000 0.000000 0.000000 - Av 2018 6 14 1 0 6.6401839E-02 0.000000 0.000000 6.5565540E-04 0.000000 0.000000 0.000000 - Av 2018 6 14 2 0 6.5987557E-02 0.000000 0.000000 6.5536104E-04 0.000000 0.000000 0.000000 - Av 2018 6 14 3 0 6.6091605E-02 0.000000 0.000000 6.5506675E-04 0.000000 0.000000 0.000000 - Av 2018 6 14 4 0 6.6015452E-02 0.000000 0.000000 6.5477268E-04 0.000000 0.000000 0.000000 + Av 2018 6 13 20 0 5.6550406E-02 0.000000 0.000000 6.6422235E-04 0.000000 0.000000 0.000000 + Av 2018 6 13 21 0 7.0576653E-02 0.000000 0.000000 6.6392089E-04 0.000000 0.000000 0.000000 + Av 2018 6 13 22 0 6.5658644E-02 0.000000 0.000000 6.6361960E-04 0.000000 0.000000 0.000000 + Av 2018 6 13 23 0 6.7327753E-02 0.000000 0.000000 6.6331844E-04 0.000000 0.000000 0.000000 + Av 2018 6 13 24 0 6.6706471E-02 0.000000 0.000000 6.6301739E-04 0.000000 0.000000 0.000000 + Av 2018 6 14 1 0 6.6401839E-02 0.000000 0.000000 6.5565540E-04 0.000000 0.000000 0.000000 + Av 2018 6 14 2 0 6.5987557E-02 0.000000 0.000000 6.5536104E-04 0.000000 0.000000 0.000000 + Av 2018 6 14 3 0 6.6091605E-02 0.000000 0.000000 6.5506675E-04 0.000000 0.000000 0.000000 + Av 2018 6 14 4 0 6.6015452E-02 0.000000 0.000000 6.5477268E-04 0.000000 0.000000 0.000000 Av 2018 6 14 5 0 3.6986485E-02 0.000000 0.000000 2.2900201E-04 0.000000 0.000000 1.9339848E-03 Av 2018 6 14 6 0 3.9737746E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.5157247E-03 Av 2018 6 14 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.0974650E-03 @@ -3979,15 +3979,15 @@ Av 2018 6 14 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.0974650E-03 Av 2018 6 14 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5157247E-03 Av 2018 6 14 19 0 1.5280667E-02 0.000000 0.000000 2.2490000E-04 0.000000 0.000000 1.9339848E-03 - Av 2018 6 14 20 0 5.4136973E-02 0.000000 0.000000 6.5008464E-04 0.000000 0.000000 0.000000 - Av 2018 6 14 21 0 6.9495320E-02 0.000000 0.000000 6.4979278E-04 0.000000 0.000000 0.000000 - Av 2018 6 14 22 0 6.4115435E-02 0.000000 0.000000 6.4950099E-04 0.000000 0.000000 0.000000 - Av 2018 6 14 23 0 6.5946430E-02 0.000000 0.000000 6.4920943E-04 0.000000 0.000000 0.000000 - Av 2018 6 14 24 0 6.5270156E-02 0.000000 0.000000 6.4891792E-04 0.000000 0.000000 0.000000 - Av 2018 6 15 1 0 6.5005325E-02 0.000000 0.000000 6.4185075E-04 0.000000 0.000000 0.000000 - Av 2018 6 15 2 0 6.4597860E-02 0.000000 0.000000 6.4156560E-04 0.000000 0.000000 0.000000 - Av 2018 6 15 3 0 6.4700797E-02 0.000000 0.000000 6.4128049E-04 0.000000 0.000000 0.000000 - Av 2018 6 15 4 0 6.4626276E-02 0.000000 0.000000 6.4099563E-04 0.000000 0.000000 0.000000 + Av 2018 6 14 20 0 5.4136973E-02 0.000000 0.000000 6.5008464E-04 0.000000 0.000000 0.000000 + Av 2018 6 14 21 0 6.9495320E-02 0.000000 0.000000 6.4979278E-04 0.000000 0.000000 0.000000 + Av 2018 6 14 22 0 6.4115435E-02 0.000000 0.000000 6.4950099E-04 0.000000 0.000000 0.000000 + Av 2018 6 14 23 0 6.5946430E-02 0.000000 0.000000 6.4920943E-04 0.000000 0.000000 0.000000 + Av 2018 6 14 24 0 6.5270156E-02 0.000000 0.000000 6.4891792E-04 0.000000 0.000000 0.000000 + Av 2018 6 15 1 0 6.5005325E-02 0.000000 0.000000 6.4185075E-04 0.000000 0.000000 0.000000 + Av 2018 6 15 2 0 6.4597860E-02 0.000000 0.000000 6.4156560E-04 0.000000 0.000000 0.000000 + Av 2018 6 15 3 0 6.4700797E-02 0.000000 0.000000 6.4128049E-04 0.000000 0.000000 0.000000 + Av 2018 6 15 4 0 6.4626276E-02 0.000000 0.000000 6.4099563E-04 0.000000 0.000000 0.000000 Av 2018 6 15 5 0 3.3951178E-02 0.000000 0.000000 1.9106822E-04 0.000000 0.000000 2.0438300E-03 Av 2018 6 15 6 0 1.6330163E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.7608344E-03 Av 2018 6 15 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4778385E-03 @@ -4003,15 +4003,15 @@ Av 2018 6 15 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4778385E-03 Av 2018 6 15 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.7608344E-03 Av 2018 6 15 19 0 1.2711989E-02 0.000000 0.000000 1.8709432E-04 0.000000 0.000000 2.0438300E-03 - Av 2018 6 15 20 0 5.1535323E-02 0.000000 0.000000 6.3645403E-04 0.000000 0.000000 0.000000 - Av 2018 6 15 21 0 6.8548314E-02 0.000000 0.000000 6.3617126E-04 0.000000 0.000000 0.000000 - Av 2018 6 15 22 0 6.2594324E-02 0.000000 0.000000 6.3588854E-04 0.000000 0.000000 0.000000 - Av 2018 6 15 23 0 6.4626172E-02 0.000000 0.000000 6.3560606E-04 0.000000 0.000000 0.000000 - Av 2018 6 15 24 0 6.3881300E-02 0.000000 0.000000 6.3532364E-04 0.000000 0.000000 0.000000 - Av 2018 6 16 1 0 6.3660100E-02 0.000000 0.000000 6.2853855E-04 0.000000 0.000000 0.000000 - Av 2018 6 16 2 0 6.3257232E-02 0.000000 0.000000 6.2826218E-04 0.000000 0.000000 0.000000 - Av 2018 6 16 3 0 6.3359767E-02 0.000000 0.000000 6.2798586E-04 0.000000 0.000000 0.000000 - Av 2018 6 16 4 0 6.3286573E-02 0.000000 0.000000 6.2770973E-04 0.000000 0.000000 0.000000 + Av 2018 6 15 20 0 5.1535323E-02 0.000000 0.000000 6.3645403E-04 0.000000 0.000000 0.000000 + Av 2018 6 15 21 0 6.8548314E-02 0.000000 0.000000 6.3617126E-04 0.000000 0.000000 0.000000 + Av 2018 6 15 22 0 6.2594324E-02 0.000000 0.000000 6.3588854E-04 0.000000 0.000000 0.000000 + Av 2018 6 15 23 0 6.4626172E-02 0.000000 0.000000 6.3560606E-04 0.000000 0.000000 0.000000 + Av 2018 6 15 24 0 6.3881300E-02 0.000000 0.000000 6.3532364E-04 0.000000 0.000000 0.000000 + Av 2018 6 16 1 0 6.3660100E-02 0.000000 0.000000 6.2853855E-04 0.000000 0.000000 0.000000 + Av 2018 6 16 2 0 6.3257232E-02 0.000000 0.000000 6.2826218E-04 0.000000 0.000000 0.000000 + Av 2018 6 16 3 0 6.3359767E-02 0.000000 0.000000 6.2798586E-04 0.000000 0.000000 0.000000 + Av 2018 6 16 4 0 6.3286573E-02 0.000000 0.000000 6.2770973E-04 0.000000 0.000000 0.000000 Av 2018 6 16 5 0 3.1648412E-02 0.000000 0.000000 1.6356440E-04 0.000000 0.000000 2.1084966E-03 Av 2018 6 16 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9021398E-03 Av 2018 6 16 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6957829E-03 @@ -4027,15 +4027,15 @@ Av 2018 6 16 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6957829E-03 Av 2018 6 16 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9021398E-03 Av 2018 6 16 19 0 1.0851558E-02 0.000000 0.000000 1.5971262E-04 0.000000 0.000000 2.1084966E-03 - Av 2018 6 16 20 0 4.9750380E-02 0.000000 0.000000 6.2330760E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 6 16 21 0 6.7704916E-02 0.000000 0.000000 6.2303350E-04 0.000000 0.000000 0.000000 - Av 2018 6 16 22 0 6.1102904E-02 0.000000 0.000000 6.2275957E-04 0.000000 0.000000 0.000000 - Av 2018 6 16 23 0 6.3361265E-02 0.000000 0.000000 6.2248571E-04 0.000000 0.000000 0.000000 - Av 2018 6 16 24 0 6.2538803E-02 0.000000 0.000000 6.2221196E-04 0.000000 0.000000 0.000000 - Av 2018 6 17 1 0 6.2363520E-02 0.000000 0.000000 6.1569689E-04 0.000000 0.000000 0.000000 - Av 2018 6 17 2 0 6.1963595E-02 0.000000 0.000000 6.1542884E-04 0.000000 0.000000 0.000000 - Av 2018 6 17 3 0 6.2066231E-02 0.000000 0.000000 6.1516085E-04 0.000000 0.000000 0.000000 - Av 2018 6 17 4 0 6.1994143E-02 0.000000 0.000000 6.1489310E-04 0.000000 0.000000 0.000000 + Av 2018 6 16 20 0 4.9750380E-02 0.000000 0.000000 6.2330760E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 6 16 21 0 6.7704916E-02 0.000000 0.000000 6.2303350E-04 0.000000 0.000000 0.000000 + Av 2018 6 16 22 0 6.1102904E-02 0.000000 0.000000 6.2275957E-04 0.000000 0.000000 0.000000 + Av 2018 6 16 23 0 6.3361265E-02 0.000000 0.000000 6.2248571E-04 0.000000 0.000000 0.000000 + Av 2018 6 16 24 0 6.2538803E-02 0.000000 0.000000 6.2221196E-04 0.000000 0.000000 0.000000 + Av 2018 6 17 1 0 6.2363520E-02 0.000000 0.000000 6.1569689E-04 0.000000 0.000000 0.000000 + Av 2018 6 17 2 0 6.1963595E-02 0.000000 0.000000 6.1542884E-04 0.000000 0.000000 0.000000 + Av 2018 6 17 3 0 6.2066231E-02 0.000000 0.000000 6.1516085E-04 0.000000 0.000000 0.000000 + Av 2018 6 17 4 0 6.1994143E-02 0.000000 0.000000 6.1489310E-04 0.000000 0.000000 0.000000 Av 2018 6 17 5 0 3.1002341E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.8051834E-03 Av 2018 6 17 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.5126368E-03 Av 2018 6 17 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0220090E-02 @@ -4051,15 +4051,15 @@ Av 2018 6 17 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 1.0220090E-02 Av 2018 6 17 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.5126368E-03 Av 2018 6 17 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8051834E-03 - Av 2018 6 17 20 0 4.1488409E-02 0.000000 0.000000 6.1062403E-04 0.000000 0.000000 0.000000 - Av 2018 6 17 21 0 6.8532869E-02 0.000000 0.000000 6.1035820E-04 0.000000 0.000000 0.000000 - Av 2018 6 17 22 0 5.9093151E-02 0.000000 0.000000 6.1009248E-04 0.000000 0.000000 0.000000 - Av 2018 6 17 23 0 6.2339321E-02 0.000000 0.000000 6.0982688E-04 0.000000 0.000000 0.000000 - Av 2018 6 17 24 0 6.1174512E-02 0.000000 0.000000 6.0956139E-04 0.000000 0.000000 0.000000 - Av 2018 6 18 1 0 6.1136387E-02 0.000000 0.000000 6.0330471E-04 0.000000 0.000000 0.000000 - Av 2018 6 18 2 0 6.0706872E-02 0.000000 0.000000 6.0304470E-04 0.000000 0.000000 0.000000 - Av 2018 6 18 3 0 6.0820885E-02 0.000000 0.000000 6.0278468E-04 0.000000 0.000000 0.000000 - Av 2018 6 18 4 0 6.0745917E-02 0.000000 0.000000 6.0252484E-04 0.000000 0.000000 0.000000 + Av 2018 6 17 20 0 4.1488409E-02 0.000000 0.000000 6.1062403E-04 0.000000 0.000000 0.000000 + Av 2018 6 17 21 0 6.8532869E-02 0.000000 0.000000 6.1035820E-04 0.000000 0.000000 0.000000 + Av 2018 6 17 22 0 5.9093151E-02 0.000000 0.000000 6.1009248E-04 0.000000 0.000000 0.000000 + Av 2018 6 17 23 0 6.2339321E-02 0.000000 0.000000 6.0982688E-04 0.000000 0.000000 0.000000 + Av 2018 6 17 24 0 6.1174512E-02 0.000000 0.000000 6.0956139E-04 0.000000 0.000000 0.000000 + Av 2018 6 18 1 0 6.1136387E-02 0.000000 0.000000 6.0330471E-04 0.000000 0.000000 0.000000 + Av 2018 6 18 2 0 6.0706872E-02 0.000000 0.000000 6.0304470E-04 0.000000 0.000000 0.000000 + Av 2018 6 18 3 0 6.0820885E-02 0.000000 0.000000 6.0278468E-04 0.000000 0.000000 0.000000 + Av 2018 6 18 4 0 6.0745917E-02 0.000000 0.000000 6.0252484E-04 0.000000 0.000000 0.000000 Av 2018 6 18 5 0 3.0379409E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.8782729E-03 Av 2018 6 18 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.6760108E-03 Av 2018 6 18 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0473749E-02 @@ -4075,15 +4075,15 @@ Av 2018 6 18 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0473749E-02 Av 2018 6 18 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.6760108E-03 Av 2018 6 18 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8782729E-03 - Av 2018 6 18 20 0 4.0656678E-02 0.000000 0.000000 5.9838267E-04 0.000000 0.000000 0.000000 - Av 2018 6 18 21 0 6.7159146E-02 0.000000 0.000000 5.9812475E-04 0.000000 0.000000 0.000000 - Av 2018 6 18 22 0 5.7908956E-02 0.000000 0.000000 5.9786695E-04 0.000000 0.000000 0.000000 - Av 2018 6 18 23 0 6.1090298E-02 0.000000 0.000000 5.9760921E-04 0.000000 0.000000 0.000000 - Av 2018 6 18 24 0 5.9949107E-02 0.000000 0.000000 5.9735164E-04 0.000000 0.000000 0.000000 - Av 2018 6 19 1 0 5.9920117E-02 0.000000 0.000000 5.9134240E-04 0.000000 0.000000 0.000000 - Av 2018 6 19 2 0 5.9504751E-02 0.000000 0.000000 5.9108995E-04 0.000000 0.000000 0.000000 - Av 2018 6 19 3 0 5.9614882E-02 0.000000 0.000000 5.9083762E-04 0.000000 0.000000 0.000000 - Av 2018 6 19 4 0 5.9542306E-02 0.000000 0.000000 5.9058541E-04 0.000000 0.000000 0.000000 + Av 2018 6 18 20 0 4.0656678E-02 0.000000 0.000000 5.9838267E-04 0.000000 0.000000 0.000000 + Av 2018 6 18 21 0 6.7159146E-02 0.000000 0.000000 5.9812475E-04 0.000000 0.000000 0.000000 + Av 2018 6 18 22 0 5.7908956E-02 0.000000 0.000000 5.9786695E-04 0.000000 0.000000 0.000000 + Av 2018 6 18 23 0 6.1090298E-02 0.000000 0.000000 5.9760921E-04 0.000000 0.000000 0.000000 + Av 2018 6 18 24 0 5.9949107E-02 0.000000 0.000000 5.9735164E-04 0.000000 0.000000 0.000000 + Av 2018 6 19 1 0 5.9920117E-02 0.000000 0.000000 5.9134240E-04 0.000000 0.000000 0.000000 + Av 2018 6 19 2 0 5.9504751E-02 0.000000 0.000000 5.9108995E-04 0.000000 0.000000 0.000000 + Av 2018 6 19 3 0 5.9614882E-02 0.000000 0.000000 5.9083762E-04 0.000000 0.000000 0.000000 + Av 2018 6 19 4 0 5.9542306E-02 0.000000 0.000000 5.9058541E-04 0.000000 0.000000 0.000000 Av 2018 6 19 5 0 2.9777361E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.9268304E-03 Av 2018 6 19 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7854342E-03 Av 2018 6 19 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0644037E-02 @@ -4099,15 +4099,15 @@ Av 2018 6 19 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0644037E-02 Av 2018 6 19 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7854342E-03 Av 2018 6 19 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9268304E-03 - Av 2018 6 19 20 0 3.9853677E-02 0.000000 0.000000 5.8656419E-04 0.000000 0.000000 0.000000 - Av 2018 6 19 21 0 6.5832868E-02 0.000000 0.000000 5.8631384E-04 0.000000 0.000000 0.000000 - Av 2018 6 19 22 0 5.6765661E-02 0.000000 0.000000 5.8606354E-04 0.000000 0.000000 0.000000 - Av 2018 6 19 23 0 5.9884403E-02 0.000000 0.000000 5.8581337E-04 0.000000 0.000000 0.000000 - Av 2018 6 19 24 0 5.8766000E-02 0.000000 0.000000 5.8556331E-04 0.000000 0.000000 0.000000 - Av 2018 6 20 1 0 5.8745697E-02 0.000000 0.000000 5.7979103E-04 0.000000 0.000000 0.000000 - Av 2018 6 20 2 0 5.8343899E-02 0.000000 0.000000 5.7954580E-04 0.000000 0.000000 0.000000 - Av 2018 6 20 3 0 5.8450293E-02 0.000000 0.000000 5.7930069E-04 0.000000 0.000000 0.000000 - Av 2018 6 20 4 0 5.8380000E-02 0.000000 0.000000 5.7905569E-04 0.000000 0.000000 0.000000 + Av 2018 6 19 20 0 3.9853677E-02 0.000000 0.000000 5.8656419E-04 0.000000 0.000000 0.000000 + Av 2018 6 19 21 0 6.5832868E-02 0.000000 0.000000 5.8631384E-04 0.000000 0.000000 0.000000 + Av 2018 6 19 22 0 5.6765661E-02 0.000000 0.000000 5.8606354E-04 0.000000 0.000000 0.000000 + Av 2018 6 19 23 0 5.9884403E-02 0.000000 0.000000 5.8581337E-04 0.000000 0.000000 0.000000 + Av 2018 6 19 24 0 5.8766000E-02 0.000000 0.000000 5.8556331E-04 0.000000 0.000000 0.000000 + Av 2018 6 20 1 0 5.8745697E-02 0.000000 0.000000 5.7979103E-04 0.000000 0.000000 0.000000 + Av 2018 6 20 2 0 5.8343899E-02 0.000000 0.000000 5.7954580E-04 0.000000 0.000000 0.000000 + Av 2018 6 20 3 0 5.8450293E-02 0.000000 0.000000 5.7930069E-04 0.000000 0.000000 0.000000 + Av 2018 6 20 4 0 5.8380000E-02 0.000000 0.000000 5.7905569E-04 0.000000 0.000000 0.000000 Av 2018 6 20 5 0 2.9195974E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.2376829E-03 Av 2018 6 20 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5061009E-03 Av 2018 6 20 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1774519E-02 @@ -4123,15 +4123,15 @@ Av 2018 6 20 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1774519E-02 Av 2018 6 20 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5061009E-03 Av 2018 6 20 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2376829E-03 - Av 2018 6 20 20 0 3.9078165E-02 0.000000 0.000000 5.7515025E-04 0.000000 0.000000 0.000000 - Av 2018 6 20 21 0 6.4551979E-02 0.000000 0.000000 5.7490700E-04 0.000000 0.000000 0.000000 - Av 2018 6 20 22 0 5.5661462E-02 0.000000 0.000000 5.7466386E-04 0.000000 0.000000 0.000000 - Av 2018 6 20 23 0 5.8719743E-02 0.000000 0.000000 5.7442085E-04 0.000000 0.000000 0.000000 - Av 2018 6 20 24 0 5.7623338E-02 0.000000 0.000000 5.7417795E-04 0.000000 0.000000 0.000000 - Av 2018 6 21 1 0 5.7611287E-02 0.000000 0.000000 5.6863256E-04 0.000000 0.000000 0.000000 - Av 2018 6 21 2 0 5.7222512E-02 0.000000 0.000000 5.6839432E-04 0.000000 0.000000 0.000000 - Av 2018 6 21 3 0 5.7325326E-02 0.000000 0.000000 5.6815619E-04 0.000000 0.000000 0.000000 - Av 2018 6 21 4 0 5.7257220E-02 0.000000 0.000000 5.6791812E-04 0.000000 0.000000 0.000000 + Av 2018 6 20 20 0 3.9078165E-02 0.000000 0.000000 5.7515025E-04 0.000000 0.000000 0.000000 + Av 2018 6 20 21 0 6.4551979E-02 0.000000 0.000000 5.7490700E-04 0.000000 0.000000 0.000000 + Av 2018 6 20 22 0 5.5661462E-02 0.000000 0.000000 5.7466386E-04 0.000000 0.000000 0.000000 + Av 2018 6 20 23 0 5.8719743E-02 0.000000 0.000000 5.7442085E-04 0.000000 0.000000 0.000000 + Av 2018 6 20 24 0 5.7623338E-02 0.000000 0.000000 5.7417795E-04 0.000000 0.000000 0.000000 + Av 2018 6 21 1 0 5.7611287E-02 0.000000 0.000000 5.6863256E-04 0.000000 0.000000 0.000000 + Av 2018 6 21 2 0 5.7222512E-02 0.000000 0.000000 5.6839432E-04 0.000000 0.000000 0.000000 + Av 2018 6 21 3 0 5.7325326E-02 0.000000 0.000000 5.6815619E-04 0.000000 0.000000 0.000000 + Av 2018 6 21 4 0 5.7257220E-02 0.000000 0.000000 5.6791812E-04 0.000000 0.000000 0.000000 Av 2018 6 21 5 0 2.8634364E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.7324569E-03 Av 2018 6 21 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.3377982E-03 Av 2018 6 21 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9431388E-03 @@ -4147,15 +4147,15 @@ Av 2018 6 21 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9431388E-03 Av 2018 6 21 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.3377982E-03 Av 2018 6 21 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.7324569E-03 - Av 2018 6 21 20 0 3.8328934E-02 0.000000 0.000000 5.6412310E-04 0.000000 0.000000 0.000000 - Av 2018 6 21 21 0 6.3314505E-02 0.000000 0.000000 5.6388677E-04 0.000000 0.000000 0.000000 - Av 2018 6 21 22 0 5.4594688E-02 0.000000 0.000000 5.6365051E-04 0.000000 0.000000 0.000000 - Av 2018 6 21 23 0 5.7594545E-02 0.000000 0.000000 5.6341436E-04 0.000000 0.000000 0.000000 - Av 2018 6 21 24 0 5.6519389E-02 0.000000 0.000000 5.6317833E-04 0.000000 0.000000 0.000000 - Av 2018 6 22 1 0 5.6515191E-02 0.000000 0.000000 5.5785041E-04 0.000000 0.000000 0.000000 - Av 2018 6 22 2 0 5.6138910E-02 0.000000 0.000000 5.5761880E-04 0.000000 0.000000 0.000000 - Av 2018 6 22 3 0 5.6238279E-02 0.000000 0.000000 5.5738725E-04 0.000000 0.000000 0.000000 - Av 2018 6 22 4 0 5.6172274E-02 0.000000 0.000000 5.5715581E-04 0.000000 0.000000 0.000000 + Av 2018 6 21 20 0 3.8328934E-02 0.000000 0.000000 5.6412310E-04 0.000000 0.000000 0.000000 + Av 2018 6 21 21 0 6.3314505E-02 0.000000 0.000000 5.6388677E-04 0.000000 0.000000 0.000000 + Av 2018 6 21 22 0 5.4594688E-02 0.000000 0.000000 5.6365051E-04 0.000000 0.000000 0.000000 + Av 2018 6 21 23 0 5.7594545E-02 0.000000 0.000000 5.6341436E-04 0.000000 0.000000 0.000000 + Av 2018 6 21 24 0 5.6519389E-02 0.000000 0.000000 5.6317833E-04 0.000000 0.000000 0.000000 + Av 2018 6 22 1 0 5.6515191E-02 0.000000 0.000000 5.5785041E-04 0.000000 0.000000 0.000000 + Av 2018 6 22 2 0 5.6138910E-02 0.000000 0.000000 5.5761880E-04 0.000000 0.000000 0.000000 + Av 2018 6 22 3 0 5.6238279E-02 0.000000 0.000000 5.5738725E-04 0.000000 0.000000 0.000000 + Av 2018 6 22 4 0 5.6172274E-02 0.000000 0.000000 5.5715581E-04 0.000000 0.000000 0.000000 Av 2018 6 22 5 0 2.8091677E-02 0.000000 0.000000 3.4297409E-05 0.000000 0.000000 2.3755776E-03 Av 2018 6 22 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5152448E-03 Av 2018 6 22 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.6549120E-03 @@ -4171,15 +4171,15 @@ Av 2018 6 22 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.6549120E-03 Av 2018 6 22 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5152448E-03 Av 2018 6 22 19 0 2.1109593E-03 0.000000 0.000000 3.1068979E-05 0.000000 0.000000 2.3755776E-03 - Av 2018 6 22 20 0 3.8981818E-02 0.000000 0.000000 5.5346615E-04 0.000000 0.000000 0.000000 - Av 2018 6 22 21 0 6.1639778E-02 0.000000 0.000000 5.5323634E-04 0.000000 0.000000 0.000000 - Av 2018 6 22 22 0 5.3730182E-02 0.000000 0.000000 5.5300666E-04 0.000000 0.000000 0.000000 - Av 2018 6 22 23 0 5.6449208E-02 0.000000 0.000000 5.5277703E-04 0.000000 0.000000 0.000000 - Av 2018 6 22 24 0 5.5472586E-02 0.000000 0.000000 5.5254757E-04 0.000000 0.000000 0.000000 - Av 2018 6 23 1 0 5.5448726E-02 0.000000 0.000000 5.4742792E-04 0.000000 0.000000 0.000000 - Av 2018 6 23 2 0 5.5093866E-02 0.000000 0.000000 5.4720265E-04 0.000000 0.000000 0.000000 - Av 2018 6 23 3 0 5.5186652E-02 0.000000 0.000000 5.4697751E-04 0.000000 0.000000 0.000000 - Av 2018 6 23 4 0 5.5123799E-02 0.000000 0.000000 5.4675242E-04 0.000000 0.000000 0.000000 + Av 2018 6 22 20 0 3.8981818E-02 0.000000 0.000000 5.5346615E-04 0.000000 0.000000 0.000000 + Av 2018 6 22 21 0 6.1639778E-02 0.000000 0.000000 5.5323634E-04 0.000000 0.000000 0.000000 + Av 2018 6 22 22 0 5.3730182E-02 0.000000 0.000000 5.5300666E-04 0.000000 0.000000 0.000000 + Av 2018 6 22 23 0 5.6449208E-02 0.000000 0.000000 5.5277703E-04 0.000000 0.000000 0.000000 + Av 2018 6 22 24 0 5.5472586E-02 0.000000 0.000000 5.5254757E-04 0.000000 0.000000 0.000000 + Av 2018 6 23 1 0 5.5448726E-02 0.000000 0.000000 5.4742792E-04 0.000000 0.000000 0.000000 + Av 2018 6 23 2 0 5.5093866E-02 0.000000 0.000000 5.4720265E-04 0.000000 0.000000 0.000000 + Av 2018 6 23 3 0 5.5186652E-02 0.000000 0.000000 5.4697751E-04 0.000000 0.000000 0.000000 + Av 2018 6 23 4 0 5.5123799E-02 0.000000 0.000000 5.4675242E-04 0.000000 0.000000 0.000000 Av 2018 6 23 5 0 2.7566927E-02 0.000000 0.000000 3.1365431E-05 0.000000 0.000000 2.3416455E-03 Av 2018 6 23 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4441979E-03 Av 2018 6 23 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.5467510E-03 @@ -4195,15 +4195,15 @@ Av 2018 6 23 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.5467510E-03 Av 2018 6 23 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4441979E-03 Av 2018 6 23 19 0 1.9177397E-03 0.000000 0.000000 2.8225186E-05 0.000000 0.000000 2.3416455E-03 - Av 2018 6 23 20 0 3.8155783E-02 0.000000 0.000000 5.4316362E-04 0.000000 0.000000 0.000000 - Av 2018 6 23 21 0 6.0527429E-02 0.000000 0.000000 5.4294011E-04 0.000000 0.000000 0.000000 - Av 2018 6 23 22 0 5.2718237E-02 0.000000 0.000000 5.4271665E-04 0.000000 0.000000 0.000000 - Av 2018 6 23 23 0 5.5403203E-02 0.000000 0.000000 5.4249330E-04 0.000000 0.000000 0.000000 - Av 2018 6 23 24 0 5.4439276E-02 0.000000 0.000000 5.4227008E-04 0.000000 0.000000 0.000000 - Av 2018 6 24 1 0 5.4424986E-02 0.000000 0.000000 5.3735002E-04 0.000000 0.000000 0.000000 - Av 2018 6 24 2 0 5.4080769E-02 0.000000 0.000000 5.3713081E-04 0.000000 0.000000 0.000000 - Av 2018 6 24 3 0 5.4170668E-02 0.000000 0.000000 5.3691166E-04 0.000000 0.000000 0.000000 - Av 2018 6 24 4 0 5.4109640E-02 0.000000 0.000000 5.3669262E-04 0.000000 0.000000 0.000000 + Av 2018 6 23 20 0 3.8155783E-02 0.000000 0.000000 5.4316362E-04 0.000000 0.000000 0.000000 + Av 2018 6 23 21 0 6.0527429E-02 0.000000 0.000000 5.4294011E-04 0.000000 0.000000 0.000000 + Av 2018 6 23 22 0 5.2718237E-02 0.000000 0.000000 5.4271665E-04 0.000000 0.000000 0.000000 + Av 2018 6 23 23 0 5.5403203E-02 0.000000 0.000000 5.4249330E-04 0.000000 0.000000 0.000000 + Av 2018 6 23 24 0 5.4439276E-02 0.000000 0.000000 5.4227008E-04 0.000000 0.000000 0.000000 + Av 2018 6 24 1 0 5.4424986E-02 0.000000 0.000000 5.3735002E-04 0.000000 0.000000 0.000000 + Av 2018 6 24 2 0 5.4080769E-02 0.000000 0.000000 5.3713081E-04 0.000000 0.000000 0.000000 + Av 2018 6 24 3 0 5.4170668E-02 0.000000 0.000000 5.3691166E-04 0.000000 0.000000 0.000000 + Av 2018 6 24 4 0 5.4109640E-02 0.000000 0.000000 5.3669262E-04 0.000000 0.000000 0.000000 Av 2018 6 24 5 0 2.7059682E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.6572177E-03 Av 2018 6 24 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.1896401E-03 Av 2018 6 24 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.7220633E-03 @@ -4219,15 +4219,15 @@ Av 2018 6 24 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.7220633E-03 Av 2018 6 24 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.1896401E-03 Av 2018 6 24 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.6572177E-03 - Av 2018 6 24 20 0 3.6227912E-02 0.000000 0.000000 5.3320033E-04 0.000000 0.000000 0.000000 - Av 2018 6 24 21 0 5.9844274E-02 0.000000 0.000000 5.3298281E-04 0.000000 0.000000 0.000000 - Av 2018 6 24 22 0 5.1603101E-02 0.000000 0.000000 5.3276541E-04 0.000000 0.000000 0.000000 - Av 2018 6 24 23 0 5.4439094E-02 0.000000 0.000000 5.3254806E-04 0.000000 0.000000 0.000000 - Av 2018 6 24 24 0 5.3423468E-02 0.000000 0.000000 5.3233083E-04 0.000000 0.000000 0.000000 - Av 2018 6 25 1 0 5.3440556E-02 0.000000 0.000000 5.2760204E-04 0.000000 0.000000 0.000000 - Av 2018 6 25 2 0 5.3098820E-02 0.000000 0.000000 5.2738865E-04 0.000000 0.000000 0.000000 - Av 2018 6 25 3 0 5.3188652E-02 0.000000 0.000000 5.2717532E-04 0.000000 0.000000 0.000000 - Av 2018 6 25 4 0 5.3128436E-02 0.000000 0.000000 5.2696210E-04 0.000000 0.000000 0.000000 + Av 2018 6 24 20 0 3.6227912E-02 0.000000 0.000000 5.3320033E-04 0.000000 0.000000 0.000000 + Av 2018 6 24 21 0 5.9844274E-02 0.000000 0.000000 5.3298281E-04 0.000000 0.000000 0.000000 + Av 2018 6 24 22 0 5.1603101E-02 0.000000 0.000000 5.3276541E-04 0.000000 0.000000 0.000000 + Av 2018 6 24 23 0 5.4439094E-02 0.000000 0.000000 5.3254806E-04 0.000000 0.000000 0.000000 + Av 2018 6 24 24 0 5.3423468E-02 0.000000 0.000000 5.3233083E-04 0.000000 0.000000 0.000000 + Av 2018 6 25 1 0 5.3440556E-02 0.000000 0.000000 5.2760204E-04 0.000000 0.000000 0.000000 + Av 2018 6 25 2 0 5.3098820E-02 0.000000 0.000000 5.2738865E-04 0.000000 0.000000 0.000000 + Av 2018 6 25 3 0 5.3188652E-02 0.000000 0.000000 5.2717532E-04 0.000000 0.000000 0.000000 + Av 2018 6 25 4 0 5.3128436E-02 0.000000 0.000000 5.2696210E-04 0.000000 0.000000 0.000000 Av 2018 6 25 5 0 2.6569163E-02 0.000000 0.000000 7.2016497E-05 0.000000 0.000000 2.0669659E-03 Av 2018 6 25 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8262267E-03 Av 2018 6 25 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5854878E-03 @@ -4243,15 +4243,15 @@ Av 2018 6 25 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5854878E-03 Av 2018 6 25 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8262267E-03 Av 2018 6 25 19 0 4.6909670E-03 0.000000 0.000000 6.9041387E-05 0.000000 0.000000 2.0669659E-03 - Av 2018 6 25 20 0 3.8632922E-02 0.000000 0.000000 5.2356208E-04 0.000000 0.000000 0.000000 - Av 2018 6 25 21 0 5.7698689E-02 0.000000 0.000000 5.2335026E-04 0.000000 0.000000 0.000000 - Av 2018 6 25 22 0 5.1040582E-02 0.000000 0.000000 5.2313862E-04 0.000000 0.000000 0.000000 - Av 2018 6 25 23 0 5.3326908E-02 0.000000 0.000000 5.2292703E-04 0.000000 0.000000 0.000000 - Av 2018 6 25 24 0 5.2503183E-02 0.000000 0.000000 5.2271551E-04 0.000000 0.000000 0.000000 - Av 2018 6 26 1 0 5.2466393E-02 0.000000 0.000000 5.1817007E-04 0.000000 0.000000 0.000000 - Av 2018 6 26 2 0 5.2156225E-02 0.000000 0.000000 5.1796221E-04 0.000000 0.000000 0.000000 - Av 2018 6 26 3 0 5.2235834E-02 0.000000 0.000000 5.1775447E-04 0.000000 0.000000 0.000000 - Av 2018 6 26 4 0 5.2179933E-02 0.000000 0.000000 5.1754678E-04 0.000000 0.000000 0.000000 + Av 2018 6 25 20 0 3.8632922E-02 0.000000 0.000000 5.2356208E-04 0.000000 0.000000 0.000000 + Av 2018 6 25 21 0 5.7698689E-02 0.000000 0.000000 5.2335026E-04 0.000000 0.000000 0.000000 + Av 2018 6 25 22 0 5.1040582E-02 0.000000 0.000000 5.2313862E-04 0.000000 0.000000 0.000000 + Av 2018 6 25 23 0 5.3326908E-02 0.000000 0.000000 5.2292703E-04 0.000000 0.000000 0.000000 + Av 2018 6 25 24 0 5.2503183E-02 0.000000 0.000000 5.2271551E-04 0.000000 0.000000 0.000000 + Av 2018 6 26 1 0 5.2466393E-02 0.000000 0.000000 5.1817007E-04 0.000000 0.000000 0.000000 + Av 2018 6 26 2 0 5.2156225E-02 0.000000 0.000000 5.1796221E-04 0.000000 0.000000 0.000000 + Av 2018 6 26 3 0 5.2235834E-02 0.000000 0.000000 5.1775447E-04 0.000000 0.000000 0.000000 + Av 2018 6 26 4 0 5.2179933E-02 0.000000 0.000000 5.1754678E-04 0.000000 0.000000 0.000000 Av 2018 6 26 5 0 2.6094051E-02 0.000000 0.000000 7.4642536E-05 0.000000 0.000000 2.0122577E-03 Av 2018 6 26 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.7120252E-03 Av 2018 6 26 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4117924E-03 @@ -4267,15 +4267,15 @@ Av 2018 6 26 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4117924E-03 Av 2018 6 26 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.7120252E-03 Av 2018 6 26 19 0 4.8746476E-03 0.000000 0.000000 7.1744784E-05 0.000000 0.000000 2.0122577E-03 - Av 2018 6 26 20 0 3.8119022E-02 0.000000 0.000000 5.1423511E-04 0.000000 0.000000 0.000000 - Av 2018 6 26 21 0 5.6610323E-02 0.000000 0.000000 5.1402883E-04 0.000000 0.000000 0.000000 - Av 2018 6 26 22 0 5.0152712E-02 0.000000 0.000000 5.1382266E-04 0.000000 0.000000 0.000000 - Av 2018 6 26 23 0 5.2370071E-02 0.000000 0.000000 5.1361654E-04 0.000000 0.000000 0.000000 - Av 2018 6 26 24 0 5.1571071E-02 0.000000 0.000000 5.1341049E-04 0.000000 0.000000 0.000000 - Av 2018 6 27 1 0 5.1537998E-02 0.000000 0.000000 5.0904090E-04 0.000000 0.000000 0.000000 - Av 2018 6 27 2 0 5.1238850E-02 0.000000 0.000000 5.0883839E-04 0.000000 0.000000 0.000000 - Av 2018 6 27 3 0 5.1315352E-02 0.000000 0.000000 5.0863595E-04 0.000000 0.000000 0.000000 - Av 2018 6 27 4 0 5.1261246E-02 0.000000 0.000000 5.0843356E-04 0.000000 0.000000 0.000000 + Av 2018 6 26 20 0 3.8119022E-02 0.000000 0.000000 5.1423511E-04 0.000000 0.000000 0.000000 + Av 2018 6 26 21 0 5.6610323E-02 0.000000 0.000000 5.1402883E-04 0.000000 0.000000 0.000000 + Av 2018 6 26 22 0 5.0152712E-02 0.000000 0.000000 5.1382266E-04 0.000000 0.000000 0.000000 + Av 2018 6 26 23 0 5.2370071E-02 0.000000 0.000000 5.1361654E-04 0.000000 0.000000 0.000000 + Av 2018 6 26 24 0 5.1571071E-02 0.000000 0.000000 5.1341049E-04 0.000000 0.000000 0.000000 + Av 2018 6 27 1 0 5.1537998E-02 0.000000 0.000000 5.0904090E-04 0.000000 0.000000 0.000000 + Av 2018 6 27 2 0 5.1238850E-02 0.000000 0.000000 5.0883839E-04 0.000000 0.000000 0.000000 + Av 2018 6 27 3 0 5.1315352E-02 0.000000 0.000000 5.0863595E-04 0.000000 0.000000 0.000000 + Av 2018 6 27 4 0 5.1261246E-02 0.000000 0.000000 5.0843356E-04 0.000000 0.000000 0.000000 Av 2018 6 27 5 0 2.5634505E-02 0.000000 0.000000 6.6261331E-05 0.000000 0.000000 2.0089543E-03 Av 2018 6 27 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.7202022E-03 Av 2018 6 27 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4314503E-03 @@ -4291,15 +4291,15 @@ Av 2018 6 27 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4314503E-03 Av 2018 6 27 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.7202022E-03 Av 2018 6 27 19 0 4.3102270E-03 0.000000 0.000000 6.3437677E-05 0.000000 0.000000 2.0089543E-03 - Av 2018 6 27 20 0 3.7137415E-02 0.000000 0.000000 5.0520652E-04 0.000000 0.000000 0.000000 - Av 2018 6 27 21 0 5.5725120E-02 0.000000 0.000000 5.0500553E-04 0.000000 0.000000 0.000000 - Av 2018 6 27 22 0 4.9234703E-02 0.000000 0.000000 5.0480460E-04 0.000000 0.000000 0.000000 - Av 2018 6 27 23 0 5.1464181E-02 0.000000 0.000000 5.0460378E-04 0.000000 0.000000 0.000000 - Av 2018 6 27 24 0 5.0661679E-02 0.000000 0.000000 5.0440297E-04 0.000000 0.000000 0.000000 - Av 2018 6 28 1 0 5.0641634E-02 0.000000 0.000000 5.0020195E-04 0.000000 0.000000 0.000000 - Av 2018 6 28 2 0 5.0349757E-02 0.000000 0.000000 5.0000451E-04 0.000000 0.000000 0.000000 - Av 2018 6 28 3 0 5.0424423E-02 0.000000 0.000000 4.9980718E-04 0.000000 0.000000 0.000000 - Av 2018 6 28 4 0 5.0371647E-02 0.000000 0.000000 4.9960986E-04 0.000000 0.000000 0.000000 + Av 2018 6 27 20 0 3.7137415E-02 0.000000 0.000000 5.0520652E-04 0.000000 0.000000 0.000000 + Av 2018 6 27 21 0 5.5725120E-02 0.000000 0.000000 5.0500553E-04 0.000000 0.000000 0.000000 + Av 2018 6 27 22 0 4.9234703E-02 0.000000 0.000000 5.0480460E-04 0.000000 0.000000 0.000000 + Av 2018 6 27 23 0 5.1464181E-02 0.000000 0.000000 5.0460378E-04 0.000000 0.000000 0.000000 + Av 2018 6 27 24 0 5.0661679E-02 0.000000 0.000000 5.0440297E-04 0.000000 0.000000 0.000000 + Av 2018 6 28 1 0 5.0641634E-02 0.000000 0.000000 5.0020195E-04 0.000000 0.000000 0.000000 + Av 2018 6 28 2 0 5.0349757E-02 0.000000 0.000000 5.0000451E-04 0.000000 0.000000 0.000000 + Av 2018 6 28 3 0 5.0424423E-02 0.000000 0.000000 4.9980718E-04 0.000000 0.000000 0.000000 + Av 2018 6 28 4 0 5.0371647E-02 0.000000 0.000000 4.9960986E-04 0.000000 0.000000 0.000000 Av 2018 6 28 5 0 2.5189612E-02 0.000000 0.000000 1.0319159E-04 0.000000 0.000000 1.8010049E-03 Av 2018 6 28 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2480836E-03 Av 2018 6 28 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.6951625E-03 @@ -4315,15 +4315,15 @@ Av 2018 6 28 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.6951625E-03 Av 2018 6 28 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2480836E-03 Av 2018 6 28 19 0 6.8242471E-03 0.000000 0.000000 1.0043889E-04 0.000000 0.000000 1.8010049E-03 - Av 2018 6 28 20 0 3.8183283E-02 0.000000 0.000000 4.9646397E-04 0.000000 0.000000 0.000000 - Av 2018 6 28 21 0 5.4173790E-02 0.000000 0.000000 4.9626798E-04 0.000000 0.000000 0.000000 - Av 2018 6 28 22 0 4.8587121E-02 0.000000 0.000000 4.9607211E-04 0.000000 0.000000 0.000000 - Av 2018 6 28 23 0 5.0503045E-02 0.000000 0.000000 4.9587630E-04 0.000000 0.000000 0.000000 - Av 2018 6 28 24 0 4.9810253E-02 0.000000 0.000000 4.9568055E-04 0.000000 0.000000 0.000000 - Av 2018 6 29 1 0 4.9763389E-02 0.000000 0.000000 4.9164117E-04 0.000000 0.000000 0.000000 - Av 2018 6 29 2 0 4.9492151E-02 0.000000 0.000000 4.9144862E-04 0.000000 0.000000 0.000000 - Av 2018 6 29 3 0 4.9560301E-02 0.000000 0.000000 4.9125613E-04 0.000000 0.000000 0.000000 - Av 2018 6 29 4 0 4.9510449E-02 0.000000 0.000000 4.9106369E-04 0.000000 0.000000 0.000000 + Av 2018 6 28 20 0 3.8183283E-02 0.000000 0.000000 4.9646397E-04 0.000000 0.000000 0.000000 + Av 2018 6 28 21 0 5.4173790E-02 0.000000 0.000000 4.9626798E-04 0.000000 0.000000 0.000000 + Av 2018 6 28 22 0 4.8587121E-02 0.000000 0.000000 4.9607211E-04 0.000000 0.000000 0.000000 + Av 2018 6 28 23 0 5.0503045E-02 0.000000 0.000000 4.9587630E-04 0.000000 0.000000 0.000000 + Av 2018 6 28 24 0 4.9810253E-02 0.000000 0.000000 4.9568055E-04 0.000000 0.000000 0.000000 + Av 2018 6 29 1 0 4.9763389E-02 0.000000 0.000000 4.9164117E-04 0.000000 0.000000 0.000000 + Av 2018 6 29 2 0 4.9492151E-02 0.000000 0.000000 4.9144862E-04 0.000000 0.000000 0.000000 + Av 2018 6 29 3 0 4.9560301E-02 0.000000 0.000000 4.9125613E-04 0.000000 0.000000 0.000000 + Av 2018 6 29 4 0 4.9510449E-02 0.000000 0.000000 4.9106369E-04 0.000000 0.000000 0.000000 Av 2018 6 29 5 0 2.4758488E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.2552847E-03 Av 2018 6 29 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3430977E-03 Av 2018 6 29 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4309112E-03 @@ -4339,15 +4339,15 @@ Av 2018 6 29 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4309112E-03 Av 2018 6 29 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3430977E-03 Av 2018 6 29 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.2552847E-03 - Av 2018 6 29 20 0 3.3156499E-02 0.000000 0.000000 4.8799548E-04 0.000000 0.000000 0.000000 - Av 2018 6 29 21 0 5.4771200E-02 0.000000 0.000000 4.8780435E-04 0.000000 0.000000 0.000000 - Av 2018 6 29 22 0 4.7229610E-02 0.000000 0.000000 4.8761329E-04 0.000000 0.000000 0.000000 - Av 2018 6 29 23 0 4.9825937E-02 0.000000 0.000000 4.8742234E-04 0.000000 0.000000 0.000000 - Av 2018 6 29 24 0 4.8897222E-02 0.000000 0.000000 4.8723142E-04 0.000000 0.000000 0.000000 - Av 2018 6 30 1 0 4.8943251E-02 0.000000 0.000000 4.8334707E-04 0.000000 0.000000 0.000000 - Av 2018 6 30 2 0 4.8650563E-02 0.000000 0.000000 4.8315918E-04 0.000000 0.000000 0.000000 - Av 2018 6 30 3 0 4.8726805E-02 0.000000 0.000000 4.8297137E-04 0.000000 0.000000 0.000000 - Av 2018 6 30 4 0 4.8674781E-02 0.000000 0.000000 4.8278368E-04 0.000000 0.000000 0.000000 + Av 2018 6 29 20 0 3.3156499E-02 0.000000 0.000000 4.8799548E-04 0.000000 0.000000 0.000000 + Av 2018 6 29 21 0 5.4771200E-02 0.000000 0.000000 4.8780435E-04 0.000000 0.000000 0.000000 + Av 2018 6 29 22 0 4.7229610E-02 0.000000 0.000000 4.8761329E-04 0.000000 0.000000 0.000000 + Av 2018 6 29 23 0 4.9825937E-02 0.000000 0.000000 4.8742234E-04 0.000000 0.000000 0.000000 + Av 2018 6 29 24 0 4.8897222E-02 0.000000 0.000000 4.8723142E-04 0.000000 0.000000 0.000000 + Av 2018 6 30 1 0 4.8943251E-02 0.000000 0.000000 4.8334707E-04 0.000000 0.000000 0.000000 + Av 2018 6 30 2 0 4.8650563E-02 0.000000 0.000000 4.8315918E-04 0.000000 0.000000 0.000000 + Av 2018 6 30 3 0 4.8726805E-02 0.000000 0.000000 4.8297137E-04 0.000000 0.000000 0.000000 + Av 2018 6 30 4 0 4.8674781E-02 0.000000 0.000000 4.8278368E-04 0.000000 0.000000 0.000000 Av 2018 6 30 5 0 2.4341481E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.3110884E-03 Av 2018 6 30 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5024144E-03 Av 2018 6 30 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.6937407E-03 @@ -4363,15 +4363,15 @@ Av 2018 6 30 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.6937407E-03 Av 2018 6 30 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5024144E-03 Av 2018 6 30 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.3110884E-03 - Av 2018 6 30 20 0 3.2598987E-02 0.000000 0.000000 4.7979003E-04 0.000000 0.000000 0.000000 - Av 2018 6 30 21 0 5.3850345E-02 0.000000 0.000000 4.7960354E-04 0.000000 0.000000 0.000000 - Av 2018 6 30 22 0 4.6435721E-02 0.000000 0.000000 4.7941713E-04 0.000000 0.000000 0.000000 - Av 2018 6 30 23 0 4.8988529E-02 0.000000 0.000000 4.7923077E-04 0.000000 0.000000 0.000000 - Av 2018 6 30 24 0 4.8075575E-02 0.000000 0.000000 4.7904451E-04 0.000000 0.000000 0.000000 - Av 2018 7 1 1 0 4.8126541E-02 0.000000 0.000000 4.7530880E-04 0.000000 0.000000 0.000000 - Av 2018 7 1 2 0 4.7842540E-02 0.000000 0.000000 4.7512545E-04 0.000000 0.000000 0.000000 - Av 2018 7 1 3 0 4.7916375E-02 0.000000 0.000000 4.7494212E-04 0.000000 0.000000 0.000000 - Av 2018 7 1 4 0 4.7865801E-02 0.000000 0.000000 4.7475888E-04 0.000000 0.000000 0.000000 + Av 2018 6 30 20 0 3.2598987E-02 0.000000 0.000000 4.7979003E-04 0.000000 0.000000 0.000000 + Av 2018 6 30 21 0 5.3850345E-02 0.000000 0.000000 4.7960354E-04 0.000000 0.000000 0.000000 + Av 2018 6 30 22 0 4.6435721E-02 0.000000 0.000000 4.7941713E-04 0.000000 0.000000 0.000000 + Av 2018 6 30 23 0 4.8988529E-02 0.000000 0.000000 4.7923077E-04 0.000000 0.000000 0.000000 + Av 2018 6 30 24 0 4.8075575E-02 0.000000 0.000000 4.7904451E-04 0.000000 0.000000 0.000000 + Av 2018 7 1 1 0 4.8126541E-02 0.000000 0.000000 4.7530880E-04 0.000000 0.000000 0.000000 + Av 2018 7 1 2 0 4.7842540E-02 0.000000 0.000000 4.7512545E-04 0.000000 0.000000 0.000000 + Av 2018 7 1 3 0 4.7916375E-02 0.000000 0.000000 4.7494212E-04 0.000000 0.000000 0.000000 + Av 2018 7 1 4 0 4.7865801E-02 0.000000 0.000000 4.7475888E-04 0.000000 0.000000 0.000000 Av 2018 7 1 5 0 2.3936838E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.2006400E-03 Av 2018 7 1 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.2838600E-03 Av 2018 7 1 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.3670793E-03 @@ -4387,15 +4387,15 @@ Av 2018 7 1 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.3670793E-03 Av 2018 7 1 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.2838600E-03 Av 2018 7 1 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.2006400E-03 - Av 2018 7 1 20 0 3.2058604E-02 0.000000 0.000000 4.7183674E-04 0.000000 0.000000 0.000000 - Av 2018 7 1 21 0 5.2957781E-02 0.000000 0.000000 4.7165470E-04 0.000000 0.000000 0.000000 - Av 2018 7 1 22 0 4.5666218E-02 0.000000 0.000000 4.7147271E-04 0.000000 0.000000 0.000000 - Av 2018 7 1 23 0 4.8176832E-02 0.000000 0.000000 4.7129081E-04 0.000000 0.000000 0.000000 - Av 2018 7 1 24 0 4.7279164E-02 0.000000 0.000000 4.7110903E-04 0.000000 0.000000 0.000000 - Av 2018 7 2 1 0 4.7334816E-02 0.000000 0.000000 4.6751602E-04 0.000000 0.000000 0.000000 - Av 2018 7 2 2 0 4.7059171E-02 0.000000 0.000000 4.6733694E-04 0.000000 0.000000 0.000000 - Av 2018 7 2 3 0 4.7130689E-02 0.000000 0.000000 4.6715795E-04 0.000000 0.000000 0.000000 - Av 2018 7 2 4 0 4.7081500E-02 0.000000 0.000000 4.6697902E-04 0.000000 0.000000 0.000000 + Av 2018 7 1 20 0 3.2058604E-02 0.000000 0.000000 4.7183674E-04 0.000000 0.000000 0.000000 + Av 2018 7 1 21 0 5.2957781E-02 0.000000 0.000000 4.7165470E-04 0.000000 0.000000 0.000000 + Av 2018 7 1 22 0 4.5666218E-02 0.000000 0.000000 4.7147271E-04 0.000000 0.000000 0.000000 + Av 2018 7 1 23 0 4.8176832E-02 0.000000 0.000000 4.7129081E-04 0.000000 0.000000 0.000000 + Av 2018 7 1 24 0 4.7279164E-02 0.000000 0.000000 4.7110903E-04 0.000000 0.000000 0.000000 + Av 2018 7 2 1 0 4.7334816E-02 0.000000 0.000000 4.6751602E-04 0.000000 0.000000 0.000000 + Av 2018 7 2 2 0 4.7059171E-02 0.000000 0.000000 4.6733694E-04 0.000000 0.000000 0.000000 + Av 2018 7 2 3 0 4.7130689E-02 0.000000 0.000000 4.6715795E-04 0.000000 0.000000 0.000000 + Av 2018 7 2 4 0 4.7081500E-02 0.000000 0.000000 4.6697902E-04 0.000000 0.000000 0.000000 Av 2018 7 2 5 0 2.3544539E-02 0.000000 0.000000 5.8501319E-05 0.000000 0.000000 1.8559039E-03 Av 2018 7 2 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4844677E-03 Av 2018 7 2 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.1130316E-03 @@ -4411,15 +4411,15 @@ Av 2018 7 2 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.1130316E-03 Av 2018 7 2 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4844677E-03 Av 2018 7 2 19 0 3.8051892E-03 0.000000 0.000000 5.6004559E-05 0.000000 0.000000 1.8559039E-03 - Av 2018 7 2 20 0 3.4016766E-02 0.000000 0.000000 4.6412557E-04 0.000000 0.000000 0.000000 - Av 2018 7 2 21 0 5.1229343E-02 0.000000 0.000000 4.6394783E-04 0.000000 0.000000 0.000000 - Av 2018 7 2 22 0 4.5220226E-02 0.000000 0.000000 4.6377012E-04 0.000000 0.000000 0.000000 - Av 2018 7 2 23 0 4.7285505E-02 0.000000 0.000000 4.6359250E-04 0.000000 0.000000 0.000000 - Av 2018 7 2 24 0 4.6543259E-02 0.000000 0.000000 4.6341494E-04 0.000000 0.000000 0.000000 - Av 2018 7 3 1 0 4.6554457E-02 0.000000 0.000000 4.5995883E-04 0.000000 0.000000 0.000000 - Av 2018 7 3 2 0 4.6303853E-02 0.000000 0.000000 4.5978394E-04 0.000000 0.000000 0.000000 - Av 2018 7 3 3 0 4.6367228E-02 0.000000 0.000000 4.5960909E-04 0.000000 0.000000 0.000000 - Av 2018 7 3 4 0 4.6321440E-02 0.000000 0.000000 4.5943432E-04 0.000000 0.000000 0.000000 + Av 2018 7 2 20 0 3.4016766E-02 0.000000 0.000000 4.6412557E-04 0.000000 0.000000 0.000000 + Av 2018 7 2 21 0 5.1229343E-02 0.000000 0.000000 4.6394783E-04 0.000000 0.000000 0.000000 + Av 2018 7 2 22 0 4.5220226E-02 0.000000 0.000000 4.6377012E-04 0.000000 0.000000 0.000000 + Av 2018 7 2 23 0 4.7285505E-02 0.000000 0.000000 4.6359250E-04 0.000000 0.000000 0.000000 + Av 2018 7 2 24 0 4.6543259E-02 0.000000 0.000000 4.6341494E-04 0.000000 0.000000 0.000000 + Av 2018 7 3 1 0 4.6554457E-02 0.000000 0.000000 4.5995883E-04 0.000000 0.000000 0.000000 + Av 2018 7 3 2 0 4.6303853E-02 0.000000 0.000000 4.5978394E-04 0.000000 0.000000 0.000000 + Av 2018 7 3 3 0 4.6367228E-02 0.000000 0.000000 4.5960909E-04 0.000000 0.000000 0.000000 + Av 2018 7 3 4 0 4.6321440E-02 0.000000 0.000000 4.5943432E-04 0.000000 0.000000 0.000000 Av 2018 7 3 5 0 2.3163822E-02 0.000000 0.000000 5.1555980E-05 0.000000 0.000000 1.8531982E-03 Av 2018 7 3 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5090774E-03 Av 2018 7 3 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.1649570E-03 @@ -4435,15 +4435,15 @@ Av 2018 7 3 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.1649570E-03 Av 2018 7 3 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5090774E-03 Av 2018 7 3 19 0 3.3372068E-03 0.000000 0.000000 4.9116818E-05 0.000000 0.000000 1.8531982E-03 - Av 2018 7 3 20 0 3.3203360E-02 0.000000 0.000000 4.5664670E-04 0.000000 0.000000 0.000000 - Av 2018 7 3 21 0 5.0496154E-02 0.000000 0.000000 4.5647303E-04 0.000000 0.000000 0.000000 - Av 2018 7 3 22 0 4.4459701E-02 0.000000 0.000000 4.5629943E-04 0.000000 0.000000 0.000000 - Av 2018 7 3 23 0 4.6535045E-02 0.000000 0.000000 4.5612588E-04 0.000000 0.000000 0.000000 - Av 2018 7 3 24 0 4.5789853E-02 0.000000 0.000000 4.5595245E-04 0.000000 0.000000 0.000000 - Av 2018 7 4 1 0 4.5811281E-02 0.000000 0.000000 4.5262766E-04 0.000000 0.000000 0.000000 - Av 2018 7 4 2 0 4.5566313E-02 0.000000 0.000000 4.5245670E-04 0.000000 0.000000 0.000000 - Av 2018 7 4 3 0 4.5628268E-02 0.000000 0.000000 4.5228587E-04 0.000000 0.000000 0.000000 - Av 2018 7 4 4 0 4.5583509E-02 0.000000 0.000000 4.5211505E-04 0.000000 0.000000 0.000000 + Av 2018 7 3 20 0 3.3203360E-02 0.000000 0.000000 4.5664670E-04 0.000000 0.000000 0.000000 + Av 2018 7 3 21 0 5.0496154E-02 0.000000 0.000000 4.5647303E-04 0.000000 0.000000 0.000000 + Av 2018 7 3 22 0 4.4459701E-02 0.000000 0.000000 4.5629943E-04 0.000000 0.000000 0.000000 + Av 2018 7 3 23 0 4.6535045E-02 0.000000 0.000000 4.5612588E-04 0.000000 0.000000 0.000000 + Av 2018 7 3 24 0 4.5789853E-02 0.000000 0.000000 4.5595245E-04 0.000000 0.000000 0.000000 + Av 2018 7 4 1 0 4.5811281E-02 0.000000 0.000000 4.5262766E-04 0.000000 0.000000 0.000000 + Av 2018 7 4 2 0 4.5566313E-02 0.000000 0.000000 4.5245670E-04 0.000000 0.000000 0.000000 + Av 2018 7 4 3 0 4.5628268E-02 0.000000 0.000000 4.5228587E-04 0.000000 0.000000 0.000000 + Av 2018 7 4 4 0 4.5583509E-02 0.000000 0.000000 4.5211505E-04 0.000000 0.000000 0.000000 Av 2018 7 4 5 0 2.2794787E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.2333155E-03 Av 2018 7 4 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4751146E-03 Av 2018 7 4 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.7169139E-03 @@ -4459,15 +4459,15 @@ Av 2018 7 4 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.7169139E-03 Av 2018 7 4 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4751146E-03 Av 2018 7 4 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.2333155E-03 - Av 2018 7 4 20 0 3.0533532E-02 0.000000 0.000000 4.4939079E-04 0.000000 0.000000 0.000000 - Av 2018 7 4 21 0 5.0438751E-02 0.000000 0.000000 4.4922106E-04 0.000000 0.000000 0.000000 - Av 2018 7 4 22 0 4.3494470E-02 0.000000 0.000000 4.4905141E-04 0.000000 0.000000 0.000000 - Av 2018 7 4 23 0 4.5886010E-02 0.000000 0.000000 4.4888182E-04 0.000000 0.000000 0.000000 - Av 2018 7 4 24 0 4.5031413E-02 0.000000 0.000000 4.4871232E-04 0.000000 0.000000 0.000000 - Av 2018 7 5 1 0 4.5099713E-02 0.000000 0.000000 4.4551361E-04 0.000000 0.000000 0.000000 - Av 2018 7 5 2 0 4.4847272E-02 0.000000 0.000000 4.4534649E-04 0.000000 0.000000 0.000000 - Av 2018 7 5 3 0 4.4912342E-02 0.000000 0.000000 4.4517944E-04 0.000000 0.000000 0.000000 - Av 2018 7 5 4 0 4.4867024E-02 0.000000 0.000000 4.4501247E-04 0.000000 0.000000 0.000000 + Av 2018 7 4 20 0 3.0533532E-02 0.000000 0.000000 4.4939079E-04 0.000000 0.000000 0.000000 + Av 2018 7 4 21 0 5.0438751E-02 0.000000 0.000000 4.4922106E-04 0.000000 0.000000 0.000000 + Av 2018 7 4 22 0 4.3494470E-02 0.000000 0.000000 4.4905141E-04 0.000000 0.000000 0.000000 + Av 2018 7 4 23 0 4.5886010E-02 0.000000 0.000000 4.4888182E-04 0.000000 0.000000 0.000000 + Av 2018 7 4 24 0 4.5031413E-02 0.000000 0.000000 4.4871232E-04 0.000000 0.000000 0.000000 + Av 2018 7 5 1 0 4.5099713E-02 0.000000 0.000000 4.4551361E-04 0.000000 0.000000 0.000000 + Av 2018 7 5 2 0 4.4847272E-02 0.000000 0.000000 4.4534649E-04 0.000000 0.000000 0.000000 + Av 2018 7 5 3 0 4.4912342E-02 0.000000 0.000000 4.4517944E-04 0.000000 0.000000 0.000000 + Av 2018 7 5 4 0 4.4867024E-02 0.000000 0.000000 4.4501247E-04 0.000000 0.000000 0.000000 Av 2018 7 5 5 0 2.2436896E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.5426445E-03 Av 2018 7 5 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.2846844E-03 Av 2018 7 5 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0026725E-02 @@ -4483,15 +4483,15 @@ Av 2018 7 5 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0026725E-02 Av 2018 7 5 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.2846844E-03 Av 2018 7 5 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.5426445E-03 - Av 2018 7 5 20 0 3.0055087E-02 0.000000 0.000000 4.4234909E-04 0.000000 0.000000 0.000000 - Av 2018 7 5 21 0 4.9648479E-02 0.000000 0.000000 4.4218314E-04 0.000000 0.000000 0.000000 - Av 2018 7 5 22 0 4.2813137E-02 0.000000 0.000000 4.4201728E-04 0.000000 0.000000 0.000000 - Av 2018 7 5 23 0 4.5167312E-02 0.000000 0.000000 4.4185147E-04 0.000000 0.000000 0.000000 - Av 2018 7 5 24 0 4.4326216E-02 0.000000 0.000000 4.4168570E-04 0.000000 0.000000 0.000000 - Av 2018 7 6 1 0 4.4398297E-02 0.000000 0.000000 4.3860800E-04 0.000000 0.000000 0.000000 - Av 2018 7 6 2 0 4.4153020E-02 0.000000 0.000000 4.3844458E-04 0.000000 0.000000 0.000000 - Av 2018 7 6 3 0 4.4216100E-02 0.000000 0.000000 4.3828119E-04 0.000000 0.000000 0.000000 - Av 2018 7 6 4 0 4.4171967E-02 0.000000 0.000000 4.3811783E-04 0.000000 0.000000 0.000000 + Av 2018 7 5 20 0 3.0055087E-02 0.000000 0.000000 4.4234909E-04 0.000000 0.000000 0.000000 + Av 2018 7 5 21 0 4.9648479E-02 0.000000 0.000000 4.4218314E-04 0.000000 0.000000 0.000000 + Av 2018 7 5 22 0 4.2813137E-02 0.000000 0.000000 4.4201728E-04 0.000000 0.000000 0.000000 + Av 2018 7 5 23 0 4.5167312E-02 0.000000 0.000000 4.4185147E-04 0.000000 0.000000 0.000000 + Av 2018 7 5 24 0 4.4326216E-02 0.000000 0.000000 4.4168570E-04 0.000000 0.000000 0.000000 + Av 2018 7 6 1 0 4.4398297E-02 0.000000 0.000000 4.3860800E-04 0.000000 0.000000 0.000000 + Av 2018 7 6 2 0 4.4153020E-02 0.000000 0.000000 4.3844458E-04 0.000000 0.000000 0.000000 + Av 2018 7 6 3 0 4.4216100E-02 0.000000 0.000000 4.3828119E-04 0.000000 0.000000 0.000000 + Av 2018 7 6 4 0 4.4171967E-02 0.000000 0.000000 4.3811783E-04 0.000000 0.000000 0.000000 Av 2018 7 6 5 0 2.2089239E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.1460603E-03 Av 2018 7 6 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3516016E-03 Av 2018 7 6 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.5571427E-03 @@ -4507,15 +4507,15 @@ Av 2018 7 6 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.5571427E-03 Av 2018 7 6 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3516016E-03 Av 2018 7 6 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.1460603E-03 - Av 2018 7 6 20 0 2.9590612E-02 0.000000 0.000000 4.3551295E-04 0.000000 0.000000 0.000000 - Av 2018 7 6 21 0 4.8881277E-02 0.000000 0.000000 4.3535067E-04 0.000000 0.000000 0.000000 - Av 2018 7 6 22 0 4.2151693E-02 0.000000 0.000000 4.3518844E-04 0.000000 0.000000 0.000000 - Av 2018 7 6 23 0 4.4469588E-02 0.000000 0.000000 4.3502625E-04 0.000000 0.000000 0.000000 - Av 2018 7 6 24 0 4.3641601E-02 0.000000 0.000000 4.3486417E-04 0.000000 0.000000 0.000000 - Av 2018 7 7 1 0 4.3717265E-02 0.000000 0.000000 4.3190259E-04 0.000000 0.000000 0.000000 - Av 2018 7 7 2 0 4.3478873E-02 0.000000 0.000000 4.3174269E-04 0.000000 0.000000 0.000000 - Av 2018 7 7 3 0 4.3540038E-02 0.000000 0.000000 4.3158283E-04 0.000000 0.000000 0.000000 - Av 2018 7 7 4 0 4.3497048E-02 0.000000 0.000000 4.3142305E-04 0.000000 0.000000 0.000000 + Av 2018 7 6 20 0 2.9590612E-02 0.000000 0.000000 4.3551295E-04 0.000000 0.000000 0.000000 + Av 2018 7 6 21 0 4.8881277E-02 0.000000 0.000000 4.3535067E-04 0.000000 0.000000 0.000000 + Av 2018 7 6 22 0 4.2151693E-02 0.000000 0.000000 4.3518844E-04 0.000000 0.000000 0.000000 + Av 2018 7 6 23 0 4.4469588E-02 0.000000 0.000000 4.3502625E-04 0.000000 0.000000 0.000000 + Av 2018 7 6 24 0 4.3641601E-02 0.000000 0.000000 4.3486417E-04 0.000000 0.000000 0.000000 + Av 2018 7 7 1 0 4.3717265E-02 0.000000 0.000000 4.3190259E-04 0.000000 0.000000 0.000000 + Av 2018 7 7 2 0 4.3478873E-02 0.000000 0.000000 4.3174269E-04 0.000000 0.000000 0.000000 + Av 2018 7 7 3 0 4.3540038E-02 0.000000 0.000000 4.3158283E-04 0.000000 0.000000 0.000000 + Av 2018 7 7 4 0 4.3497048E-02 0.000000 0.000000 4.3142305E-04 0.000000 0.000000 0.000000 Av 2018 7 7 5 0 2.1751661E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.1820315E-03 Av 2018 7 7 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4935012E-03 Av 2018 7 7 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.8049704E-03 @@ -4531,15 +4531,15 @@ Av 2018 7 7 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.8049704E-03 Av 2018 7 7 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4935012E-03 Av 2018 7 7 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.1820315E-03 - Av 2018 7 7 20 0 2.9139563E-02 0.000000 0.000000 4.2887442E-04 0.000000 0.000000 0.000000 - Av 2018 7 7 21 0 4.8136249E-02 0.000000 0.000000 4.2871563E-04 0.000000 0.000000 0.000000 - Av 2018 7 7 22 0 4.1509356E-02 0.000000 0.000000 4.2855690E-04 0.000000 0.000000 0.000000 - Av 2018 7 7 23 0 4.3792024E-02 0.000000 0.000000 4.2839823E-04 0.000000 0.000000 0.000000 - Av 2018 7 7 24 0 4.2976759E-02 0.000000 0.000000 4.2823961E-04 0.000000 0.000000 0.000000 - Av 2018 7 8 1 0 4.3055814E-02 0.000000 0.000000 4.2538956E-04 0.000000 0.000000 0.000000 - Av 2018 7 8 2 0 4.2824052E-02 0.000000 0.000000 4.2523310E-04 0.000000 0.000000 0.000000 - Av 2018 7 8 3 0 4.2883378E-02 0.000000 0.000000 4.2507664E-04 0.000000 0.000000 0.000000 - Av 2018 7 8 4 0 4.2841494E-02 0.000000 0.000000 4.2492023E-04 0.000000 0.000000 0.000000 + Av 2018 7 7 20 0 2.9139563E-02 0.000000 0.000000 4.2887442E-04 0.000000 0.000000 0.000000 + Av 2018 7 7 21 0 4.8136249E-02 0.000000 0.000000 4.2871563E-04 0.000000 0.000000 0.000000 + Av 2018 7 7 22 0 4.1509356E-02 0.000000 0.000000 4.2855690E-04 0.000000 0.000000 0.000000 + Av 2018 7 7 23 0 4.3792024E-02 0.000000 0.000000 4.2839823E-04 0.000000 0.000000 0.000000 + Av 2018 7 7 24 0 4.2976759E-02 0.000000 0.000000 4.2823961E-04 0.000000 0.000000 0.000000 + Av 2018 7 8 1 0 4.3055814E-02 0.000000 0.000000 4.2538956E-04 0.000000 0.000000 0.000000 + Av 2018 7 8 2 0 4.2824052E-02 0.000000 0.000000 4.2523310E-04 0.000000 0.000000 0.000000 + Av 2018 7 8 3 0 4.2883378E-02 0.000000 0.000000 4.2507664E-04 0.000000 0.000000 0.000000 + Av 2018 7 8 4 0 4.2841494E-02 0.000000 0.000000 4.2492023E-04 0.000000 0.000000 0.000000 Av 2018 7 8 5 0 2.1423763E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.3274890E-03 Av 2018 7 8 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9202388E-03 Av 2018 7 8 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.5129879E-03 @@ -4555,15 +4555,15 @@ Av 2018 7 8 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.5129879E-03 Av 2018 7 8 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9202388E-03 Av 2018 7 8 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.3274890E-03 - Av 2018 7 8 20 0 2.8701415E-02 0.000000 0.000000 4.2242580E-04 0.000000 0.000000 0.000000 - Av 2018 7 8 21 0 4.7412530E-02 0.000000 0.000000 4.2227036E-04 0.000000 0.000000 0.000000 - Av 2018 7 8 22 0 4.0885396E-02 0.000000 0.000000 4.2211503E-04 0.000000 0.000000 0.000000 - Av 2018 7 8 23 0 4.3133833E-02 0.000000 0.000000 4.2195970E-04 0.000000 0.000000 0.000000 - Av 2018 7 8 24 0 4.2330928E-02 0.000000 0.000000 4.2180446E-04 0.000000 0.000000 0.000000 - Av 2018 7 9 1 0 4.2413186E-02 0.000000 0.000000 4.1906149E-04 0.000000 0.000000 0.000000 - Av 2018 7 9 2 0 4.2187802E-02 0.000000 0.000000 4.1890825E-04 0.000000 0.000000 0.000000 - Av 2018 7 9 3 0 4.2245355E-02 0.000000 0.000000 4.1875508E-04 0.000000 0.000000 0.000000 - Av 2018 7 9 4 0 4.2204533E-02 0.000000 0.000000 4.1860197E-04 0.000000 0.000000 0.000000 + Av 2018 7 8 20 0 2.8701415E-02 0.000000 0.000000 4.2242580E-04 0.000000 0.000000 0.000000 + Av 2018 7 8 21 0 4.7412530E-02 0.000000 0.000000 4.2227036E-04 0.000000 0.000000 0.000000 + Av 2018 7 8 22 0 4.0885396E-02 0.000000 0.000000 4.2211503E-04 0.000000 0.000000 0.000000 + Av 2018 7 8 23 0 4.3133833E-02 0.000000 0.000000 4.2195970E-04 0.000000 0.000000 0.000000 + Av 2018 7 8 24 0 4.2330928E-02 0.000000 0.000000 4.2180446E-04 0.000000 0.000000 0.000000 + Av 2018 7 9 1 0 4.2413186E-02 0.000000 0.000000 4.1906149E-04 0.000000 0.000000 0.000000 + Av 2018 7 9 2 0 4.2187802E-02 0.000000 0.000000 4.1890825E-04 0.000000 0.000000 0.000000 + Av 2018 7 9 3 0 4.2245355E-02 0.000000 0.000000 4.1875508E-04 0.000000 0.000000 0.000000 + Av 2018 7 9 4 0 4.2204533E-02 0.000000 0.000000 4.1860197E-04 0.000000 0.000000 0.000000 Av 2018 7 9 5 0 2.1105170E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.2439989E-03 Av 2018 7 9 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7712621E-03 Av 2018 7 9 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.2985258E-03 @@ -4579,15 +4579,15 @@ Av 2018 7 9 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.2985258E-03 Av 2018 7 9 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7712621E-03 Av 2018 7 9 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.2439989E-03 - Av 2018 7 9 20 0 2.8275663E-02 0.000000 0.000000 4.1615963E-04 0.000000 0.000000 0.000000 - Av 2018 7 9 21 0 4.6709288E-02 0.000000 0.000000 4.1600745E-04 0.000000 0.000000 0.000000 - Av 2018 7 9 22 0 4.0279076E-02 0.000000 0.000000 4.1585532E-04 0.000000 0.000000 0.000000 - Av 2018 7 9 23 0 4.2494252E-02 0.000000 0.000000 4.1570328E-04 0.000000 0.000000 0.000000 - Av 2018 7 9 24 0 4.1703358E-02 0.000000 0.000000 4.1555127E-04 0.000000 0.000000 0.000000 - Av 2018 7 10 1 0 4.1788645E-02 0.000000 0.000000 4.1291109E-04 0.000000 0.000000 0.000000 - Av 2018 7 10 2 0 4.1569408E-02 0.000000 0.000000 4.1276100E-04 0.000000 0.000000 0.000000 - Av 2018 7 10 3 0 4.1625250E-02 0.000000 0.000000 4.1261100E-04 0.000000 0.000000 0.000000 - Av 2018 7 10 4 0 4.1585453E-02 0.000000 0.000000 4.1246103E-04 0.000000 0.000000 0.000000 + Av 2018 7 9 20 0 2.8275663E-02 0.000000 0.000000 4.1615963E-04 0.000000 0.000000 0.000000 + Av 2018 7 9 21 0 4.6709288E-02 0.000000 0.000000 4.1600745E-04 0.000000 0.000000 0.000000 + Av 2018 7 9 22 0 4.0279076E-02 0.000000 0.000000 4.1585532E-04 0.000000 0.000000 0.000000 + Av 2018 7 9 23 0 4.2494252E-02 0.000000 0.000000 4.1570328E-04 0.000000 0.000000 0.000000 + Av 2018 7 9 24 0 4.1703358E-02 0.000000 0.000000 4.1555127E-04 0.000000 0.000000 0.000000 + Av 2018 7 10 1 0 4.1788645E-02 0.000000 0.000000 4.1291109E-04 0.000000 0.000000 0.000000 + Av 2018 7 10 2 0 4.1569408E-02 0.000000 0.000000 4.1276100E-04 0.000000 0.000000 0.000000 + Av 2018 7 10 3 0 4.1625250E-02 0.000000 0.000000 4.1261100E-04 0.000000 0.000000 0.000000 + Av 2018 7 10 4 0 4.1585453E-02 0.000000 0.000000 4.1246103E-04 0.000000 0.000000 0.000000 Av 2018 7 10 5 0 2.0795524E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.1425369E-03 Av 2018 7 10 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5760201E-03 Av 2018 7 10 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.0095028E-03 @@ -4603,15 +4603,15 @@ Av 2018 7 10 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.0095028E-03 Av 2018 7 10 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5760201E-03 Av 2018 7 10 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.1425369E-03 - Av 2018 7 10 20 0 2.7861839E-02 0.000000 0.000000 4.1006895E-04 0.000000 0.000000 0.000000 - Av 2018 7 10 21 0 4.6025738E-02 0.000000 0.000000 4.0991988E-04 0.000000 0.000000 0.000000 - Av 2018 7 10 22 0 3.9689735E-02 0.000000 0.000000 4.0977090E-04 0.000000 0.000000 0.000000 - Av 2018 7 10 23 0 4.1872583E-02 0.000000 0.000000 4.0962198E-04 0.000000 0.000000 0.000000 - Av 2018 7 10 24 0 4.1093353E-02 0.000000 0.000000 4.0947308E-04 0.000000 0.000000 0.000000 - Av 2018 7 11 1 0 4.1181505E-02 0.000000 0.000000 4.0693165E-04 0.000000 0.000000 0.000000 - Av 2018 7 11 2 0 4.0968183E-02 0.000000 0.000000 4.0678459E-04 0.000000 0.000000 0.000000 - Av 2018 7 11 3 0 4.1022383E-02 0.000000 0.000000 4.0663761E-04 0.000000 0.000000 0.000000 - Av 2018 7 11 4 0 4.0983565E-02 0.000000 0.000000 4.0649067E-04 0.000000 0.000000 0.000000 + Av 2018 7 10 20 0 2.7861839E-02 0.000000 0.000000 4.1006895E-04 0.000000 0.000000 0.000000 + Av 2018 7 10 21 0 4.6025738E-02 0.000000 0.000000 4.0991988E-04 0.000000 0.000000 0.000000 + Av 2018 7 10 22 0 3.9689735E-02 0.000000 0.000000 4.0977090E-04 0.000000 0.000000 0.000000 + Av 2018 7 10 23 0 4.1872583E-02 0.000000 0.000000 4.0962198E-04 0.000000 0.000000 0.000000 + Av 2018 7 10 24 0 4.1093353E-02 0.000000 0.000000 4.0947308E-04 0.000000 0.000000 0.000000 + Av 2018 7 11 1 0 4.1181505E-02 0.000000 0.000000 4.0693165E-04 0.000000 0.000000 0.000000 + Av 2018 7 11 2 0 4.0968183E-02 0.000000 0.000000 4.0678459E-04 0.000000 0.000000 0.000000 + Av 2018 7 11 3 0 4.1022383E-02 0.000000 0.000000 4.0663761E-04 0.000000 0.000000 0.000000 + Av 2018 7 11 4 0 4.0983565E-02 0.000000 0.000000 4.0649067E-04 0.000000 0.000000 0.000000 Av 2018 7 11 5 0 2.0494474E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.1462040E-03 Av 2018 7 11 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.6570005E-03 Av 2018 7 11 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.1677969E-03 @@ -4627,15 +4627,15 @@ Av 2018 7 11 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.1677969E-03 Av 2018 7 11 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.6570005E-03 Av 2018 7 11 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.1462040E-03 - Av 2018 7 11 20 0 2.7459469E-02 0.000000 0.000000 4.0414691E-04 0.000000 0.000000 0.000000 - Av 2018 7 11 21 0 4.5361113E-02 0.000000 0.000000 4.0400086E-04 0.000000 0.000000 0.000000 - Av 2018 7 11 22 0 3.9116710E-02 0.000000 0.000000 4.0385488E-04 0.000000 0.000000 0.000000 - Av 2018 7 11 23 0 4.1268110E-02 0.000000 0.000000 4.0370895E-04 0.000000 0.000000 0.000000 - Av 2018 7 11 24 0 4.0500224E-02 0.000000 0.000000 4.0356306E-04 0.000000 0.000000 0.000000 - Av 2018 7 12 1 0 4.0591076E-02 0.000000 0.000000 4.0111644E-04 0.000000 0.000000 0.000000 - Av 2018 7 12 2 0 4.0383462E-02 0.000000 0.000000 4.0097232E-04 0.000000 0.000000 0.000000 - Av 2018 7 12 3 0 4.0436070E-02 0.000000 0.000000 4.0082826E-04 0.000000 0.000000 0.000000 - Av 2018 7 12 4 0 4.0398203E-02 0.000000 0.000000 4.0068425E-04 0.000000 0.000000 0.000000 + Av 2018 7 11 20 0 2.7459469E-02 0.000000 0.000000 4.0414691E-04 0.000000 0.000000 0.000000 + Av 2018 7 11 21 0 4.5361113E-02 0.000000 0.000000 4.0400086E-04 0.000000 0.000000 0.000000 + Av 2018 7 11 22 0 3.9116710E-02 0.000000 0.000000 4.0385488E-04 0.000000 0.000000 0.000000 + Av 2018 7 11 23 0 4.1268110E-02 0.000000 0.000000 4.0370895E-04 0.000000 0.000000 0.000000 + Av 2018 7 11 24 0 4.0500224E-02 0.000000 0.000000 4.0356306E-04 0.000000 0.000000 0.000000 + Av 2018 7 12 1 0 4.0591076E-02 0.000000 0.000000 4.0111644E-04 0.000000 0.000000 0.000000 + Av 2018 7 12 2 0 4.0383462E-02 0.000000 0.000000 4.0097232E-04 0.000000 0.000000 0.000000 + Av 2018 7 12 3 0 4.0436070E-02 0.000000 0.000000 4.0082826E-04 0.000000 0.000000 0.000000 + Av 2018 7 12 4 0 4.0398203E-02 0.000000 0.000000 4.0068425E-04 0.000000 0.000000 0.000000 Av 2018 7 12 5 0 2.0201692E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.5247433E-03 Av 2018 7 12 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7459843E-03 Av 2018 7 12 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0967226E-02 @@ -4651,15 +4651,15 @@ Av 2018 7 12 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0967226E-02 Av 2018 7 12 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7459843E-03 Av 2018 7 12 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.5247433E-03 - Av 2018 7 12 20 0 2.7068121E-02 0.000000 0.000000 3.9838708E-04 0.000000 0.000000 0.000000 - Av 2018 7 12 21 0 4.4714689E-02 0.000000 0.000000 3.9824395E-04 0.000000 0.000000 0.000000 - Av 2018 7 12 22 0 3.8559377E-02 0.000000 0.000000 3.9810085E-04 0.000000 0.000000 0.000000 - Av 2018 7 12 23 0 4.0680192E-02 0.000000 0.000000 3.9795780E-04 0.000000 0.000000 0.000000 - Av 2018 7 12 24 0 3.9923333E-02 0.000000 0.000000 3.9781485E-04 0.000000 0.000000 0.000000 - Av 2018 7 13 1 0 4.0016741E-02 0.000000 0.000000 3.9545930E-04 0.000000 0.000000 0.000000 - Av 2018 7 13 2 0 3.9814614E-02 0.000000 0.000000 3.9531803E-04 0.000000 0.000000 0.000000 - Av 2018 7 13 3 0 3.9865702E-02 0.000000 0.000000 3.9517679E-04 0.000000 0.000000 0.000000 - Av 2018 7 13 4 0 3.9828751E-02 0.000000 0.000000 3.9503560E-04 0.000000 0.000000 0.000000 + Av 2018 7 12 20 0 2.7068121E-02 0.000000 0.000000 3.9838708E-04 0.000000 0.000000 0.000000 + Av 2018 7 12 21 0 4.4714689E-02 0.000000 0.000000 3.9824395E-04 0.000000 0.000000 0.000000 + Av 2018 7 12 22 0 3.8559377E-02 0.000000 0.000000 3.9810085E-04 0.000000 0.000000 0.000000 + Av 2018 7 12 23 0 4.0680192E-02 0.000000 0.000000 3.9795780E-04 0.000000 0.000000 0.000000 + Av 2018 7 12 24 0 3.9923333E-02 0.000000 0.000000 3.9781485E-04 0.000000 0.000000 0.000000 + Av 2018 7 13 1 0 4.0016741E-02 0.000000 0.000000 3.9545930E-04 0.000000 0.000000 0.000000 + Av 2018 7 13 2 0 3.9814614E-02 0.000000 0.000000 3.9531803E-04 0.000000 0.000000 0.000000 + Av 2018 7 13 3 0 3.9865702E-02 0.000000 0.000000 3.9517679E-04 0.000000 0.000000 0.000000 + Av 2018 7 13 4 0 3.9828751E-02 0.000000 0.000000 3.9503560E-04 0.000000 0.000000 0.000000 Av 2018 7 13 5 0 1.9916870E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.4619272E-03 Av 2018 7 13 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.6747484E-03 Av 2018 7 13 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0887570E-02 @@ -4675,15 +4675,15 @@ Av 2018 7 13 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0887570E-02 Av 2018 7 13 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.6747484E-03 Av 2018 7 13 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.4619272E-03 - Av 2018 7 13 20 0 2.6687384E-02 0.000000 0.000000 3.9278340E-04 0.000000 0.000000 0.000000 - Av 2018 7 13 21 0 4.4085793E-02 0.000000 0.000000 3.9264307E-04 0.000000 0.000000 0.000000 - Av 2018 7 13 22 0 3.8017146E-02 0.000000 0.000000 3.9250278E-04 0.000000 0.000000 0.000000 - Av 2018 7 13 23 0 4.0108204E-02 0.000000 0.000000 3.9236253E-04 0.000000 0.000000 0.000000 - Av 2018 7 13 24 0 3.9362069E-02 0.000000 0.000000 3.9222234E-04 0.000000 0.000000 0.000000 - Av 2018 7 14 1 0 3.9457884E-02 0.000000 0.000000 3.8995431E-04 0.000000 0.000000 0.000000 - Av 2018 7 14 2 0 3.9261058E-02 0.000000 0.000000 3.8981577E-04 0.000000 0.000000 0.000000 - Av 2018 7 14 3 0 3.9310671E-02 0.000000 0.000000 3.8967724E-04 0.000000 0.000000 0.000000 - Av 2018 7 14 4 0 3.9274596E-02 0.000000 0.000000 3.8953876E-04 0.000000 0.000000 0.000000 + Av 2018 7 13 20 0 2.6687384E-02 0.000000 0.000000 3.9278340E-04 0.000000 0.000000 0.000000 + Av 2018 7 13 21 0 4.4085793E-02 0.000000 0.000000 3.9264307E-04 0.000000 0.000000 0.000000 + Av 2018 7 13 22 0 3.8017146E-02 0.000000 0.000000 3.9250278E-04 0.000000 0.000000 0.000000 + Av 2018 7 13 23 0 4.0108204E-02 0.000000 0.000000 3.9236253E-04 0.000000 0.000000 0.000000 + Av 2018 7 13 24 0 3.9362069E-02 0.000000 0.000000 3.9222234E-04 0.000000 0.000000 0.000000 + Av 2018 7 14 1 0 3.9457884E-02 0.000000 0.000000 3.8995431E-04 0.000000 0.000000 0.000000 + Av 2018 7 14 2 0 3.9261058E-02 0.000000 0.000000 3.8981577E-04 0.000000 0.000000 0.000000 + Av 2018 7 14 3 0 3.9310671E-02 0.000000 0.000000 3.8967724E-04 0.000000 0.000000 0.000000 + Av 2018 7 14 4 0 3.9274596E-02 0.000000 0.000000 3.8953876E-04 0.000000 0.000000 0.000000 Av 2018 7 14 5 0 1.9639701E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.1848930E-03 Av 2018 7 14 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0168346E-03 Av 2018 7 14 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.8487763E-03 @@ -4699,15 +4699,15 @@ Av 2018 7 14 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.8487763E-03 Av 2018 7 14 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0168346E-03 Av 2018 7 14 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.1848930E-03 - Av 2018 7 14 20 0 2.6316853E-02 0.000000 0.000000 3.8732993E-04 0.000000 0.000000 0.000000 - Av 2018 7 14 21 0 4.3473750E-02 0.000000 0.000000 3.8719230E-04 0.000000 0.000000 0.000000 - Av 2018 7 14 22 0 3.7489444E-02 0.000000 0.000000 3.8705472E-04 0.000000 0.000000 0.000000 - Av 2018 7 14 23 0 3.9551549E-02 0.000000 0.000000 3.8691718E-04 0.000000 0.000000 0.000000 - Av 2018 7 14 24 0 3.8815849E-02 0.000000 0.000000 3.8677966E-04 0.000000 0.000000 0.000000 - Av 2018 7 15 1 0 3.8913928E-02 0.000000 0.000000 3.8459568E-04 0.000000 0.000000 0.000000 - Av 2018 7 15 2 0 3.8722195E-02 0.000000 0.000000 3.8445974E-04 0.000000 0.000000 0.000000 - Av 2018 7 15 3 0 3.8770393E-02 0.000000 0.000000 3.8432385E-04 0.000000 0.000000 0.000000 - Av 2018 7 15 4 0 3.8735174E-02 0.000000 0.000000 3.8418802E-04 0.000000 0.000000 0.000000 + Av 2018 7 14 20 0 2.6316853E-02 0.000000 0.000000 3.8732993E-04 0.000000 0.000000 0.000000 + Av 2018 7 14 21 0 4.3473750E-02 0.000000 0.000000 3.8719230E-04 0.000000 0.000000 0.000000 + Av 2018 7 14 22 0 3.7489444E-02 0.000000 0.000000 3.8705472E-04 0.000000 0.000000 0.000000 + Av 2018 7 14 23 0 3.9551549E-02 0.000000 0.000000 3.8691718E-04 0.000000 0.000000 0.000000 + Av 2018 7 14 24 0 3.8815849E-02 0.000000 0.000000 3.8677966E-04 0.000000 0.000000 0.000000 + Av 2018 7 15 1 0 3.8913928E-02 0.000000 0.000000 3.8459568E-04 0.000000 0.000000 0.000000 + Av 2018 7 15 2 0 3.8722195E-02 0.000000 0.000000 3.8445974E-04 0.000000 0.000000 0.000000 + Av 2018 7 15 3 0 3.8770393E-02 0.000000 0.000000 3.8432385E-04 0.000000 0.000000 0.000000 + Av 2018 7 15 4 0 3.8735174E-02 0.000000 0.000000 3.8418802E-04 0.000000 0.000000 0.000000 Av 2018 7 15 5 0 1.9369898E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.4988106E-03 Av 2018 7 15 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.9972491E-03 Av 2018 7 15 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1495688E-02 @@ -4723,15 +4723,15 @@ Av 2018 7 15 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1495688E-02 Av 2018 7 15 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.9972491E-03 Av 2018 7 15 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.4988106E-03 - Av 2018 7 15 20 0 2.5956139E-02 0.000000 0.000000 3.8202098E-04 0.000000 0.000000 0.000000 - Av 2018 7 15 21 0 4.2877924E-02 0.000000 0.000000 3.8188594E-04 0.000000 0.000000 0.000000 - Av 2018 7 15 22 0 3.6975723E-02 0.000000 0.000000 3.8175099E-04 0.000000 0.000000 0.000000 - Av 2018 7 15 23 0 3.9009631E-02 0.000000 0.000000 3.8161606E-04 0.000000 0.000000 0.000000 - Av 2018 7 15 24 0 3.8284093E-02 0.000000 0.000000 3.8148119E-04 0.000000 0.000000 0.000000 - Av 2018 7 16 1 0 3.8384303E-02 0.000000 0.000000 3.7937798E-04 0.000000 0.000000 0.000000 - Av 2018 7 16 2 0 3.8197499E-02 0.000000 0.000000 3.7924459E-04 0.000000 0.000000 0.000000 - Av 2018 7 16 3 0 3.8244329E-02 0.000000 0.000000 3.7911127E-04 0.000000 0.000000 0.000000 - Av 2018 7 16 4 0 3.8209926E-02 0.000000 0.000000 3.7897794E-04 0.000000 0.000000 0.000000 + Av 2018 7 15 20 0 2.5956139E-02 0.000000 0.000000 3.8202098E-04 0.000000 0.000000 0.000000 + Av 2018 7 15 21 0 4.2877924E-02 0.000000 0.000000 3.8188594E-04 0.000000 0.000000 0.000000 + Av 2018 7 15 22 0 3.6975723E-02 0.000000 0.000000 3.8175099E-04 0.000000 0.000000 0.000000 + Av 2018 7 15 23 0 3.9009631E-02 0.000000 0.000000 3.8161606E-04 0.000000 0.000000 0.000000 + Av 2018 7 15 24 0 3.8284093E-02 0.000000 0.000000 3.8148119E-04 0.000000 0.000000 0.000000 + Av 2018 7 16 1 0 3.8384303E-02 0.000000 0.000000 3.7937798E-04 0.000000 0.000000 0.000000 + Av 2018 7 16 2 0 3.8197499E-02 0.000000 0.000000 3.7924459E-04 0.000000 0.000000 0.000000 + Av 2018 7 16 3 0 3.8244329E-02 0.000000 0.000000 3.7911127E-04 0.000000 0.000000 0.000000 + Av 2018 7 16 4 0 3.8209926E-02 0.000000 0.000000 3.7897794E-04 0.000000 0.000000 0.000000 Av 2018 7 16 5 0 1.9107187E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.3714220E-03 Av 2018 7 16 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7603942E-03 Av 2018 7 16 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1149366E-02 @@ -4747,15 +4747,15 @@ Av 2018 7 16 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1149366E-02 Av 2018 7 16 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7603942E-03 Av 2018 7 16 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.3714220E-03 - Av 2018 7 16 20 0 2.5604893E-02 0.000000 0.000000 3.7685136E-04 0.000000 0.000000 0.000000 - Av 2018 7 16 21 0 4.2297736E-02 0.000000 0.000000 3.7671885E-04 0.000000 0.000000 0.000000 - Av 2018 7 16 22 0 3.6475480E-02 0.000000 0.000000 3.7658637E-04 0.000000 0.000000 0.000000 - Av 2018 7 16 23 0 3.8481928E-02 0.000000 0.000000 3.7645394E-04 0.000000 0.000000 0.000000 - Av 2018 7 16 24 0 3.7766278E-02 0.000000 0.000000 3.7632158E-04 0.000000 0.000000 0.000000 - Av 2018 7 17 1 0 3.7868492E-02 0.000000 0.000000 3.7429598E-04 0.000000 0.000000 0.000000 - Av 2018 7 17 2 0 3.7686426E-02 0.000000 0.000000 3.7416501E-04 0.000000 0.000000 0.000000 - Av 2018 7 17 3 0 3.7731938E-02 0.000000 0.000000 3.7403408E-04 0.000000 0.000000 0.000000 - Av 2018 7 17 4 0 3.7698328E-02 0.000000 0.000000 3.7390320E-04 0.000000 0.000000 0.000000 + Av 2018 7 16 20 0 2.5604893E-02 0.000000 0.000000 3.7685136E-04 0.000000 0.000000 0.000000 + Av 2018 7 16 21 0 4.2297736E-02 0.000000 0.000000 3.7671885E-04 0.000000 0.000000 0.000000 + Av 2018 7 16 22 0 3.6475480E-02 0.000000 0.000000 3.7658637E-04 0.000000 0.000000 0.000000 + Av 2018 7 16 23 0 3.8481928E-02 0.000000 0.000000 3.7645394E-04 0.000000 0.000000 0.000000 + Av 2018 7 16 24 0 3.7766278E-02 0.000000 0.000000 3.7632158E-04 0.000000 0.000000 0.000000 + Av 2018 7 17 1 0 3.7868492E-02 0.000000 0.000000 3.7429598E-04 0.000000 0.000000 0.000000 + Av 2018 7 17 2 0 3.7686426E-02 0.000000 0.000000 3.7416501E-04 0.000000 0.000000 0.000000 + Av 2018 7 17 3 0 3.7731938E-02 0.000000 0.000000 3.7403408E-04 0.000000 0.000000 0.000000 + Av 2018 7 17 4 0 3.7698328E-02 0.000000 0.000000 3.7390320E-04 0.000000 0.000000 0.000000 Av 2018 7 17 5 0 1.8851304E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.0669978E-03 Av 2018 7 17 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0065496E-03 Av 2018 7 17 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9461013E-03 @@ -4771,15 +4771,15 @@ Av 2018 7 17 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9461013E-03 Av 2018 7 17 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0065496E-03 Av 2018 7 17 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.0669978E-03 - Av 2018 7 17 20 0 2.5262747E-02 0.000000 0.000000 3.7181567E-04 0.000000 0.000000 0.000000 - Av 2018 7 17 21 0 4.1732572E-02 0.000000 0.000000 3.7168557E-04 0.000000 0.000000 0.000000 - Av 2018 7 17 22 0 3.5988193E-02 0.000000 0.000000 3.7155554E-04 0.000000 0.000000 0.000000 - Av 2018 7 17 23 0 3.7967898E-02 0.000000 0.000000 3.7142553E-04 0.000000 0.000000 0.000000 - Av 2018 7 17 24 0 3.7261873E-02 0.000000 0.000000 3.7129558E-04 0.000000 0.000000 0.000000 - Av 2018 7 18 1 0 3.7365973E-02 0.000000 0.000000 3.6934455E-04 0.000000 0.000000 0.000000 - Av 2018 7 18 2 0 3.7188478E-02 0.000000 0.000000 3.6921597E-04 0.000000 0.000000 0.000000 - Av 2018 7 18 3 0 3.7232719E-02 0.000000 0.000000 3.6908741E-04 0.000000 0.000000 0.000000 - Av 2018 7 18 4 0 3.7199877E-02 0.000000 0.000000 3.6895892E-04 0.000000 0.000000 0.000000 + Av 2018 7 17 20 0 2.5262747E-02 0.000000 0.000000 3.7181567E-04 0.000000 0.000000 0.000000 + Av 2018 7 17 21 0 4.1732572E-02 0.000000 0.000000 3.7168557E-04 0.000000 0.000000 0.000000 + Av 2018 7 17 22 0 3.5988193E-02 0.000000 0.000000 3.7155554E-04 0.000000 0.000000 0.000000 + Av 2018 7 17 23 0 3.7967898E-02 0.000000 0.000000 3.7142553E-04 0.000000 0.000000 0.000000 + Av 2018 7 17 24 0 3.7261873E-02 0.000000 0.000000 3.7129558E-04 0.000000 0.000000 0.000000 + Av 2018 7 18 1 0 3.7365973E-02 0.000000 0.000000 3.6934455E-04 0.000000 0.000000 0.000000 + Av 2018 7 18 2 0 3.7188478E-02 0.000000 0.000000 3.6921597E-04 0.000000 0.000000 0.000000 + Av 2018 7 18 3 0 3.7232719E-02 0.000000 0.000000 3.6908741E-04 0.000000 0.000000 0.000000 + Av 2018 7 18 4 0 3.7199877E-02 0.000000 0.000000 3.6895892E-04 0.000000 0.000000 0.000000 Av 2018 7 18 5 0 1.8602002E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.8330999E-03 Av 2018 7 18 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4373904E-03 Av 2018 7 18 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.0416810E-03 @@ -4795,15 +4795,15 @@ Av 2018 7 18 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.0416810E-03 Av 2018 7 18 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4373904E-03 Av 2018 7 18 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.8330999E-03 - Av 2018 7 18 20 0 2.4929367E-02 0.000000 0.000000 3.6690902E-04 0.000000 0.000000 0.000000 - Av 2018 7 18 21 0 4.1181892E-02 0.000000 0.000000 3.6678126E-04 0.000000 0.000000 0.000000 - Av 2018 7 18 22 0 3.5513386E-02 0.000000 0.000000 3.6665358E-04 0.000000 0.000000 0.000000 - Av 2018 7 18 23 0 3.7467029E-02 0.000000 0.000000 3.6652590E-04 0.000000 0.000000 0.000000 - Av 2018 7 18 24 0 3.6770388E-02 0.000000 0.000000 3.6639828E-04 0.000000 0.000000 0.000000 - Av 2018 7 19 1 0 3.6876250E-02 0.000000 0.000000 3.6451893E-04 0.000000 0.000000 0.000000 - Av 2018 7 19 2 0 3.6703166E-02 0.000000 0.000000 3.6439262E-04 0.000000 0.000000 0.000000 - Av 2018 7 19 3 0 3.6746189E-02 0.000000 0.000000 3.6426634E-04 0.000000 0.000000 0.000000 - Av 2018 7 19 4 0 3.6714073E-02 0.000000 0.000000 3.6414011E-04 0.000000 0.000000 0.000000 + Av 2018 7 18 20 0 2.4929367E-02 0.000000 0.000000 3.6690902E-04 0.000000 0.000000 0.000000 + Av 2018 7 18 21 0 4.1181892E-02 0.000000 0.000000 3.6678126E-04 0.000000 0.000000 0.000000 + Av 2018 7 18 22 0 3.5513386E-02 0.000000 0.000000 3.6665358E-04 0.000000 0.000000 0.000000 + Av 2018 7 18 23 0 3.7467029E-02 0.000000 0.000000 3.6652590E-04 0.000000 0.000000 0.000000 + Av 2018 7 18 24 0 3.6770388E-02 0.000000 0.000000 3.6639828E-04 0.000000 0.000000 0.000000 + Av 2018 7 19 1 0 3.6876250E-02 0.000000 0.000000 3.6451893E-04 0.000000 0.000000 0.000000 + Av 2018 7 19 2 0 3.6703166E-02 0.000000 0.000000 3.6439262E-04 0.000000 0.000000 0.000000 + Av 2018 7 19 3 0 3.6746189E-02 0.000000 0.000000 3.6426634E-04 0.000000 0.000000 0.000000 + Av 2018 7 19 4 0 3.6714073E-02 0.000000 0.000000 3.6414011E-04 0.000000 0.000000 0.000000 Av 2018 7 19 5 0 1.8359022E-02 0.000000 0.000000 3.2133830E-05 0.000000 0.000000 1.5085461E-03 Av 2018 7 19 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5743641E-03 Av 2018 7 19 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6401816E-03 @@ -4819,15 +4819,15 @@ Av 2018 7 19 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6401816E-03 Av 2018 7 19 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5743641E-03 Av 2018 7 19 19 0 2.0636076E-03 0.000000 0.000000 3.0372059E-05 0.000000 0.000000 1.5085461E-03 - Av 2018 7 19 20 0 2.5950504E-02 0.000000 0.000000 3.6212665E-04 0.000000 0.000000 0.000000 - Av 2018 7 19 21 0 4.0177122E-02 0.000000 0.000000 3.6200118E-04 0.000000 0.000000 0.000000 - Av 2018 7 19 22 0 3.5213351E-02 0.000000 0.000000 3.6187572E-04 0.000000 0.000000 0.000000 - Av 2018 7 19 23 0 3.6922254E-02 0.000000 0.000000 3.6175034E-04 0.000000 0.000000 0.000000 - Av 2018 7 19 24 0 3.6311015E-02 0.000000 0.000000 3.6162496E-04 0.000000 0.000000 0.000000 - Av 2018 7 20 1 0 3.6392018E-02 0.000000 0.000000 3.5981450E-04 0.000000 0.000000 0.000000 - Av 2018 7 20 2 0 3.6232412E-02 0.000000 0.000000 3.5969043E-04 0.000000 0.000000 0.000000 - Av 2018 7 20 3 0 3.6271051E-02 0.000000 0.000000 3.5956639E-04 0.000000 0.000000 0.000000 - Av 2018 7 20 4 0 3.6240764E-02 0.000000 0.000000 3.5944241E-04 0.000000 0.000000 0.000000 + Av 2018 7 19 20 0 2.5950504E-02 0.000000 0.000000 3.6212665E-04 0.000000 0.000000 0.000000 + Av 2018 7 19 21 0 4.0177122E-02 0.000000 0.000000 3.6200118E-04 0.000000 0.000000 0.000000 + Av 2018 7 19 22 0 3.5213351E-02 0.000000 0.000000 3.6187572E-04 0.000000 0.000000 0.000000 + Av 2018 7 19 23 0 3.6922254E-02 0.000000 0.000000 3.6175034E-04 0.000000 0.000000 0.000000 + Av 2018 7 19 24 0 3.6311015E-02 0.000000 0.000000 3.6162496E-04 0.000000 0.000000 0.000000 + Av 2018 7 20 1 0 3.6392018E-02 0.000000 0.000000 3.5981450E-04 0.000000 0.000000 0.000000 + Av 2018 7 20 2 0 3.6232412E-02 0.000000 0.000000 3.5969043E-04 0.000000 0.000000 0.000000 + Av 2018 7 20 3 0 3.6271051E-02 0.000000 0.000000 3.5956639E-04 0.000000 0.000000 0.000000 + Av 2018 7 20 4 0 3.6240764E-02 0.000000 0.000000 3.5944241E-04 0.000000 0.000000 0.000000 Av 2018 7 20 5 0 1.8121997E-02 0.000000 0.000000 4.7379144E-05 0.000000 0.000000 1.4179059E-03 Av 2018 7 20 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4024414E-03 Av 2018 7 20 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.3869769E-03 @@ -4843,15 +4843,15 @@ Av 2018 7 20 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.3869769E-03 Av 2018 7 20 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4024414E-03 Av 2018 7 20 19 0 3.1015293E-03 0.000000 0.000000 4.5648136E-05 0.000000 0.000000 1.4179059E-03 - Av 2018 7 20 20 0 2.6310740E-02 0.000000 0.000000 3.5746410E-04 0.000000 0.000000 0.000000 - Av 2018 7 20 21 0 3.9418422E-02 0.000000 0.000000 3.5734079E-04 0.000000 0.000000 0.000000 - Av 2018 7 20 22 0 3.4844011E-02 0.000000 0.000000 3.5721753E-04 0.000000 0.000000 0.000000 - Av 2018 7 20 23 0 3.6417831E-02 0.000000 0.000000 3.5709434E-04 0.000000 0.000000 0.000000 - Av 2018 7 20 24 0 3.5853863E-02 0.000000 0.000000 3.5697117E-04 0.000000 0.000000 0.000000 - Av 2018 7 21 1 0 3.5923079E-02 0.000000 0.000000 3.5522695E-04 0.000000 0.000000 0.000000 - Av 2018 7 21 2 0 3.5772216E-02 0.000000 0.000000 3.5510500E-04 0.000000 0.000000 0.000000 - Av 2018 7 21 3 0 3.5808101E-02 0.000000 0.000000 3.5498309E-04 0.000000 0.000000 0.000000 - Av 2018 7 21 4 0 3.5779059E-02 0.000000 0.000000 3.5486120E-04 0.000000 0.000000 0.000000 + Av 2018 7 20 20 0 2.6310740E-02 0.000000 0.000000 3.5746410E-04 0.000000 0.000000 0.000000 + Av 2018 7 20 21 0 3.9418422E-02 0.000000 0.000000 3.5734079E-04 0.000000 0.000000 0.000000 + Av 2018 7 20 22 0 3.4844011E-02 0.000000 0.000000 3.5721753E-04 0.000000 0.000000 0.000000 + Av 2018 7 20 23 0 3.6417831E-02 0.000000 0.000000 3.5709434E-04 0.000000 0.000000 0.000000 + Av 2018 7 20 24 0 3.5853863E-02 0.000000 0.000000 3.5697117E-04 0.000000 0.000000 0.000000 + Av 2018 7 21 1 0 3.5923079E-02 0.000000 0.000000 3.5522695E-04 0.000000 0.000000 0.000000 + Av 2018 7 21 2 0 3.5772216E-02 0.000000 0.000000 3.5510500E-04 0.000000 0.000000 0.000000 + Av 2018 7 21 3 0 3.5808101E-02 0.000000 0.000000 3.5498309E-04 0.000000 0.000000 0.000000 + Av 2018 7 21 4 0 3.5779059E-02 0.000000 0.000000 3.5486120E-04 0.000000 0.000000 0.000000 Av 2018 7 21 5 0 1.7890923E-02 0.000000 0.000000 4.5022462E-05 0.000000 0.000000 1.4078041E-03 Av 2018 7 21 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4836858E-03 Av 2018 7 21 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5595677E-03 @@ -4867,15 +4867,15 @@ Av 2018 7 21 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5595677E-03 Av 2018 7 21 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4836858E-03 Av 2018 7 21 19 0 2.9434194E-03 0.000000 0.000000 4.3321081E-05 0.000000 0.000000 1.4078041E-03 - Av 2018 7 21 20 0 2.5898643E-02 0.000000 0.000000 3.5291680E-04 0.000000 0.000000 0.000000 - Av 2018 7 21 21 0 3.8943931E-02 0.000000 0.000000 3.5279567E-04 0.000000 0.000000 0.000000 - Av 2018 7 21 22 0 3.4391515E-02 0.000000 0.000000 3.5267457E-04 0.000000 0.000000 0.000000 - Av 2018 7 21 23 0 3.5957977E-02 0.000000 0.000000 3.5255353E-04 0.000000 0.000000 0.000000 - Av 2018 7 21 24 0 3.5396859E-02 0.000000 0.000000 3.5243251E-04 0.000000 0.000000 0.000000 - Av 2018 7 22 1 0 3.5469558E-02 0.000000 0.000000 3.5075194E-04 0.000000 0.000000 0.000000 - Av 2018 7 22 2 0 3.5321947E-02 0.000000 0.000000 3.5063206E-04 0.000000 0.000000 0.000000 - Av 2018 7 22 3 0 3.5356987E-02 0.000000 0.000000 3.5051224E-04 0.000000 0.000000 0.000000 - Av 2018 7 22 4 0 3.5328522E-02 0.000000 0.000000 3.5039245E-04 0.000000 0.000000 0.000000 + Av 2018 7 21 20 0 2.5898643E-02 0.000000 0.000000 3.5291680E-04 0.000000 0.000000 0.000000 + Av 2018 7 21 21 0 3.8943931E-02 0.000000 0.000000 3.5279567E-04 0.000000 0.000000 0.000000 + Av 2018 7 21 22 0 3.4391515E-02 0.000000 0.000000 3.5267457E-04 0.000000 0.000000 0.000000 + Av 2018 7 21 23 0 3.5957977E-02 0.000000 0.000000 3.5255353E-04 0.000000 0.000000 0.000000 + Av 2018 7 21 24 0 3.5396859E-02 0.000000 0.000000 3.5243251E-04 0.000000 0.000000 0.000000 + Av 2018 7 22 1 0 3.5469558E-02 0.000000 0.000000 3.5075194E-04 0.000000 0.000000 0.000000 + Av 2018 7 22 2 0 3.5321947E-02 0.000000 0.000000 3.5063206E-04 0.000000 0.000000 0.000000 + Av 2018 7 22 3 0 3.5356987E-02 0.000000 0.000000 3.5051224E-04 0.000000 0.000000 0.000000 + Av 2018 7 22 4 0 3.5328522E-02 0.000000 0.000000 3.5039245E-04 0.000000 0.000000 0.000000 Av 2018 7 22 5 0 1.7665608E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.6303784E-03 Av 2018 7 22 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3367554E-03 Av 2018 7 22 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.0431329E-03 @@ -4891,15 +4891,15 @@ Av 2018 7 22 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.0431329E-03 Av 2018 7 22 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3367554E-03 Av 2018 7 22 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.6303784E-03 - Av 2018 7 22 20 0 2.3677317E-02 0.000000 0.000000 3.4848141E-04 0.000000 0.000000 0.000000 - Av 2018 7 22 21 0 3.9113730E-02 0.000000 0.000000 3.4836231E-04 0.000000 0.000000 0.000000 - Av 2018 7 22 22 0 3.3730172E-02 0.000000 0.000000 3.4824325E-04 0.000000 0.000000 0.000000 - Av 2018 7 22 23 0 3.5585903E-02 0.000000 0.000000 3.4812425E-04 0.000000 0.000000 0.000000 - Av 2018 7 22 24 0 3.4924477E-02 0.000000 0.000000 3.4800527E-04 0.000000 0.000000 0.000000 - Av 2018 7 23 1 0 3.5036355E-02 0.000000 0.000000 3.4638590E-04 0.000000 0.000000 0.000000 - Av 2018 7 23 2 0 3.4879416E-02 0.000000 0.000000 3.4626800E-04 0.000000 0.000000 0.000000 - Av 2018 7 23 3 0 3.4917966E-02 0.000000 0.000000 3.4615016E-04 0.000000 0.000000 0.000000 - Av 2018 7 23 4 0 3.4888551E-02 0.000000 0.000000 3.4603235E-04 0.000000 0.000000 0.000000 + Av 2018 7 22 20 0 2.3677317E-02 0.000000 0.000000 3.4848141E-04 0.000000 0.000000 0.000000 + Av 2018 7 22 21 0 3.9113730E-02 0.000000 0.000000 3.4836231E-04 0.000000 0.000000 0.000000 + Av 2018 7 22 22 0 3.3730172E-02 0.000000 0.000000 3.4824325E-04 0.000000 0.000000 0.000000 + Av 2018 7 22 23 0 3.5585903E-02 0.000000 0.000000 3.4812425E-04 0.000000 0.000000 0.000000 + Av 2018 7 22 24 0 3.4924477E-02 0.000000 0.000000 3.4800527E-04 0.000000 0.000000 0.000000 + Av 2018 7 23 1 0 3.5036355E-02 0.000000 0.000000 3.4638590E-04 0.000000 0.000000 0.000000 + Av 2018 7 23 2 0 3.4879416E-02 0.000000 0.000000 3.4626800E-04 0.000000 0.000000 0.000000 + Av 2018 7 23 3 0 3.4917966E-02 0.000000 0.000000 3.4615016E-04 0.000000 0.000000 0.000000 + Av 2018 7 23 4 0 3.4888551E-02 0.000000 0.000000 3.4603235E-04 0.000000 0.000000 0.000000 Av 2018 7 23 5 0 1.7445982E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.7477568E-03 Av 2018 7 23 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8925524E-03 Av 2018 7 23 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0037349E-02 @@ -4915,15 +4915,15 @@ Av 2018 7 23 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0037349E-02 Av 2018 7 23 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8925524E-03 Av 2018 7 23 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.7477568E-03 - Av 2018 7 23 20 0 2.3383221E-02 0.000000 0.000000 3.4415291E-04 0.000000 0.000000 0.000000 - Av 2018 7 23 21 0 3.8627930E-02 0.000000 0.000000 3.4403580E-04 0.000000 0.000000 0.000000 - Av 2018 7 23 22 0 3.3311296E-02 0.000000 0.000000 3.4391871E-04 0.000000 0.000000 0.000000 - Av 2018 7 23 23 0 3.5144027E-02 0.000000 0.000000 3.4380166E-04 0.000000 0.000000 0.000000 - Av 2018 7 23 24 0 3.4490868E-02 0.000000 0.000000 3.4368466E-04 0.000000 0.000000 0.000000 - Av 2018 7 24 1 0 3.4604002E-02 0.000000 0.000000 3.4212414E-04 0.000000 0.000000 0.000000 - Av 2018 7 24 2 0 3.4450755E-02 0.000000 0.000000 3.4200819E-04 0.000000 0.000000 0.000000 - Av 2018 7 24 3 0 3.4488287E-02 0.000000 0.000000 3.4189230E-04 0.000000 0.000000 0.000000 - Av 2018 7 24 4 0 3.4459494E-02 0.000000 0.000000 3.4177644E-04 0.000000 0.000000 0.000000 + Av 2018 7 23 20 0 2.3383221E-02 0.000000 0.000000 3.4415291E-04 0.000000 0.000000 0.000000 + Av 2018 7 23 21 0 3.8627930E-02 0.000000 0.000000 3.4403580E-04 0.000000 0.000000 0.000000 + Av 2018 7 23 22 0 3.3311296E-02 0.000000 0.000000 3.4391871E-04 0.000000 0.000000 0.000000 + Av 2018 7 23 23 0 3.5144027E-02 0.000000 0.000000 3.4380166E-04 0.000000 0.000000 0.000000 + Av 2018 7 23 24 0 3.4490868E-02 0.000000 0.000000 3.4368466E-04 0.000000 0.000000 0.000000 + Av 2018 7 24 1 0 3.4604002E-02 0.000000 0.000000 3.4212414E-04 0.000000 0.000000 0.000000 + Av 2018 7 24 2 0 3.4450755E-02 0.000000 0.000000 3.4200819E-04 0.000000 0.000000 0.000000 + Av 2018 7 24 3 0 3.4488287E-02 0.000000 0.000000 3.4189230E-04 0.000000 0.000000 0.000000 + Av 2018 7 24 4 0 3.4459494E-02 0.000000 0.000000 3.4177644E-04 0.000000 0.000000 0.000000 Av 2018 7 24 5 0 1.7231388E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.5606956E-03 Av 2018 7 24 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4326900E-03 Av 2018 7 24 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.3046846E-03 @@ -4939,15 +4939,15 @@ Av 2018 7 24 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.3046846E-03 Av 2018 7 24 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4326900E-03 Av 2018 7 24 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.5606956E-03 - Av 2018 7 24 20 0 2.3096170E-02 0.000000 0.000000 3.3992814E-04 0.000000 0.000000 0.000000 - Av 2018 7 24 21 0 3.8153768E-02 0.000000 0.000000 3.3981292E-04 0.000000 0.000000 0.000000 - Av 2018 7 24 22 0 3.2902457E-02 0.000000 0.000000 3.3969776E-04 0.000000 0.000000 0.000000 - Av 2018 7 24 23 0 3.4712736E-02 0.000000 0.000000 3.3958262E-04 0.000000 0.000000 0.000000 - Av 2018 7 24 24 0 3.4067642E-02 0.000000 0.000000 3.3946752E-04 0.000000 0.000000 0.000000 - Av 2018 7 25 1 0 3.4181941E-02 0.000000 0.000000 3.3796355E-04 0.000000 0.000000 0.000000 - Av 2018 7 25 2 0 3.4032263E-02 0.000000 0.000000 3.3784949E-04 0.000000 0.000000 0.000000 - Av 2018 7 25 3 0 3.4068808E-02 0.000000 0.000000 3.3773546E-04 0.000000 0.000000 0.000000 - Av 2018 7 25 4 0 3.4040608E-02 0.000000 0.000000 3.3762149E-04 0.000000 0.000000 0.000000 + Av 2018 7 24 20 0 2.3096170E-02 0.000000 0.000000 3.3992814E-04 0.000000 0.000000 0.000000 + Av 2018 7 24 21 0 3.8153768E-02 0.000000 0.000000 3.3981292E-04 0.000000 0.000000 0.000000 + Av 2018 7 24 22 0 3.2902457E-02 0.000000 0.000000 3.3969776E-04 0.000000 0.000000 0.000000 + Av 2018 7 24 23 0 3.4712736E-02 0.000000 0.000000 3.3958262E-04 0.000000 0.000000 0.000000 + Av 2018 7 24 24 0 3.4067642E-02 0.000000 0.000000 3.3946752E-04 0.000000 0.000000 0.000000 + Av 2018 7 25 1 0 3.4181941E-02 0.000000 0.000000 3.3796355E-04 0.000000 0.000000 0.000000 + Av 2018 7 25 2 0 3.4032263E-02 0.000000 0.000000 3.3784949E-04 0.000000 0.000000 0.000000 + Av 2018 7 25 3 0 3.4068808E-02 0.000000 0.000000 3.3773546E-04 0.000000 0.000000 0.000000 + Av 2018 7 25 4 0 3.4040608E-02 0.000000 0.000000 3.3762149E-04 0.000000 0.000000 0.000000 Av 2018 7 25 5 0 1.7021885E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.6038402E-03 Av 2018 7 25 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7795467E-03 Av 2018 7 25 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9552525E-03 @@ -4963,15 +4963,15 @@ Av 2018 7 25 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9552525E-03 Av 2018 7 25 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7795467E-03 Av 2018 7 25 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.6038402E-03 - Av 2018 7 25 20 0 2.2815889E-02 0.000000 0.000000 3.3580296E-04 0.000000 0.000000 0.000000 - Av 2018 7 25 21 0 3.7690792E-02 0.000000 0.000000 3.3568963E-04 0.000000 0.000000 0.000000 - Av 2018 7 25 22 0 3.2503258E-02 0.000000 0.000000 3.3557633E-04 0.000000 0.000000 0.000000 - Av 2018 7 25 23 0 3.4291618E-02 0.000000 0.000000 3.3546309E-04 0.000000 0.000000 0.000000 - Av 2018 7 25 24 0 3.3654399E-02 0.000000 0.000000 3.3534988E-04 0.000000 0.000000 0.000000 - Av 2018 7 26 1 0 3.3769783E-02 0.000000 0.000000 3.3390030E-04 0.000000 0.000000 0.000000 - Av 2018 7 26 2 0 3.3623546E-02 0.000000 0.000000 3.3378805E-04 0.000000 0.000000 0.000000 - Av 2018 7 26 3 0 3.3659145E-02 0.000000 0.000000 3.3367585E-04 0.000000 0.000000 0.000000 - Av 2018 7 26 4 0 3.3631526E-02 0.000000 0.000000 3.3356369E-04 0.000000 0.000000 0.000000 + Av 2018 7 25 20 0 2.2815889E-02 0.000000 0.000000 3.3580296E-04 0.000000 0.000000 0.000000 + Av 2018 7 25 21 0 3.7690792E-02 0.000000 0.000000 3.3568963E-04 0.000000 0.000000 0.000000 + Av 2018 7 25 22 0 3.2503258E-02 0.000000 0.000000 3.3557633E-04 0.000000 0.000000 0.000000 + Av 2018 7 25 23 0 3.4291618E-02 0.000000 0.000000 3.3546309E-04 0.000000 0.000000 0.000000 + Av 2018 7 25 24 0 3.3654399E-02 0.000000 0.000000 3.3534988E-04 0.000000 0.000000 0.000000 + Av 2018 7 26 1 0 3.3769783E-02 0.000000 0.000000 3.3390030E-04 0.000000 0.000000 0.000000 + Av 2018 7 26 2 0 3.3623546E-02 0.000000 0.000000 3.3378805E-04 0.000000 0.000000 0.000000 + Av 2018 7 26 3 0 3.3659145E-02 0.000000 0.000000 3.3367585E-04 0.000000 0.000000 0.000000 + Av 2018 7 26 4 0 3.3631526E-02 0.000000 0.000000 3.3356369E-04 0.000000 0.000000 0.000000 Av 2018 7 26 5 0 1.6817283E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.5413793E-03 Av 2018 7 26 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7674376E-03 Av 2018 7 26 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9934964E-03 @@ -4987,15 +4987,15 @@ Av 2018 7 26 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9934964E-03 Av 2018 7 26 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7674376E-03 Av 2018 7 26 19 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.5413793E-03 - Av 2018 7 26 20 0 2.2542156E-02 0.000000 0.000000 3.3177418E-04 0.000000 0.000000 0.000000 - Av 2018 7 26 21 0 3.7238628E-02 0.000000 0.000000 3.3166265E-04 0.000000 0.000000 0.000000 - Av 2018 7 26 22 0 3.2113381E-02 0.000000 0.000000 3.3155119E-04 0.000000 0.000000 0.000000 - Av 2018 7 26 23 0 3.3880331E-02 0.000000 0.000000 3.3143972E-04 0.000000 0.000000 0.000000 - Av 2018 7 26 24 0 3.3250801E-02 0.000000 0.000000 3.3132831E-04 0.000000 0.000000 0.000000 - Av 2018 7 27 1 0 3.3367187E-02 0.000000 0.000000 3.2993103E-04 0.000000 0.000000 0.000000 - Av 2018 7 27 2 0 3.3224277E-02 0.000000 0.000000 3.2982056E-04 0.000000 0.000000 0.000000 - Av 2018 7 27 3 0 3.3258960E-02 0.000000 0.000000 3.2971014E-04 0.000000 0.000000 0.000000 - Av 2018 7 27 4 0 3.3231899E-02 0.000000 0.000000 3.2959974E-04 0.000000 0.000000 0.000000 + Av 2018 7 26 20 0 2.2542156E-02 0.000000 0.000000 3.3177418E-04 0.000000 0.000000 0.000000 + Av 2018 7 26 21 0 3.7238628E-02 0.000000 0.000000 3.3166265E-04 0.000000 0.000000 0.000000 + Av 2018 7 26 22 0 3.2113381E-02 0.000000 0.000000 3.3155119E-04 0.000000 0.000000 0.000000 + Av 2018 7 26 23 0 3.3880331E-02 0.000000 0.000000 3.3143972E-04 0.000000 0.000000 0.000000 + Av 2018 7 26 24 0 3.3250801E-02 0.000000 0.000000 3.3132831E-04 0.000000 0.000000 0.000000 + Av 2018 7 27 1 0 3.3367187E-02 0.000000 0.000000 3.2993103E-04 0.000000 0.000000 0.000000 + Av 2018 7 27 2 0 3.3224277E-02 0.000000 0.000000 3.2982056E-04 0.000000 0.000000 0.000000 + Av 2018 7 27 3 0 3.3258960E-02 0.000000 0.000000 3.2971014E-04 0.000000 0.000000 0.000000 + Av 2018 7 27 4 0 3.3231899E-02 0.000000 0.000000 3.2959974E-04 0.000000 0.000000 0.000000 Av 2018 7 27 5 0 1.6617412E-02 0.000000 0.000000 1.6412203E-05 0.000000 0.000000 1.4230780E-03 Av 2018 7 27 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5477694E-03 Av 2018 7 27 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.6724611E-03 @@ -5011,15 +5011,15 @@ Av 2018 7 27 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.6724611E-03 Av 2018 7 27 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5477694E-03 Av 2018 7 27 19 0 1.0103979E-03 0.000000 0.000000 1.4870981E-05 0.000000 0.000000 1.4230780E-03 - Av 2018 7 27 20 0 2.2933811E-02 0.000000 0.000000 3.2783832E-04 0.000000 0.000000 0.000000 - Av 2018 7 27 21 0 3.6567725E-02 0.000000 0.000000 3.2772854E-04 0.000000 0.000000 0.000000 - Av 2018 7 27 22 0 3.1812180E-02 0.000000 0.000000 3.2761882E-04 0.000000 0.000000 0.000000 - Av 2018 7 27 23 0 3.3450816E-02 0.000000 0.000000 3.2750910E-04 0.000000 0.000000 0.000000 - Av 2018 7 27 24 0 3.2866143E-02 0.000000 0.000000 3.2739944E-04 0.000000 0.000000 0.000000 - Av 2018 7 28 1 0 3.2970466E-02 0.000000 0.000000 3.2605248E-04 0.000000 0.000000 0.000000 - Av 2018 7 28 2 0 3.2835282E-02 0.000000 0.000000 3.2594372E-04 0.000000 0.000000 0.000000 - Av 2018 7 28 3 0 3.2867514E-02 0.000000 0.000000 3.2583499E-04 0.000000 0.000000 0.000000 - Av 2018 7 28 4 0 3.2841533E-02 0.000000 0.000000 3.2572632E-04 0.000000 0.000000 0.000000 + Av 2018 7 27 20 0 2.2933811E-02 0.000000 0.000000 3.2783832E-04 0.000000 0.000000 0.000000 + Av 2018 7 27 21 0 3.6567725E-02 0.000000 0.000000 3.2772854E-04 0.000000 0.000000 0.000000 + Av 2018 7 27 22 0 3.1812180E-02 0.000000 0.000000 3.2761882E-04 0.000000 0.000000 0.000000 + Av 2018 7 27 23 0 3.3450816E-02 0.000000 0.000000 3.2750910E-04 0.000000 0.000000 0.000000 + Av 2018 7 27 24 0 3.2866143E-02 0.000000 0.000000 3.2739944E-04 0.000000 0.000000 0.000000 + Av 2018 7 28 1 0 3.2970466E-02 0.000000 0.000000 3.2605248E-04 0.000000 0.000000 0.000000 + Av 2018 7 28 2 0 3.2835282E-02 0.000000 0.000000 3.2594372E-04 0.000000 0.000000 0.000000 + Av 2018 7 28 3 0 3.2867514E-02 0.000000 0.000000 3.2583499E-04 0.000000 0.000000 0.000000 + Av 2018 7 28 4 0 3.2841533E-02 0.000000 0.000000 3.2572632E-04 0.000000 0.000000 0.000000 Av 2018 7 28 5 0 1.6422031E-02 0.000000 0.000000 2.8890499E-05 0.000000 0.000000 1.3487597E-03 Av 2018 7 28 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4994845E-03 Av 2018 7 28 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.6502090E-03 @@ -5035,15 +5035,15 @@ Av 2018 7 28 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.6502090E-03 Av 2018 7 28 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4994845E-03 Av 2018 7 28 19 0 1.8598483E-03 0.000000 0.000000 2.7373142E-05 0.000000 0.000000 1.3487597E-03 - Av 2018 7 28 20 0 2.3226574E-02 0.000000 0.000000 3.2399216E-04 0.000000 0.000000 0.000000 - Av 2018 7 28 21 0 3.5943396E-02 0.000000 0.000000 3.2388407E-04 0.000000 0.000000 0.000000 - Av 2018 7 28 22 0 3.1506959E-02 0.000000 0.000000 3.2377604E-04 0.000000 0.000000 0.000000 - Av 2018 7 28 23 0 3.3034869E-02 0.000000 0.000000 3.2366803E-04 0.000000 0.000000 0.000000 - Av 2018 7 28 24 0 3.2488927E-02 0.000000 0.000000 3.2356006E-04 0.000000 0.000000 0.000000 - Av 2018 7 29 1 0 3.2583192E-02 0.000000 0.000000 3.2226153E-04 0.000000 0.000000 0.000000 - Av 2018 7 29 2 0 3.2454908E-02 0.000000 0.000000 3.2215440E-04 0.000000 0.000000 0.000000 - Av 2018 7 29 3 0 3.2484960E-02 0.000000 0.000000 3.2204733E-04 0.000000 0.000000 0.000000 - Av 2018 7 29 4 0 3.2459967E-02 0.000000 0.000000 3.2194032E-04 0.000000 0.000000 0.000000 + Av 2018 7 28 20 0 2.3226574E-02 0.000000 0.000000 3.2399216E-04 0.000000 0.000000 0.000000 + Av 2018 7 28 21 0 3.5943396E-02 0.000000 0.000000 3.2388407E-04 0.000000 0.000000 0.000000 + Av 2018 7 28 22 0 3.1506959E-02 0.000000 0.000000 3.2377604E-04 0.000000 0.000000 0.000000 + Av 2018 7 28 23 0 3.3034869E-02 0.000000 0.000000 3.2366803E-04 0.000000 0.000000 0.000000 + Av 2018 7 28 24 0 3.2488927E-02 0.000000 0.000000 3.2356006E-04 0.000000 0.000000 0.000000 + Av 2018 7 29 1 0 3.2583192E-02 0.000000 0.000000 3.2226153E-04 0.000000 0.000000 0.000000 + Av 2018 7 29 2 0 3.2454908E-02 0.000000 0.000000 3.2215440E-04 0.000000 0.000000 0.000000 + Av 2018 7 29 3 0 3.2484960E-02 0.000000 0.000000 3.2204733E-04 0.000000 0.000000 0.000000 + Av 2018 7 29 4 0 3.2459967E-02 0.000000 0.000000 3.2194032E-04 0.000000 0.000000 0.000000 Av 2018 7 29 5 0 1.6231071E-02 0.000000 0.000000 2.3501110E-05 0.000000 0.000000 1.3560556E-03 Av 2018 7 29 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8089159E-03 Av 2018 7 29 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0261777E-02 @@ -5059,15 +5059,15 @@ Av 2018 7 29 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0261777E-02 Av 2018 7 29 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8089159E-03 Av 2018 7 29 19 0 1.4952403E-03 0.000000 0.000000 2.2006861E-05 0.000000 0.000000 1.3560556E-03 - Av 2018 7 29 20 0 2.2733307E-02 0.000000 0.000000 3.2023262E-04 0.000000 0.000000 0.000000 - Av 2018 7 29 21 0 3.5604142E-02 0.000000 0.000000 3.2012619E-04 0.000000 0.000000 0.000000 - Av 2018 7 29 22 0 3.1114377E-02 0.000000 0.000000 3.2001978E-04 0.000000 0.000000 0.000000 - Av 2018 7 29 23 0 3.2661054E-02 0.000000 0.000000 3.1991344E-04 0.000000 0.000000 0.000000 - Av 2018 7 29 24 0 3.2108814E-02 0.000000 0.000000 3.1980712E-04 0.000000 0.000000 0.000000 - Av 2018 7 30 1 0 3.2208540E-02 0.000000 0.000000 3.1855510E-04 0.000000 0.000000 0.000000 - Av 2018 7 30 2 0 3.2081626E-02 0.000000 0.000000 3.1844960E-04 0.000000 0.000000 0.000000 - Av 2018 7 30 3 0 3.2111425E-02 0.000000 0.000000 3.1834416E-04 0.000000 0.000000 0.000000 - Av 2018 7 30 4 0 3.2086734E-02 0.000000 0.000000 3.1823872E-04 0.000000 0.000000 0.000000 + Av 2018 7 29 20 0 2.2733307E-02 0.000000 0.000000 3.2023262E-04 0.000000 0.000000 0.000000 + Av 2018 7 29 21 0 3.5604142E-02 0.000000 0.000000 3.2012619E-04 0.000000 0.000000 0.000000 + Av 2018 7 29 22 0 3.1114377E-02 0.000000 0.000000 3.2001978E-04 0.000000 0.000000 0.000000 + Av 2018 7 29 23 0 3.2661054E-02 0.000000 0.000000 3.1991344E-04 0.000000 0.000000 0.000000 + Av 2018 7 29 24 0 3.2108814E-02 0.000000 0.000000 3.1980712E-04 0.000000 0.000000 0.000000 + Av 2018 7 30 1 0 3.2208540E-02 0.000000 0.000000 3.1855510E-04 0.000000 0.000000 0.000000 + Av 2018 7 30 2 0 3.2081626E-02 0.000000 0.000000 3.1844960E-04 0.000000 0.000000 0.000000 + Av 2018 7 30 3 0 3.2111425E-02 0.000000 0.000000 3.1834416E-04 0.000000 0.000000 0.000000 + Av 2018 7 30 4 0 3.2086734E-02 0.000000 0.000000 3.1823872E-04 0.000000 0.000000 0.000000 Av 2018 7 30 5 0 1.6044455E-02 0.000000 0.000000 2.9399671E-05 0.000000 0.000000 1.3124257E-03 Av 2018 7 30 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9369765E-03 Av 2018 7 30 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0561528E-02 @@ -5083,15 +5083,15 @@ Av 2018 7 30 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0561528E-02 Av 2018 7 30 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9369765E-03 Av 2018 7 30 19 0 1.8975423E-03 0.000000 0.000000 2.7927919E-05 0.000000 0.000000 1.3124257E-03 - Av 2018 7 30 20 0 2.2745965E-02 0.000000 0.000000 3.1655669E-04 0.000000 0.000000 0.000000 - Av 2018 7 30 21 0 3.5100333E-02 0.000000 0.000000 3.1645186E-04 0.000000 0.000000 0.000000 - Av 2018 7 30 22 0 3.0790366E-02 0.000000 0.000000 3.1634708E-04 0.000000 0.000000 0.000000 - Av 2018 7 30 23 0 3.2274745E-02 0.000000 0.000000 3.1624231E-04 0.000000 0.000000 0.000000 - Av 2018 7 30 24 0 3.1744380E-02 0.000000 0.000000 3.1613759E-04 0.000000 0.000000 0.000000 - Av 2018 7 31 1 0 3.1839654E-02 0.000000 0.000000 3.1493034E-04 0.000000 0.000000 0.000000 - Av 2018 7 31 2 0 3.1717435E-02 0.000000 0.000000 3.1482641E-04 0.000000 0.000000 0.000000 - Av 2018 7 31 3 0 3.1745810E-02 0.000000 0.000000 3.1472251E-04 0.000000 0.000000 0.000000 - Av 2018 7 31 4 0 3.1721830E-02 0.000000 0.000000 3.1461864E-04 0.000000 0.000000 0.000000 + Av 2018 7 30 20 0 2.2745965E-02 0.000000 0.000000 3.1655669E-04 0.000000 0.000000 0.000000 + Av 2018 7 30 21 0 3.5100333E-02 0.000000 0.000000 3.1645186E-04 0.000000 0.000000 0.000000 + Av 2018 7 30 22 0 3.0790366E-02 0.000000 0.000000 3.1634708E-04 0.000000 0.000000 0.000000 + Av 2018 7 30 23 0 3.2274745E-02 0.000000 0.000000 3.1624231E-04 0.000000 0.000000 0.000000 + Av 2018 7 30 24 0 3.1744380E-02 0.000000 0.000000 3.1613759E-04 0.000000 0.000000 0.000000 + Av 2018 7 31 1 0 3.1839654E-02 0.000000 0.000000 3.1493034E-04 0.000000 0.000000 0.000000 + Av 2018 7 31 2 0 3.1717435E-02 0.000000 0.000000 3.1482641E-04 0.000000 0.000000 0.000000 + Av 2018 7 31 3 0 3.1745810E-02 0.000000 0.000000 3.1472251E-04 0.000000 0.000000 0.000000 + Av 2018 7 31 4 0 3.1721830E-02 0.000000 0.000000 3.1461864E-04 0.000000 0.000000 0.000000 Av 2018 7 31 5 0 1.5861897E-02 0.000000 0.000000 5.9960963E-05 0.000000 0.000000 1.1570629E-03 Av 2018 7 31 6 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5609960E-03 Av 2018 7 31 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9649290E-03 @@ -5107,15 +5107,15 @@ Av 2018 7 31 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.9649290E-03 Av 2018 7 31 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5609960E-03 Av 2018 7 31 19 0 3.9754882E-03 0.000000 0.000000 5.8511010E-05 0.000000 0.000000 1.1570629E-03 - Av 2018 7 31 20 0 2.3857120E-02 0.000000 0.000000 3.1296155E-04 0.000000 0.000000 0.000000 - Av 2018 7 31 21 0 3.4225538E-02 0.000000 0.000000 3.1285826E-04 0.000000 0.000000 0.000000 - Av 2018 7 31 22 0 3.0606318E-02 0.000000 0.000000 3.1275503E-04 0.000000 0.000000 0.000000 - Av 2018 7 31 23 0 3.1850725E-02 0.000000 0.000000 3.1265180E-04 0.000000 0.000000 0.000000 - Av 2018 7 31 24 0 3.1404011E-02 0.000000 0.000000 3.1254865E-04 0.000000 0.000000 0.000000 - Av 2018 8 1 1 0 3.1473227E-02 0.000000 0.000000 3.1138444E-04 0.000000 0.000000 0.000000 - Av 2018 8 1 2 0 3.1363104E-02 0.000000 0.000000 3.1128206E-04 0.000000 0.000000 0.000000 - Av 2018 8 1 3 0 3.1387478E-02 0.000000 0.000000 3.1117967E-04 0.000000 0.000000 0.000000 - Av 2018 8 1 4 0 3.1365097E-02 0.000000 0.000000 3.1107734E-04 0.000000 0.000000 0.000000 + Av 2018 7 31 20 0 2.3857120E-02 0.000000 0.000000 3.1296155E-04 0.000000 0.000000 0.000000 + Av 2018 7 31 21 0 3.4225538E-02 0.000000 0.000000 3.1285826E-04 0.000000 0.000000 0.000000 + Av 2018 7 31 22 0 3.0606318E-02 0.000000 0.000000 3.1275503E-04 0.000000 0.000000 0.000000 + Av 2018 7 31 23 0 3.1850725E-02 0.000000 0.000000 3.1265180E-04 0.000000 0.000000 0.000000 + Av 2018 7 31 24 0 3.1404011E-02 0.000000 0.000000 3.1254865E-04 0.000000 0.000000 0.000000 + Av 2018 8 1 1 0 3.1473227E-02 0.000000 0.000000 3.1138444E-04 0.000000 0.000000 0.000000 + Av 2018 8 1 2 0 3.1363104E-02 0.000000 0.000000 3.1128206E-04 0.000000 0.000000 0.000000 + Av 2018 8 1 3 0 3.1387478E-02 0.000000 0.000000 3.1117967E-04 0.000000 0.000000 0.000000 + Av 2018 8 1 4 0 3.1365097E-02 0.000000 0.000000 3.1107734E-04 0.000000 0.000000 0.000000 Av 2018 8 1 5 0 1.6544685E-02 0.000000 0.000000 9.3496157E-05 0.000000 0.000000 9.8854024E-04 Av 2018 8 1 6 0 8.6149876E-04 0.000000 0.000000 0.000000 0.000000 0.000000 4.9099778E-03 Av 2018 8 1 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.8314153E-03 @@ -5131,15 +5131,15 @@ Av 2018 8 1 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.8314153E-03 Av 2018 8 1 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9099778E-03 Av 2018 8 1 19 0 6.2554521E-03 0.000000 0.000000 9.2067392E-05 0.000000 0.000000 9.8854024E-04 - Av 2018 8 1 20 0 2.5105353E-02 0.000000 0.000000 3.0944444E-04 0.000000 0.000000 0.000000 - Av 2018 8 1 21 0 3.3313688E-02 0.000000 0.000000 3.0934266E-04 0.000000 0.000000 0.000000 - Av 2018 8 1 22 0 3.0445747E-02 0.000000 0.000000 3.0924092E-04 0.000000 0.000000 0.000000 - Av 2018 8 1 23 0 3.1429134E-02 0.000000 0.000000 3.0913923E-04 0.000000 0.000000 0.000000 - Av 2018 8 1 24 0 3.1073384E-02 0.000000 0.000000 3.0903757E-04 0.000000 0.000000 0.000000 - Av 2018 8 2 1 0 3.1113889E-02 0.000000 0.000000 3.0791480E-04 0.000000 0.000000 0.000000 - Av 2018 8 2 2 0 3.1016663E-02 0.000000 0.000000 3.0781387E-04 0.000000 0.000000 0.000000 - Av 2018 8 2 3 0 3.1036755E-02 0.000000 0.000000 3.0771297E-04 0.000000 0.000000 0.000000 - Av 2018 8 2 4 0 3.1016059E-02 0.000000 0.000000 3.0761209E-04 0.000000 0.000000 0.000000 + Av 2018 8 1 20 0 2.5105353E-02 0.000000 0.000000 3.0944444E-04 0.000000 0.000000 0.000000 + Av 2018 8 1 21 0 3.3313688E-02 0.000000 0.000000 3.0934266E-04 0.000000 0.000000 0.000000 + Av 2018 8 1 22 0 3.0445747E-02 0.000000 0.000000 3.0924092E-04 0.000000 0.000000 0.000000 + Av 2018 8 1 23 0 3.1429134E-02 0.000000 0.000000 3.0913923E-04 0.000000 0.000000 0.000000 + Av 2018 8 1 24 0 3.1073384E-02 0.000000 0.000000 3.0903757E-04 0.000000 0.000000 0.000000 + Av 2018 8 2 1 0 3.1113889E-02 0.000000 0.000000 3.0791480E-04 0.000000 0.000000 0.000000 + Av 2018 8 2 2 0 3.1016663E-02 0.000000 0.000000 3.0781387E-04 0.000000 0.000000 0.000000 + Av 2018 8 2 3 0 3.1036755E-02 0.000000 0.000000 3.0771297E-04 0.000000 0.000000 0.000000 + Av 2018 8 2 4 0 3.1016059E-02 0.000000 0.000000 3.0761209E-04 0.000000 0.000000 0.000000 Av 2018 8 2 5 0 1.8454127E-02 0.000000 0.000000 1.2319080E-04 0.000000 0.000000 8.3782023E-04 Av 2018 8 2 6 0 2.9458345E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.4716322E-03 Av 2018 8 2 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.1054447E-03 @@ -5155,15 +5155,15 @@ Av 2018 8 2 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.1054447E-03 Av 2018 8 2 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4716322E-03 Av 2018 8 2 19 0 8.2744304E-03 0.000000 0.000000 1.2178261E-04 0.000000 0.000000 8.3782023E-04 - Av 2018 8 2 20 0 2.6188470E-02 0.000000 0.000000 3.0600271E-04 0.000000 0.000000 0.000000 - Av 2018 8 2 21 0 3.2469489E-02 0.000000 0.000000 3.0590242E-04 0.000000 0.000000 0.000000 - Av 2018 8 2 22 0 3.0271893E-02 0.000000 0.000000 3.0580215E-04 0.000000 0.000000 0.000000 - Av 2018 8 2 23 0 3.1022392E-02 0.000000 0.000000 3.0570189E-04 0.000000 0.000000 0.000000 - Av 2018 8 2 24 0 3.0747816E-02 0.000000 0.000000 3.0560169E-04 0.000000 0.000000 0.000000 - Av 2018 8 3 1 0 3.0762903E-02 0.000000 0.000000 3.0451879E-04 0.000000 0.000000 0.000000 - Av 2018 8 3 2 0 3.0677320E-02 0.000000 0.000000 3.0441929E-04 0.000000 0.000000 0.000000 - Av 2018 8 3 3 0 3.0693561E-02 0.000000 0.000000 3.0431984E-04 0.000000 0.000000 0.000000 - Av 2018 8 3 4 0 3.0674402E-02 0.000000 0.000000 3.0422039E-04 0.000000 0.000000 0.000000 + Av 2018 8 2 20 0 2.6188470E-02 0.000000 0.000000 3.0600271E-04 0.000000 0.000000 0.000000 + Av 2018 8 2 21 0 3.2469489E-02 0.000000 0.000000 3.0590242E-04 0.000000 0.000000 0.000000 + Av 2018 8 2 22 0 3.0271893E-02 0.000000 0.000000 3.0580215E-04 0.000000 0.000000 0.000000 + Av 2018 8 2 23 0 3.1022392E-02 0.000000 0.000000 3.0570189E-04 0.000000 0.000000 0.000000 + Av 2018 8 2 24 0 3.0747816E-02 0.000000 0.000000 3.0560169E-04 0.000000 0.000000 0.000000 + Av 2018 8 3 1 0 3.0762903E-02 0.000000 0.000000 3.0451879E-04 0.000000 0.000000 0.000000 + Av 2018 8 3 2 0 3.0677320E-02 0.000000 0.000000 3.0441929E-04 0.000000 0.000000 0.000000 + Av 2018 8 3 3 0 3.0693561E-02 0.000000 0.000000 3.0431984E-04 0.000000 0.000000 0.000000 + Av 2018 8 3 4 0 3.0674402E-02 0.000000 0.000000 3.0422039E-04 0.000000 0.000000 0.000000 Av 2018 8 3 5 0 1.9832248E-02 0.000000 0.000000 1.4505067E-04 0.000000 0.000000 7.2304683E-04 Av 2018 8 3 6 0 4.4951206E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.1868710E-03 Av 2018 8 3 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6506948E-03 @@ -5179,15 +5179,15 @@ Av 2018 8 3 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6506948E-03 Av 2018 8 3 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1868710E-03 Av 2018 8 3 19 0 9.7610410E-03 0.000000 0.000000 1.4366244E-04 0.000000 0.000000 7.2304683E-04 - Av 2018 8 3 20 0 2.6929278E-02 0.000000 0.000000 3.0263385E-04 0.000000 0.000000 0.000000 - Av 2018 8 3 21 0 3.1754207E-02 0.000000 0.000000 3.0253496E-04 0.000000 0.000000 0.000000 - Av 2018 8 3 22 0 3.0063102E-02 0.000000 0.000000 3.0243612E-04 0.000000 0.000000 0.000000 - Av 2018 8 3 23 0 3.0637683E-02 0.000000 0.000000 3.0233728E-04 0.000000 0.000000 0.000000 - Av 2018 8 3 24 0 3.0424470E-02 0.000000 0.000000 3.0223851E-04 0.000000 0.000000 0.000000 - Av 2018 8 4 1 0 3.0420924E-02 0.000000 0.000000 3.0119397E-04 0.000000 0.000000 0.000000 - Av 2018 8 4 2 0 3.0344520E-02 0.000000 0.000000 3.0109586E-04 0.000000 0.000000 0.000000 - Av 2018 8 4 3 0 3.0357756E-02 0.000000 0.000000 3.0099778E-04 0.000000 0.000000 0.000000 - Av 2018 8 4 4 0 3.0339828E-02 0.000000 0.000000 3.0089973E-04 0.000000 0.000000 0.000000 + Av 2018 8 3 20 0 2.6929278E-02 0.000000 0.000000 3.0263385E-04 0.000000 0.000000 0.000000 + Av 2018 8 3 21 0 3.1754207E-02 0.000000 0.000000 3.0253496E-04 0.000000 0.000000 0.000000 + Av 2018 8 3 22 0 3.0063102E-02 0.000000 0.000000 3.0243612E-04 0.000000 0.000000 0.000000 + Av 2018 8 3 23 0 3.0637683E-02 0.000000 0.000000 3.0233728E-04 0.000000 0.000000 0.000000 + Av 2018 8 3 24 0 3.0424470E-02 0.000000 0.000000 3.0223851E-04 0.000000 0.000000 0.000000 + Av 2018 8 4 1 0 3.0420924E-02 0.000000 0.000000 3.0119397E-04 0.000000 0.000000 0.000000 + Av 2018 8 4 2 0 3.0344520E-02 0.000000 0.000000 3.0109586E-04 0.000000 0.000000 0.000000 + Av 2018 8 4 3 0 3.0357756E-02 0.000000 0.000000 3.0099778E-04 0.000000 0.000000 0.000000 + Av 2018 8 4 4 0 3.0339828E-02 0.000000 0.000000 3.0089973E-04 0.000000 0.000000 0.000000 Av 2018 8 4 5 0 2.0441646E-02 0.000000 0.000000 1.5559116E-04 0.000000 0.000000 6.6004810E-04 Av 2018 8 4 6 0 5.2720592E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.1966029E-03 Av 2018 8 4 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7331578E-03 @@ -5203,15 +5203,15 @@ Av 2018 8 4 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7331578E-03 Av 2018 8 4 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1966029E-03 Av 2018 8 4 19 0 1.0478528E-02 0.000000 0.000000 1.5422238E-04 0.000000 0.000000 6.6004810E-04 - Av 2018 8 4 20 0 2.7173180E-02 0.000000 0.000000 2.9933543E-04 0.000000 0.000000 0.000000 - Av 2018 8 4 21 0 3.1221276E-02 0.000000 0.000000 2.9923793E-04 0.000000 0.000000 0.000000 - Av 2018 8 4 22 0 2.9800471E-02 0.000000 0.000000 2.9914046E-04 0.000000 0.000000 0.000000 - Av 2018 8 4 23 0 3.0281255E-02 0.000000 0.000000 2.9904302E-04 0.000000 0.000000 0.000000 - Av 2018 8 4 24 0 3.0100843E-02 0.000000 0.000000 2.9894561E-04 0.000000 0.000000 0.000000 - Av 2018 8 5 1 0 3.0088492E-02 0.000000 0.000000 2.9793798E-04 0.000000 0.000000 0.000000 - Av 2018 8 5 2 0 3.0017750E-02 0.000000 0.000000 2.9784124E-04 0.000000 0.000000 0.000000 - Av 2018 8 5 3 0 3.0029204E-02 0.000000 0.000000 2.9774450E-04 0.000000 0.000000 0.000000 - Av 2018 8 5 4 0 3.0012079E-02 0.000000 0.000000 2.9764784E-04 0.000000 0.000000 0.000000 + Av 2018 8 4 20 0 2.7173180E-02 0.000000 0.000000 2.9933543E-04 0.000000 0.000000 0.000000 + Av 2018 8 4 21 0 3.1221276E-02 0.000000 0.000000 2.9923793E-04 0.000000 0.000000 0.000000 + Av 2018 8 4 22 0 2.9800471E-02 0.000000 0.000000 2.9914046E-04 0.000000 0.000000 0.000000 + Av 2018 8 4 23 0 3.0281255E-02 0.000000 0.000000 2.9904302E-04 0.000000 0.000000 0.000000 + Av 2018 8 4 24 0 3.0100843E-02 0.000000 0.000000 2.9894561E-04 0.000000 0.000000 0.000000 + Av 2018 8 5 1 0 3.0088492E-02 0.000000 0.000000 2.9793798E-04 0.000000 0.000000 0.000000 + Av 2018 8 5 2 0 3.0017750E-02 0.000000 0.000000 2.9784124E-04 0.000000 0.000000 0.000000 + Av 2018 8 5 3 0 3.0029204E-02 0.000000 0.000000 2.9774450E-04 0.000000 0.000000 0.000000 + Av 2018 8 5 4 0 3.0012079E-02 0.000000 0.000000 2.9764784E-04 0.000000 0.000000 0.000000 Av 2018 8 5 5 0 2.0570386E-02 0.000000 0.000000 1.5904188E-04 0.000000 0.000000 6.2958762E-04 Av 2018 8 5 6 0 5.5648177E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.4626370E-03 Av 2018 8 5 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2956869E-03 @@ -5227,15 +5227,15 @@ Av 2018 8 5 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2956869E-03 Av 2018 8 5 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4626370E-03 Av 2018 8 5 19 0 1.0714270E-02 0.000000 0.000000 1.5769202E-04 0.000000 0.000000 6.2958762E-04 - Av 2018 8 5 20 0 2.7107472E-02 0.000000 0.000000 2.9610514E-04 0.000000 0.000000 0.000000 - Av 2018 8 5 21 0 3.0805256E-02 0.000000 0.000000 2.9600898E-04 0.000000 0.000000 0.000000 - Av 2018 8 5 22 0 2.9506437E-02 0.000000 0.000000 2.9591285E-04 0.000000 0.000000 0.000000 - Av 2018 8 5 23 0 2.9944986E-02 0.000000 0.000000 2.9581675E-04 0.000000 0.000000 0.000000 - Av 2018 8 5 24 0 2.9779442E-02 0.000000 0.000000 2.9572067E-04 0.000000 0.000000 0.000000 - Av 2018 8 6 1 0 2.9764425E-02 0.000000 0.000000 2.9474855E-04 0.000000 0.000000 0.000000 - Av 2018 8 6 2 0 2.9697113E-02 0.000000 0.000000 2.9465312E-04 0.000000 0.000000 0.000000 - Av 2018 8 6 3 0 2.9707555E-02 0.000000 0.000000 2.9455774E-04 0.000000 0.000000 0.000000 - Av 2018 8 6 4 0 2.9690964E-02 0.000000 0.000000 2.9446237E-04 0.000000 0.000000 0.000000 + Av 2018 8 5 20 0 2.7107472E-02 0.000000 0.000000 2.9610514E-04 0.000000 0.000000 0.000000 + Av 2018 8 5 21 0 3.0805256E-02 0.000000 0.000000 2.9600898E-04 0.000000 0.000000 0.000000 + Av 2018 8 5 22 0 2.9506437E-02 0.000000 0.000000 2.9591285E-04 0.000000 0.000000 0.000000 + Av 2018 8 5 23 0 2.9944986E-02 0.000000 0.000000 2.9581675E-04 0.000000 0.000000 0.000000 + Av 2018 8 5 24 0 2.9779442E-02 0.000000 0.000000 2.9572067E-04 0.000000 0.000000 0.000000 + Av 2018 8 6 1 0 2.9764425E-02 0.000000 0.000000 2.9474855E-04 0.000000 0.000000 0.000000 + Av 2018 8 6 2 0 2.9697113E-02 0.000000 0.000000 2.9465312E-04 0.000000 0.000000 0.000000 + Av 2018 8 6 3 0 2.9707555E-02 0.000000 0.000000 2.9455774E-04 0.000000 0.000000 0.000000 + Av 2018 8 6 4 0 2.9690964E-02 0.000000 0.000000 2.9446237E-04 0.000000 0.000000 0.000000 Av 2018 8 6 5 0 2.1300344E-02 0.000000 0.000000 1.7128719E-04 0.000000 0.000000 5.5945379E-04 Av 2018 8 6 6 0 6.4554061E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.5103631E-03 Av 2018 8 6 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4612733E-03 @@ -5251,15 +5251,15 @@ Av 2018 8 6 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4612733E-03 Av 2018 8 6 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5103631E-03 Av 2018 8 6 19 0 1.1547518E-02 0.000000 0.000000 1.6995572E-04 0.000000 0.000000 5.5945379E-04 - Av 2018 8 6 20 0 2.7435988E-02 0.000000 0.000000 2.9294071E-04 0.000000 0.000000 0.000000 - Av 2018 8 6 21 0 3.0261107E-02 0.000000 0.000000 2.9284586E-04 0.000000 0.000000 0.000000 - Av 2018 8 6 22 0 2.9265899E-02 0.000000 0.000000 2.9275104E-04 0.000000 0.000000 0.000000 - Av 2018 8 6 23 0 2.9599059E-02 0.000000 0.000000 2.9265624E-04 0.000000 0.000000 0.000000 - Av 2018 8 6 24 0 2.9470339E-02 0.000000 0.000000 2.9256148E-04 0.000000 0.000000 0.000000 - Av 2018 8 7 1 0 2.9444929E-02 0.000000 0.000000 2.9162352E-04 0.000000 0.000000 0.000000 - Av 2018 8 7 2 0 2.9383637E-02 0.000000 0.000000 2.9152937E-04 0.000000 0.000000 0.000000 - Av 2018 8 7 3 0 2.9392159E-02 0.000000 0.000000 2.9143525E-04 0.000000 0.000000 0.000000 - Av 2018 8 7 4 0 2.9376408E-02 0.000000 0.000000 2.9134119E-04 0.000000 0.000000 0.000000 + Av 2018 8 6 20 0 2.7435988E-02 0.000000 0.000000 2.9294071E-04 0.000000 0.000000 0.000000 + Av 2018 8 6 21 0 3.0261107E-02 0.000000 0.000000 2.9284586E-04 0.000000 0.000000 0.000000 + Av 2018 8 6 22 0 2.9265899E-02 0.000000 0.000000 2.9275104E-04 0.000000 0.000000 0.000000 + Av 2018 8 6 23 0 2.9599059E-02 0.000000 0.000000 2.9265624E-04 0.000000 0.000000 0.000000 + Av 2018 8 6 24 0 2.9470339E-02 0.000000 0.000000 2.9256148E-04 0.000000 0.000000 0.000000 + Av 2018 8 7 1 0 2.9444929E-02 0.000000 0.000000 2.9162352E-04 0.000000 0.000000 0.000000 + Av 2018 8 7 2 0 2.9383637E-02 0.000000 0.000000 2.9152937E-04 0.000000 0.000000 0.000000 + Av 2018 8 7 3 0 2.9392159E-02 0.000000 0.000000 2.9143525E-04 0.000000 0.000000 0.000000 + Av 2018 8 7 4 0 2.9376408E-02 0.000000 0.000000 2.9134119E-04 0.000000 0.000000 0.000000 Av 2018 8 7 5 0 2.2012012E-02 0.000000 0.000000 1.8323398E-04 0.000000 0.000000 4.9096887E-04 Av 2018 8 7 6 0 7.3245103E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.6274760E-03 Av 2018 8 7 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.7639829E-03 @@ -5275,15 +5275,15 @@ Av 2018 8 7 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.7639829E-03 Av 2018 8 7 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.6274760E-03 Av 2018 8 7 19 0 1.2360450E-02 0.000000 0.000000 1.8192040E-04 0.000000 0.000000 4.9096887E-04 - Av 2018 8 7 20 0 2.7755577E-02 0.000000 0.000000 2.8983995E-04 0.000000 0.000000 0.000000 - Av 2018 8 7 21 0 2.9728714E-02 0.000000 0.000000 2.8974639E-04 0.000000 0.000000 0.000000 - Av 2018 8 7 22 0 2.9029924E-02 0.000000 0.000000 2.8965285E-04 0.000000 0.000000 0.000000 - Av 2018 8 7 23 0 2.9260190E-02 0.000000 0.000000 2.8955934E-04 0.000000 0.000000 0.000000 - Av 2018 8 7 24 0 2.9167417E-02 0.000000 0.000000 2.8946585E-04 0.000000 0.000000 0.000000 - Av 2018 8 8 1 0 2.9131830E-02 0.000000 0.000000 2.8856078E-04 0.000000 0.000000 0.000000 - Av 2018 8 8 2 0 2.9076397E-02 0.000000 0.000000 2.8846788E-04 0.000000 0.000000 0.000000 - Av 2018 8 8 3 0 2.9083051E-02 0.000000 0.000000 2.8837501E-04 0.000000 0.000000 0.000000 - Av 2018 8 8 4 0 2.9068120E-02 0.000000 0.000000 2.8828217E-04 0.000000 0.000000 0.000000 + Av 2018 8 7 20 0 2.7755577E-02 0.000000 0.000000 2.8983995E-04 0.000000 0.000000 0.000000 + Av 2018 8 7 21 0 2.9728714E-02 0.000000 0.000000 2.8974639E-04 0.000000 0.000000 0.000000 + Av 2018 8 7 22 0 2.9029924E-02 0.000000 0.000000 2.8965285E-04 0.000000 0.000000 0.000000 + Av 2018 8 7 23 0 2.9260190E-02 0.000000 0.000000 2.8955934E-04 0.000000 0.000000 0.000000 + Av 2018 8 7 24 0 2.9167417E-02 0.000000 0.000000 2.8946585E-04 0.000000 0.000000 0.000000 + Av 2018 8 8 1 0 2.9131830E-02 0.000000 0.000000 2.8856078E-04 0.000000 0.000000 0.000000 + Av 2018 8 8 2 0 2.9076397E-02 0.000000 0.000000 2.8846788E-04 0.000000 0.000000 0.000000 + Av 2018 8 8 3 0 2.9083051E-02 0.000000 0.000000 2.8837501E-04 0.000000 0.000000 0.000000 + Av 2018 8 8 4 0 2.9068120E-02 0.000000 0.000000 2.8828217E-04 0.000000 0.000000 0.000000 Av 2018 8 8 5 0 2.2641074E-02 0.000000 0.000000 1.9393847E-04 0.000000 0.000000 4.2841313E-04 Av 2018 8 8 6 0 8.1078708E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.9128830E-03 Av 2018 8 8 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.3973530E-03 @@ -5299,15 +5299,15 @@ Av 2018 8 8 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.3973530E-03 Av 2018 8 8 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9128830E-03 Av 2018 8 8 19 0 1.3088945E-02 0.000000 0.000000 1.9264236E-04 0.000000 0.000000 4.2841313E-04 - Av 2018 8 8 20 0 2.8024282E-02 0.000000 0.000000 2.8680090E-04 0.000000 0.000000 0.000000 - Av 2018 8 8 21 0 2.9222393E-02 0.000000 0.000000 2.8670856E-04 0.000000 0.000000 0.000000 - Av 2018 8 8 22 0 2.8793255E-02 0.000000 0.000000 2.8661627E-04 0.000000 0.000000 0.000000 - Av 2018 8 8 23 0 2.8929928E-02 0.000000 0.000000 2.8652398E-04 0.000000 0.000000 0.000000 - Av 2018 8 8 24 0 2.8869869E-02 0.000000 0.000000 2.8643175E-04 0.000000 0.000000 0.000000 - Av 2018 8 9 1 0 2.8825140E-02 0.000000 0.000000 2.8555829E-04 0.000000 0.000000 0.000000 - Av 2018 8 9 2 0 2.8775115E-02 0.000000 0.000000 2.8546661E-04 0.000000 0.000000 0.000000 - Av 2018 8 9 3 0 2.8780054E-02 0.000000 0.000000 2.8537499E-04 0.000000 0.000000 0.000000 - Av 2018 8 9 4 0 2.8765887E-02 0.000000 0.000000 2.8528334E-04 0.000000 0.000000 0.000000 + Av 2018 8 8 20 0 2.8024282E-02 0.000000 0.000000 2.8680090E-04 0.000000 0.000000 0.000000 + Av 2018 8 8 21 0 2.9222393E-02 0.000000 0.000000 2.8670856E-04 0.000000 0.000000 0.000000 + Av 2018 8 8 22 0 2.8793255E-02 0.000000 0.000000 2.8661627E-04 0.000000 0.000000 0.000000 + Av 2018 8 8 23 0 2.8929928E-02 0.000000 0.000000 2.8652398E-04 0.000000 0.000000 0.000000 + Av 2018 8 8 24 0 2.8869869E-02 0.000000 0.000000 2.8643175E-04 0.000000 0.000000 0.000000 + Av 2018 8 9 1 0 2.8825140E-02 0.000000 0.000000 2.8555829E-04 0.000000 0.000000 0.000000 + Av 2018 8 9 2 0 2.8775115E-02 0.000000 0.000000 2.8546661E-04 0.000000 0.000000 0.000000 + Av 2018 8 9 3 0 2.8780054E-02 0.000000 0.000000 2.8537499E-04 0.000000 0.000000 0.000000 + Av 2018 8 9 4 0 2.8765887E-02 0.000000 0.000000 2.8528334E-04 0.000000 0.000000 0.000000 Av 2018 8 9 5 0 2.3874078E-02 0.000000 0.000000 2.1348134E-04 0.000000 0.000000 3.2595653E-04 Av 2018 8 9 6 0 9.4921328E-03 0.000000 0.000000 0.000000 0.000000 0.000000 4.8447810E-03 Av 2018 8 9 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.3636056E-03 @@ -5323,15 +5323,15 @@ Av 2018 8 9 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.3636056E-03 Av 2018 8 9 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8447810E-03 Av 2018 8 9 19 0 1.4417920E-02 0.000000 0.000000 2.1220214E-04 0.000000 0.000000 3.2595653E-04 - Av 2018 8 9 20 0 2.8688725E-02 0.000000 0.000000 2.8382146E-04 0.000000 0.000000 0.000000 - Av 2018 8 9 21 0 2.8586570E-02 0.000000 0.000000 2.8373033E-04 0.000000 0.000000 0.000000 - Av 2018 8 9 22 0 2.8609710E-02 0.000000 0.000000 2.8363924E-04 0.000000 0.000000 0.000000 - Av 2018 8 9 23 0 2.8589286E-02 0.000000 0.000000 2.8354817E-04 0.000000 0.000000 0.000000 - Av 2018 8 9 24 0 2.8584015E-02 0.000000 0.000000 2.8345714E-04 0.000000 0.000000 0.000000 - Av 2018 8 10 1 0 2.8522387E-02 0.000000 0.000000 2.8261414E-04 0.000000 0.000000 0.000000 - Av 2018 8 10 2 0 2.8480392E-02 0.000000 0.000000 2.8252366E-04 0.000000 0.000000 0.000000 - Av 2018 8 10 3 0 2.8482700E-02 0.000000 0.000000 2.8243320E-04 0.000000 0.000000 0.000000 - Av 2018 8 10 4 0 2.8469607E-02 0.000000 0.000000 2.8234278E-04 0.000000 0.000000 0.000000 + Av 2018 8 9 20 0 2.8688725E-02 0.000000 0.000000 2.8382146E-04 0.000000 0.000000 0.000000 + Av 2018 8 9 21 0 2.8586570E-02 0.000000 0.000000 2.8373033E-04 0.000000 0.000000 0.000000 + Av 2018 8 9 22 0 2.8609710E-02 0.000000 0.000000 2.8363924E-04 0.000000 0.000000 0.000000 + Av 2018 8 9 23 0 2.8589286E-02 0.000000 0.000000 2.8354817E-04 0.000000 0.000000 0.000000 + Av 2018 8 9 24 0 2.8584015E-02 0.000000 0.000000 2.8345714E-04 0.000000 0.000000 0.000000 + Av 2018 8 10 1 0 2.8522387E-02 0.000000 0.000000 2.8261414E-04 0.000000 0.000000 0.000000 + Av 2018 8 10 2 0 2.8480392E-02 0.000000 0.000000 2.8252366E-04 0.000000 0.000000 0.000000 + Av 2018 8 10 3 0 2.8482700E-02 0.000000 0.000000 2.8243320E-04 0.000000 0.000000 0.000000 + Av 2018 8 10 4 0 2.8469607E-02 0.000000 0.000000 2.8234278E-04 0.000000 0.000000 0.000000 Av 2018 8 10 5 0 2.5480460E-02 0.000000 0.000000 2.3847914E-04 0.000000 0.000000 1.9896930E-04 Av 2018 8 10 6 0 1.1246877E-02 0.000000 0.000000 0.000000 0.000000 0.000000 4.3012905E-03 Av 2018 8 10 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4036114E-03 @@ -5347,15 +5347,15 @@ Av 2018 8 10 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.4036114E-03 Av 2018 8 10 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.3012905E-03 Av 2018 8 10 19 0 1.6117506E-02 0.000000 0.000000 2.3721653E-04 0.000000 0.000000 1.9896930E-04 - Av 2018 8 10 20 0 2.9598838E-02 0.000000 0.000000 2.8089978E-04 0.000000 0.000000 0.000000 - Av 2018 8 10 21 0 2.7873173E-02 0.000000 0.000000 2.8080985E-04 0.000000 0.000000 0.000000 - Av 2018 8 10 22 0 2.8460983E-02 0.000000 0.000000 2.8071995E-04 0.000000 0.000000 0.000000 - Av 2018 8 10 23 0 2.8244382E-02 0.000000 0.000000 2.8063005E-04 0.000000 0.000000 0.000000 - Av 2018 8 10 24 0 2.8307483E-02 0.000000 0.000000 2.8054020E-04 0.000000 0.000000 0.000000 - Av 2018 8 11 1 0 2.8224152E-02 0.000000 0.000000 2.7972652E-04 0.000000 0.000000 0.000000 - Av 2018 8 11 2 0 2.8191773E-02 0.000000 0.000000 2.7963720E-04 0.000000 0.000000 0.000000 - Av 2018 8 11 3 0 2.8190894E-02 0.000000 0.000000 2.7954788E-04 0.000000 0.000000 0.000000 - Av 2018 8 11 4 0 2.8179064E-02 0.000000 0.000000 2.7945859E-04 0.000000 0.000000 0.000000 + Av 2018 8 10 20 0 2.9598838E-02 0.000000 0.000000 2.8089978E-04 0.000000 0.000000 0.000000 + Av 2018 8 10 21 0 2.7873173E-02 0.000000 0.000000 2.8080985E-04 0.000000 0.000000 0.000000 + Av 2018 8 10 22 0 2.8460983E-02 0.000000 0.000000 2.8071995E-04 0.000000 0.000000 0.000000 + Av 2018 8 10 23 0 2.8244382E-02 0.000000 0.000000 2.8063005E-04 0.000000 0.000000 0.000000 + Av 2018 8 10 24 0 2.8307483E-02 0.000000 0.000000 2.8054020E-04 0.000000 0.000000 0.000000 + Av 2018 8 11 1 0 2.8224152E-02 0.000000 0.000000 2.7972652E-04 0.000000 0.000000 0.000000 + Av 2018 8 11 2 0 2.8191773E-02 0.000000 0.000000 2.7963720E-04 0.000000 0.000000 0.000000 + Av 2018 8 11 3 0 2.8190894E-02 0.000000 0.000000 2.7954788E-04 0.000000 0.000000 0.000000 + Av 2018 8 11 4 0 2.8179064E-02 0.000000 0.000000 2.7945859E-04 0.000000 0.000000 0.000000 Av 2018 8 11 5 0 2.6892936E-02 0.000000 0.000000 2.6060382E-04 0.000000 0.000000 8.5297768E-05 Av 2018 8 11 6 0 1.2804900E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.5460778E-03 Av 2018 8 11 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.0068575E-03 @@ -5371,15 +5371,15 @@ Av 2018 8 11 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.0068575E-03 Av 2018 8 11 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.5460778E-03 Av 2018 8 11 19 0 1.7621841E-02 0.000000 0.000000 2.5935727E-04 0.000000 0.000000 8.5297768E-05 - Av 2018 8 11 20 0 3.0385386E-02 0.000000 0.000000 2.7803396E-04 0.000000 0.000000 0.000000 - Av 2018 8 11 21 0 2.7210329E-02 0.000000 0.000000 2.7794516E-04 0.000000 0.000000 0.000000 - Av 2018 8 11 22 0 2.8302260E-02 0.000000 0.000000 2.7785639E-04 0.000000 0.000000 0.000000 - Av 2018 8 11 23 0 2.7910527E-02 0.000000 0.000000 2.7776766E-04 0.000000 0.000000 0.000000 - Av 2018 8 11 24 0 2.8034680E-02 0.000000 0.000000 2.7767895E-04 0.000000 0.000000 0.000000 - Av 2018 8 12 1 0 2.7932115E-02 0.000000 0.000000 2.7689349E-04 0.000000 0.000000 0.000000 - Av 2018 8 12 2 0 2.7908418E-02 0.000000 0.000000 2.7680528E-04 0.000000 0.000000 0.000000 - Av 2018 8 12 3 0 2.7904671E-02 0.000000 0.000000 2.7671710E-04 0.000000 0.000000 0.000000 - Av 2018 8 12 4 0 2.7893992E-02 0.000000 0.000000 2.7662894E-04 0.000000 0.000000 0.000000 + Av 2018 8 11 20 0 3.0385386E-02 0.000000 0.000000 2.7803396E-04 0.000000 0.000000 0.000000 + Av 2018 8 11 21 0 2.7210329E-02 0.000000 0.000000 2.7794516E-04 0.000000 0.000000 0.000000 + Av 2018 8 11 22 0 2.8302260E-02 0.000000 0.000000 2.7785639E-04 0.000000 0.000000 0.000000 + Av 2018 8 11 23 0 2.7910527E-02 0.000000 0.000000 2.7776766E-04 0.000000 0.000000 0.000000 + Av 2018 8 11 24 0 2.8034680E-02 0.000000 0.000000 2.7767895E-04 0.000000 0.000000 0.000000 + Av 2018 8 12 1 0 2.7932115E-02 0.000000 0.000000 2.7689349E-04 0.000000 0.000000 0.000000 + Av 2018 8 12 2 0 2.7908418E-02 0.000000 0.000000 2.7680528E-04 0.000000 0.000000 0.000000 + Av 2018 8 12 3 0 2.7904671E-02 0.000000 0.000000 2.7671710E-04 0.000000 0.000000 0.000000 + Av 2018 8 12 4 0 2.7893992E-02 0.000000 0.000000 2.7662894E-04 0.000000 0.000000 0.000000 Av 2018 8 12 5 0 2.7852785E-02 0.000000 0.000000 2.7605711E-04 0.000000 0.000000 2.1986559E-06 Av 2018 8 12 6 0 1.3907532E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.8098395E-03 Av 2018 8 12 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6174806E-03 @@ -5395,16 +5395,16 @@ Av 2018 8 12 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6174806E-03 Av 2018 8 12 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.8098395E-03 Av 2018 8 12 19 0 1.8672874E-02 0.000000 0.000000 2.7482631E-04 0.000000 0.000000 2.1986559E-06 - Av 2018 8 12 20 0 3.0879930E-02 0.000000 0.000000 2.7522229E-04 0.000000 0.000000 0.000000 - Av 2018 8 12 21 0 2.6656376E-02 0.000000 0.000000 2.7513463E-04 0.000000 0.000000 0.000000 - Av 2018 8 12 22 0 2.8113032E-02 0.000000 0.000000 2.7504697E-04 0.000000 0.000000 0.000000 - Av 2018 8 12 23 0 2.7594630E-02 0.000000 0.000000 2.7495934E-04 0.000000 0.000000 0.000000 - Av 2018 8 12 24 0 2.7762977E-02 0.000000 0.000000 2.7487177E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 1 0 2.7646972E-02 0.000000 0.000000 2.7411350E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 2 0 2.7629867E-02 0.000000 0.000000 2.7402636E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 3 0 2.7623978E-02 0.000000 0.000000 2.7393928E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 4 0 2.7614195E-02 0.000000 0.000000 2.7385223E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 5 0 2.7605768E-02 0.000000 0.000000 2.7376521E-04 0.000000 0.000000 0.000000 + Av 2018 8 12 20 0 3.0879930E-02 0.000000 0.000000 2.7522229E-04 0.000000 0.000000 0.000000 + Av 2018 8 12 21 0 2.6656376E-02 0.000000 0.000000 2.7513463E-04 0.000000 0.000000 0.000000 + Av 2018 8 12 22 0 2.8113032E-02 0.000000 0.000000 2.7504697E-04 0.000000 0.000000 0.000000 + Av 2018 8 12 23 0 2.7594630E-02 0.000000 0.000000 2.7495934E-04 0.000000 0.000000 0.000000 + Av 2018 8 12 24 0 2.7762977E-02 0.000000 0.000000 2.7487177E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 1 0 2.7646972E-02 0.000000 0.000000 2.7411350E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 2 0 2.7629867E-02 0.000000 0.000000 2.7402636E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 3 0 2.7623978E-02 0.000000 0.000000 2.7393928E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 4 0 2.7614195E-02 0.000000 0.000000 2.7385223E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 5 0 2.7605768E-02 0.000000 0.000000 2.7376521E-04 0.000000 0.000000 0.000000 Av 2018 8 13 6 0 1.3800598E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.9345417E-03 Av 2018 8 13 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.9645906E-03 Av 2018 8 13 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1994640E-02 @@ -5418,17 +5418,17 @@ Av 2018 8 13 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1994640E-02 Av 2018 8 13 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.9645906E-03 Av 2018 8 13 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.9345417E-03 - Av 2018 8 13 19 0 1.8518193E-02 0.000000 0.000000 2.7254972E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 20 0 3.0591561E-02 0.000000 0.000000 2.7246310E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 21 0 2.6381776E-02 0.000000 0.000000 2.7237652E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 22 0 2.7833793E-02 0.000000 0.000000 2.7228997E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 23 0 2.7317153E-02 0.000000 0.000000 2.7220344E-04 0.000000 0.000000 0.000000 - Av 2018 8 13 24 0 2.7485035E-02 0.000000 0.000000 2.7211691E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 1 0 2.7371041E-02 0.000000 0.000000 2.7138481E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 2 0 2.7355090E-02 0.000000 0.000000 2.7129878E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 3 0 2.7348947E-02 0.000000 0.000000 2.7121278E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 4 0 2.7339395E-02 0.000000 0.000000 2.7112677E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 5 0 2.7331032E-02 0.000000 0.000000 2.7104083E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 19 0 1.8518193E-02 0.000000 0.000000 2.7254972E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 20 0 3.0591561E-02 0.000000 0.000000 2.7246310E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 21 0 2.6381776E-02 0.000000 0.000000 2.7237652E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 22 0 2.7833793E-02 0.000000 0.000000 2.7228997E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 23 0 2.7317153E-02 0.000000 0.000000 2.7220344E-04 0.000000 0.000000 0.000000 + Av 2018 8 13 24 0 2.7485035E-02 0.000000 0.000000 2.7211691E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 1 0 2.7371041E-02 0.000000 0.000000 2.7138481E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 2 0 2.7355090E-02 0.000000 0.000000 2.7129878E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 3 0 2.7348947E-02 0.000000 0.000000 2.7121278E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 4 0 2.7339395E-02 0.000000 0.000000 2.7112677E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 5 0 2.7331032E-02 0.000000 0.000000 2.7104083E-04 0.000000 0.000000 0.000000 Av 2018 8 14 6 0 1.3663269E-02 0.000000 0.000000 0.000000 0.000000 0.000000 4.4278651E-03 Av 2018 8 14 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.0798326E-03 Av 2018 8 14 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.3731800E-02 @@ -5442,17 +5442,17 @@ Av 2018 8 14 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.3731800E-02 Av 2018 8 14 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.0798326E-03 Av 2018 8 14 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4278651E-03 - Av 2018 8 14 19 0 1.8334104E-02 0.000000 0.000000 2.6984030E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 20 0 3.0287465E-02 0.000000 0.000000 2.6975476E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 21 0 2.6119551E-02 0.000000 0.000000 2.6966922E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 22 0 2.7557150E-02 0.000000 0.000000 2.6958372E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 23 0 2.7045671E-02 0.000000 0.000000 2.6949827E-04 0.000000 0.000000 0.000000 - Av 2018 8 14 24 0 2.7211905E-02 0.000000 0.000000 2.6941282E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 1 0 2.7100265E-02 0.000000 0.000000 2.6870589E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 2 0 2.7085276E-02 0.000000 0.000000 2.6862090E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 3 0 2.7078941E-02 0.000000 0.000000 2.6853592E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 4 0 2.7069598E-02 0.000000 0.000000 2.6845100E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 5 0 2.7061306E-02 0.000000 0.000000 2.6836607E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 19 0 1.8334104E-02 0.000000 0.000000 2.6984030E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 20 0 3.0287465E-02 0.000000 0.000000 2.6975476E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 21 0 2.6119551E-02 0.000000 0.000000 2.6966922E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 22 0 2.7557150E-02 0.000000 0.000000 2.6958372E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 23 0 2.7045671E-02 0.000000 0.000000 2.6949827E-04 0.000000 0.000000 0.000000 + Av 2018 8 14 24 0 2.7211905E-02 0.000000 0.000000 2.6941282E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 1 0 2.7100265E-02 0.000000 0.000000 2.6870589E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 2 0 2.7085276E-02 0.000000 0.000000 2.6862090E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 3 0 2.7078941E-02 0.000000 0.000000 2.6853592E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 4 0 2.7069598E-02 0.000000 0.000000 2.6845100E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 5 0 2.7061306E-02 0.000000 0.000000 2.6836607E-04 0.000000 0.000000 0.000000 Av 2018 8 15 6 0 1.3528441E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.9541298E-03 Av 2018 8 15 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2189022E-03 Av 2018 8 15 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2483675E-02 @@ -5466,17 +5466,17 @@ Av 2018 8 15 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2483675E-02 Av 2018 8 15 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2189022E-03 Av 2018 8 15 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.9541298E-03 - Av 2018 8 15 19 0 1.8153362E-02 0.000000 0.000000 2.6718015E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 20 0 2.9988896E-02 0.000000 0.000000 2.6709563E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 21 0 2.5862092E-02 0.000000 0.000000 2.6701114E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 22 0 2.7285539E-02 0.000000 0.000000 2.6692668E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 23 0 2.6779119E-02 0.000000 0.000000 2.6684225E-04 0.000000 0.000000 0.000000 - Av 2018 8 15 24 0 2.6943736E-02 0.000000 0.000000 2.6675785E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 1 0 2.6834376E-02 0.000000 0.000000 2.6607516E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 2 0 2.6820313E-02 0.000000 0.000000 2.6599120E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 3 0 2.6813794E-02 0.000000 0.000000 2.6590723E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 4 0 2.6804654E-02 0.000000 0.000000 2.6582333E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 5 0 2.6796430E-02 0.000000 0.000000 2.6573942E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 19 0 1.8153362E-02 0.000000 0.000000 2.6718015E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 20 0 2.9988896E-02 0.000000 0.000000 2.6709563E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 21 0 2.5862092E-02 0.000000 0.000000 2.6701114E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 22 0 2.7285539E-02 0.000000 0.000000 2.6692668E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 23 0 2.6779119E-02 0.000000 0.000000 2.6684225E-04 0.000000 0.000000 0.000000 + Av 2018 8 15 24 0 2.6943736E-02 0.000000 0.000000 2.6675785E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 1 0 2.6834376E-02 0.000000 0.000000 2.6607516E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 2 0 2.6820313E-02 0.000000 0.000000 2.6599120E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 3 0 2.6813794E-02 0.000000 0.000000 2.6590723E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 4 0 2.6804654E-02 0.000000 0.000000 2.6582333E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 5 0 2.6796430E-02 0.000000 0.000000 2.6573942E-04 0.000000 0.000000 0.000000 Av 2018 8 16 6 0 1.3396037E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.5312304E-03 Av 2018 8 16 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4447659E-03 Av 2018 8 16 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1358301E-02 @@ -5490,17 +5490,17 @@ Av 2018 8 16 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1358301E-02 Av 2018 8 16 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4447659E-03 Av 2018 8 16 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.5312304E-03 - Av 2018 8 16 19 0 1.7975861E-02 0.000000 0.000000 2.6456770E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 20 0 2.9695682E-02 0.000000 0.000000 2.6448420E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 21 0 2.5609251E-02 0.000000 0.000000 2.6440073E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 22 0 2.7018800E-02 0.000000 0.000000 2.6431729E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 23 0 2.6517350E-02 0.000000 0.000000 2.6423388E-04 0.000000 0.000000 0.000000 - Av 2018 8 16 24 0 2.6680373E-02 0.000000 0.000000 2.6415047E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 1 0 2.6573222E-02 0.000000 0.000000 2.6349112E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 2 0 2.6560042E-02 0.000000 0.000000 2.6340815E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 3 0 2.6553351E-02 0.000000 0.000000 2.6332520E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 4 0 2.6544409E-02 0.000000 0.000000 2.6324228E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 5 0 2.6536254E-02 0.000000 0.000000 2.6315940E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 19 0 1.7975861E-02 0.000000 0.000000 2.6456770E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 20 0 2.9695682E-02 0.000000 0.000000 2.6448420E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 21 0 2.5609251E-02 0.000000 0.000000 2.6440073E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 22 0 2.7018800E-02 0.000000 0.000000 2.6431729E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 23 0 2.6517350E-02 0.000000 0.000000 2.6423388E-04 0.000000 0.000000 0.000000 + Av 2018 8 16 24 0 2.6680373E-02 0.000000 0.000000 2.6415047E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 1 0 2.6573222E-02 0.000000 0.000000 2.6349112E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 2 0 2.6560042E-02 0.000000 0.000000 2.6340815E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 3 0 2.6553351E-02 0.000000 0.000000 2.6332520E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 4 0 2.6544409E-02 0.000000 0.000000 2.6324228E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 5 0 2.6536254E-02 0.000000 0.000000 2.6315940E-04 0.000000 0.000000 0.000000 Av 2018 8 17 6 0 1.3265985E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.8974102E-03 Av 2018 8 17 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.2001008E-03 Av 2018 8 17 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.5027918E-03 @@ -5514,17 +5514,17 @@ Av 2018 8 17 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.5027918E-03 Av 2018 8 17 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.2001008E-03 Av 2018 8 17 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8974102E-03 - Av 2018 8 17 19 0 1.7801506E-02 0.000000 0.000000 2.6200156E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 20 0 2.9407665E-02 0.000000 0.000000 2.6191905E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 21 0 2.5360890E-02 0.000000 0.000000 2.6183657E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 22 0 2.6756782E-02 0.000000 0.000000 2.6175412E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 23 0 2.6260216E-02 0.000000 0.000000 2.6167170E-04 0.000000 0.000000 0.000000 - Av 2018 8 17 24 0 2.6421677E-02 0.000000 0.000000 2.6158927E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 1 0 2.6316663E-02 0.000000 0.000000 2.6095239E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 2 0 2.6304334E-02 0.000000 0.000000 2.6087041E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 3 0 2.6297480E-02 0.000000 0.000000 2.6078842E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 4 0 2.6288725E-02 0.000000 0.000000 2.6070650E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 5 0 2.6280638E-02 0.000000 0.000000 2.6062457E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 19 0 1.7801506E-02 0.000000 0.000000 2.6200156E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 20 0 2.9407665E-02 0.000000 0.000000 2.6191905E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 21 0 2.5360890E-02 0.000000 0.000000 2.6183657E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 22 0 2.6756782E-02 0.000000 0.000000 2.6175412E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 23 0 2.6260216E-02 0.000000 0.000000 2.6167170E-04 0.000000 0.000000 0.000000 + Av 2018 8 17 24 0 2.6421677E-02 0.000000 0.000000 2.6158927E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 1 0 2.6316663E-02 0.000000 0.000000 2.6095239E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 2 0 2.6304334E-02 0.000000 0.000000 2.6087041E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 3 0 2.6297480E-02 0.000000 0.000000 2.6078842E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 4 0 2.6288725E-02 0.000000 0.000000 2.6070650E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 5 0 2.6280638E-02 0.000000 0.000000 2.6062457E-04 0.000000 0.000000 0.000000 Av 2018 8 18 6 0 1.3138208E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.9299501E-03 Av 2018 8 18 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.3684741E-03 Av 2018 8 18 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.8069981E-03 @@ -5538,17 +5538,17 @@ Av 2018 8 18 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.8069981E-03 Av 2018 8 18 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.3684741E-03 Av 2018 8 18 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9299501E-03 - Av 2018 8 18 19 0 1.7630203E-02 0.000000 0.000000 2.5948032E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 20 0 2.9124686E-02 0.000000 0.000000 2.5939877E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 21 0 2.5116874E-02 0.000000 0.000000 2.5931728E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 22 0 2.6499351E-02 0.000000 0.000000 2.5923579E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 23 0 2.6007582E-02 0.000000 0.000000 2.5915433E-04 0.000000 0.000000 0.000000 - Av 2018 8 18 24 0 2.6167506E-02 0.000000 0.000000 2.5907290E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 1 0 2.6064562E-02 0.000000 0.000000 2.5845764E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 2 0 2.6053049E-02 0.000000 0.000000 2.5837659E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 3 0 2.6046040E-02 0.000000 0.000000 2.5829556E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 4 0 2.6037466E-02 0.000000 0.000000 2.5821457E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 5 0 2.6029442E-02 0.000000 0.000000 2.5813360E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 19 0 1.7630203E-02 0.000000 0.000000 2.5948032E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 20 0 2.9124686E-02 0.000000 0.000000 2.5939877E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 21 0 2.5116874E-02 0.000000 0.000000 2.5931728E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 22 0 2.6499351E-02 0.000000 0.000000 2.5923579E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 23 0 2.6007582E-02 0.000000 0.000000 2.5915433E-04 0.000000 0.000000 0.000000 + Av 2018 8 18 24 0 2.6167506E-02 0.000000 0.000000 2.5907290E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 1 0 2.6064562E-02 0.000000 0.000000 2.5845764E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 2 0 2.6053049E-02 0.000000 0.000000 2.5837659E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 3 0 2.6046040E-02 0.000000 0.000000 2.5829556E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 4 0 2.6037466E-02 0.000000 0.000000 2.5821457E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 5 0 2.6029442E-02 0.000000 0.000000 2.5813360E-04 0.000000 0.000000 0.000000 Av 2018 8 19 6 0 1.3012643E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.1343007E-03 Av 2018 8 19 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.9254488E-03 Av 2018 8 19 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0716598E-02 @@ -5562,17 +5562,17 @@ Av 2018 8 19 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0716598E-02 Av 2018 8 19 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.9254488E-03 Av 2018 8 19 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.1343007E-03 - Av 2018 8 19 19 0 1.7461859E-02 0.000000 0.000000 2.5700266E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 20 0 2.8846595E-02 0.000000 0.000000 2.5692204E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 21 0 2.4877071E-02 0.000000 0.000000 2.5684148E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 22 0 2.6246365E-02 0.000000 0.000000 2.5676095E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 23 0 2.5759308E-02 0.000000 0.000000 2.5668042E-04 0.000000 0.000000 0.000000 - Av 2018 8 19 24 0 2.5917724E-02 0.000000 0.000000 2.5659995E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 1 0 2.5816787E-02 0.000000 0.000000 2.5600556E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 2 0 2.5806054E-02 0.000000 0.000000 2.5592544E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 3 0 2.5798900E-02 0.000000 0.000000 2.5584534E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 4 0 2.5790505E-02 0.000000 0.000000 2.5576528E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 5 0 2.5782546E-02 0.000000 0.000000 2.5568521E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 19 0 1.7461859E-02 0.000000 0.000000 2.5700266E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 20 0 2.8846595E-02 0.000000 0.000000 2.5692204E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 21 0 2.4877071E-02 0.000000 0.000000 2.5684148E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 22 0 2.6246365E-02 0.000000 0.000000 2.5676095E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 23 0 2.5759308E-02 0.000000 0.000000 2.5668042E-04 0.000000 0.000000 0.000000 + Av 2018 8 19 24 0 2.5917724E-02 0.000000 0.000000 2.5659995E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 1 0 2.5816787E-02 0.000000 0.000000 2.5600556E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 2 0 2.5806054E-02 0.000000 0.000000 2.5592544E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 3 0 2.5798900E-02 0.000000 0.000000 2.5584534E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 4 0 2.5790505E-02 0.000000 0.000000 2.5576528E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 5 0 2.5782546E-02 0.000000 0.000000 2.5568521E-04 0.000000 0.000000 0.000000 Av 2018 8 20 6 0 1.2889225E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.3010631E-03 Av 2018 8 20 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4210358E-03 Av 2018 8 20 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1541009E-02 @@ -5586,17 +5586,17 @@ Av 2018 8 20 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1541009E-02 Av 2018 8 20 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4210358E-03 Av 2018 8 20 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.3010631E-03 - Av 2018 8 20 19 0 1.7296385E-02 0.000000 0.000000 2.5456722E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 20 0 2.8573249E-02 0.000000 0.000000 2.5448753E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 21 0 2.4641359E-02 0.000000 0.000000 2.5440790E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 22 0 2.5997691E-02 0.000000 0.000000 2.5432828E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 23 0 2.5515262E-02 0.000000 0.000000 2.5424868E-04 0.000000 0.000000 0.000000 - Av 2018 8 20 24 0 2.5672194E-02 0.000000 0.000000 2.5416911E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 1 0 2.5573198E-02 0.000000 0.000000 2.5359477E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 2 0 2.5563216E-02 0.000000 0.000000 2.5351558E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 3 0 2.5555927E-02 0.000000 0.000000 2.5343639E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 4 0 2.5547702E-02 0.000000 0.000000 2.5335723E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 5 0 2.5539804E-02 0.000000 0.000000 2.5327809E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 19 0 1.7296385E-02 0.000000 0.000000 2.5456722E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 20 0 2.8573249E-02 0.000000 0.000000 2.5448753E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 21 0 2.4641359E-02 0.000000 0.000000 2.5440790E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 22 0 2.5997691E-02 0.000000 0.000000 2.5432828E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 23 0 2.5515262E-02 0.000000 0.000000 2.5424868E-04 0.000000 0.000000 0.000000 + Av 2018 8 20 24 0 2.5672194E-02 0.000000 0.000000 2.5416911E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 1 0 2.5573198E-02 0.000000 0.000000 2.5359477E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 2 0 2.5563216E-02 0.000000 0.000000 2.5351558E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 3 0 2.5555927E-02 0.000000 0.000000 2.5343639E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 4 0 2.5547702E-02 0.000000 0.000000 2.5335723E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 5 0 2.5539804E-02 0.000000 0.000000 2.5327809E-04 0.000000 0.000000 0.000000 Av 2018 8 21 6 0 1.2767886E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.6232243E-03 Av 2018 8 21 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2948599E-03 Av 2018 8 21 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2966495E-02 @@ -5610,17 +5610,17 @@ Av 2018 8 21 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2966495E-02 Av 2018 8 21 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2948599E-03 Av 2018 8 21 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.6232243E-03 - Av 2018 8 21 19 0 1.7133696E-02 0.000000 0.000000 2.5217276E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 20 0 2.8304502E-02 0.000000 0.000000 2.5209400E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 21 0 2.4409611E-02 0.000000 0.000000 2.5201525E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 22 0 2.5753202E-02 0.000000 0.000000 2.5193655E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 23 0 2.5275327E-02 0.000000 0.000000 2.5185785E-04 0.000000 0.000000 0.000000 - Av 2018 8 21 24 0 2.5430799E-02 0.000000 0.000000 2.5177919E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 1 0 2.5333688E-02 0.000000 0.000000 2.5122421E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 2 0 2.5324423E-02 0.000000 0.000000 2.5114589E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 3 0 2.5317002E-02 0.000000 0.000000 2.5106757E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 4 0 2.5308944E-02 0.000000 0.000000 2.5098931E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 5 0 2.5301110E-02 0.000000 0.000000 2.5091105E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 19 0 1.7133696E-02 0.000000 0.000000 2.5217276E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 20 0 2.8304502E-02 0.000000 0.000000 2.5209400E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 21 0 2.4409611E-02 0.000000 0.000000 2.5201525E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 22 0 2.5753202E-02 0.000000 0.000000 2.5193655E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 23 0 2.5275327E-02 0.000000 0.000000 2.5185785E-04 0.000000 0.000000 0.000000 + Av 2018 8 21 24 0 2.5430799E-02 0.000000 0.000000 2.5177919E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 1 0 2.5333688E-02 0.000000 0.000000 2.5122421E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 2 0 2.5324423E-02 0.000000 0.000000 2.5114589E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 3 0 2.5317002E-02 0.000000 0.000000 2.5106757E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 4 0 2.5308944E-02 0.000000 0.000000 2.5098931E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 5 0 2.5301110E-02 0.000000 0.000000 2.5091105E-04 0.000000 0.000000 0.000000 Av 2018 8 22 6 0 1.2648568E-02 0.000000 0.000000 0.000000 0.000000 0.000000 3.3757191E-03 Av 2018 8 22 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8779738E-03 Av 2018 8 22 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2380229E-02 @@ -5634,17 +5634,17 @@ Av 2018 8 22 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2380229E-02 Av 2018 8 22 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8779738E-03 Av 2018 8 22 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.3757191E-03 - Av 2018 8 22 19 0 1.6973710E-02 0.000000 0.000000 2.4981811E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 20 0 2.8040219E-02 0.000000 0.000000 2.4974023E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 21 0 2.4181716E-02 0.000000 0.000000 2.4966238E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 22 0 2.5512774E-02 0.000000 0.000000 2.4958455E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 23 0 2.5039377E-02 0.000000 0.000000 2.4950673E-04 0.000000 0.000000 0.000000 - Av 2018 8 22 24 0 2.5193410E-02 0.000000 0.000000 2.4942897E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 1 0 2.5098125E-02 0.000000 0.000000 2.4889258E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 2 0 2.5089547E-02 0.000000 0.000000 2.4881511E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 3 0 2.5082007E-02 0.000000 0.000000 2.4873769E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 4 0 2.5074109E-02 0.000000 0.000000 2.4866030E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 5 0 2.5066338E-02 0.000000 0.000000 2.4858292E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 19 0 1.6973710E-02 0.000000 0.000000 2.4981811E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 20 0 2.8040219E-02 0.000000 0.000000 2.4974023E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 21 0 2.4181716E-02 0.000000 0.000000 2.4966238E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 22 0 2.5512774E-02 0.000000 0.000000 2.4958455E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 23 0 2.5039377E-02 0.000000 0.000000 2.4950673E-04 0.000000 0.000000 0.000000 + Av 2018 8 22 24 0 2.5193410E-02 0.000000 0.000000 2.4942897E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 1 0 2.5098125E-02 0.000000 0.000000 2.4889258E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 2 0 2.5089547E-02 0.000000 0.000000 2.4881511E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 3 0 2.5082007E-02 0.000000 0.000000 2.4873769E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 4 0 2.5074109E-02 0.000000 0.000000 2.4866030E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 5 0 2.5066338E-02 0.000000 0.000000 2.4858292E-04 0.000000 0.000000 0.000000 Av 2018 8 23 6 0 1.2531211E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.5592037E-03 Av 2018 8 23 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0947249E-03 Av 2018 8 23 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.6302461E-03 @@ -5658,17 +5658,17 @@ Av 2018 8 23 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.6302461E-03 Av 2018 8 23 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0947249E-03 Av 2018 8 23 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.5592037E-03 - Av 2018 8 23 19 0 1.6816350E-02 0.000000 0.000000 2.4750209E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 20 0 2.7780272E-02 0.000000 0.000000 2.4742508E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 21 0 2.3957558E-02 0.000000 0.000000 2.4734810E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 22 0 2.5276288E-02 0.000000 0.000000 2.4727112E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 23 0 2.4807295E-02 0.000000 0.000000 2.4719417E-04 0.000000 0.000000 0.000000 - Av 2018 8 23 24 0 2.4959914E-02 0.000000 0.000000 2.4711725E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 1 0 2.4866395E-02 0.000000 0.000000 2.4659879E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 2 0 2.4858482E-02 0.000000 0.000000 2.4652219E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 3 0 2.4850825E-02 0.000000 0.000000 2.4644562E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 4 0 2.4843086E-02 0.000000 0.000000 2.4636908E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 5 0 2.4835374E-02 0.000000 0.000000 2.4629253E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 19 0 1.6816350E-02 0.000000 0.000000 2.4750209E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 20 0 2.7780272E-02 0.000000 0.000000 2.4742508E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 21 0 2.3957558E-02 0.000000 0.000000 2.4734810E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 22 0 2.5276288E-02 0.000000 0.000000 2.4727112E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 23 0 2.4807295E-02 0.000000 0.000000 2.4719417E-04 0.000000 0.000000 0.000000 + Av 2018 8 23 24 0 2.4959914E-02 0.000000 0.000000 2.4711725E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 1 0 2.4866395E-02 0.000000 0.000000 2.4659879E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 2 0 2.4858482E-02 0.000000 0.000000 2.4652219E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 3 0 2.4850825E-02 0.000000 0.000000 2.4644562E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 4 0 2.4843086E-02 0.000000 0.000000 2.4636908E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 5 0 2.4835374E-02 0.000000 0.000000 2.4629253E-04 0.000000 0.000000 0.000000 Av 2018 8 24 6 0 1.2415756E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.0235390E-03 Av 2018 8 24 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9234331E-03 Av 2018 8 24 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8233266E-03 @@ -5682,17 +5682,17 @@ Av 2018 8 24 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8233266E-03 Av 2018 8 24 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9234331E-03 Av 2018 8 24 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.0235390E-03 - Av 2018 8 24 19 0 1.6661540E-02 0.000000 0.000000 2.4522361E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 20 0 2.7524540E-02 0.000000 0.000000 2.4514744E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 21 0 2.3737028E-02 0.000000 0.000000 2.4507128E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 22 0 2.5043633E-02 0.000000 0.000000 2.4499514E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 23 0 2.4578974E-02 0.000000 0.000000 2.4491907E-04 0.000000 0.000000 0.000000 - Av 2018 8 24 24 0 2.4730200E-02 0.000000 0.000000 2.4484299E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 1 0 2.4638396E-02 0.000000 0.000000 2.4434179E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 2 0 2.4631117E-02 0.000000 0.000000 2.4426603E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 3 0 2.4623355E-02 0.000000 0.000000 2.4419031E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 4 0 2.4615763E-02 0.000000 0.000000 2.4411458E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 5 0 2.4608113E-02 0.000000 0.000000 2.4403886E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 19 0 1.6661540E-02 0.000000 0.000000 2.4522361E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 20 0 2.7524540E-02 0.000000 0.000000 2.4514744E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 21 0 2.3737028E-02 0.000000 0.000000 2.4507128E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 22 0 2.5043633E-02 0.000000 0.000000 2.4499514E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 23 0 2.4578974E-02 0.000000 0.000000 2.4491907E-04 0.000000 0.000000 0.000000 + Av 2018 8 24 24 0 2.4730200E-02 0.000000 0.000000 2.4484299E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 1 0 2.4638396E-02 0.000000 0.000000 2.4434179E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 2 0 2.4631117E-02 0.000000 0.000000 2.4426603E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 3 0 2.4623355E-02 0.000000 0.000000 2.4419031E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 4 0 2.4615763E-02 0.000000 0.000000 2.4411458E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 5 0 2.4608113E-02 0.000000 0.000000 2.4403886E-04 0.000000 0.000000 0.000000 Av 2018 8 25 6 0 1.2302151E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.9255101E-03 Av 2018 8 25 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.7924779E-03 Av 2018 8 25 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6594460E-03 @@ -5706,17 +5706,17 @@ Av 2018 8 25 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6594460E-03 Av 2018 8 25 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.7924779E-03 Av 2018 8 25 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.9255101E-03 - Av 2018 8 25 19 0 1.6509207E-02 0.000000 0.000000 2.4298156E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 20 0 2.7272895E-02 0.000000 0.000000 2.4290622E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 21 0 2.3520026E-02 0.000000 0.000000 2.4283089E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 22 0 2.4814699E-02 0.000000 0.000000 2.4275559E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 23 0 2.4354298E-02 0.000000 0.000000 2.4268031E-04 0.000000 0.000000 0.000000 - Av 2018 8 25 24 0 2.4504155E-02 0.000000 0.000000 2.4260505E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 1 0 2.4414014E-02 0.000000 0.000000 2.4212051E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 2 0 2.4407344E-02 0.000000 0.000000 2.4204557E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 3 0 2.4399480E-02 0.000000 0.000000 2.4197064E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 4 0 2.4392031E-02 0.000000 0.000000 2.4189572E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 5 0 2.4384443E-02 0.000000 0.000000 2.4182085E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 19 0 1.6509207E-02 0.000000 0.000000 2.4298156E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 20 0 2.7272895E-02 0.000000 0.000000 2.4290622E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 21 0 2.3520026E-02 0.000000 0.000000 2.4283089E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 22 0 2.4814699E-02 0.000000 0.000000 2.4275559E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 23 0 2.4354298E-02 0.000000 0.000000 2.4268031E-04 0.000000 0.000000 0.000000 + Av 2018 8 25 24 0 2.4504155E-02 0.000000 0.000000 2.4260505E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 1 0 2.4414014E-02 0.000000 0.000000 2.4212051E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 2 0 2.4407344E-02 0.000000 0.000000 2.4204557E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 3 0 2.4399480E-02 0.000000 0.000000 2.4197064E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 4 0 2.4392031E-02 0.000000 0.000000 2.4189572E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 5 0 2.4384443E-02 0.000000 0.000000 2.4182085E-04 0.000000 0.000000 0.000000 Av 2018 8 26 6 0 1.2190345E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.8296378E-03 Av 2018 8 26 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.6648574E-03 Av 2018 8 26 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5000771E-03 @@ -5730,17 +5730,17 @@ Av 2018 8 26 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5000771E-03 Av 2018 8 26 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.6648574E-03 Av 2018 8 26 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.8296378E-03 - Av 2018 8 26 19 0 1.6359275E-02 0.000000 0.000000 2.4077488E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 20 0 2.7025219E-02 0.000000 0.000000 2.4070035E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 21 0 2.3306448E-02 0.000000 0.000000 2.4062584E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 22 0 2.4589375E-02 0.000000 0.000000 2.4055135E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 23 0 2.4133170E-02 0.000000 0.000000 2.4047687E-04 0.000000 0.000000 0.000000 - Av 2018 8 26 24 0 2.4281679E-02 0.000000 0.000000 2.4040243E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 1 0 2.4193149E-02 0.000000 0.000000 2.3993391E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 2 0 2.4187062E-02 0.000000 0.000000 2.3985977E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 3 0 2.4179105E-02 0.000000 0.000000 2.3978564E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 4 0 2.4171799E-02 0.000000 0.000000 2.3971153E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 5 0 2.4164271E-02 0.000000 0.000000 2.3963745E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 19 0 1.6359275E-02 0.000000 0.000000 2.4077488E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 20 0 2.7025219E-02 0.000000 0.000000 2.4070035E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 21 0 2.3306448E-02 0.000000 0.000000 2.4062584E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 22 0 2.4589375E-02 0.000000 0.000000 2.4055135E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 23 0 2.4133170E-02 0.000000 0.000000 2.4047687E-04 0.000000 0.000000 0.000000 + Av 2018 8 26 24 0 2.4281679E-02 0.000000 0.000000 2.4040243E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 1 0 2.4193149E-02 0.000000 0.000000 2.3993391E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 2 0 2.4187062E-02 0.000000 0.000000 2.3985977E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 3 0 2.4179105E-02 0.000000 0.000000 2.3978564E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 4 0 2.4171799E-02 0.000000 0.000000 2.3971153E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 5 0 2.4164271E-02 0.000000 0.000000 2.3963745E-04 0.000000 0.000000 0.000000 Av 2018 8 27 6 0 1.2080283E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.9253833E-03 Av 2018 8 27 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.0362535E-03 Av 2018 8 27 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.1471233E-03 @@ -5754,17 +5754,17 @@ Av 2018 8 27 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.1471233E-03 Av 2018 8 27 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.0362535E-03 Av 2018 8 27 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.9253833E-03 - Av 2018 8 27 19 0 1.6211685E-02 0.000000 0.000000 2.3860266E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 20 0 2.6781412E-02 0.000000 0.000000 2.3852891E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 21 0 2.3096204E-02 0.000000 0.000000 2.3845519E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 22 0 2.4367567E-02 0.000000 0.000000 2.3838149E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 23 0 2.3915488E-02 0.000000 0.000000 2.3830782E-04 0.000000 0.000000 0.000000 - Av 2018 8 27 24 0 2.4062671E-02 0.000000 0.000000 2.3823416E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 1 0 2.3975708E-02 0.000000 0.000000 2.3778110E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 2 0 2.3970179E-02 0.000000 0.000000 2.3770773E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 3 0 2.3962133E-02 0.000000 0.000000 2.3763439E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 4 0 2.3954963E-02 0.000000 0.000000 2.3756105E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 5 0 2.3947492E-02 0.000000 0.000000 2.3748775E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 19 0 1.6211685E-02 0.000000 0.000000 2.3860266E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 20 0 2.6781412E-02 0.000000 0.000000 2.3852891E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 21 0 2.3096204E-02 0.000000 0.000000 2.3845519E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 22 0 2.4367567E-02 0.000000 0.000000 2.3838149E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 23 0 2.3915488E-02 0.000000 0.000000 2.3830782E-04 0.000000 0.000000 0.000000 + Av 2018 8 27 24 0 2.4062671E-02 0.000000 0.000000 2.3823416E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 1 0 2.3975708E-02 0.000000 0.000000 2.3778110E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 2 0 2.3970179E-02 0.000000 0.000000 2.3770773E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 3 0 2.3962133E-02 0.000000 0.000000 2.3763439E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 4 0 2.3954963E-02 0.000000 0.000000 2.3756105E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 5 0 2.3947492E-02 0.000000 0.000000 2.3748775E-04 0.000000 0.000000 0.000000 Av 2018 8 28 6 0 1.1971920E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.1747546E-03 Av 2018 8 28 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8457619E-03 Av 2018 8 28 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.5167691E-03 @@ -5778,17 +5778,17 @@ Av 2018 8 28 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.5167691E-03 Av 2018 8 28 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8457619E-03 Av 2018 8 28 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.1747546E-03 - Av 2018 8 28 19 0 1.6066367E-02 0.000000 0.000000 2.3646388E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 20 0 2.6541358E-02 0.000000 0.000000 2.3639092E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 21 0 2.2889197E-02 0.000000 0.000000 2.3631797E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 22 0 2.4149176E-02 0.000000 0.000000 2.3624505E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 23 0 2.3701161E-02 0.000000 0.000000 2.3617214E-04 0.000000 0.000000 0.000000 - Av 2018 8 28 24 0 2.3847034E-02 0.000000 0.000000 2.3609927E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 1 0 2.3761589E-02 0.000000 0.000000 2.3566108E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 2 0 2.3756593E-02 0.000000 0.000000 2.3558846E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 3 0 2.3748465E-02 0.000000 0.000000 2.3551588E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 4 0 2.3741428E-02 0.000000 0.000000 2.3544332E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 5 0 2.3734018E-02 0.000000 0.000000 2.3537078E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 19 0 1.6066367E-02 0.000000 0.000000 2.3646388E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 20 0 2.6541358E-02 0.000000 0.000000 2.3639092E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 21 0 2.2889197E-02 0.000000 0.000000 2.3631797E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 22 0 2.4149176E-02 0.000000 0.000000 2.3624505E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 23 0 2.3701161E-02 0.000000 0.000000 2.3617214E-04 0.000000 0.000000 0.000000 + Av 2018 8 28 24 0 2.3847034E-02 0.000000 0.000000 2.3609927E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 1 0 2.3761589E-02 0.000000 0.000000 2.3566108E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 2 0 2.3756593E-02 0.000000 0.000000 2.3558846E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 3 0 2.3748465E-02 0.000000 0.000000 2.3551588E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 4 0 2.3741428E-02 0.000000 0.000000 2.3544332E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 5 0 2.3734018E-02 0.000000 0.000000 2.3537078E-04 0.000000 0.000000 0.000000 Av 2018 8 29 6 0 1.1865206E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.0849486E-03 Av 2018 8 29 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7698544E-03 Av 2018 8 29 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.4547607E-03 @@ -5802,17 +5802,17 @@ Av 2018 8 29 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.4547607E-03 Av 2018 8 29 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7698544E-03 Av 2018 8 29 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.0849486E-03 - Av 2018 8 29 19 0 1.5923256E-02 0.000000 0.000000 2.3435759E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 20 0 2.6304949E-02 0.000000 0.000000 2.3428538E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 21 0 2.2685330E-02 0.000000 0.000000 2.3421319E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 22 0 2.3934098E-02 0.000000 0.000000 2.3414104E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 23 0 2.3490088E-02 0.000000 0.000000 2.3406891E-04 0.000000 0.000000 0.000000 - Av 2018 8 29 24 0 2.3634672E-02 0.000000 0.000000 2.3399679E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 1 0 2.3550700E-02 0.000000 0.000000 2.3357294E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 2 0 2.3546219E-02 0.000000 0.000000 2.3350108E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 3 0 2.3538012E-02 0.000000 0.000000 2.3342925E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 4 0 2.3531105E-02 0.000000 0.000000 2.3335745E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 5 0 2.3523752E-02 0.000000 0.000000 2.3328567E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 19 0 1.5923256E-02 0.000000 0.000000 2.3435759E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 20 0 2.6304949E-02 0.000000 0.000000 2.3428538E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 21 0 2.2685330E-02 0.000000 0.000000 2.3421319E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 22 0 2.3934098E-02 0.000000 0.000000 2.3414104E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 23 0 2.3490088E-02 0.000000 0.000000 2.3406891E-04 0.000000 0.000000 0.000000 + Av 2018 8 29 24 0 2.3634672E-02 0.000000 0.000000 2.3399679E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 1 0 2.3550700E-02 0.000000 0.000000 2.3357294E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 2 0 2.3546219E-02 0.000000 0.000000 2.3350108E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 3 0 2.3538012E-02 0.000000 0.000000 2.3342925E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 4 0 2.3531105E-02 0.000000 0.000000 2.3335745E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 5 0 2.3523752E-02 0.000000 0.000000 2.3328567E-04 0.000000 0.000000 0.000000 Av 2018 8 30 6 0 1.1760098E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.6906135E-03 Av 2018 8 30 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8265522E-03 Av 2018 8 30 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.9624914E-03 @@ -5826,17 +5826,17 @@ Av 2018 8 30 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.9624914E-03 Av 2018 8 30 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8265522E-03 Av 2018 8 30 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.6906135E-03 - Av 2018 8 30 19 0 1.5782297E-02 0.000000 0.000000 2.3228297E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 20 0 2.6072096E-02 0.000000 0.000000 2.3221152E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 21 0 2.2484533E-02 0.000000 0.000000 2.3214008E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 22 0 2.3722254E-02 0.000000 0.000000 2.3206866E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 23 0 2.3282185E-02 0.000000 0.000000 2.3199728E-04 0.000000 0.000000 0.000000 - Av 2018 8 30 24 0 2.3425503E-02 0.000000 0.000000 2.3192591E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 1 0 2.3342960E-02 0.000000 0.000000 2.3151586E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 2 0 2.3338968E-02 0.000000 0.000000 2.3144475E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 3 0 2.3330694E-02 0.000000 0.000000 2.3137366E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 4 0 2.3323912E-02 0.000000 0.000000 2.3130258E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 5 0 2.3316611E-02 0.000000 0.000000 2.3123152E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 19 0 1.5782297E-02 0.000000 0.000000 2.3228297E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 20 0 2.6072096E-02 0.000000 0.000000 2.3221152E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 21 0 2.2484533E-02 0.000000 0.000000 2.3214008E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 22 0 2.3722254E-02 0.000000 0.000000 2.3206866E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 23 0 2.3282185E-02 0.000000 0.000000 2.3199728E-04 0.000000 0.000000 0.000000 + Av 2018 8 30 24 0 2.3425503E-02 0.000000 0.000000 2.3192591E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 1 0 2.3342960E-02 0.000000 0.000000 2.3151586E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 2 0 2.3338968E-02 0.000000 0.000000 2.3144475E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 3 0 2.3330694E-02 0.000000 0.000000 2.3137366E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 4 0 2.3323912E-02 0.000000 0.000000 2.3130258E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 5 0 2.3316611E-02 0.000000 0.000000 2.3123152E-04 0.000000 0.000000 0.000000 Av 2018 8 31 6 0 1.1656551E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.6865619E-03 Av 2018 8 31 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9785501E-03 Av 2018 8 31 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2705384E-03 @@ -5850,17 +5850,17 @@ Av 2018 8 31 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2705384E-03 Av 2018 8 31 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9785501E-03 Av 2018 8 31 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.6865619E-03 - Av 2018 8 31 19 0 1.5643429E-02 0.000000 0.000000 2.3023911E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 20 0 2.5842693E-02 0.000000 0.000000 2.3016837E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 21 0 2.2286709E-02 0.000000 0.000000 2.3009766E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 22 0 2.3513550E-02 0.000000 0.000000 2.3002698E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 23 0 2.3077365E-02 0.000000 0.000000 2.2995633E-04 0.000000 0.000000 0.000000 - Av 2018 8 31 24 0 2.3219429E-02 0.000000 0.000000 2.2988570E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 1 0 2.3138275E-02 0.000000 0.000000 2.2948896E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 2 0 2.3134753E-02 0.000000 0.000000 2.2941855E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 3 0 2.3126414E-02 0.000000 0.000000 2.2934818E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 4 0 2.3119753E-02 0.000000 0.000000 2.2927784E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 5 0 2.3112509E-02 0.000000 0.000000 2.2920749E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 19 0 1.5643429E-02 0.000000 0.000000 2.3023911E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 20 0 2.5842693E-02 0.000000 0.000000 2.3016837E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 21 0 2.2286709E-02 0.000000 0.000000 2.3009766E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 22 0 2.3513550E-02 0.000000 0.000000 2.3002698E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 23 0 2.3077365E-02 0.000000 0.000000 2.2995633E-04 0.000000 0.000000 0.000000 + Av 2018 8 31 24 0 2.3219429E-02 0.000000 0.000000 2.2988570E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 1 0 2.3138275E-02 0.000000 0.000000 2.2948896E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 2 0 2.3134753E-02 0.000000 0.000000 2.2941855E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 3 0 2.3126414E-02 0.000000 0.000000 2.2934818E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 4 0 2.3119753E-02 0.000000 0.000000 2.2927784E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 5 0 2.3112509E-02 0.000000 0.000000 2.2920749E-04 0.000000 0.000000 0.000000 Av 2018 9 1 6 0 1.1554522E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.5249809E-03 Av 2018 9 1 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5816735E-03 Av 2018 9 1 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6383664E-03 @@ -5874,17 +5874,17 @@ Av 2018 9 1 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6383664E-03 Av 2018 9 1 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5816735E-03 Av 2018 9 1 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.5249809E-03 - Av 2018 9 1 19 0 1.5506593E-02 0.000000 0.000000 2.2822515E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 20 0 2.5616650E-02 0.000000 0.000000 2.2815514E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 21 0 2.2091780E-02 0.000000 0.000000 2.2808516E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 22 0 2.3307897E-02 0.000000 0.000000 2.2801518E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 23 0 2.2875538E-02 0.000000 0.000000 2.2794526E-04 0.000000 0.000000 0.000000 - Av 2018 9 1 24 0 2.3016373E-02 0.000000 0.000000 2.2787534E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 1 0 2.2936568E-02 0.000000 0.000000 2.2749141E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 2 0 2.2933494E-02 0.000000 0.000000 2.2742173E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 3 0 2.2925094E-02 0.000000 0.000000 2.2735205E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 4 0 2.2918550E-02 0.000000 0.000000 2.2728242E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 5 0 2.2911366E-02 0.000000 0.000000 2.2721280E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 19 0 1.5506593E-02 0.000000 0.000000 2.2822515E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 20 0 2.5616650E-02 0.000000 0.000000 2.2815514E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 21 0 2.2091780E-02 0.000000 0.000000 2.2808516E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 22 0 2.3307897E-02 0.000000 0.000000 2.2801518E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 23 0 2.2875538E-02 0.000000 0.000000 2.2794526E-04 0.000000 0.000000 0.000000 + Av 2018 9 1 24 0 2.3016373E-02 0.000000 0.000000 2.2787534E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 1 0 2.2936568E-02 0.000000 0.000000 2.2749141E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 2 0 2.2933494E-02 0.000000 0.000000 2.2742173E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 3 0 2.2925094E-02 0.000000 0.000000 2.2735205E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 4 0 2.2918550E-02 0.000000 0.000000 2.2728242E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 5 0 2.2911366E-02 0.000000 0.000000 2.2721280E-04 0.000000 0.000000 0.000000 Av 2018 9 2 6 0 1.1453972E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.4700519E-03 Av 2018 9 2 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5846254E-03 Av 2018 9 2 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6991986E-03 @@ -5898,17 +5898,17 @@ Av 2018 9 2 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6991986E-03 Av 2018 9 2 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5846254E-03 Av 2018 9 2 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.4700519E-03 - Av 2018 9 2 19 0 1.5371734E-02 0.000000 0.000000 2.2624033E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 20 0 2.5393872E-02 0.000000 0.000000 2.2617103E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 21 0 2.1899670E-02 0.000000 0.000000 2.2610174E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 22 0 2.3105223E-02 0.000000 0.000000 2.2603248E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 23 0 2.2676632E-02 0.000000 0.000000 2.2596325E-04 0.000000 0.000000 0.000000 - Av 2018 9 2 24 0 2.2816250E-02 0.000000 0.000000 2.2589404E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 1 0 2.2737756E-02 0.000000 0.000000 2.2552247E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 2 0 2.2735113E-02 0.000000 0.000000 2.2545346E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 3 0 2.2726655E-02 0.000000 0.000000 2.2538450E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 4 0 2.2720229E-02 0.000000 0.000000 2.2531557E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 5 0 2.2713097E-02 0.000000 0.000000 2.2524664E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 19 0 1.5371734E-02 0.000000 0.000000 2.2624033E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 20 0 2.5393872E-02 0.000000 0.000000 2.2617103E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 21 0 2.1899670E-02 0.000000 0.000000 2.2610174E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 22 0 2.3105223E-02 0.000000 0.000000 2.2603248E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 23 0 2.2676632E-02 0.000000 0.000000 2.2596325E-04 0.000000 0.000000 0.000000 + Av 2018 9 2 24 0 2.2816250E-02 0.000000 0.000000 2.2589404E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 1 0 2.2737756E-02 0.000000 0.000000 2.2552247E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 2 0 2.2735113E-02 0.000000 0.000000 2.2545346E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 3 0 2.2726655E-02 0.000000 0.000000 2.2538450E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 4 0 2.2720229E-02 0.000000 0.000000 2.2531557E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 5 0 2.2713097E-02 0.000000 0.000000 2.2524664E-04 0.000000 0.000000 0.000000 Av 2018 9 3 6 0 1.1354858E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.3602567E-03 Av 2018 9 3 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4169496E-03 Av 2018 9 3 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4736425E-03 @@ -5922,17 +5922,17 @@ Av 2018 9 3 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.4736425E-03 Av 2018 9 3 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4169496E-03 Av 2018 9 3 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.3602567E-03 - Av 2018 9 3 19 0 1.5238806E-02 0.000000 0.000000 2.2428388E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 20 0 2.5174282E-02 0.000000 0.000000 2.2421527E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 21 0 2.1710306E-02 0.000000 0.000000 2.2414669E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 22 0 2.2905443E-02 0.000000 0.000000 2.2407810E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 23 0 2.2480566E-02 0.000000 0.000000 2.2400956E-04 0.000000 0.000000 0.000000 - Av 2018 9 3 24 0 2.2618987E-02 0.000000 0.000000 2.2394104E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 1 0 2.2541765E-02 0.000000 0.000000 2.2358139E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 2 0 2.2539537E-02 0.000000 0.000000 2.2351308E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 3 0 2.2531033E-02 0.000000 0.000000 2.2344479E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 4 0 2.2524711E-02 0.000000 0.000000 2.2337653E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 5 0 2.2517633E-02 0.000000 0.000000 2.2330826E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 19 0 1.5238806E-02 0.000000 0.000000 2.2428388E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 20 0 2.5174282E-02 0.000000 0.000000 2.2421527E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 21 0 2.1710306E-02 0.000000 0.000000 2.2414669E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 22 0 2.2905443E-02 0.000000 0.000000 2.2407810E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 23 0 2.2480566E-02 0.000000 0.000000 2.2400956E-04 0.000000 0.000000 0.000000 + Av 2018 9 3 24 0 2.2618987E-02 0.000000 0.000000 2.2394104E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 1 0 2.2541765E-02 0.000000 0.000000 2.2358139E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 2 0 2.2539537E-02 0.000000 0.000000 2.2351308E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 3 0 2.2531033E-02 0.000000 0.000000 2.2344479E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 4 0 2.2524711E-02 0.000000 0.000000 2.2337653E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 5 0 2.2517633E-02 0.000000 0.000000 2.2330826E-04 0.000000 0.000000 0.000000 Av 2018 9 4 6 0 1.1257147E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.2605265E-03 Av 2018 9 4 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2764475E-03 Av 2018 9 4 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.2923684E-03 @@ -5946,17 +5946,17 @@ Av 2018 9 4 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.2923684E-03 Av 2018 9 4 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2764475E-03 Av 2018 9 4 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2605265E-03 - Av 2018 9 4 19 0 1.5107754E-02 0.000000 0.000000 2.2235505E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 20 0 2.4957791E-02 0.000000 0.000000 2.2228713E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 21 0 2.1523615E-02 0.000000 0.000000 2.2221923E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 22 0 2.2708483E-02 0.000000 0.000000 2.2215134E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 23 0 2.2287272E-02 0.000000 0.000000 2.2208347E-04 0.000000 0.000000 0.000000 - Av 2018 9 4 24 0 2.2424508E-02 0.000000 0.000000 2.2201562E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 1 0 2.2348523E-02 0.000000 0.000000 2.2166743E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 2 0 2.2346690E-02 0.000000 0.000000 2.2159980E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 3 0 2.2338137E-02 0.000000 0.000000 2.2153217E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 4 0 2.2331923E-02 0.000000 0.000000 2.2146458E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 5 0 2.2324901E-02 0.000000 0.000000 2.2139699E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 19 0 1.5107754E-02 0.000000 0.000000 2.2235505E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 20 0 2.4957791E-02 0.000000 0.000000 2.2228713E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 21 0 2.1523615E-02 0.000000 0.000000 2.2221923E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 22 0 2.2708483E-02 0.000000 0.000000 2.2215134E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 23 0 2.2287272E-02 0.000000 0.000000 2.2208347E-04 0.000000 0.000000 0.000000 + Av 2018 9 4 24 0 2.2424508E-02 0.000000 0.000000 2.2201562E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 1 0 2.2348523E-02 0.000000 0.000000 2.2166743E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 2 0 2.2346690E-02 0.000000 0.000000 2.2159980E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 3 0 2.2338137E-02 0.000000 0.000000 2.2153217E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 4 0 2.2331923E-02 0.000000 0.000000 2.2146458E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 5 0 2.2324901E-02 0.000000 0.000000 2.2139699E-04 0.000000 0.000000 0.000000 Av 2018 9 5 6 0 1.1160803E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.4659376E-03 Av 2018 9 5 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.2166674E-03 Av 2018 9 5 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.9673977E-03 @@ -5970,17 +5970,17 @@ Av 2018 9 5 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.9673977E-03 Av 2018 9 5 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.2166674E-03 Av 2018 9 5 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.4659376E-03 - Av 2018 9 5 19 0 1.4978527E-02 0.000000 0.000000 2.2045312E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 20 0 2.4744317E-02 0.000000 0.000000 2.2038585E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 21 0 2.1339526E-02 0.000000 0.000000 2.2031862E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 22 0 2.2514269E-02 0.000000 0.000000 2.2025140E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 23 0 2.2096667E-02 0.000000 0.000000 2.2018420E-04 0.000000 0.000000 0.000000 - Av 2018 9 5 24 0 2.2232739E-02 0.000000 0.000000 2.2011701E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 1 0 2.2157956E-02 0.000000 0.000000 2.1977989E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 2 0 2.2156503E-02 0.000000 0.000000 2.1971291E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 3 0 2.2147905E-02 0.000000 0.000000 2.1964595E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 4 0 2.2141797E-02 0.000000 0.000000 2.1957901E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 5 0 2.2134827E-02 0.000000 0.000000 2.1951211E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 19 0 1.4978527E-02 0.000000 0.000000 2.2045312E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 20 0 2.4744317E-02 0.000000 0.000000 2.2038585E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 21 0 2.1339526E-02 0.000000 0.000000 2.2031862E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 22 0 2.2514269E-02 0.000000 0.000000 2.2025140E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 23 0 2.2096667E-02 0.000000 0.000000 2.2018420E-04 0.000000 0.000000 0.000000 + Av 2018 9 5 24 0 2.2232739E-02 0.000000 0.000000 2.2011701E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 1 0 2.2157956E-02 0.000000 0.000000 2.1977989E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 2 0 2.2156503E-02 0.000000 0.000000 2.1971291E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 3 0 2.2147905E-02 0.000000 0.000000 2.1964595E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 4 0 2.2141797E-02 0.000000 0.000000 2.1957901E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 5 0 2.2134827E-02 0.000000 0.000000 2.1951211E-04 0.000000 0.000000 0.000000 Av 2018 9 6 6 0 1.1065787E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.3180262E-03 Av 2018 9 6 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9423263E-03 Av 2018 9 6 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.5666263E-03 @@ -5994,17 +5994,17 @@ Av 2018 9 6 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.5666263E-03 Av 2018 9 6 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9423263E-03 Av 2018 9 6 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.3180262E-03 - Av 2018 9 6 19 0 1.4851084E-02 0.000000 0.000000 2.1857741E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 20 0 2.4533790E-02 0.000000 0.000000 2.1851080E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 21 0 2.1157974E-02 0.000000 0.000000 2.1844420E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 22 0 2.2322726E-02 0.000000 0.000000 2.1837764E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 23 0 2.1908689E-02 0.000000 0.000000 2.1831108E-04 0.000000 0.000000 0.000000 - Av 2018 9 6 24 0 2.2043610E-02 0.000000 0.000000 2.1824455E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 1 0 2.1969995E-02 0.000000 0.000000 2.1791807E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 2 0 2.1968901E-02 0.000000 0.000000 2.1785173E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 3 0 2.1960268E-02 0.000000 0.000000 2.1778542E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 4 0 2.1954261E-02 0.000000 0.000000 2.1771913E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 5 0 2.1947343E-02 0.000000 0.000000 2.1765285E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 19 0 1.4851084E-02 0.000000 0.000000 2.1857741E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 20 0 2.4533790E-02 0.000000 0.000000 2.1851080E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 21 0 2.1157974E-02 0.000000 0.000000 2.1844420E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 22 0 2.2322726E-02 0.000000 0.000000 2.1837764E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 23 0 2.1908689E-02 0.000000 0.000000 2.1831108E-04 0.000000 0.000000 0.000000 + Av 2018 9 6 24 0 2.2043610E-02 0.000000 0.000000 2.1824455E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 1 0 2.1969995E-02 0.000000 0.000000 2.1791807E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 2 0 2.1968901E-02 0.000000 0.000000 2.1785173E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 3 0 2.1960268E-02 0.000000 0.000000 2.1778542E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 4 0 2.1954261E-02 0.000000 0.000000 2.1771913E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 5 0 2.1947343E-02 0.000000 0.000000 2.1765285E-04 0.000000 0.000000 0.000000 Av 2018 9 7 6 0 1.0972063E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.1326115E-03 Av 2018 9 7 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4991598E-03 Av 2018 9 7 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8657083E-03 @@ -6018,17 +6018,17 @@ Av 2018 9 7 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8657083E-03 Av 2018 9 7 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4991598E-03 Av 2018 9 7 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1326115E-03 - Av 2018 9 7 19 0 1.4725371E-02 0.000000 0.000000 2.1672717E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 20 0 2.4326116E-02 0.000000 0.000000 2.1666121E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 21 0 2.0978890E-02 0.000000 0.000000 2.1659526E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 22 0 2.2133790E-02 0.000000 0.000000 2.1652933E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 23 0 2.1723263E-02 0.000000 0.000000 2.1646342E-04 0.000000 0.000000 0.000000 - Av 2018 9 7 24 0 2.1857051E-02 0.000000 0.000000 2.1639752E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 1 0 2.1784570E-02 0.000000 0.000000 2.1608133E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 2 0 2.1783825E-02 0.000000 0.000000 2.1601563E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 3 0 2.1775158E-02 0.000000 0.000000 2.1594996E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 4 0 2.1769248E-02 0.000000 0.000000 2.1588430E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 5 0 2.1762384E-02 0.000000 0.000000 2.1581867E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 19 0 1.4725371E-02 0.000000 0.000000 2.1672717E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 20 0 2.4326116E-02 0.000000 0.000000 2.1666121E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 21 0 2.0978890E-02 0.000000 0.000000 2.1659526E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 22 0 2.2133790E-02 0.000000 0.000000 2.1652933E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 23 0 2.1723263E-02 0.000000 0.000000 2.1646342E-04 0.000000 0.000000 0.000000 + Av 2018 9 7 24 0 2.1857051E-02 0.000000 0.000000 2.1639752E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 1 0 2.1784570E-02 0.000000 0.000000 2.1608133E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 2 0 2.1783825E-02 0.000000 0.000000 2.1601563E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 3 0 2.1775158E-02 0.000000 0.000000 2.1594996E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 4 0 2.1769248E-02 0.000000 0.000000 2.1588430E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 5 0 2.1762384E-02 0.000000 0.000000 2.1581867E-04 0.000000 0.000000 0.000000 Av 2018 9 8 6 0 1.0879604E-02 0.000000 0.000000 0.000000 0.000000 0.000000 1.0051621E-03 Av 2018 9 8 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2565614E-03 Av 2018 9 8 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5079608E-03 @@ -6042,17 +6042,17 @@ Av 2018 9 8 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.5079608E-03 Av 2018 9 8 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2565614E-03 Av 2018 9 8 18 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0051621E-03 - Av 2018 9 8 19 0 1.4601349E-02 0.000000 0.000000 2.1490183E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 20 0 2.4121240E-02 0.000000 0.000000 2.1483649E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 21 0 2.0802211E-02 0.000000 0.000000 2.1477118E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 22 0 2.1947393E-02 0.000000 0.000000 2.1470588E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 23 0 2.1540333E-02 0.000000 0.000000 2.1464060E-04 0.000000 0.000000 0.000000 - Av 2018 9 8 24 0 2.1673001E-02 0.000000 0.000000 2.1457535E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 1 0 2.1601629E-02 0.000000 0.000000 2.1426906E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 2 0 2.1601215E-02 0.000000 0.000000 2.1420399E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 3 0 2.1592516E-02 0.000000 0.000000 2.1413894E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 4 0 2.1586701E-02 0.000000 0.000000 2.1407389E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 5 0 2.1579888E-02 0.000000 0.000000 2.1400888E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 19 0 1.4601349E-02 0.000000 0.000000 2.1490183E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 20 0 2.4121240E-02 0.000000 0.000000 2.1483649E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 21 0 2.0802211E-02 0.000000 0.000000 2.1477118E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 22 0 2.1947393E-02 0.000000 0.000000 2.1470588E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 23 0 2.1540333E-02 0.000000 0.000000 2.1464060E-04 0.000000 0.000000 0.000000 + Av 2018 9 8 24 0 2.1673001E-02 0.000000 0.000000 2.1457535E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 1 0 2.1601629E-02 0.000000 0.000000 2.1426906E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 2 0 2.1601215E-02 0.000000 0.000000 2.1420399E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 3 0 2.1592516E-02 0.000000 0.000000 2.1413894E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 4 0 2.1586701E-02 0.000000 0.000000 2.1407389E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 5 0 2.1579888E-02 0.000000 0.000000 2.1400888E-04 0.000000 0.000000 0.000000 Av 2018 9 9 6 0 1.0788374E-02 0.000000 0.000000 8.8101660E-07 0.000000 0.000000 9.6846762E-04 Av 2018 9 9 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4049746E-03 Av 2018 9 9 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8414809E-03 @@ -6066,17 +6066,17 @@ Av 2018 9 9 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.8414809E-03 Av 2018 9 9 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4049746E-03 Av 2018 9 9 18 0 6.9744260E-06 0.000000 0.000000 1.0264921E-07 0.000000 0.000000 9.6846762E-04 - Av 2018 9 9 19 0 1.4483529E-02 0.000000 0.000000 2.1310079E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 20 0 2.3917511E-02 0.000000 0.000000 2.1303608E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 21 0 2.0628437E-02 0.000000 0.000000 2.1297138E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 22 0 2.1763287E-02 0.000000 0.000000 2.1290670E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 23 0 2.1359902E-02 0.000000 0.000000 2.1284205E-04 0.000000 0.000000 0.000000 - Av 2018 9 9 24 0 2.1491379E-02 0.000000 0.000000 2.1277741E-04 0.000000 0.000000 0.000000 - Av 2018 9 10 1 0 2.1421108E-02 0.000000 0.000000 2.1248066E-04 0.000000 0.000000 0.000000 - Av 2018 9 10 2 0 2.1421000E-02 0.000000 0.000000 2.1241620E-04 0.000000 0.000000 0.000000 - Av 2018 9 10 3 0 2.1412279E-02 0.000000 0.000000 2.1235176E-04 0.000000 0.000000 0.000000 - Av 2018 9 10 4 0 2.2366025E-02 0.000000 0.000000 2.1228733E-04 0.000000 2.9999940E-02 0.000000 - Av 2018 9 10 5 0 2.2025645E-02 0.000000 0.000000 2.1222292E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 19 0 1.4483529E-02 0.000000 0.000000 2.1310079E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 20 0 2.3917511E-02 0.000000 0.000000 2.1303608E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 21 0 2.0628437E-02 0.000000 0.000000 2.1297138E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 22 0 2.1763287E-02 0.000000 0.000000 2.1290670E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 23 0 2.1359902E-02 0.000000 0.000000 2.1284205E-04 0.000000 0.000000 0.000000 + Av 2018 9 9 24 0 2.1491379E-02 0.000000 0.000000 2.1277741E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 1 0 2.1421108E-02 0.000000 0.000000 2.1248066E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 2 0 2.1421000E-02 0.000000 0.000000 2.1241620E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 3 0 2.1412279E-02 0.000000 0.000000 2.1235176E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 4 0 2.2366025E-02 0.000000 0.000000 2.1228733E-04 0.000000 2.9999940E-02 0.000000 + Av 2018 9 10 5 0 2.2025645E-02 0.000000 0.000000 2.1222292E-04 0.000000 0.000000 0.000000 Av 2018 9 10 6 0 1.0364729E-02 0.000000 0.000000 4.5190303E-05 0.000000 0.000000 7.5894652E-04 Av 2018 9 10 7 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.7416972E-03 Av 2018 9 10 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7244479E-03 @@ -6090,17 +6090,17 @@ Av 2018 9 10 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7244479E-03 Av 2018 9 10 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.7416972E-03 Av 2018 9 10 18 0 3.0180344E-03 0.000000 0.000000 4.4419256E-05 0.000000 0.000000 7.5894652E-04 - Av 2018 9 10 19 0 1.6326850E-02 0.000000 0.000000 2.1132338E-04 0.000000 0.000000 0.000000 - Av 2018 9 10 20 0 2.3035079E-02 0.000000 0.000000 2.1125928E-04 0.000000 0.000000 0.000000 - Av 2018 9 10 21 0 2.0693859E-02 0.000000 0.000000 2.1119519E-04 0.000000 0.000000 0.000000 - Av 2018 9 10 22 0 2.1499217E-02 0.000000 0.000000 2.1113112E-04 0.000000 0.000000 0.000000 - Av 2018 9 10 23 0 2.1210480E-02 0.000000 0.000000 2.1106708E-04 0.000000 0.000000 0.000000 - Av 2018 9 10 24 0 2.1302175E-02 0.000000 0.000000 2.1100305E-04 0.000000 0.000000 0.000000 - Av 2018 9 11 1 0 2.1246407E-02 0.000000 0.000000 2.1071552E-04 0.000000 0.000000 0.000000 - Av 2018 9 11 2 0 2.1560621E-02 0.000000 0.000000 2.1065168E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 9 11 3 0 2.1442691E-02 0.000000 0.000000 2.1058784E-04 0.000000 0.000000 0.000000 - Av 2018 9 11 4 0 2.1156326E-02 0.000000 0.000000 2.1052403E-04 0.000000 0.000000 0.000000 - Av 2018 9 11 5 0 2.1247227E-02 0.000000 0.000000 2.1046022E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 19 0 1.6326850E-02 0.000000 0.000000 2.1132338E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 20 0 2.3035079E-02 0.000000 0.000000 2.1125928E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 21 0 2.0693859E-02 0.000000 0.000000 2.1119519E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 22 0 2.1499217E-02 0.000000 0.000000 2.1113112E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 23 0 2.1210480E-02 0.000000 0.000000 2.1106708E-04 0.000000 0.000000 0.000000 + Av 2018 9 10 24 0 2.1302175E-02 0.000000 0.000000 2.1100305E-04 0.000000 0.000000 0.000000 + Av 2018 9 11 1 0 2.1246407E-02 0.000000 0.000000 2.1071552E-04 0.000000 0.000000 0.000000 + Av 2018 9 11 2 0 2.1560621E-02 0.000000 0.000000 2.1065168E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 9 11 3 0 2.1442691E-02 0.000000 0.000000 2.1058784E-04 0.000000 0.000000 0.000000 + Av 2018 9 11 4 0 2.1156326E-02 0.000000 0.000000 2.1052403E-04 0.000000 0.000000 0.000000 + Av 2018 9 11 5 0 2.1247227E-02 0.000000 0.000000 2.1046022E-04 0.000000 0.000000 0.000000 Av 2018 9 11 6 0 1.2458828E-02 0.000000 0.000000 8.1915685E-05 0.000000 0.000000 5.8400352E-04 Av 2018 9 11 7 0 1.8627663E-03 0.000000 0.000000 0.000000 0.000000 0.000000 3.1563092E-03 Av 2018 9 11 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7286150E-03 @@ -6114,17 +6114,17 @@ Av 2018 9 11 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7286150E-03 Av 2018 9 11 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.1563092E-03 Av 2018 9 11 18 0 5.5138031E-03 0.000000 0.000000 8.1151840E-05 0.000000 0.000000 5.8400352E-04 - Av 2018 9 11 19 0 1.7835625E-02 0.000000 0.000000 2.0956909E-04 0.000000 0.000000 0.000000 - Av 2018 9 11 20 0 2.2272119E-02 0.000000 0.000000 2.0950557E-04 0.000000 0.000000 0.000000 - Av 2018 9 11 21 0 2.0720880E-02 0.000000 0.000000 2.0944208E-04 0.000000 0.000000 0.000000 - Av 2018 9 11 22 0 2.1572353E-02 0.000000 0.000000 2.0937862E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 9 11 23 0 2.1267664E-02 0.000000 0.000000 2.0931516E-04 0.000000 0.000000 0.000000 - Av 2018 9 11 24 0 2.1044267E-02 0.000000 0.000000 2.0925172E-04 0.000000 0.000000 0.000000 - Av 2018 9 12 1 0 2.1098701E-02 0.000000 0.000000 2.0897306E-04 0.000000 0.000000 0.000000 - Av 2018 9 12 2 0 2.2325676E-02 0.000000 0.000000 2.0890980E-04 0.000000 3.9999921E-02 0.000000 - Av 2018 9 12 3 0 2.1890452E-02 0.000000 0.000000 2.0884656E-04 0.000000 0.000000 0.000000 - Av 2018 9 12 4 0 2.0764057E-02 0.000000 0.000000 2.0878333E-04 0.000000 0.000000 0.000000 - Av 2018 9 12 5 0 2.1147123E-02 0.000000 0.000000 2.0872011E-04 0.000000 0.000000 0.000000 + Av 2018 9 11 19 0 1.7835625E-02 0.000000 0.000000 2.0956909E-04 0.000000 0.000000 0.000000 + Av 2018 9 11 20 0 2.2272119E-02 0.000000 0.000000 2.0950557E-04 0.000000 0.000000 0.000000 + Av 2018 9 11 21 0 2.0720880E-02 0.000000 0.000000 2.0944208E-04 0.000000 0.000000 0.000000 + Av 2018 9 11 22 0 2.1572353E-02 0.000000 0.000000 2.0937862E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 9 11 23 0 2.1267664E-02 0.000000 0.000000 2.0931516E-04 0.000000 0.000000 0.000000 + Av 2018 9 11 24 0 2.1044267E-02 0.000000 0.000000 2.0925172E-04 0.000000 0.000000 0.000000 + Av 2018 9 12 1 0 2.1098701E-02 0.000000 0.000000 2.0897306E-04 0.000000 0.000000 0.000000 + Av 2018 9 12 2 0 2.2325676E-02 0.000000 0.000000 2.0890980E-04 0.000000 3.9999921E-02 0.000000 + Av 2018 9 12 3 0 2.1890452E-02 0.000000 0.000000 2.0884656E-04 0.000000 0.000000 0.000000 + Av 2018 9 12 4 0 2.0764057E-02 0.000000 0.000000 2.0878333E-04 0.000000 0.000000 0.000000 + Av 2018 9 12 5 0 2.1147123E-02 0.000000 0.000000 2.0872011E-04 0.000000 0.000000 0.000000 Av 2018 9 12 6 0 1.3664407E-02 0.000000 0.000000 1.0084185E-04 0.000000 0.000000 4.9006852E-04 Av 2018 9 12 7 0 3.1962369E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.9454287E-03 Av 2018 9 12 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4007890E-03 @@ -6138,17 +6138,17 @@ Av 2018 9 12 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.1199998 5.4007890E-03 Av 2018 9 12 17 0 0.4547126 7.1890216E-10 0.000000 0.000000 6.6924348E-02 0.1199998 2.9454287E-03 Av 2018 9 12 18 0 0.4547126 0.000000 0.000000 1.0036235E-04 1.1858476E-02 0.000000 4.9006852E-04 - Av 2018 9 12 19 0 3.5724353E-02 0.000000 0.000000 2.0811436E-04 3.1767471E-03 0.000000 0.000000 - Av 2018 9 12 20 0 4.5464523E-02 0.000000 0.000000 2.0805132E-04 1.1812546E-03 0.000000 0.000000 - Av 2018 9 12 21 0 5.0687999E-02 0.000000 0.000000 2.0799888E-04 4.4000563E-03 9.9999802E-03 0.000000 - Av 2018 9 12 22 0 5.2840829E-02 0.000000 0.000000 2.0795182E-04 1.7664166E-03 0.000000 0.000000 - Av 2018 9 12 23 0 2.6963111E-02 0.000000 0.000000 2.0788884E-04 7.4775371E-04 0.000000 0.000000 - Av 2018 9 12 24 0 2.6500672E-02 0.000000 0.000000 2.0782585E-04 3.7530670E-04 0.000000 0.000000 - Av 2018 9 13 1 0 2.3000132E-02 0.000000 0.000000 2.0755280E-04 2.1224072E-04 0.000000 0.000000 - Av 2018 9 13 2 0 2.2534277E-02 0.000000 0.000000 2.0749154E-04 1.3094353E-04 0.000000 0.000000 - Av 2018 9 13 3 0 2.1831974E-02 0.000000 0.000000 2.0742875E-04 8.6276254E-05 0.000000 0.000000 - Av 2018 9 13 4 0 2.1584425E-02 0.000000 0.000000 2.0736599E-04 5.9824513E-05 0.000000 0.000000 - Av 2018 9 13 5 0 2.1369316E-02 0.000000 0.000000 2.0730324E-04 4.3203003E-05 0.000000 0.000000 + Av 2018 9 12 19 0 3.5724353E-02 0.000000 0.000000 2.0811436E-04 3.1767471E-03 0.000000 0.000000 + Av 2018 9 12 20 0 4.5464523E-02 0.000000 0.000000 2.0805132E-04 1.1812546E-03 0.000000 0.000000 + Av 2018 9 12 21 0 5.0687999E-02 0.000000 0.000000 2.0799888E-04 4.4000563E-03 9.9999802E-03 0.000000 + Av 2018 9 12 22 0 5.2840829E-02 0.000000 0.000000 2.0795182E-04 1.7664166E-03 0.000000 0.000000 + Av 2018 9 12 23 0 2.6963111E-02 0.000000 0.000000 2.0788884E-04 7.4775371E-04 0.000000 0.000000 + Av 2018 9 12 24 0 2.6500672E-02 0.000000 0.000000 2.0782585E-04 3.7530670E-04 0.000000 0.000000 + Av 2018 9 13 1 0 2.3000132E-02 0.000000 0.000000 2.0755280E-04 2.1224072E-04 0.000000 0.000000 + Av 2018 9 13 2 0 2.2534277E-02 0.000000 0.000000 2.0749154E-04 1.3094353E-04 0.000000 0.000000 + Av 2018 9 13 3 0 2.1831974E-02 0.000000 0.000000 2.0742875E-04 8.6276254E-05 0.000000 0.000000 + Av 2018 9 13 4 0 2.1584425E-02 0.000000 0.000000 2.0736599E-04 5.9824513E-05 0.000000 0.000000 + Av 2018 9 13 5 0 2.1369316E-02 0.000000 0.000000 2.0730324E-04 4.3203003E-05 0.000000 0.000000 Av 2018 9 13 6 0 1.4542903E-02 0.000000 0.000000 1.0876246E-04 3.2245847E-05 0.000000 4.4762748E-04 Av 2018 9 13 7 0 3.9522465E-02 0.000000 0.000000 0.000000 5.4238550E-03 9.9999802E-03 3.0483266E-03 Av 2018 9 13 8 0 3.7777685E-02 0.000000 0.000000 0.000000 2.1870041E-03 0.000000 5.6490256E-03 @@ -6162,17 +6162,17 @@ Av 2018 9 13 16 0 3.0319154E-04 0.000000 0.000000 0.000000 3.4247201E-05 0.000000 5.6490256E-03 Av 2018 9 13 17 0 1.2475736E-03 0.000000 0.000000 0.000000 1.7429261E-04 0.000000 3.0483266E-03 Av 2018 9 13 18 0 8.0646556E-03 0.000000 0.000000 1.0804820E-04 0.000000 0.000000 4.4762748E-04 - Av 2018 9 13 19 0 1.9827299E-02 0.000000 0.000000 2.0646374E-04 0.000000 4.9999900E-02 0.000000 - Av 2018 9 13 20 0 2.2424841E-02 0.000000 0.000000 2.0640125E-04 0.000000 0.000000 0.000000 - Av 2018 9 13 21 0 2.0246007E-02 0.000000 0.000000 2.0633879E-04 0.000000 0.000000 0.000000 - Av 2018 9 13 22 0 2.0995121E-02 0.000000 0.000000 2.0627635E-04 0.000000 0.000000 0.000000 - Av 2018 9 13 23 0 2.0726163E-02 0.000000 0.000000 2.0621392E-04 0.000000 0.000000 0.000000 - Av 2018 9 13 24 0 2.0811200E-02 0.000000 0.000000 2.0615151E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 1 0 2.0759307E-02 0.000000 0.000000 2.0588536E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 2 0 2.0755038E-02 0.000000 0.000000 2.0582310E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 3 0 2.0748066E-02 0.000000 0.000000 2.0576089E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 4 0 2.0742036E-02 0.000000 0.000000 2.0569869E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 5 0 2.0735681E-02 0.000000 0.000000 2.0563649E-04 0.000000 0.000000 0.000000 + Av 2018 9 13 19 0 1.9827299E-02 0.000000 0.000000 2.0646374E-04 0.000000 4.9999900E-02 0.000000 + Av 2018 9 13 20 0 2.2424841E-02 0.000000 0.000000 2.0640125E-04 0.000000 0.000000 0.000000 + Av 2018 9 13 21 0 2.0246007E-02 0.000000 0.000000 2.0633879E-04 0.000000 0.000000 0.000000 + Av 2018 9 13 22 0 2.0995121E-02 0.000000 0.000000 2.0627635E-04 0.000000 0.000000 0.000000 + Av 2018 9 13 23 0 2.0726163E-02 0.000000 0.000000 2.0621392E-04 0.000000 0.000000 0.000000 + Av 2018 9 13 24 0 2.0811200E-02 0.000000 0.000000 2.0615151E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 1 0 2.0759307E-02 0.000000 0.000000 2.0588536E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 2 0 2.0755038E-02 0.000000 0.000000 2.0582310E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 3 0 2.0748066E-02 0.000000 0.000000 2.0576089E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 4 0 2.0742036E-02 0.000000 0.000000 2.0569869E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 5 0 2.0735681E-02 0.000000 0.000000 2.0563649E-04 0.000000 0.000000 0.000000 Av 2018 9 14 6 0 1.4500037E-02 0.000000 0.000000 1.1408322E-04 0.000000 0.000000 4.1586868E-04 Av 2018 9 14 7 0 4.1337418E-03 0.000000 0.000000 0.000000 0.000000 0.000000 3.2914700E-03 Av 2018 9 14 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.1670714E-03 @@ -6186,17 +6186,17 @@ Av 2018 9 14 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.1670714E-03 Av 2018 9 14 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2914700E-03 Av 2018 9 14 18 0 7.7007101E-03 0.000000 0.000000 1.1333861E-04 0.000000 0.000000 4.1586868E-04 - Av 2018 9 14 19 0 1.8935904E-02 0.000000 0.000000 2.0476780E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 20 0 2.1237213E-02 0.000000 0.000000 2.0470590E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 21 0 2.0428617E-02 0.000000 0.000000 2.0464402E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 22 0 2.0701366E-02 0.000000 0.000000 2.0458216E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 23 0 2.0598123E-02 0.000000 0.000000 2.0452031E-04 0.000000 0.000000 0.000000 - Av 2018 9 14 24 0 2.0625617E-02 0.000000 0.000000 2.0445848E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 1 0 2.0594325E-02 0.000000 0.000000 2.0420045E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 2 0 2.0583484E-02 0.000000 0.000000 2.0413878E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 3 0 2.0578872E-02 0.000000 0.000000 2.0407712E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 4 0 2.0572100E-02 0.000000 0.000000 2.0401548E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 5 0 2.0566080E-02 0.000000 0.000000 2.0395385E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 19 0 1.8935904E-02 0.000000 0.000000 2.0476780E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 20 0 2.1237213E-02 0.000000 0.000000 2.0470590E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 21 0 2.0428617E-02 0.000000 0.000000 2.0464402E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 22 0 2.0701366E-02 0.000000 0.000000 2.0458216E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 23 0 2.0598123E-02 0.000000 0.000000 2.0452031E-04 0.000000 0.000000 0.000000 + Av 2018 9 14 24 0 2.0625617E-02 0.000000 0.000000 2.0445848E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 1 0 2.0594325E-02 0.000000 0.000000 2.0420045E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 2 0 2.0583484E-02 0.000000 0.000000 2.0413878E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 3 0 2.0578872E-02 0.000000 0.000000 2.0407712E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 4 0 2.0572100E-02 0.000000 0.000000 2.0401548E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 5 0 2.0566080E-02 0.000000 0.000000 2.0395385E-04 0.000000 0.000000 0.000000 Av 2018 9 15 6 0 1.5553607E-02 0.000000 0.000000 1.3036584E-04 0.000000 0.000000 3.3421096E-04 Av 2018 9 15 7 0 5.2721729E-03 0.000000 0.000000 0.000000 0.000000 0.000000 3.1882715E-03 Av 2018 9 15 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0423319E-03 @@ -6210,17 +6210,17 @@ Av 2018 9 15 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 6.0423319E-03 Av 2018 9 15 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.1882715E-03 Av 2018 9 15 18 0 8.8074841E-03 0.000000 0.000000 1.2962805E-04 0.000000 0.000000 3.3421096E-04 - Av 2018 9 15 19 0 1.9544058E-02 0.000000 0.000000 2.0309312E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 20 0 2.0798219E-02 0.000000 0.000000 2.0303178E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 21 0 2.0353803E-02 0.000000 0.000000 2.0297046E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 22 0 2.0500001E-02 0.000000 0.000000 2.0290917E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 23 0 2.0440837E-02 0.000000 0.000000 2.0284789E-04 0.000000 0.000000 0.000000 - Av 2018 9 15 24 0 2.0766385E-02 0.000000 0.000000 2.0278663E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 9 16 1 0 2.0949490E-02 0.000000 0.000000 2.0253642E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 9 16 2 0 2.1498900E-02 0.000000 0.000000 2.0247530E-04 0.000000 2.9999940E-02 0.000000 - Av 2018 9 16 3 0 2.1632023E-02 0.000000 0.000000 2.0241420E-04 0.000000 1.9999960E-02 0.000000 - Av 2018 9 16 4 0 2.0629901E-02 0.000000 0.000000 2.0235313E-04 0.000000 0.000000 0.000000 - Av 2018 9 16 5 0 0.5148370 1.4486436E-09 0.000000 2.0241663E-04 7.2002880E-02 0.1699997 0.000000 + Av 2018 9 15 19 0 1.9544058E-02 0.000000 0.000000 2.0309312E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 20 0 2.0798219E-02 0.000000 0.000000 2.0303178E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 21 0 2.0353803E-02 0.000000 0.000000 2.0297046E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 22 0 2.0500001E-02 0.000000 0.000000 2.0290917E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 23 0 2.0440837E-02 0.000000 0.000000 2.0284789E-04 0.000000 0.000000 0.000000 + Av 2018 9 15 24 0 2.0766385E-02 0.000000 0.000000 2.0278663E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 9 16 1 0 2.0949490E-02 0.000000 0.000000 2.0253642E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 9 16 2 0 2.1498900E-02 0.000000 0.000000 2.0247530E-04 0.000000 2.9999940E-02 0.000000 + Av 2018 9 16 3 0 2.1632023E-02 0.000000 0.000000 2.0241420E-04 0.000000 1.9999960E-02 0.000000 + Av 2018 9 16 4 0 2.0629901E-02 0.000000 0.000000 2.0235313E-04 0.000000 0.000000 0.000000 + Av 2018 9 16 5 0 0.5148370 1.4486436E-09 0.000000 2.0241663E-04 7.2002880E-02 0.1699997 0.000000 Av 2018 9 16 6 0 1.274823 6.3046435E-09 0.000000 1.5509533E-04 0.1331785 0.1399997 2.1689011E-04 Av 2018 9 16 7 0 0.7700667 0.000000 0.000000 0.000000 1.7826051E-02 0.000000 2.6385244E-03 Av 2018 9 16 8 0 2.9037701E-02 0.000000 0.000000 0.000000 4.2737527E-03 0.000000 5.0601587E-03 @@ -6234,17 +6234,17 @@ Av 2018 9 16 16 0 5.5995272E-03 0.000000 0.000000 0.000000 8.2413526E-04 0.000000 5.0601587E-03 Av 2018 9 16 17 0 6.3525490E-03 0.000000 0.000000 0.000000 4.0623380E-04 0.000000 2.6385244E-03 Av 2018 9 16 18 0 1.2650927E-02 0.000000 0.000000 1.5631953E-04 2.2678105E-04 0.000000 2.1689011E-04 - Av 2018 9 16 19 0 2.2561293E-02 0.000000 0.000000 2.0397348E-04 1.3857904E-04 0.000000 0.000000 - Av 2018 9 16 20 0 2.1426100E-02 0.000000 0.000000 2.0391162E-04 9.0639252E-05 0.000000 0.000000 - Av 2018 9 16 21 0 2.1295421E-02 0.000000 0.000000 2.0384979E-04 6.2488252E-05 0.000000 0.000000 - Av 2018 9 16 22 0 2.1021809E-02 0.000000 0.000000 2.0378797E-04 4.4917961E-05 0.000000 0.000000 - Av 2018 9 16 23 0 2.0910904E-02 0.000000 0.000000 2.0372619E-04 3.3398901E-05 0.000000 0.000000 - Av 2018 9 16 24 0 2.1802412E-02 0.000000 0.000000 2.0366440E-04 1.7168984E-04 0.000000 0.000000 - Av 2018 9 17 1 0 2.1242607E-02 0.000000 0.000000 2.0338925E-04 0.000000 0.000000 0.000000 - Av 2018 9 17 2 0 2.0247841E-02 0.000000 0.000000 2.0332764E-04 0.000000 0.000000 0.000000 - Av 2018 9 17 3 0 2.0585360E-02 0.000000 0.000000 2.0326606E-04 0.000000 0.000000 0.000000 - Av 2018 9 17 4 0 2.0459633E-02 0.000000 0.000000 2.0320449E-04 0.000000 0.000000 0.000000 - Av 2018 9 17 5 0 2.0494984E-02 0.000000 0.000000 2.0314293E-04 0.000000 0.000000 0.000000 + Av 2018 9 16 19 0 2.2561293E-02 0.000000 0.000000 2.0397348E-04 1.3857904E-04 0.000000 0.000000 + Av 2018 9 16 20 0 2.1426100E-02 0.000000 0.000000 2.0391162E-04 9.0639252E-05 0.000000 0.000000 + Av 2018 9 16 21 0 2.1295421E-02 0.000000 0.000000 2.0384979E-04 6.2488252E-05 0.000000 0.000000 + Av 2018 9 16 22 0 2.1021809E-02 0.000000 0.000000 2.0378797E-04 4.4917961E-05 0.000000 0.000000 + Av 2018 9 16 23 0 2.0910904E-02 0.000000 0.000000 2.0372619E-04 3.3398901E-05 0.000000 0.000000 + Av 2018 9 16 24 0 2.1802412E-02 0.000000 0.000000 2.0366440E-04 1.7168984E-04 0.000000 0.000000 + Av 2018 9 17 1 0 2.1242607E-02 0.000000 0.000000 2.0338925E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 2 0 2.0247841E-02 0.000000 0.000000 2.0332764E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 3 0 2.0585360E-02 0.000000 0.000000 2.0326606E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 4 0 2.0459633E-02 0.000000 0.000000 2.0320449E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 5 0 2.0494984E-02 0.000000 0.000000 2.0314293E-04 0.000000 0.000000 0.000000 Av 2018 9 17 6 0 1.8026680E-02 0.000000 0.000000 1.6713238E-04 0.000000 0.000000 1.6340462E-04 Av 2018 9 17 7 0 7.7918158E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.7983736E-03 Av 2018 9 17 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4333424E-03 @@ -6258,17 +6258,17 @@ Av 2018 9 17 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4333424E-03 Av 2018 9 17 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.7983736E-03 Av 2018 9 17 18 0 1.1305614E-02 0.000000 0.000000 1.6639539E-04 0.000000 0.000000 1.6340462E-04 - Av 2018 9 17 19 0 2.1118531E-02 0.000000 0.000000 2.0228310E-04 0.000000 0.000000 0.000000 - Av 2018 9 17 20 0 2.0140693E-02 0.000000 0.000000 2.0222183E-04 0.000000 0.000000 0.000000 - Av 2018 9 17 21 0 2.0472370E-02 0.000000 0.000000 2.0216056E-04 0.000000 0.000000 0.000000 - Av 2018 9 17 22 0 2.0348720E-02 0.000000 0.000000 2.0209931E-04 0.000000 0.000000 0.000000 - Av 2018 9 17 23 0 2.0383392E-02 0.000000 0.000000 2.0203809E-04 0.000000 0.000000 0.000000 - Av 2018 9 17 24 0 2.0363018E-02 0.000000 0.000000 2.0197687E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 1 0 2.0347822E-02 0.000000 0.000000 2.0171019E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 2 0 2.0330841E-02 0.000000 0.000000 2.0164916E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 3 0 2.0328453E-02 0.000000 0.000000 2.0158813E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 4 0 2.0320991E-02 0.000000 0.000000 2.0152713E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 5 0 2.0315297E-02 0.000000 0.000000 2.0146614E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 19 0 2.1118531E-02 0.000000 0.000000 2.0228310E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 20 0 2.0140693E-02 0.000000 0.000000 2.0222183E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 21 0 2.0472370E-02 0.000000 0.000000 2.0216056E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 22 0 2.0348720E-02 0.000000 0.000000 2.0209931E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 23 0 2.0383392E-02 0.000000 0.000000 2.0203809E-04 0.000000 0.000000 0.000000 + Av 2018 9 17 24 0 2.0363018E-02 0.000000 0.000000 2.0197687E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 1 0 2.0347822E-02 0.000000 0.000000 2.0171019E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 2 0 2.0330841E-02 0.000000 0.000000 2.0164916E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 3 0 2.0328453E-02 0.000000 0.000000 2.0158813E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 4 0 2.0320991E-02 0.000000 0.000000 2.0152713E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 5 0 2.0315297E-02 0.000000 0.000000 2.0146614E-04 0.000000 0.000000 0.000000 Av 2018 9 18 6 0 1.9014278E-02 0.000000 0.000000 1.8238940E-04 0.000000 0.000000 8.6435393E-05 Av 2018 9 18 7 0 8.8582886E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.5950670E-03 Av 2018 9 18 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.1036985E-03 @@ -6282,17 +6282,17 @@ Av 2018 9 18 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.1036985E-03 Av 2018 9 18 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.5950670E-03 Av 2018 9 18 18 0 1.2342704E-02 0.000000 0.000000 1.8165921E-04 0.000000 0.000000 8.6435393E-05 - Av 2018 9 18 19 0 2.1681625E-02 0.000000 0.000000 2.0061426E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 20 0 1.9718161E-02 0.000000 0.000000 2.0055355E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 21 0 2.0392627E-02 0.000000 0.000000 2.0049285E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 22 0 2.0149864E-02 0.000000 0.000000 2.0043217E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 23 0 2.0226032E-02 0.000000 0.000000 2.0037152E-04 0.000000 0.000000 0.000000 - Av 2018 9 18 24 0 2.0191304E-02 0.000000 0.000000 2.0031088E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 1 0 2.0181695E-02 0.000000 0.000000 2.0005237E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 2 0 2.0163365E-02 0.000000 0.000000 1.9999190E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 3 0 2.0161521E-02 0.000000 0.000000 1.9993144E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 4 0 2.0153947E-02 0.000000 0.000000 1.9987101E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 5 0 2.0148370E-02 0.000000 0.000000 1.9981059E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 19 0 2.1681625E-02 0.000000 0.000000 2.0061426E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 20 0 1.9718161E-02 0.000000 0.000000 2.0055355E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 21 0 2.0392627E-02 0.000000 0.000000 2.0049285E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 22 0 2.0149864E-02 0.000000 0.000000 2.0043217E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 23 0 2.0226032E-02 0.000000 0.000000 2.0037152E-04 0.000000 0.000000 0.000000 + Av 2018 9 18 24 0 2.0191304E-02 0.000000 0.000000 2.0031088E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 1 0 2.0181695E-02 0.000000 0.000000 2.0005237E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 2 0 2.0163365E-02 0.000000 0.000000 1.9999190E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 3 0 2.0161521E-02 0.000000 0.000000 1.9993144E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 4 0 2.0153947E-02 0.000000 0.000000 1.9987101E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 5 0 2.0148370E-02 0.000000 0.000000 1.9981059E-04 0.000000 0.000000 0.000000 Av 2018 9 19 6 0 1.9857872E-02 0.000000 0.000000 1.9557562E-04 0.000000 0.000000 1.8975315E-05 Av 2018 9 19 7 0 9.7853467E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.7724027E-03 Av 2018 9 19 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5258302E-03 @@ -6306,18 +6306,18 @@ Av 2018 9 19 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5258302E-03 Av 2018 9 19 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.7724027E-03 Av 2018 9 19 18 0 1.3239093E-02 0.000000 0.000000 1.9485221E-04 0.000000 0.000000 1.8975315E-05 - Av 2018 9 19 19 0 2.2154383E-02 0.000000 0.000000 1.9896661E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 20 0 1.9329920E-02 0.000000 0.000000 1.9890646E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 21 0 2.0303840E-02 0.000000 0.000000 1.9884632E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 22 0 1.9957028E-02 0.000000 0.000000 1.9878621E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 23 0 2.0069450E-02 0.000000 0.000000 1.9872612E-04 0.000000 0.000000 0.000000 - Av 2018 9 19 24 0 2.0022195E-02 0.000000 0.000000 1.9866604E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 1 0 2.0017516E-02 0.000000 0.000000 1.9841542E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 2 0 1.9998044E-02 0.000000 0.000000 1.9835550E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 3 0 1.9996673E-02 0.000000 0.000000 1.9829557E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 4 0 1.9989008E-02 0.000000 0.000000 1.9823569E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 5 0 1.9983536E-02 0.000000 0.000000 1.9817581E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 6 0 1.9977305E-02 0.000000 0.000000 1.9811596E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 19 0 2.2154383E-02 0.000000 0.000000 1.9896661E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 20 0 1.9329920E-02 0.000000 0.000000 1.9890646E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 21 0 2.0303840E-02 0.000000 0.000000 1.9884632E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 22 0 1.9957028E-02 0.000000 0.000000 1.9878621E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 23 0 2.0069450E-02 0.000000 0.000000 1.9872612E-04 0.000000 0.000000 0.000000 + Av 2018 9 19 24 0 2.0022195E-02 0.000000 0.000000 1.9866604E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 1 0 2.0017516E-02 0.000000 0.000000 1.9841542E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 2 0 1.9998044E-02 0.000000 0.000000 1.9835550E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 3 0 1.9996673E-02 0.000000 0.000000 1.9829557E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 4 0 1.9989008E-02 0.000000 0.000000 1.9823569E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 5 0 1.9983536E-02 0.000000 0.000000 1.9817581E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 6 0 1.9977305E-02 0.000000 0.000000 1.9811596E-04 0.000000 0.000000 0.000000 Av 2018 9 20 7 0 9.9871960E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.9097477E-03 Av 2018 9 20 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8809188E-03 Av 2018 9 20 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.8520898E-03 @@ -6329,19 +6329,19 @@ Av 2018 9 20 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.8520898E-03 Av 2018 9 20 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.8809188E-03 Av 2018 9 20 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9097477E-03 - Av 2018 9 20 18 0 1.3412137E-02 0.000000 0.000000 1.9739907E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 19 0 2.2156702E-02 0.000000 0.000000 1.9733944E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 20 0 1.9108038E-02 0.000000 0.000000 1.9727983E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 21 0 2.0159990E-02 0.000000 0.000000 1.9722026E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 22 0 1.9786119E-02 0.000000 0.000000 1.9716068E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 23 0 1.9908022E-02 0.000000 0.000000 1.9710114E-04 0.000000 0.000000 0.000000 - Av 2018 9 20 24 0 1.9857546E-02 0.000000 0.000000 1.9704161E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 1 0 1.9854540E-02 0.000000 0.000000 1.9679857E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 2 0 1.9835038E-02 0.000000 0.000000 1.9673919E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 3 0 1.9833751E-02 0.000000 0.000000 1.9667982E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 4 0 1.9826133E-02 0.000000 0.000000 1.9662047E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 5 0 1.9820716E-02 0.000000 0.000000 1.9656113E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 6 0 1.9814536E-02 0.000000 0.000000 1.9650182E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 18 0 1.3412137E-02 0.000000 0.000000 1.9739907E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 19 0 2.2156702E-02 0.000000 0.000000 1.9733944E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 20 0 1.9108038E-02 0.000000 0.000000 1.9727983E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 21 0 2.0159990E-02 0.000000 0.000000 1.9722026E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 22 0 1.9786119E-02 0.000000 0.000000 1.9716068E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 23 0 1.9908022E-02 0.000000 0.000000 1.9710114E-04 0.000000 0.000000 0.000000 + Av 2018 9 20 24 0 1.9857546E-02 0.000000 0.000000 1.9704161E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 1 0 1.9854540E-02 0.000000 0.000000 1.9679857E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 2 0 1.9835038E-02 0.000000 0.000000 1.9673919E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 3 0 1.9833751E-02 0.000000 0.000000 1.9667982E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 4 0 1.9826133E-02 0.000000 0.000000 1.9662047E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 5 0 1.9820716E-02 0.000000 0.000000 1.9656113E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 6 0 1.9814536E-02 0.000000 0.000000 1.9650182E-04 0.000000 0.000000 0.000000 Av 2018 9 21 7 0 9.9058263E-03 0.000000 0.000000 0.000000 0.000000 0.000000 3.3064219E-03 Av 2018 9 21 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7804111E-03 Av 2018 9 21 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0254401E-02 @@ -6353,19 +6353,19 @@ Av 2018 9 21 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0254401E-02 Av 2018 9 21 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7804111E-03 Av 2018 9 21 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.3064219E-03 - Av 2018 9 21 18 0 1.3302907E-02 0.000000 0.000000 1.9579142E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 19 0 2.1976260E-02 0.000000 0.000000 1.9573234E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 20 0 1.8952429E-02 0.000000 0.000000 1.9567327E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 21 0 1.9995818E-02 0.000000 0.000000 1.9561424E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 22 0 1.9625001E-02 0.000000 0.000000 1.9555520E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 23 0 1.9745916E-02 0.000000 0.000000 1.9549619E-04 0.000000 0.000000 0.000000 - Av 2018 9 21 24 0 1.9695856E-02 0.000000 0.000000 1.9543720E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 1 0 1.9693241E-02 0.000000 0.000000 1.9520152E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 2 0 1.9674137E-02 0.000000 0.000000 1.9514267E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 3 0 1.9672785E-02 0.000000 0.000000 1.9508383E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 4 0 1.9665260E-02 0.000000 0.000000 1.9502502E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 5 0 1.9659886E-02 0.000000 0.000000 1.9496623E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 6 0 1.9961391E-02 0.000000 0.000000 1.9490745E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 9 21 18 0 1.3302907E-02 0.000000 0.000000 1.9579142E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 19 0 2.1976260E-02 0.000000 0.000000 1.9573234E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 20 0 1.8952429E-02 0.000000 0.000000 1.9567327E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 21 0 1.9995818E-02 0.000000 0.000000 1.9561424E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 22 0 1.9625001E-02 0.000000 0.000000 1.9555520E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 23 0 1.9745916E-02 0.000000 0.000000 1.9549619E-04 0.000000 0.000000 0.000000 + Av 2018 9 21 24 0 1.9695856E-02 0.000000 0.000000 1.9543720E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 1 0 1.9693241E-02 0.000000 0.000000 1.9520152E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 2 0 1.9674137E-02 0.000000 0.000000 1.9514267E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 3 0 1.9672785E-02 0.000000 0.000000 1.9508383E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 4 0 1.9665260E-02 0.000000 0.000000 1.9502502E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 5 0 1.9659886E-02 0.000000 0.000000 1.9496623E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 6 0 1.9961391E-02 0.000000 0.000000 1.9490745E-04 0.000000 9.9999802E-03 0.000000 Av 2018 9 22 7 0 1.0133077E-02 0.000000 0.000000 0.000000 0.000000 0.000000 2.6922075E-03 Av 2018 9 22 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 5.6051887E-03 Av 2018 9 22 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.5181696E-03 @@ -6377,19 +6377,19 @@ Av 2018 9 22 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.5181696E-03 Av 2018 9 22 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.6051887E-03 Av 2018 9 22 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.6922075E-03 - Av 2018 9 22 18 0 1.3195016E-02 0.000000 0.000000 1.9420352E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 19 0 2.1798031E-02 0.000000 0.000000 1.9414497E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 20 0 1.8798735E-02 0.000000 0.000000 1.9408645E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 21 0 1.9833665E-02 0.000000 0.000000 1.9402795E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 22 0 1.9465860E-02 0.000000 0.000000 1.9396945E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 23 0 1.9585801E-02 0.000000 0.000000 1.9391098E-04 0.000000 0.000000 0.000000 - Av 2018 9 22 24 0 1.9536152E-02 0.000000 0.000000 1.9385252E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 1 0 1.9533914E-02 0.000000 0.000000 1.9362391E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 2 0 1.9515198E-02 0.000000 0.000000 1.9356560E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 3 0 1.9513782E-02 0.000000 0.000000 1.9350731E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 4 0 1.9506350E-02 0.000000 0.000000 1.9344901E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 5 0 1.9501014E-02 0.000000 0.000000 1.9339073E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 6 0 1.9494953E-02 0.000000 0.000000 1.9333248E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 18 0 1.3195016E-02 0.000000 0.000000 1.9420352E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 19 0 2.1798031E-02 0.000000 0.000000 1.9414497E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 20 0 1.8798735E-02 0.000000 0.000000 1.9408645E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 21 0 1.9833665E-02 0.000000 0.000000 1.9402795E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 22 0 1.9465860E-02 0.000000 0.000000 1.9396945E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 23 0 1.9585801E-02 0.000000 0.000000 1.9391098E-04 0.000000 0.000000 0.000000 + Av 2018 9 22 24 0 1.9536152E-02 0.000000 0.000000 1.9385252E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 1 0 1.9533914E-02 0.000000 0.000000 1.9362391E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 2 0 1.9515198E-02 0.000000 0.000000 1.9356560E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 3 0 1.9513782E-02 0.000000 0.000000 1.9350731E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 4 0 1.9506350E-02 0.000000 0.000000 1.9344901E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 5 0 1.9501014E-02 0.000000 0.000000 1.9339073E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 6 0 1.9494953E-02 0.000000 0.000000 1.9333248E-04 0.000000 0.000000 0.000000 Av 2018 9 23 7 0 9.7460579E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.3894100E-03 Av 2018 9 23 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.0541791E-03 Av 2018 9 23 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7189482E-03 @@ -6401,19 +6401,19 @@ Av 2018 9 23 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7189482E-03 Av 2018 9 23 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.0541791E-03 Av 2018 9 23 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.3894100E-03 - Av 2018 9 23 18 0 1.3088430E-02 0.000000 0.000000 1.9263478E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 19 0 2.1621954E-02 0.000000 0.000000 1.9257674E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 20 0 1.8646888E-02 0.000000 0.000000 1.9251874E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 21 0 1.9673463E-02 0.000000 0.000000 1.9246075E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 22 0 1.9308634E-02 0.000000 0.000000 1.9240277E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 23 0 1.9427612E-02 0.000000 0.000000 1.9234483E-04 0.000000 0.000000 0.000000 - Av 2018 9 23 24 0 1.9378368E-02 0.000000 0.000000 1.9228688E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 1 0 1.9376485E-02 0.000000 0.000000 1.9206508E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 2 0 1.9358143E-02 0.000000 0.000000 1.9200728E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 3 0 1.9356668E-02 0.000000 0.000000 1.9194951E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 4 0 1.9349331E-02 0.000000 0.000000 1.9189176E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 5 0 1.9344036E-02 0.000000 0.000000 1.9183401E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 6 0 1.9338030E-02 0.000000 0.000000 1.9177629E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 18 0 1.3088430E-02 0.000000 0.000000 1.9263478E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 19 0 2.1621954E-02 0.000000 0.000000 1.9257674E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 20 0 1.8646888E-02 0.000000 0.000000 1.9251874E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 21 0 1.9673463E-02 0.000000 0.000000 1.9246075E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 22 0 1.9308634E-02 0.000000 0.000000 1.9240277E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 23 0 1.9427612E-02 0.000000 0.000000 1.9234483E-04 0.000000 0.000000 0.000000 + Av 2018 9 23 24 0 1.9378368E-02 0.000000 0.000000 1.9228688E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 1 0 1.9376485E-02 0.000000 0.000000 1.9206508E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 2 0 1.9358143E-02 0.000000 0.000000 1.9200728E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 3 0 1.9356668E-02 0.000000 0.000000 1.9194951E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 4 0 1.9349331E-02 0.000000 0.000000 1.9189176E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 5 0 1.9344036E-02 0.000000 0.000000 1.9183401E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 6 0 1.9338030E-02 0.000000 0.000000 1.9177629E-04 0.000000 0.000000 0.000000 Av 2018 9 24 7 0 9.6676089E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.3245071E-03 Av 2018 9 24 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9990034E-03 Av 2018 9 24 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6734996E-03 @@ -6425,19 +6425,19 @@ Av 2018 9 24 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.6734996E-03 Av 2018 9 24 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.9990034E-03 Av 2018 9 24 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.3245071E-03 - Av 2018 9 24 18 0 1.2983117E-02 0.000000 0.000000 1.9108479E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 19 0 2.1447983E-02 0.000000 0.000000 1.9102728E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 20 0 1.8496860E-02 0.000000 0.000000 1.9096979E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 21 0 1.9515179E-02 0.000000 0.000000 1.9091231E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 22 0 1.9153293E-02 0.000000 0.000000 1.9085486E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 23 0 1.9271318E-02 0.000000 0.000000 1.9079742E-04 0.000000 0.000000 0.000000 - Av 2018 9 24 24 0 1.9222476E-02 0.000000 0.000000 1.9074000E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 1 0 1.9220933E-02 0.000000 0.000000 1.9052478E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 2 0 1.9202953E-02 0.000000 0.000000 1.9046749E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 3 0 1.9201420E-02 0.000000 0.000000 1.9041021E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 4 0 1.9194171E-02 0.000000 0.000000 1.9035295E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 5 0 1.9188913E-02 0.000000 0.000000 1.9029570E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 6 0 1.9182961E-02 0.000000 0.000000 1.9023847E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 18 0 1.2983117E-02 0.000000 0.000000 1.9108479E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 19 0 2.1447983E-02 0.000000 0.000000 1.9102728E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 20 0 1.8496860E-02 0.000000 0.000000 1.9096979E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 21 0 1.9515179E-02 0.000000 0.000000 1.9091231E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 22 0 1.9153293E-02 0.000000 0.000000 1.9085486E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 23 0 1.9271318E-02 0.000000 0.000000 1.9079742E-04 0.000000 0.000000 0.000000 + Av 2018 9 24 24 0 1.9222476E-02 0.000000 0.000000 1.9074000E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 1 0 1.9220933E-02 0.000000 0.000000 1.9052478E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 2 0 1.9202953E-02 0.000000 0.000000 1.9046749E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 3 0 1.9201420E-02 0.000000 0.000000 1.9041021E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 4 0 1.9194171E-02 0.000000 0.000000 1.9035295E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 5 0 1.9188913E-02 0.000000 0.000000 1.9029570E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 6 0 1.9182961E-02 0.000000 0.000000 1.9023847E-04 0.000000 0.000000 0.000000 Av 2018 9 25 7 0 9.5900856E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.6369444E-03 Av 2018 9 25 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7700891E-03 Av 2018 9 25 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.9032333E-03 @@ -6449,19 +6449,19 @@ Av 2018 9 25 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.9032333E-03 Av 2018 9 25 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7700891E-03 Av 2018 9 25 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.6369444E-03 - Av 2018 9 25 18 0 1.2879048E-02 0.000000 0.000000 1.8955312E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 19 0 2.1276064E-02 0.000000 0.000000 1.8949612E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 20 0 1.8348604E-02 0.000000 0.000000 1.8943915E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 21 0 1.9358765E-02 0.000000 0.000000 1.8938218E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 22 0 1.8999785E-02 0.000000 0.000000 1.8932523E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 23 0 1.9116871E-02 0.000000 0.000000 1.8926832E-04 0.000000 0.000000 0.000000 - Av 2018 9 25 24 0 1.9068426E-02 0.000000 0.000000 1.8921141E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 1 0 1.9067211E-02 0.000000 0.000000 1.8900253E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 2 0 1.9049581E-02 0.000000 0.000000 1.8894575E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 3 0 1.9047998E-02 0.000000 0.000000 1.8888897E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 4 0 1.9040834E-02 0.000000 0.000000 1.8883221E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 5 0 1.9035615E-02 0.000000 0.000000 1.8877549E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 6 0 1.9029722E-02 0.000000 0.000000 1.8871877E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 18 0 1.2879048E-02 0.000000 0.000000 1.8955312E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 19 0 2.1276064E-02 0.000000 0.000000 1.8949612E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 20 0 1.8348604E-02 0.000000 0.000000 1.8943915E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 21 0 1.9358765E-02 0.000000 0.000000 1.8938218E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 22 0 1.8999785E-02 0.000000 0.000000 1.8932523E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 23 0 1.9116871E-02 0.000000 0.000000 1.8926832E-04 0.000000 0.000000 0.000000 + Av 2018 9 25 24 0 1.9068426E-02 0.000000 0.000000 1.8921141E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 1 0 1.9067211E-02 0.000000 0.000000 1.8900253E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 2 0 1.9049581E-02 0.000000 0.000000 1.8894575E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 3 0 1.9047998E-02 0.000000 0.000000 1.8888897E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 4 0 1.9040834E-02 0.000000 0.000000 1.8883221E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 5 0 1.9035615E-02 0.000000 0.000000 1.8877549E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 6 0 1.9029722E-02 0.000000 0.000000 1.8871877E-04 0.000000 0.000000 0.000000 Av 2018 9 26 7 0 9.5134769E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.7830633E-03 Av 2018 9 26 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.2014624E-03 Av 2018 9 26 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.6198609E-03 @@ -6473,19 +6473,19 @@ Av 2018 9 26 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.6198609E-03 Av 2018 9 26 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.2014624E-03 Av 2018 9 26 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.7830633E-03 - Av 2018 9 26 18 0 1.2776205E-02 0.000000 0.000000 1.8803947E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 19 0 2.1106172E-02 0.000000 0.000000 1.8798297E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 20 0 1.8202091E-02 0.000000 0.000000 1.8792647E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 21 0 1.9204192E-02 0.000000 0.000000 1.8787001E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 22 0 1.8848080E-02 0.000000 0.000000 1.8781357E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 23 0 1.8964233E-02 0.000000 0.000000 1.8775713E-04 0.000000 0.000000 0.000000 - Av 2018 9 26 24 0 1.8916178E-02 0.000000 0.000000 1.8770072E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 1 0 1.8915277E-02 0.000000 0.000000 1.8749795E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 2 0 1.8897990E-02 0.000000 0.000000 1.8744166E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 3 0 1.8896352E-02 0.000000 0.000000 1.8738538E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 4 0 1.8889274E-02 0.000000 0.000000 1.8732912E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 5 0 1.8884093E-02 0.000000 0.000000 1.8727288E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 6 0 1.8878251E-02 0.000000 0.000000 1.8721665E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 18 0 1.2776205E-02 0.000000 0.000000 1.8803947E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 19 0 2.1106172E-02 0.000000 0.000000 1.8798297E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 20 0 1.8202091E-02 0.000000 0.000000 1.8792647E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 21 0 1.9204192E-02 0.000000 0.000000 1.8787001E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 22 0 1.8848080E-02 0.000000 0.000000 1.8781357E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 23 0 1.8964233E-02 0.000000 0.000000 1.8775713E-04 0.000000 0.000000 0.000000 + Av 2018 9 26 24 0 1.8916178E-02 0.000000 0.000000 1.8770072E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 1 0 1.8915277E-02 0.000000 0.000000 1.8749795E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 2 0 1.8897990E-02 0.000000 0.000000 1.8744166E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 3 0 1.8896352E-02 0.000000 0.000000 1.8738538E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 4 0 1.8889274E-02 0.000000 0.000000 1.8732912E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 5 0 1.8884093E-02 0.000000 0.000000 1.8727288E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 6 0 1.8878251E-02 0.000000 0.000000 1.8721665E-04 0.000000 0.000000 0.000000 Av 2018 9 27 7 0 9.4377538E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.8895999E-03 Av 2018 9 27 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.5627419E-03 Av 2018 9 27 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0235884E-02 @@ -6497,19 +6497,19 @@ Av 2018 9 27 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0235884E-02 Av 2018 9 27 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.5627419E-03 Av 2018 9 27 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8895999E-03 - Av 2018 9 27 18 0 1.2674551E-02 0.000000 0.000000 1.8654330E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 19 0 2.0938240E-02 0.000000 0.000000 1.8648729E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 20 0 1.8057272E-02 0.000000 0.000000 1.8643129E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 21 0 1.9051403E-02 0.000000 0.000000 1.8637533E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 22 0 1.8698128E-02 0.000000 0.000000 1.8631936E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 23 0 1.8813360E-02 0.000000 0.000000 1.8626342E-04 0.000000 0.000000 0.000000 - Av 2018 9 27 24 0 1.8765695E-02 0.000000 0.000000 1.8620750E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 1 0 1.8765094E-02 0.000000 0.000000 1.8601064E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 2 0 1.8748134E-02 0.000000 0.000000 1.8595484E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 3 0 1.8746451E-02 0.000000 0.000000 1.8589904E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 4 0 1.8739454E-02 0.000000 0.000000 1.8584327E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 5 0 1.8734310E-02 0.000000 0.000000 1.8578752E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 6 0 1.8728524E-02 0.000000 0.000000 1.8573178E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 18 0 1.2674551E-02 0.000000 0.000000 1.8654330E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 19 0 2.0938240E-02 0.000000 0.000000 1.8648729E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 20 0 1.8057272E-02 0.000000 0.000000 1.8643129E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 21 0 1.9051403E-02 0.000000 0.000000 1.8637533E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 22 0 1.8698128E-02 0.000000 0.000000 1.8631936E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 23 0 1.8813360E-02 0.000000 0.000000 1.8626342E-04 0.000000 0.000000 0.000000 + Av 2018 9 27 24 0 1.8765695E-02 0.000000 0.000000 1.8620750E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 1 0 1.8765094E-02 0.000000 0.000000 1.8601064E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 2 0 1.8748134E-02 0.000000 0.000000 1.8595484E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 3 0 1.8746451E-02 0.000000 0.000000 1.8589904E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 4 0 1.8739454E-02 0.000000 0.000000 1.8584327E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 5 0 1.8734310E-02 0.000000 0.000000 1.8578752E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 6 0 1.8728524E-02 0.000000 0.000000 1.8573178E-04 0.000000 0.000000 0.000000 Av 2018 9 28 7 0 9.3629016E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.9389861E-03 Av 2018 9 28 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8098633E-03 Av 2018 9 28 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0680740E-02 @@ -6521,19 +6521,19 @@ Av 2018 9 28 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0680740E-02 Av 2018 9 28 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8098633E-03 Av 2018 9 28 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9389861E-03 - Av 2018 9 28 18 0 1.2574057E-02 0.000000 0.000000 1.8506426E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 19 0 2.0772230E-02 0.000000 0.000000 1.8500873E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 20 0 1.7914109E-02 0.000000 0.000000 1.8495323E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 21 0 1.8900361E-02 0.000000 0.000000 1.8489774E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 22 0 1.8549893E-02 0.000000 0.000000 1.8484227E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 23 0 1.8664218E-02 0.000000 0.000000 1.8478683E-04 0.000000 0.000000 0.000000 - Av 2018 9 28 24 0 1.8616933E-02 0.000000 0.000000 1.8473140E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 1 0 1.8616620E-02 0.000000 0.000000 1.8454023E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 2 0 1.8599981E-02 0.000000 0.000000 1.8448490E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 3 0 1.8598251E-02 0.000000 0.000000 1.8442961E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 4 0 1.8591341E-02 0.000000 0.000000 1.8437432E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 5 0 1.8586230E-02 0.000000 0.000000 1.8431905E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 6 0 1.8580496E-02 0.000000 0.000000 1.8426380E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 18 0 1.2574057E-02 0.000000 0.000000 1.8506426E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 19 0 2.0772230E-02 0.000000 0.000000 1.8500873E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 20 0 1.7914109E-02 0.000000 0.000000 1.8495323E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 21 0 1.8900361E-02 0.000000 0.000000 1.8489774E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 22 0 1.8549893E-02 0.000000 0.000000 1.8484227E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 23 0 1.8664218E-02 0.000000 0.000000 1.8478683E-04 0.000000 0.000000 0.000000 + Av 2018 9 28 24 0 1.8616933E-02 0.000000 0.000000 1.8473140E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 1 0 1.8616620E-02 0.000000 0.000000 1.8454023E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 2 0 1.8599981E-02 0.000000 0.000000 1.8448490E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 3 0 1.8598251E-02 0.000000 0.000000 1.8442961E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 4 0 1.8591341E-02 0.000000 0.000000 1.8437432E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 5 0 1.8586230E-02 0.000000 0.000000 1.8431905E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 6 0 1.8580496E-02 0.000000 0.000000 1.8426380E-04 0.000000 0.000000 0.000000 Av 2018 9 29 7 0 9.2888987E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.2237787E-03 Av 2018 9 29 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.2622920E-03 Av 2018 9 29 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.3008055E-03 @@ -6545,19 +6545,19 @@ Av 2018 9 29 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.3008055E-03 Av 2018 9 29 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.2622920E-03 Av 2018 9 29 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 2.2237787E-03 - Av 2018 9 29 18 0 1.2474707E-02 0.000000 0.000000 1.8360202E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 19 0 2.0608108E-02 0.000000 0.000000 1.8354699E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 20 0 1.7772574E-02 0.000000 0.000000 1.8349197E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 21 0 1.8751040E-02 0.000000 0.000000 1.8343698E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 22 0 1.8403344E-02 0.000000 0.000000 1.8338198E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 23 0 1.8516768E-02 0.000000 0.000000 1.8332699E-04 0.000000 0.000000 0.000000 - Av 2018 9 29 24 0 1.8469859E-02 0.000000 0.000000 1.8327203E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 1 0 1.8469822E-02 0.000000 0.000000 1.8308636E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 2 0 1.8453492E-02 0.000000 0.000000 1.8303150E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 3 0 1.8451717E-02 0.000000 0.000000 1.8297667E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 4 0 1.8444885E-02 0.000000 0.000000 1.8292185E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 5 0 1.8439811E-02 0.000000 0.000000 1.8286705E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 6 0 1.8434132E-02 0.000000 0.000000 1.8281228E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 18 0 1.2474707E-02 0.000000 0.000000 1.8360202E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 19 0 2.0608108E-02 0.000000 0.000000 1.8354699E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 20 0 1.7772574E-02 0.000000 0.000000 1.8349197E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 21 0 1.8751040E-02 0.000000 0.000000 1.8343698E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 22 0 1.8403344E-02 0.000000 0.000000 1.8338198E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 23 0 1.8516768E-02 0.000000 0.000000 1.8332699E-04 0.000000 0.000000 0.000000 + Av 2018 9 29 24 0 1.8469859E-02 0.000000 0.000000 1.8327203E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 1 0 1.8469822E-02 0.000000 0.000000 1.8308636E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 2 0 1.8453492E-02 0.000000 0.000000 1.8303150E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 3 0 1.8451717E-02 0.000000 0.000000 1.8297667E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 4 0 1.8444885E-02 0.000000 0.000000 1.8292185E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 5 0 1.8439811E-02 0.000000 0.000000 1.8286705E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 6 0 1.8434132E-02 0.000000 0.000000 1.8281228E-04 0.000000 0.000000 0.000000 Av 2018 9 30 7 0 9.2157274E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.0222452E-03 Av 2018 9 30 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8926640E-03 Av 2018 9 30 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7630826E-03 @@ -6569,19 +6569,19 @@ Av 2018 9 30 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7630826E-03 Av 2018 9 30 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8926640E-03 Av 2018 9 30 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 2.0222452E-03 - Av 2018 9 30 18 0 1.2376470E-02 0.000000 0.000000 1.8215619E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 19 0 2.0445824E-02 0.000000 0.000000 1.8210163E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 20 0 1.7632626E-02 0.000000 0.000000 1.8204708E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 21 0 1.8603388E-02 0.000000 0.000000 1.8199255E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 22 0 1.8258438E-02 0.000000 0.000000 1.8193804E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 23 0 1.8370973E-02 0.000000 0.000000 1.8188354E-04 0.000000 0.000000 0.000000 - Av 2018 9 30 24 0 1.8324438E-02 0.000000 0.000000 1.8182906E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 1 0 1.8324662E-02 0.000000 0.000000 1.8164869E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 2 0 1.8308636E-02 0.000000 0.000000 1.8159430E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 3 0 1.8306818E-02 0.000000 0.000000 1.8153993E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 4 0 1.8300062E-02 0.000000 0.000000 1.8148558E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 5 0 1.8295027E-02 0.000000 0.000000 1.8143126E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 6 0 1.8289395E-02 0.000000 0.000000 1.8137693E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 18 0 1.2376470E-02 0.000000 0.000000 1.8215619E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 19 0 2.0445824E-02 0.000000 0.000000 1.8210163E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 20 0 1.7632626E-02 0.000000 0.000000 1.8204708E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 21 0 1.8603388E-02 0.000000 0.000000 1.8199255E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 22 0 1.8258438E-02 0.000000 0.000000 1.8193804E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 23 0 1.8370973E-02 0.000000 0.000000 1.8188354E-04 0.000000 0.000000 0.000000 + Av 2018 9 30 24 0 1.8324438E-02 0.000000 0.000000 1.8182906E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 1 0 1.8324662E-02 0.000000 0.000000 1.8164869E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 2 0 1.8308636E-02 0.000000 0.000000 1.8159430E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 3 0 1.8306818E-02 0.000000 0.000000 1.8153993E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 4 0 1.8300062E-02 0.000000 0.000000 1.8148558E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 5 0 1.8295027E-02 0.000000 0.000000 1.8143126E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 6 0 1.8289395E-02 0.000000 0.000000 1.8137693E-04 0.000000 0.000000 0.000000 Av 2018 10 1 7 0 9.1433693E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.9399358E-03 Av 2018 10 1 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8634228E-03 Av 2018 10 1 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7869100E-03 @@ -6593,19 +6593,19 @@ Av 2018 10 1 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7869100E-03 Av 2018 10 1 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8634228E-03 Av 2018 10 1 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.9399358E-03 - Av 2018 10 1 18 0 1.2279328E-02 0.000000 0.000000 1.8072645E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 19 0 2.0285349E-02 0.000000 0.000000 1.8067234E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 20 0 1.7494233E-02 0.000000 0.000000 1.8061827E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 21 0 1.8457381E-02 0.000000 0.000000 1.8056421E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 22 0 1.8115140E-02 0.000000 0.000000 1.8051016E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 23 0 1.8226799E-02 0.000000 0.000000 1.8045613E-04 0.000000 0.000000 0.000000 - Av 2018 10 1 24 0 1.8180631E-02 0.000000 0.000000 1.8040210E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 1 0 1.8181104E-02 0.000000 0.000000 1.8022684E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 2 0 1.8165370E-02 0.000000 0.000000 1.8017292E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 3 0 1.8163513E-02 0.000000 0.000000 1.8011901E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 4 0 1.8156834E-02 0.000000 0.000000 1.8006512E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 5 0 1.8151836E-02 0.000000 0.000000 1.8001127E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 6 0 1.8146254E-02 0.000000 0.000000 1.7995741E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 18 0 1.2279328E-02 0.000000 0.000000 1.8072645E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 19 0 2.0285349E-02 0.000000 0.000000 1.8067234E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 20 0 1.7494233E-02 0.000000 0.000000 1.8061827E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 21 0 1.8457381E-02 0.000000 0.000000 1.8056421E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 22 0 1.8115140E-02 0.000000 0.000000 1.8051016E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 23 0 1.8226799E-02 0.000000 0.000000 1.8045613E-04 0.000000 0.000000 0.000000 + Av 2018 10 1 24 0 1.8180631E-02 0.000000 0.000000 1.8040210E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 1 0 1.8181104E-02 0.000000 0.000000 1.8022684E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 2 0 1.8165370E-02 0.000000 0.000000 1.8017292E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 3 0 1.8163513E-02 0.000000 0.000000 1.8011901E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 4 0 1.8156834E-02 0.000000 0.000000 1.8006512E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 5 0 1.8151836E-02 0.000000 0.000000 1.8001127E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 6 0 1.8146254E-02 0.000000 0.000000 1.7995741E-04 0.000000 0.000000 0.000000 Av 2018 10 2 7 0 9.0718102E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.6559287E-03 Av 2018 10 2 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2582131E-03 Av 2018 10 2 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8604974E-03 @@ -6617,19 +6617,19 @@ Av 2018 10 2 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8604974E-03 Av 2018 10 2 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2582131E-03 Av 2018 10 2 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.6559287E-03 - Av 2018 10 2 18 0 1.2183255E-02 0.000000 0.000000 1.7931245E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 19 0 2.0126641E-02 0.000000 0.000000 1.7925883E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 20 0 1.7357368E-02 0.000000 0.000000 1.7920521E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 21 0 1.8312981E-02 0.000000 0.000000 1.7915158E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 22 0 1.7973421E-02 0.000000 0.000000 1.7909799E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 23 0 1.8084208E-02 0.000000 0.000000 1.7904441E-04 0.000000 0.000000 0.000000 - Av 2018 10 2 24 0 1.8038405E-02 0.000000 0.000000 1.7899084E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 1 0 1.8039118E-02 0.000000 0.000000 1.7882053E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 2 0 1.8023668E-02 0.000000 0.000000 1.7876706E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 3 0 1.8021777E-02 0.000000 0.000000 1.7871363E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 4 0 1.8015174E-02 0.000000 0.000000 1.7866021E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 5 0 1.8010212E-02 0.000000 0.000000 1.7860680E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 6 0 1.8004680E-02 0.000000 0.000000 1.7855340E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 18 0 1.2183255E-02 0.000000 0.000000 1.7931245E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 19 0 2.0126641E-02 0.000000 0.000000 1.7925883E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 20 0 1.7357368E-02 0.000000 0.000000 1.7920521E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 21 0 1.8312981E-02 0.000000 0.000000 1.7915158E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 22 0 1.7973421E-02 0.000000 0.000000 1.7909799E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 23 0 1.8084208E-02 0.000000 0.000000 1.7904441E-04 0.000000 0.000000 0.000000 + Av 2018 10 2 24 0 1.8038405E-02 0.000000 0.000000 1.7899084E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 1 0 1.8039118E-02 0.000000 0.000000 1.7882053E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 2 0 1.8023668E-02 0.000000 0.000000 1.7876706E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 3 0 1.8021777E-02 0.000000 0.000000 1.7871363E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 4 0 1.8015174E-02 0.000000 0.000000 1.7866021E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 5 0 1.8010212E-02 0.000000 0.000000 1.7860680E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 6 0 1.8004680E-02 0.000000 0.000000 1.7855340E-04 0.000000 0.000000 0.000000 Av 2018 10 3 7 0 9.0010334E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.3214825E-03 Av 2018 10 3 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4908361E-03 Av 2018 10 3 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.6601898E-03 @@ -6641,19 +6641,19 @@ Av 2018 10 3 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.6601898E-03 Av 2018 10 3 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4908361E-03 Av 2018 10 3 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.3214825E-03 - Av 2018 10 3 18 0 1.2088229E-02 0.000000 0.000000 1.7791387E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 19 0 1.9969661E-02 0.000000 0.000000 1.7786068E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 20 0 1.7221991E-02 0.000000 0.000000 1.7780751E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 21 0 1.8170156E-02 0.000000 0.000000 1.7775435E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 22 0 1.7833246E-02 0.000000 0.000000 1.7770121E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 23 0 1.7943172E-02 0.000000 0.000000 1.7764809E-04 0.000000 0.000000 0.000000 - Av 2018 10 3 24 0 1.7897733E-02 0.000000 0.000000 1.7759499E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 1 0 1.7898677E-02 0.000000 0.000000 1.7742944E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 2 0 1.7883498E-02 0.000000 0.000000 1.7737642E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 3 0 1.7881572E-02 0.000000 0.000000 1.7732343E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 4 0 1.7875042E-02 0.000000 0.000000 1.7727044E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 5 0 1.7870113E-02 0.000000 0.000000 1.7721747E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 6 0 1.7864630E-02 0.000000 0.000000 1.7716453E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 18 0 1.2088229E-02 0.000000 0.000000 1.7791387E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 19 0 1.9969661E-02 0.000000 0.000000 1.7786068E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 20 0 1.7221991E-02 0.000000 0.000000 1.7780751E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 21 0 1.8170156E-02 0.000000 0.000000 1.7775435E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 22 0 1.7833246E-02 0.000000 0.000000 1.7770121E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 23 0 1.7943172E-02 0.000000 0.000000 1.7764809E-04 0.000000 0.000000 0.000000 + Av 2018 10 3 24 0 1.7897733E-02 0.000000 0.000000 1.7759499E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 1 0 1.7898677E-02 0.000000 0.000000 1.7742944E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 2 0 1.7883498E-02 0.000000 0.000000 1.7737642E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 3 0 1.7881572E-02 0.000000 0.000000 1.7732343E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 4 0 1.7875042E-02 0.000000 0.000000 1.7727044E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 5 0 1.7870113E-02 0.000000 0.000000 1.7721747E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 6 0 1.7864630E-02 0.000000 0.000000 1.7716453E-04 0.000000 0.000000 0.000000 Av 2018 10 4 7 0 8.9310203E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.4343989E-03 Av 2018 10 4 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.8988211E-03 Av 2018 10 4 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.3632433E-03 @@ -6665,19 +6665,19 @@ Av 2018 10 4 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.3632433E-03 Av 2018 10 4 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.8988211E-03 Av 2018 10 4 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.4343989E-03 - Av 2018 10 4 18 0 1.1994231E-02 0.000000 0.000000 1.7653040E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 19 0 1.9814376E-02 0.000000 0.000000 1.7647765E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 20 0 1.7088078E-02 0.000000 0.000000 1.7642493E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 21 0 1.8028870E-02 0.000000 0.000000 1.7637221E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 22 0 1.7694585E-02 0.000000 0.000000 1.7631952E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 23 0 1.7803660E-02 0.000000 0.000000 1.7626684E-04 0.000000 0.000000 0.000000 - Av 2018 10 4 24 0 1.7758578E-02 0.000000 0.000000 1.7621419E-04 0.000000 0.000000 0.000000 - Av 2018 10 5 1 0 1.7759740E-02 0.000000 0.000000 1.7605323E-04 0.000000 0.000000 0.000000 - Av 2018 10 5 2 0 1.7744828E-02 0.000000 0.000000 1.7600067E-04 0.000000 0.000000 0.000000 - Av 2018 10 5 3 0 1.7742870E-02 0.000000 0.000000 1.7594811E-04 0.000000 0.000000 0.000000 - Av 2018 10 5 4 0 1.7736411E-02 0.000000 0.000000 1.7589558E-04 0.000000 0.000000 0.000000 - Av 2018 10 5 5 0 1.7731519E-02 0.000000 0.000000 1.7584306E-04 0.000000 0.000000 0.000000 - Av 2018 10 5 6 0 1.7726084E-02 0.000000 0.000000 1.7579056E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 18 0 1.1994231E-02 0.000000 0.000000 1.7653040E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 19 0 1.9814376E-02 0.000000 0.000000 1.7647765E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 20 0 1.7088078E-02 0.000000 0.000000 1.7642493E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 21 0 1.8028870E-02 0.000000 0.000000 1.7637221E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 22 0 1.7694585E-02 0.000000 0.000000 1.7631952E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 23 0 1.7803660E-02 0.000000 0.000000 1.7626684E-04 0.000000 0.000000 0.000000 + Av 2018 10 4 24 0 1.7758578E-02 0.000000 0.000000 1.7621419E-04 0.000000 0.000000 0.000000 + Av 2018 10 5 1 0 1.7759740E-02 0.000000 0.000000 1.7605323E-04 0.000000 0.000000 0.000000 + Av 2018 10 5 2 0 1.7744828E-02 0.000000 0.000000 1.7600067E-04 0.000000 0.000000 0.000000 + Av 2018 10 5 3 0 1.7742870E-02 0.000000 0.000000 1.7594811E-04 0.000000 0.000000 0.000000 + Av 2018 10 5 4 0 1.7736411E-02 0.000000 0.000000 1.7589558E-04 0.000000 0.000000 0.000000 + Av 2018 10 5 5 0 1.7731519E-02 0.000000 0.000000 1.7584306E-04 0.000000 0.000000 0.000000 + Av 2018 10 5 6 0 1.7726084E-02 0.000000 0.000000 1.7579056E-04 0.000000 0.000000 0.000000 Av 2018 10 5 7 0 8.8617560E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.0521354E-03 Av 2018 10 5 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 2.9999940E-02 2.9479065E-03 Av 2018 10 5 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 1.9999960E-02 4.8436774E-03 @@ -6689,19 +6689,19 @@ Av 2018 10 5 15 0 0.1751103 0.000000 0.000000 0.000000 1.0746576E-02 9.9999802E-03 4.8436774E-03 Av 2018 10 5 16 0 0.1088311 3.6639000E-10 0.000000 0.000000 1.4034630E-02 1.9999960E-02 2.9479065E-03 Av 2018 10 5 17 0 8.9288697E-02 0.000000 0.000000 0.000000 3.7082045E-03 0.000000 1.0521354E-03 - Av 2018 10 5 18 0 2.0975329E-02 0.000000 0.000000 1.7569037E-04 1.3302333E-03 0.000000 0.000000 - Av 2018 10 5 19 0 5.3980827E-02 0.000000 0.000000 1.7564843E-04 4.1097552E-03 9.9999802E-03 0.000000 - Av 2018 10 5 20 0 4.4771843E-02 0.000000 0.000000 1.7561432E-04 1.6646971E-03 0.000000 0.000000 - Av 2018 10 5 21 0 0.2290310 2.5912188E-09 0.000000 1.7562829E-04 3.0626049E-02 3.9999921E-02 0.000000 - Av 2018 10 5 22 0 0.9077531 2.5283196E-08 0.000000 1.7588939E-04 0.1084845 0.1199998 0.000000 - Av 2018 10 5 23 0 0.6904883 2.4536254E-10 0.000000 1.7620400E-04 2.3838505E-02 9.9999802E-03 0.000000 - Av 2018 10 5 24 0 0.1527172 9.9656172E-10 0.000000 1.7623529E-04 2.0714479E-02 1.9999960E-02 0.000000 - Av 2018 10 6 1 0 0.1957240 3.0934080E-10 0.000000 1.7616365E-04 1.2208721E-02 9.9999802E-03 0.000000 - Av 2018 10 6 2 0 0.1647200 1.0447166E-09 0.000000 1.7619875E-04 1.8167142E-02 1.9999960E-02 0.000000 - Av 2018 10 6 3 0 0.1734025 2.7000135E-10 0.000000 1.7624663E-04 1.1917805E-02 9.9999802E-03 0.000000 - Av 2018 10 6 4 0 6.7353733E-02 0.000000 0.000000 1.7623298E-04 3.1883880E-03 0.000000 0.000000 - Av 2018 10 6 5 0 3.0236822E-02 0.000000 0.000000 1.7618020E-04 1.1845864E-03 0.000000 0.000000 - Av 2018 10 6 6 0 2.5170902E-02 0.000000 0.000000 1.7612743E-04 5.4436357E-04 0.000000 0.000000 + Av 2018 10 5 18 0 2.0975329E-02 0.000000 0.000000 1.7569037E-04 1.3302333E-03 0.000000 0.000000 + Av 2018 10 5 19 0 5.3980827E-02 0.000000 0.000000 1.7564843E-04 4.1097552E-03 9.9999802E-03 0.000000 + Av 2018 10 5 20 0 4.4771843E-02 0.000000 0.000000 1.7561432E-04 1.6646971E-03 0.000000 0.000000 + Av 2018 10 5 21 0 0.2290310 2.5912188E-09 0.000000 1.7562829E-04 3.0626049E-02 3.9999921E-02 0.000000 + Av 2018 10 5 22 0 0.9077531 2.5283196E-08 0.000000 1.7588939E-04 0.1084845 0.1199998 0.000000 + Av 2018 10 5 23 0 0.6904883 2.4536254E-10 0.000000 1.7620400E-04 2.3838505E-02 9.9999802E-03 0.000000 + Av 2018 10 5 24 0 0.1527172 9.9656172E-10 0.000000 1.7623529E-04 2.0714479E-02 1.9999960E-02 0.000000 + Av 2018 10 6 1 0 0.1957240 3.0934080E-10 0.000000 1.7616365E-04 1.2208721E-02 9.9999802E-03 0.000000 + Av 2018 10 6 2 0 0.1647200 1.0447166E-09 0.000000 1.7619875E-04 1.8167142E-02 1.9999960E-02 0.000000 + Av 2018 10 6 3 0 0.1734025 2.7000135E-10 0.000000 1.7624663E-04 1.1917805E-02 9.9999802E-03 0.000000 + Av 2018 10 6 4 0 6.7353733E-02 0.000000 0.000000 1.7623298E-04 3.1883880E-03 0.000000 0.000000 + Av 2018 10 6 5 0 3.0236822E-02 0.000000 0.000000 1.7618020E-04 1.1845864E-03 0.000000 0.000000 + Av 2018 10 6 6 0 2.5170902E-02 0.000000 0.000000 1.7612743E-04 5.4436357E-04 0.000000 0.000000 Av 2018 10 6 7 0 1.0598555E-02 0.000000 0.000000 0.000000 2.8920884E-04 0.000000 1.2798238E-03 Av 2018 10 6 8 0 3.5395548E-02 2.1667726E-10 0.000000 0.000000 5.2094953E-03 9.9999802E-03 3.7036939E-03 Av 2018 10 6 9 0 3.6914673E-02 0.000000 0.000000 0.000000 2.0865283E-03 0.000000 6.1275638E-03 @@ -6713,19 +6713,19 @@ Av 2018 10 6 15 0 6.4417010E-04 0.000000 0.000000 0.000000 6.3426829E-05 0.000000 6.1275638E-03 Av 2018 10 6 16 0 4.3614890E-04 0.000000 0.000000 0.000000 4.5519802E-05 0.000000 3.7036939E-03 Av 2018 10 6 17 0 3.4913601E-04 0.000000 0.000000 0.000000 3.3802218E-05 0.000000 1.2798238E-03 - Av 2018 10 6 18 0 1.3201229E-02 0.000000 0.000000 1.7555016E-04 1.7293057E-04 0.000000 0.000000 - Av 2018 10 6 19 0 2.0436464E-02 0.000000 0.000000 1.7549758E-04 0.000000 0.000000 0.000000 - Av 2018 10 6 20 0 1.6738601E-02 0.000000 0.000000 1.7544503E-04 0.000000 0.000000 0.000000 - Av 2018 10 6 21 0 1.8017242E-02 0.000000 0.000000 1.7539250E-04 0.000000 0.000000 0.000000 - Av 2018 10 6 22 0 1.7565507E-02 0.000000 0.000000 1.7533997E-04 0.000000 0.000000 0.000000 - Av 2018 10 6 23 0 1.7715443E-02 0.000000 0.000000 1.7528745E-04 0.000000 0.000000 0.000000 - Av 2018 10 6 24 0 1.7656174E-02 0.000000 0.000000 1.7523495E-04 0.000000 0.000000 0.000000 - Av 2018 10 7 1 0 1.7661501E-02 0.000000 0.000000 1.7506252E-04 0.000000 0.000000 0.000000 - Av 2018 10 7 2 0 1.7644372E-02 0.000000 0.000000 1.7501014E-04 0.000000 0.000000 0.000000 - Av 2018 10 7 3 0 1.7643210E-02 0.000000 0.000000 1.7495776E-04 0.000000 0.000000 0.000000 - Av 2018 10 7 4 0 1.7636498E-02 0.000000 0.000000 1.7490541E-04 0.000000 0.000000 0.000000 - Av 2018 10 7 5 0 1.7631719E-02 0.000000 0.000000 1.7485308E-04 0.000000 0.000000 0.000000 - Av 2018 10 7 6 0 1.7626269E-02 0.000000 0.000000 1.7480073E-04 0.000000 0.000000 0.000000 + Av 2018 10 6 18 0 1.3201229E-02 0.000000 0.000000 1.7555016E-04 1.7293057E-04 0.000000 0.000000 + Av 2018 10 6 19 0 2.0436464E-02 0.000000 0.000000 1.7549758E-04 0.000000 0.000000 0.000000 + Av 2018 10 6 20 0 1.6738601E-02 0.000000 0.000000 1.7544503E-04 0.000000 0.000000 0.000000 + Av 2018 10 6 21 0 1.8017242E-02 0.000000 0.000000 1.7539250E-04 0.000000 0.000000 0.000000 + Av 2018 10 6 22 0 1.7565507E-02 0.000000 0.000000 1.7533997E-04 0.000000 0.000000 0.000000 + Av 2018 10 6 23 0 1.7715443E-02 0.000000 0.000000 1.7528745E-04 0.000000 0.000000 0.000000 + Av 2018 10 6 24 0 1.7656174E-02 0.000000 0.000000 1.7523495E-04 0.000000 0.000000 0.000000 + Av 2018 10 7 1 0 1.7661501E-02 0.000000 0.000000 1.7506252E-04 0.000000 0.000000 0.000000 + Av 2018 10 7 2 0 1.7644372E-02 0.000000 0.000000 1.7501014E-04 0.000000 0.000000 0.000000 + Av 2018 10 7 3 0 1.7643210E-02 0.000000 0.000000 1.7495776E-04 0.000000 0.000000 0.000000 + Av 2018 10 7 4 0 1.7636498E-02 0.000000 0.000000 1.7490541E-04 0.000000 0.000000 0.000000 + Av 2018 10 7 5 0 1.7631719E-02 0.000000 0.000000 1.7485308E-04 0.000000 0.000000 0.000000 + Av 2018 10 7 6 0 1.7626269E-02 0.000000 0.000000 1.7480073E-04 0.000000 0.000000 0.000000 Av 2018 10 7 7 0 8.8118613E-03 0.000000 0.000000 0.000000 0.000000 0.000000 9.9274714E-04 Av 2018 10 7 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9738797E-03 Av 2018 10 7 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 4.9550119E-03 @@ -6737,19 +6737,19 @@ Av 2018 10 7 15 0 5.8506923E-03 0.000000 0.000000 0.000000 6.6639716E-04 0.000000 4.9550119E-03 Av 2018 10 7 16 0 4.8736408E-03 0.000000 0.000000 0.000000 3.4157460E-04 9.9999802E-03 2.9738797E-03 Av 2018 10 7 17 0 2.0784140E-03 0.000000 0.000000 0.000000 1.9610449E-04 0.000000 9.9274714E-04 - Av 2018 10 7 18 0 1.3269848E-02 0.000000 0.000000 1.7426017E-04 1.2235838E-04 0.000000 0.000000 - Av 2018 10 7 19 0 2.1103710E-02 0.000000 0.000000 1.7421035E-04 1.2775941E-04 9.9999802E-03 0.000000 - Av 2018 10 7 20 0 5.8210701E-02 2.8328467E-10 0.000000 1.7418456E-04 5.9424103E-03 9.9999802E-03 0.000000 - Av 2018 10 7 21 0 0.1602345 1.1502896E-09 0.000000 1.7421594E-04 1.6893914E-02 1.9999960E-02 0.000000 - Av 2018 10 7 22 0 0.2197058 1.1858458E-09 0.000000 1.7428634E-04 1.9660581E-02 1.9999960E-02 0.000000 - Av 2018 10 7 23 0 0.1143129 0.000000 0.000000 1.7431227E-04 4.6236250E-03 0.000000 0.000000 - Av 2018 10 7 24 0 7.2116747E-02 3.0572581E-10 0.000000 1.7428231E-04 8.3216811E-03 9.9999802E-03 0.000000 - Av 2018 10 8 1 0 0.1224793 3.7314604E-10 0.000000 1.7417644E-04 9.7624194E-03 9.9999802E-03 0.000000 - Av 2018 10 8 2 0 0.1166501 3.1462269E-10 0.000000 1.7420117E-04 9.9692000E-03 9.9999802E-03 0.000000 - Av 2018 10 8 3 0 0.1202320 3.1892958E-10 0.000000 1.7422142E-04 9.9959997E-03 9.9999802E-03 0.000000 - Av 2018 10 8 4 0 0.1192176 3.2349942E-10 0.000000 1.7424168E-04 9.9994624E-03 9.9999802E-03 0.000000 - Av 2018 10 8 5 0 0.1195934 3.2787056E-10 0.000000 1.7426192E-04 9.9999094E-03 9.9999802E-03 0.000000 - Av 2018 10 8 6 0 0.1194712 3.3227252E-10 0.000000 1.7428216E-04 9.9999672E-03 9.9999802E-03 0.000000 + Av 2018 10 7 18 0 1.3269848E-02 0.000000 0.000000 1.7426017E-04 1.2235838E-04 0.000000 0.000000 + Av 2018 10 7 19 0 2.1103710E-02 0.000000 0.000000 1.7421035E-04 1.2775941E-04 9.9999802E-03 0.000000 + Av 2018 10 7 20 0 5.8210701E-02 2.8328467E-10 0.000000 1.7418456E-04 5.9424103E-03 9.9999802E-03 0.000000 + Av 2018 10 7 21 0 0.1602345 1.1502896E-09 0.000000 1.7421594E-04 1.6893914E-02 1.9999960E-02 0.000000 + Av 2018 10 7 22 0 0.2197058 1.1858458E-09 0.000000 1.7428634E-04 1.9660581E-02 1.9999960E-02 0.000000 + Av 2018 10 7 23 0 0.1143129 0.000000 0.000000 1.7431227E-04 4.6236250E-03 0.000000 0.000000 + Av 2018 10 7 24 0 7.2116747E-02 3.0572581E-10 0.000000 1.7428231E-04 8.3216811E-03 9.9999802E-03 0.000000 + Av 2018 10 8 1 0 0.1224793 3.7314604E-10 0.000000 1.7417644E-04 9.7624194E-03 9.9999802E-03 0.000000 + Av 2018 10 8 2 0 0.1166501 3.1462269E-10 0.000000 1.7420117E-04 9.9692000E-03 9.9999802E-03 0.000000 + Av 2018 10 8 3 0 0.1202320 3.1892958E-10 0.000000 1.7422142E-04 9.9959997E-03 9.9999802E-03 0.000000 + Av 2018 10 8 4 0 0.1192176 3.2349942E-10 0.000000 1.7424168E-04 9.9994624E-03 9.9999802E-03 0.000000 + Av 2018 10 8 5 0 0.1195934 3.2787056E-10 0.000000 1.7426192E-04 9.9999094E-03 9.9999802E-03 0.000000 + Av 2018 10 8 6 0 0.1194712 3.3227252E-10 0.000000 1.7428216E-04 9.9999672E-03 9.9999802E-03 0.000000 Av 2018 10 8 7 0 5.9768621E-02 0.000000 0.000000 0.000000 2.8066770E-03 0.000000 1.0918215E-03 Av 2018 10 8 8 0 7.2940653E-03 0.000000 0.000000 0.000000 1.0735365E-03 0.000000 3.3939169E-03 Av 2018 10 8 9 0 2.9624272E-02 1.1564933E-10 0.000000 0.000000 3.6433786E-03 9.9999802E-03 5.6960122E-03 @@ -6761,19 +6761,19 @@ Av 2018 10 8 15 0 8.7930867E-04 0.000000 0.000000 0.000000 8.1581995E-05 9.9999802E-03 5.6960122E-03 Av 2018 10 8 16 0 6.4325967E-04 0.000000 0.000000 0.000000 5.6935976E-05 0.000000 3.3939169E-03 Av 2018 10 8 17 0 4.0673997E-04 0.000000 0.000000 0.000000 4.1331441E-05 0.000000 1.0918215E-03 - Av 2018 10 8 18 0 1.3261723E-02 0.000000 0.000000 1.7374493E-04 1.9510234E-04 0.000000 0.000000 - Av 2018 10 8 19 0 2.0320799E-02 0.000000 0.000000 1.7369287E-04 0.000000 0.000000 0.000000 - Av 2018 10 8 20 0 1.6533613E-02 0.000000 0.000000 1.7364082E-04 0.000000 0.000000 0.000000 - Av 2018 10 8 21 0 1.7843381E-02 0.000000 0.000000 1.7358879E-04 0.000000 0.000000 0.000000 - Av 2018 10 8 22 0 1.7380893E-02 0.000000 0.000000 1.7353678E-04 0.000000 0.000000 0.000000 - Av 2018 10 8 23 0 1.7534638E-02 0.000000 0.000000 1.7348479E-04 0.000000 0.000000 0.000000 - Av 2018 10 8 24 0 1.7474115E-02 0.000000 0.000000 1.7343280E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 1 0 1.7479829E-02 0.000000 0.000000 1.7325915E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 2 0 1.7462518E-02 0.000000 0.000000 1.7320727E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 3 0 1.7461486E-02 0.000000 0.000000 1.7315539E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 4 0 1.7454799E-02 0.000000 0.000000 1.7310354E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 5 0 1.7450079E-02 0.000000 0.000000 1.7305171E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 6 0 1.7444678E-02 0.000000 0.000000 1.7299991E-04 0.000000 0.000000 0.000000 + Av 2018 10 8 18 0 1.3261723E-02 0.000000 0.000000 1.7374493E-04 1.9510234E-04 0.000000 0.000000 + Av 2018 10 8 19 0 2.0320799E-02 0.000000 0.000000 1.7369287E-04 0.000000 0.000000 0.000000 + Av 2018 10 8 20 0 1.6533613E-02 0.000000 0.000000 1.7364082E-04 0.000000 0.000000 0.000000 + Av 2018 10 8 21 0 1.7843381E-02 0.000000 0.000000 1.7358879E-04 0.000000 0.000000 0.000000 + Av 2018 10 8 22 0 1.7380893E-02 0.000000 0.000000 1.7353678E-04 0.000000 0.000000 0.000000 + Av 2018 10 8 23 0 1.7534638E-02 0.000000 0.000000 1.7348479E-04 0.000000 0.000000 0.000000 + Av 2018 10 8 24 0 1.7474115E-02 0.000000 0.000000 1.7343280E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 1 0 1.7479829E-02 0.000000 0.000000 1.7325915E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 2 0 1.7462518E-02 0.000000 0.000000 1.7320727E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 3 0 1.7461486E-02 0.000000 0.000000 1.7315539E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 4 0 1.7454799E-02 0.000000 0.000000 1.7310354E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 5 0 1.7450079E-02 0.000000 0.000000 1.7305171E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 6 0 1.7444678E-02 0.000000 0.000000 1.7299991E-04 0.000000 0.000000 0.000000 Av 2018 10 9 7 0 8.7210806E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.2449662E-03 Av 2018 10 9 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.0268279E-03 Av 2018 10 9 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8086898E-03 @@ -6785,19 +6785,19 @@ Av 2018 10 9 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8086898E-03 Av 2018 10 9 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.0268279E-03 Av 2018 10 9 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2449662E-03 - Av 2018 10 9 18 0 1.1712184E-02 0.000000 0.000000 1.7237925E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 19 0 1.9348430E-02 0.000000 0.000000 1.7232764E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 20 0 1.6686225E-02 0.000000 0.000000 1.7227604E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 21 0 1.7604887E-02 0.000000 0.000000 1.7222446E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 22 0 1.7278451E-02 0.000000 0.000000 1.7217289E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 23 0 1.7384950E-02 0.000000 0.000000 1.7212133E-04 0.000000 0.000000 0.000000 - Av 2018 10 9 24 0 1.7340915E-02 0.000000 0.000000 1.7206979E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 1 0 1.7341260E-02 0.000000 0.000000 1.7190108E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 2 0 1.7326184E-02 0.000000 0.000000 1.7184965E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 3 0 1.7324436E-02 0.000000 0.000000 1.7179822E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 4 0 1.7318057E-02 0.000000 0.000000 1.7174681E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 5 0 1.7313292E-02 0.000000 0.000000 1.7169543E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 6 0 1.7307967E-02 0.000000 0.000000 1.7164405E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 18 0 1.1712184E-02 0.000000 0.000000 1.7237925E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 19 0 1.9348430E-02 0.000000 0.000000 1.7232764E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 20 0 1.6686225E-02 0.000000 0.000000 1.7227604E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 21 0 1.7604887E-02 0.000000 0.000000 1.7222446E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 22 0 1.7278451E-02 0.000000 0.000000 1.7217289E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 23 0 1.7384950E-02 0.000000 0.000000 1.7212133E-04 0.000000 0.000000 0.000000 + Av 2018 10 9 24 0 1.7340915E-02 0.000000 0.000000 1.7206979E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 1 0 1.7341260E-02 0.000000 0.000000 1.7190108E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 2 0 1.7326184E-02 0.000000 0.000000 1.7184965E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 3 0 1.7324436E-02 0.000000 0.000000 1.7179822E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 4 0 1.7318057E-02 0.000000 0.000000 1.7174681E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 5 0 1.7313292E-02 0.000000 0.000000 1.7169543E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 6 0 1.7307967E-02 0.000000 0.000000 1.7164405E-04 0.000000 0.000000 0.000000 Av 2018 10 10 7 0 8.6527262E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.0079762E-03 Av 2018 10 10 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4029195E-03 Av 2018 10 10 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7978630E-03 @@ -6809,19 +6809,19 @@ Av 2018 10 10 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7978630E-03 Av 2018 10 10 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4029195E-03 Av 2018 10 10 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0079762E-03 - Av 2018 10 10 18 0 1.1620420E-02 0.000000 0.000000 1.7102869E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 19 0 1.9196842E-02 0.000000 0.000000 1.7097752E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 20 0 1.6555499E-02 0.000000 0.000000 1.7092635E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 21 0 1.7466964E-02 0.000000 0.000000 1.7087520E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 22 0 1.7143089E-02 0.000000 0.000000 1.7082406E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 23 0 1.7248757E-02 0.000000 0.000000 1.7077294E-04 0.000000 0.000000 0.000000 - Av 2018 10 10 24 0 1.7205071E-02 0.000000 0.000000 1.7072183E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 1 0 1.7205648E-02 0.000000 0.000000 1.7055791E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 2 0 1.7190844E-02 0.000000 0.000000 1.7050692E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 3 0 1.7189063E-02 0.000000 0.000000 1.7045591E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 4 0 1.7182752E-02 0.000000 0.000000 1.7040494E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 5 0 1.7178021E-02 0.000000 0.000000 1.7035397E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 6 0 1.7172743E-02 0.000000 0.000000 1.7030304E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 18 0 1.1620420E-02 0.000000 0.000000 1.7102869E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 19 0 1.9196842E-02 0.000000 0.000000 1.7097752E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 20 0 1.6555499E-02 0.000000 0.000000 1.7092635E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 21 0 1.7466964E-02 0.000000 0.000000 1.7087520E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 22 0 1.7143089E-02 0.000000 0.000000 1.7082406E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 23 0 1.7248757E-02 0.000000 0.000000 1.7077294E-04 0.000000 0.000000 0.000000 + Av 2018 10 10 24 0 1.7205071E-02 0.000000 0.000000 1.7072183E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 1 0 1.7205648E-02 0.000000 0.000000 1.7055791E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 2 0 1.7190844E-02 0.000000 0.000000 1.7050692E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 3 0 1.7189063E-02 0.000000 0.000000 1.7045591E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 4 0 1.7182752E-02 0.000000 0.000000 1.7040494E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 5 0 1.7178021E-02 0.000000 0.000000 1.7035397E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 6 0 1.7172743E-02 0.000000 0.000000 1.7030304E-04 0.000000 0.000000 0.000000 Av 2018 10 11 7 0 8.5851261E-03 0.000000 0.000000 0.000000 0.000000 0.000000 9.1707997E-04 Av 2018 10 11 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2428089E-03 Av 2018 10 11 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5685379E-03 @@ -6833,19 +6833,19 @@ Av 2018 10 11 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5685379E-03 Av 2018 10 11 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2428089E-03 Av 2018 10 11 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.1707997E-04 - Av 2018 10 11 18 0 1.1529660E-02 0.000000 0.000000 1.6969288E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 19 0 1.9046906E-02 0.000000 0.000000 1.6964214E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 20 0 1.6426198E-02 0.000000 0.000000 1.6959141E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 21 0 1.7330550E-02 0.000000 0.000000 1.6954070E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 22 0 1.7009210E-02 0.000000 0.000000 1.6949001E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 23 0 1.7114054E-02 0.000000 0.000000 1.6943931E-04 0.000000 0.000000 0.000000 - Av 2018 10 11 24 0 1.7070711E-02 0.000000 0.000000 1.6938864E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 1 0 1.7071513E-02 0.000000 0.000000 1.6922930E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 2 0 1.7056972E-02 0.000000 0.000000 1.6917873E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 3 0 1.7055158E-02 0.000000 0.000000 1.6912818E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 4 0 1.7048918E-02 0.000000 0.000000 1.6907763E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 5 0 1.7044220E-02 0.000000 0.000000 1.6902709E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 6 0 1.7038988E-02 0.000000 0.000000 1.6897658E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 18 0 1.1529660E-02 0.000000 0.000000 1.6969288E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 19 0 1.9046906E-02 0.000000 0.000000 1.6964214E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 20 0 1.6426198E-02 0.000000 0.000000 1.6959141E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 21 0 1.7330550E-02 0.000000 0.000000 1.6954070E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 22 0 1.7009210E-02 0.000000 0.000000 1.6949001E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 23 0 1.7114054E-02 0.000000 0.000000 1.6943931E-04 0.000000 0.000000 0.000000 + Av 2018 10 11 24 0 1.7070711E-02 0.000000 0.000000 1.6938864E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 1 0 1.7071513E-02 0.000000 0.000000 1.6922930E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 2 0 1.7056972E-02 0.000000 0.000000 1.6917873E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 3 0 1.7055158E-02 0.000000 0.000000 1.6912818E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 4 0 1.7048918E-02 0.000000 0.000000 1.6907763E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 5 0 1.7044220E-02 0.000000 0.000000 1.6902709E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 6 0 1.7038988E-02 0.000000 0.000000 1.6897658E-04 0.000000 0.000000 0.000000 Av 2018 10 12 7 0 8.5182581E-03 0.000000 0.000000 0.000000 0.000000 0.000000 9.2906709E-04 Av 2018 10 12 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4546466E-03 Av 2018 10 12 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9802262E-03 @@ -6857,19 +6857,19 @@ Av 2018 10 12 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9802262E-03 Av 2018 10 12 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4546466E-03 Av 2018 10 12 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.2906709E-04 - Av 2018 10 12 18 0 1.1439886E-02 0.000000 0.000000 1.6837160E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 19 0 1.8898603E-02 0.000000 0.000000 1.6832128E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 20 0 1.6298303E-02 0.000000 0.000000 1.6827097E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 21 0 1.7195616E-02 0.000000 0.000000 1.6822068E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 22 0 1.6876779E-02 0.000000 0.000000 1.6817042E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 23 0 1.6980812E-02 0.000000 0.000000 1.6812015E-04 0.000000 0.000000 0.000000 - Av 2018 10 12 24 0 1.6937811E-02 0.000000 0.000000 1.6806991E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 1 0 1.6938824E-02 0.000000 0.000000 1.6791502E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 2 0 1.6924541E-02 0.000000 0.000000 1.6786487E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 3 0 1.6922694E-02 0.000000 0.000000 1.6781474E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 4 0 1.6916525E-02 0.000000 0.000000 1.6776462E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 5 0 1.6911861E-02 0.000000 0.000000 1.6771450E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 6 0 1.6906675E-02 0.000000 0.000000 1.6766442E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 18 0 1.1439886E-02 0.000000 0.000000 1.6837160E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 19 0 1.8898603E-02 0.000000 0.000000 1.6832128E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 20 0 1.6298303E-02 0.000000 0.000000 1.6827097E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 21 0 1.7195616E-02 0.000000 0.000000 1.6822068E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 22 0 1.6876779E-02 0.000000 0.000000 1.6817042E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 23 0 1.6980812E-02 0.000000 0.000000 1.6812015E-04 0.000000 0.000000 0.000000 + Av 2018 10 12 24 0 1.6937811E-02 0.000000 0.000000 1.6806991E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 1 0 1.6938824E-02 0.000000 0.000000 1.6791502E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 2 0 1.6924541E-02 0.000000 0.000000 1.6786487E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 3 0 1.6922694E-02 0.000000 0.000000 1.6781474E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 4 0 1.6916525E-02 0.000000 0.000000 1.6776462E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 5 0 1.6911861E-02 0.000000 0.000000 1.6771450E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 6 0 1.6906675E-02 0.000000 0.000000 1.6766442E-04 0.000000 0.000000 0.000000 Av 2018 10 13 7 0 8.4521109E-03 0.000000 0.000000 0.000000 0.000000 0.000000 8.2651130E-04 Av 2018 10 13 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2466562E-03 Av 2018 10 13 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.6668008E-03 @@ -6881,19 +6881,19 @@ Av 2018 10 13 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.6668008E-03 Av 2018 10 13 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2466562E-03 Av 2018 10 13 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.2651130E-04 - Av 2018 10 13 18 0 1.1351076E-02 0.000000 0.000000 1.6706449E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 19 0 1.8751891E-02 0.000000 0.000000 1.6701459E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 20 0 1.6171783E-02 0.000000 0.000000 1.6696472E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 21 0 1.7062131E-02 0.000000 0.000000 1.6691485E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 22 0 1.6745776E-02 0.000000 0.000000 1.6686501E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 23 0 1.6849002E-02 0.000000 0.000000 1.6681515E-04 0.000000 0.000000 0.000000 - Av 2018 10 13 24 0 1.6806336E-02 0.000000 0.000000 1.6676533E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 1 0 1.6807552E-02 0.000000 0.000000 1.6661471E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 2 0 1.6793519E-02 0.000000 0.000000 1.6656499E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 3 0 1.6791642E-02 0.000000 0.000000 1.6651528E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 4 0 1.6785540E-02 0.000000 0.000000 1.6646557E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 5 0 1.6780909E-02 0.000000 0.000000 1.6641589E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 6 0 1.6775768E-02 0.000000 0.000000 1.6636621E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 18 0 1.1351076E-02 0.000000 0.000000 1.6706449E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 19 0 1.8751891E-02 0.000000 0.000000 1.6701459E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 20 0 1.6171783E-02 0.000000 0.000000 1.6696472E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 21 0 1.7062131E-02 0.000000 0.000000 1.6691485E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 22 0 1.6745776E-02 0.000000 0.000000 1.6686501E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 23 0 1.6849002E-02 0.000000 0.000000 1.6681515E-04 0.000000 0.000000 0.000000 + Av 2018 10 13 24 0 1.6806336E-02 0.000000 0.000000 1.6676533E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 1 0 1.6807552E-02 0.000000 0.000000 1.6661471E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 2 0 1.6793519E-02 0.000000 0.000000 1.6656499E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 3 0 1.6791642E-02 0.000000 0.000000 1.6651528E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 4 0 1.6785540E-02 0.000000 0.000000 1.6646557E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 5 0 1.6780909E-02 0.000000 0.000000 1.6641589E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 6 0 1.6775768E-02 0.000000 0.000000 1.6636621E-04 0.000000 0.000000 0.000000 Av 2018 10 14 7 0 8.3866669E-03 0.000000 0.000000 6.9874513E-06 0.000000 0.000000 7.2422321E-04 Av 2018 10 14 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.0213322E-03 Av 2018 10 14 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3184410E-03 @@ -6905,19 +6905,19 @@ Av 2018 10 14 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3184410E-03 Av 2018 10 14 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.0213322E-03 Av 2018 10 14 17 0 4.4107263E-04 0.000000 0.000000 6.4916821E-06 0.000000 0.000000 7.2422321E-04 - Av 2018 10 14 18 0 1.1550918E-02 0.000000 0.000000 1.6577130E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 19 0 1.8506702E-02 0.000000 0.000000 1.6572182E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 20 0 1.6081393E-02 0.000000 0.000000 1.6567236E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 21 0 1.6917974E-02 0.000000 0.000000 1.6562290E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 22 0 1.6620366E-02 0.000000 0.000000 1.6557345E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 23 0 1.6717128E-02 0.000000 0.000000 1.6552403E-04 0.000000 0.000000 0.000000 - Av 2018 10 14 24 0 1.6676769E-02 0.000000 0.000000 1.6547463E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 1 0 1.6677495E-02 0.000000 0.000000 1.6532817E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 2 0 1.6663939E-02 0.000000 0.000000 1.6527883E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 3 0 1.6661951E-02 0.000000 0.000000 1.6522953E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 4 0 1.6655944E-02 0.000000 0.000000 1.6518024E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 5 0 1.6651336E-02 0.000000 0.000000 1.6513097E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 6 0 1.6646245E-02 0.000000 0.000000 1.6508173E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 18 0 1.1550918E-02 0.000000 0.000000 1.6577130E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 19 0 1.8506702E-02 0.000000 0.000000 1.6572182E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 20 0 1.6081393E-02 0.000000 0.000000 1.6567236E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 21 0 1.6917974E-02 0.000000 0.000000 1.6562290E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 22 0 1.6620366E-02 0.000000 0.000000 1.6557345E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 23 0 1.6717128E-02 0.000000 0.000000 1.6552403E-04 0.000000 0.000000 0.000000 + Av 2018 10 14 24 0 1.6676769E-02 0.000000 0.000000 1.6547463E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 1 0 1.6677495E-02 0.000000 0.000000 1.6532817E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 2 0 1.6663939E-02 0.000000 0.000000 1.6527883E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 3 0 1.6661951E-02 0.000000 0.000000 1.6522953E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 4 0 1.6655944E-02 0.000000 0.000000 1.6518024E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 5 0 1.6651336E-02 0.000000 0.000000 1.6513097E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 6 0 1.6646245E-02 0.000000 0.000000 1.6508173E-04 0.000000 0.000000 0.000000 Av 2018 10 15 7 0 8.3219158E-03 0.000000 0.000000 0.000000 0.000000 0.000000 7.7170797E-04 Av 2018 10 15 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4405261E-03 Av 2018 10 15 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.1093443E-03 @@ -6929,19 +6929,19 @@ Av 2018 10 15 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.1093443E-03 Av 2018 10 15 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4405261E-03 Av 2018 10 15 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 7.7170797E-04 - Av 2018 10 15 18 0 1.1176271E-02 0.000000 0.000000 1.6449174E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 19 0 1.8463120E-02 0.000000 0.000000 1.6444267E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 20 0 1.5922751E-02 0.000000 0.000000 1.6439361E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 21 0 1.6799396E-02 0.000000 0.000000 1.6434457E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 22 0 1.6487915E-02 0.000000 0.000000 1.6429555E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 23 0 1.6589560E-02 0.000000 0.000000 1.6424654E-04 0.000000 0.000000 0.000000 - Av 2018 10 15 24 0 1.6547557E-02 0.000000 0.000000 1.6419754E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 1 0 1.6549151E-02 0.000000 0.000000 1.6405506E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 2 0 1.6535595E-02 0.000000 0.000000 1.6400615E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 3 0 1.6533663E-02 0.000000 0.000000 1.6395726E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 4 0 1.6527690E-02 0.000000 0.000000 1.6390836E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 5 0 1.6523127E-02 0.000000 0.000000 1.6385950E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 6 0 1.6518073E-02 0.000000 0.000000 1.6381065E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 18 0 1.1176271E-02 0.000000 0.000000 1.6449174E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 19 0 1.8463120E-02 0.000000 0.000000 1.6444267E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 20 0 1.5922751E-02 0.000000 0.000000 1.6439361E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 21 0 1.6799396E-02 0.000000 0.000000 1.6434457E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 22 0 1.6487915E-02 0.000000 0.000000 1.6429555E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 23 0 1.6589560E-02 0.000000 0.000000 1.6424654E-04 0.000000 0.000000 0.000000 + Av 2018 10 15 24 0 1.6547557E-02 0.000000 0.000000 1.6419754E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 1 0 1.6549151E-02 0.000000 0.000000 1.6405506E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 2 0 1.6535595E-02 0.000000 0.000000 1.6400615E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 3 0 1.6533663E-02 0.000000 0.000000 1.6395726E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 4 0 1.6527690E-02 0.000000 0.000000 1.6390836E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 5 0 1.6523127E-02 0.000000 0.000000 1.6385950E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 6 0 1.6518073E-02 0.000000 0.000000 1.6381065E-04 0.000000 0.000000 0.000000 Av 2018 10 16 7 0 8.2578389E-03 0.000000 0.000000 0.000000 0.000000 0.000000 8.0057926E-04 Av 2018 10 16 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.8427215E-03 Av 2018 10 16 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8848636E-03 @@ -6953,19 +6953,19 @@ Av 2018 10 16 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8848636E-03 Av 2018 10 16 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.8427215E-03 Av 2018 10 16 17 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.0057926E-04 - Av 2018 10 16 18 0 1.1090241E-02 0.000000 0.000000 1.6322554E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 19 0 1.8321000E-02 0.000000 0.000000 1.6317688E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 20 0 1.5800189E-02 0.000000 0.000000 1.6312824E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 21 0 1.6670087E-02 0.000000 0.000000 1.6307959E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 22 0 1.6361007E-02 0.000000 0.000000 1.6303097E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 23 0 1.6461872E-02 0.000000 0.000000 1.6298237E-04 0.000000 0.000000 0.000000 - Av 2018 10 16 24 0 1.6420199E-02 0.000000 0.000000 1.6293379E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 1 0 1.6421970E-02 0.000000 0.000000 1.6279516E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 2 0 1.6408637E-02 0.000000 0.000000 1.6274666E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 3 0 1.6406683E-02 0.000000 0.000000 1.6269817E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 4 0 1.6400773E-02 0.000000 0.000000 1.6264968E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 5 0 1.6396241E-02 0.000000 0.000000 1.6260121E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 6 0 1.6391233E-02 0.000000 0.000000 1.6255277E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 18 0 1.1090241E-02 0.000000 0.000000 1.6322554E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 19 0 1.8321000E-02 0.000000 0.000000 1.6317688E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 20 0 1.5800189E-02 0.000000 0.000000 1.6312824E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 21 0 1.6670087E-02 0.000000 0.000000 1.6307959E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 22 0 1.6361007E-02 0.000000 0.000000 1.6303097E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 23 0 1.6461872E-02 0.000000 0.000000 1.6298237E-04 0.000000 0.000000 0.000000 + Av 2018 10 16 24 0 1.6420199E-02 0.000000 0.000000 1.6293379E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 1 0 1.6421970E-02 0.000000 0.000000 1.6279516E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 2 0 1.6408637E-02 0.000000 0.000000 1.6274666E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 3 0 1.6406683E-02 0.000000 0.000000 1.6269817E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 4 0 1.6400773E-02 0.000000 0.000000 1.6264968E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 5 0 1.6396241E-02 0.000000 0.000000 1.6260121E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 6 0 1.6391233E-02 0.000000 0.000000 1.6255277E-04 0.000000 0.000000 0.000000 Av 2018 10 17 7 0 8.1944279E-03 0.000000 0.000000 4.7258800E-06 0.000000 0.000000 7.1717479E-04 Av 2018 10 17 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.7394071E-03 Av 2018 10 17 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7616394E-03 @@ -6977,19 +6977,19 @@ Av 2018 10 17 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.7616394E-03 Av 2018 10 17 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.7394071E-03 Av 2018 10 17 17 0 2.8824035E-04 0.000000 0.000000 4.2423053E-06 0.000000 0.000000 7.1717479E-04 - Av 2018 10 17 18 0 1.1193120E-02 0.000000 0.000000 1.6197248E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 19 0 1.8114980E-02 0.000000 0.000000 1.6192422E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 20 0 1.5701629E-02 0.000000 0.000000 1.6187597E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 21 0 1.6534217E-02 0.000000 0.000000 1.6182773E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 22 0 1.6238164E-02 0.000000 0.000000 1.6177951E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 23 0 1.6334552E-02 0.000000 0.000000 1.6173131E-04 0.000000 0.000000 0.000000 - Av 2018 10 17 24 0 1.6294491E-02 0.000000 0.000000 1.6168313E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 1 0 1.6295981E-02 0.000000 0.000000 1.6154822E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 2 0 1.6283028E-02 0.000000 0.000000 1.6150012E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 3 0 1.6280996E-02 0.000000 0.000000 1.6145202E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 4 0 1.6275166E-02 0.000000 0.000000 1.6140392E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 5 0 1.6270660E-02 0.000000 0.000000 1.6135586E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 6 0 1.6265696E-02 0.000000 0.000000 1.6130781E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 18 0 1.1193120E-02 0.000000 0.000000 1.6197248E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 19 0 1.8114980E-02 0.000000 0.000000 1.6192422E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 20 0 1.5701629E-02 0.000000 0.000000 1.6187597E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 21 0 1.6534217E-02 0.000000 0.000000 1.6182773E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 22 0 1.6238164E-02 0.000000 0.000000 1.6177951E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 23 0 1.6334552E-02 0.000000 0.000000 1.6173131E-04 0.000000 0.000000 0.000000 + Av 2018 10 17 24 0 1.6294491E-02 0.000000 0.000000 1.6168313E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 1 0 1.6295981E-02 0.000000 0.000000 1.6154822E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 2 0 1.6283028E-02 0.000000 0.000000 1.6150012E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 3 0 1.6280996E-02 0.000000 0.000000 1.6145202E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 4 0 1.6275166E-02 0.000000 0.000000 1.6140392E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 5 0 1.6270660E-02 0.000000 0.000000 1.6135586E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 6 0 1.6265696E-02 0.000000 0.000000 1.6130781E-04 0.000000 0.000000 0.000000 Av 2018 10 18 7 0 8.1316689E-03 0.000000 0.000000 3.4640223E-05 0.000000 0.000000 5.7554338E-04 Av 2018 10 18 8 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2958414E-03 Av 2018 10 18 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0161394E-03 @@ -7001,19 +7001,19 @@ Av 2018 10 18 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0161394E-03 Av 2018 10 18 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2958414E-03 Av 2018 10 18 17 0 2.3210177E-03 0.000000 0.000000 3.4160606E-05 0.000000 0.000000 5.7554338E-04 - Av 2018 10 18 18 0 1.2434819E-02 0.000000 0.000000 1.6073229E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 19 0 1.7514728E-02 0.000000 0.000000 1.6068442E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 20 0 1.5741894E-02 0.000000 0.000000 1.6063655E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 21 0 1.6351823E-02 0.000000 0.000000 1.6058871E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 22 0 1.6133245E-02 0.000000 0.000000 1.6054089E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 23 0 1.6202748E-02 0.000000 0.000000 1.6049309E-04 0.000000 0.000000 0.000000 - Av 2018 10 18 24 0 1.6172085E-02 0.000000 0.000000 1.6044528E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 1 0 1.6170578E-02 0.000000 0.000000 1.6031398E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 2 0 1.6158938E-02 0.000000 0.000000 1.6026625E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 3 0 1.6156500E-02 0.000000 0.000000 1.6021855E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 4 0 1.6150866E-02 0.000000 0.000000 1.6017085E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 5 0 1.6146345E-02 0.000000 0.000000 1.6012318E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 6 0 1.6141441E-02 0.000000 0.000000 1.6007553E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 18 0 1.2434819E-02 0.000000 0.000000 1.6073229E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 19 0 1.7514728E-02 0.000000 0.000000 1.6068442E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 20 0 1.5741894E-02 0.000000 0.000000 1.6063655E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 21 0 1.6351823E-02 0.000000 0.000000 1.6058871E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 22 0 1.6133245E-02 0.000000 0.000000 1.6054089E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 23 0 1.6202748E-02 0.000000 0.000000 1.6049309E-04 0.000000 0.000000 0.000000 + Av 2018 10 18 24 0 1.6172085E-02 0.000000 0.000000 1.6044528E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 1 0 1.6170578E-02 0.000000 0.000000 1.6031398E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 2 0 1.6158938E-02 0.000000 0.000000 1.6026625E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 3 0 1.6156500E-02 0.000000 0.000000 1.6021855E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 4 0 1.6150866E-02 0.000000 0.000000 1.6017085E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 5 0 1.6146345E-02 0.000000 0.000000 1.6012318E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 6 0 1.6141441E-02 0.000000 0.000000 1.6007553E-04 0.000000 0.000000 0.000000 Av 2018 10 19 7 0 8.4839612E-03 0.000000 0.000000 4.7601054E-05 0.000000 0.000000 5.1103102E-04 Av 2018 10 19 8 0 4.1441451E-04 0.000000 0.000000 0.000000 0.000000 0.000000 3.2586360E-03 Av 2018 10 19 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0062408E-03 @@ -7025,19 +7025,19 @@ Av 2018 10 19 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.0062408E-03 Av 2018 10 19 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2586360E-03 Av 2018 10 19 17 0 3.2018980E-03 0.000000 0.000000 4.7125352E-05 0.000000 0.000000 5.1103102E-04 - Av 2018 10 19 18 0 1.2925999E-02 0.000000 0.000000 1.5950468E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 19 0 1.7177148E-02 0.000000 0.000000 1.5945719E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 20 0 1.5692536E-02 0.000000 0.000000 1.5940974E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 21 0 1.6202301E-02 0.000000 0.000000 1.5936230E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 22 0 1.6018605E-02 0.000000 0.000000 1.5931486E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 23 0 1.6076032E-02 0.000000 0.000000 1.5926744E-04 0.000000 0.000000 0.000000 - Av 2018 10 19 24 0 1.6049620E-02 0.000000 0.000000 1.5922003E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 1 0 1.6046898E-02 0.000000 0.000000 1.5909220E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 2 0 1.6035944E-02 0.000000 0.000000 1.5904487E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 3 0 1.6033322E-02 0.000000 0.000000 1.5899756E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 4 0 1.6027804E-02 0.000000 0.000000 1.5895025E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 5 0 1.6023297E-02 0.000000 0.000000 1.5890296E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 6 0 1.6018439E-02 0.000000 0.000000 1.5885568E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 18 0 1.2925999E-02 0.000000 0.000000 1.5950468E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 19 0 1.7177148E-02 0.000000 0.000000 1.5945719E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 20 0 1.5692536E-02 0.000000 0.000000 1.5940974E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 21 0 1.6202301E-02 0.000000 0.000000 1.5936230E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 22 0 1.6018605E-02 0.000000 0.000000 1.5931486E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 23 0 1.6076032E-02 0.000000 0.000000 1.5926744E-04 0.000000 0.000000 0.000000 + Av 2018 10 19 24 0 1.6049620E-02 0.000000 0.000000 1.5922003E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 1 0 1.6046898E-02 0.000000 0.000000 1.5909220E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 2 0 1.6035944E-02 0.000000 0.000000 1.5904487E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 3 0 1.6033322E-02 0.000000 0.000000 1.5899756E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 4 0 1.6027804E-02 0.000000 0.000000 1.5895025E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 5 0 1.6023297E-02 0.000000 0.000000 1.5890296E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 6 0 1.6018439E-02 0.000000 0.000000 1.5885568E-04 0.000000 0.000000 0.000000 Av 2018 10 20 7 0 9.3834195E-03 0.000000 0.000000 6.1401493E-05 0.000000 0.000000 4.4275878E-04 Av 2018 10 20 8 0 1.3753675E-03 0.000000 0.000000 0.000000 0.000000 0.000000 3.2003520E-03 Av 2018 10 20 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9579452E-03 @@ -7049,19 +7049,19 @@ Av 2018 10 20 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9579452E-03 Av 2018 10 20 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2003520E-03 Av 2018 10 20 17 0 4.1398210E-03 0.000000 0.000000 6.0929648E-05 0.000000 0.000000 4.4275878E-04 - Av 2018 10 20 18 0 1.3455232E-02 0.000000 0.000000 1.5828948E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 19 0 1.6828025E-02 0.000000 0.000000 1.5824239E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 20 0 1.5648875E-02 0.000000 0.000000 1.5819530E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 21 0 1.6052479E-02 0.000000 0.000000 1.5814824E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 22 0 1.5905749E-02 0.000000 0.000000 1.5810119E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 23 0 1.5950376E-02 0.000000 0.000000 1.5805416E-04 0.000000 0.000000 0.000000 - Av 2018 10 20 24 0 1.5928470E-02 0.000000 0.000000 1.5800714E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 1 0 1.5924433E-02 0.000000 0.000000 1.5788266E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 2 0 1.5914189E-02 0.000000 0.000000 1.5783570E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 3 0 1.5911371E-02 0.000000 0.000000 1.5778877E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 4 0 1.5905974E-02 0.000000 0.000000 1.5774186E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 5 0 1.5901476E-02 0.000000 0.000000 1.5769496E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 6 0 1.5896667E-02 0.000000 0.000000 1.5764806E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 18 0 1.3455232E-02 0.000000 0.000000 1.5828948E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 19 0 1.6828025E-02 0.000000 0.000000 1.5824239E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 20 0 1.5648875E-02 0.000000 0.000000 1.5819530E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 21 0 1.6052479E-02 0.000000 0.000000 1.5814824E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 22 0 1.5905749E-02 0.000000 0.000000 1.5810119E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 23 0 1.5950376E-02 0.000000 0.000000 1.5805416E-04 0.000000 0.000000 0.000000 + Av 2018 10 20 24 0 1.5928470E-02 0.000000 0.000000 1.5800714E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 1 0 1.5924433E-02 0.000000 0.000000 1.5788266E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 2 0 1.5914189E-02 0.000000 0.000000 1.5783570E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 3 0 1.5911371E-02 0.000000 0.000000 1.5778877E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 4 0 1.5905974E-02 0.000000 0.000000 1.5774186E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 5 0 1.5901476E-02 0.000000 0.000000 1.5769496E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 6 0 1.5896667E-02 0.000000 0.000000 1.5764806E-04 0.000000 0.000000 0.000000 Av 2018 10 21 7 0 1.0264747E-02 0.000000 0.000000 7.4929900E-05 0.000000 0.000000 3.7577850E-04 Av 2018 10 21 8 0 2.3175739E-03 0.000000 0.000000 0.000000 0.000000 0.000000 3.1534426E-03 Av 2018 10 21 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9311069E-03 @@ -7073,19 +7073,19 @@ Av 2018 10 21 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.9311069E-03 Av 2018 10 21 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.1534426E-03 Av 2018 10 21 17 0 5.0592585E-03 0.000000 0.000000 7.4461881E-05 0.000000 0.000000 3.7577850E-04 - Av 2018 10 21 18 0 1.3973232E-02 0.000000 0.000000 1.5708643E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 19 0 1.6484456E-02 0.000000 0.000000 1.5703973E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 20 0 1.5604936E-02 0.000000 0.000000 1.5699302E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 21 0 1.5904408E-02 0.000000 0.000000 1.5694633E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 22 0 1.5793934E-02 0.000000 0.000000 1.5689967E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 23 0 1.5826005E-02 0.000000 0.000000 1.5685301E-04 0.000000 0.000000 0.000000 - Av 2018 10 21 24 0 1.5808515E-02 0.000000 0.000000 1.5680636E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 1 0 1.5803190E-02 0.000000 0.000000 1.5668513E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 2 0 1.5793640E-02 0.000000 0.000000 1.5663855E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 3 0 1.5790634E-02 0.000000 0.000000 1.5659200E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 4 0 1.5785353E-02 0.000000 0.000000 1.5654546E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 5 0 1.5780866E-02 0.000000 0.000000 1.5649894E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 6 0 1.5776105E-02 0.000000 0.000000 1.5645241E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 18 0 1.3973232E-02 0.000000 0.000000 1.5708643E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 19 0 1.6484456E-02 0.000000 0.000000 1.5703973E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 20 0 1.5604936E-02 0.000000 0.000000 1.5699302E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 21 0 1.5904408E-02 0.000000 0.000000 1.5694633E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 22 0 1.5793934E-02 0.000000 0.000000 1.5689967E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 23 0 1.5826005E-02 0.000000 0.000000 1.5685301E-04 0.000000 0.000000 0.000000 + Av 2018 10 21 24 0 1.5808515E-02 0.000000 0.000000 1.5680636E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 1 0 1.5803190E-02 0.000000 0.000000 1.5668513E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 2 0 1.5793640E-02 0.000000 0.000000 1.5663855E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 3 0 1.5790634E-02 0.000000 0.000000 1.5659200E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 4 0 1.5785353E-02 0.000000 0.000000 1.5654546E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 5 0 1.5780866E-02 0.000000 0.000000 1.5649894E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 6 0 1.5776105E-02 0.000000 0.000000 1.5645241E-04 0.000000 0.000000 0.000000 Av 2018 10 22 7 0 1.1438633E-02 0.000000 0.000000 9.2750837E-05 0.000000 0.000000 2.8934123E-04 Av 2018 10 22 8 0 3.5517337E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.9155067E-03 Av 2018 10 22 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5416720E-03 @@ -7097,19 +7097,19 @@ Av 2018 10 22 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.5416720E-03 Av 2018 10 22 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9155067E-03 Av 2018 10 22 17 0 6.2703448E-03 0.000000 0.000000 9.2286587E-05 0.000000 0.000000 2.8934123E-04 - Av 2018 10 22 18 0 1.4682284E-02 0.000000 0.000000 1.5589531E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 19 0 1.6076081E-02 0.000000 0.000000 1.5584899E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 20 0 1.5585149E-02 0.000000 0.000000 1.5580266E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 21 0 1.5749555E-02 0.000000 0.000000 1.5575635E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 22 0 1.5686098E-02 0.000000 0.000000 1.5571006E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 23 0 1.5701875E-02 0.000000 0.000000 1.5566379E-04 0.000000 0.000000 0.000000 - Av 2018 10 22 24 0 1.5690099E-02 0.000000 0.000000 1.5561751E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 1 0 1.5683025E-02 0.000000 0.000000 1.5549939E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 2 0 1.5674321E-02 0.000000 0.000000 1.5545319E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 3 0 1.5671071E-02 0.000000 0.000000 1.5540702E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 4 0 1.5665928E-02 0.000000 0.000000 1.5536086E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 5 0 1.5661443E-02 0.000000 0.000000 1.5531469E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 6 0 1.5656730E-02 0.000000 0.000000 1.5526854E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 18 0 1.4682284E-02 0.000000 0.000000 1.5589531E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 19 0 1.6076081E-02 0.000000 0.000000 1.5584899E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 20 0 1.5585149E-02 0.000000 0.000000 1.5580266E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 21 0 1.5749555E-02 0.000000 0.000000 1.5575635E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 22 0 1.5686098E-02 0.000000 0.000000 1.5571006E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 23 0 1.5701875E-02 0.000000 0.000000 1.5566379E-04 0.000000 0.000000 0.000000 + Av 2018 10 22 24 0 1.5690099E-02 0.000000 0.000000 1.5561751E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 1 0 1.5683025E-02 0.000000 0.000000 1.5549939E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 2 0 1.5674321E-02 0.000000 0.000000 1.5545319E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 3 0 1.5671071E-02 0.000000 0.000000 1.5540702E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 4 0 1.5665928E-02 0.000000 0.000000 1.5536086E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 5 0 1.5661443E-02 0.000000 0.000000 1.5531469E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 6 0 1.5656730E-02 0.000000 0.000000 1.5526854E-04 0.000000 0.000000 0.000000 Av 2018 10 23 7 0 1.2672460E-02 0.000000 0.000000 1.1144701E-04 0.000000 0.000000 1.9897913E-04 Av 2018 10 23 8 0 4.8452425E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.5333541E-03 Av 2018 10 23 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8677293E-03 @@ -7121,19 +7121,19 @@ Av 2018 10 23 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8677293E-03 Av 2018 10 23 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 2.5333541E-03 Av 2018 10 23 17 0 7.5408961E-03 0.000000 0.000000 1.1098648E-04 0.000000 0.000000 1.9897913E-04 - Av 2018 10 23 18 0 1.5694873E-02 0.000000 0.000000 1.5471592E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 10 23 19 0 1.5827704E-02 0.000000 0.000000 1.5466995E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 20 0 1.5511319E-02 0.000000 0.000000 1.5462399E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 21 0 1.5615086E-02 0.000000 0.000000 1.5457807E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 22 0 1.5572765E-02 0.000000 0.000000 1.5453214E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 23 0 1.5581241E-02 0.000000 0.000000 1.5448623E-04 0.000000 0.000000 0.000000 - Av 2018 10 23 24 0 1.5572056E-02 0.000000 0.000000 1.5444033E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 1 0 1.5564311E-02 0.000000 0.000000 1.5432524E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 2 0 1.5556071E-02 0.000000 0.000000 1.5427942E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 3 0 1.5552711E-02 0.000000 0.000000 1.5423361E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 4 0 1.5547656E-02 0.000000 0.000000 1.5418782E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 5 0 1.5543189E-02 0.000000 0.000000 1.5414202E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 6 0 1.5538521E-02 0.000000 0.000000 1.5409625E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 18 0 1.5694873E-02 0.000000 0.000000 1.5471592E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 10 23 19 0 1.5827704E-02 0.000000 0.000000 1.5466995E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 20 0 1.5511319E-02 0.000000 0.000000 1.5462399E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 21 0 1.5615086E-02 0.000000 0.000000 1.5457807E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 22 0 1.5572765E-02 0.000000 0.000000 1.5453214E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 23 0 1.5581241E-02 0.000000 0.000000 1.5448623E-04 0.000000 0.000000 0.000000 + Av 2018 10 23 24 0 1.5572056E-02 0.000000 0.000000 1.5444033E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 1 0 1.5564311E-02 0.000000 0.000000 1.5432524E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 2 0 1.5556071E-02 0.000000 0.000000 1.5427942E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 3 0 1.5552711E-02 0.000000 0.000000 1.5423361E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 4 0 1.5547656E-02 0.000000 0.000000 1.5418782E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 5 0 1.5543189E-02 0.000000 0.000000 1.5414202E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 6 0 1.5538521E-02 0.000000 0.000000 1.5409625E-04 0.000000 0.000000 0.000000 Av 2018 10 24 7 0 1.3420416E-02 0.000000 0.000000 1.2299963E-04 0.000000 0.000000 1.4114031E-04 Av 2018 10 24 8 0 5.6522945E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.4747937E-03 Av 2018 10 24 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8084473E-03 @@ -7145,19 +7145,19 @@ Av 2018 10 24 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8084473E-03 Av 2018 10 24 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.4747937E-03 Av 2018 10 24 17 0 8.3260806E-03 0.000000 0.000000 1.2254278E-04 0.000000 0.000000 1.4114031E-04 - Av 2018 10 24 18 0 1.5863737E-02 0.000000 0.000000 1.5354803E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 19 0 1.5346359E-02 0.000000 0.000000 1.5350243E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 20 0 1.5520061E-02 0.000000 0.000000 1.5345686E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 21 0 1.5453469E-02 0.000000 0.000000 1.5341128E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 22 0 1.5470432E-02 0.000000 0.000000 1.5336572E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 23 0 1.5458345E-02 0.000000 0.000000 1.5332019E-04 0.000000 0.000000 0.000000 - Av 2018 10 24 24 0 1.5456360E-02 0.000000 0.000000 1.5327465E-04 0.000000 0.000000 0.000000 - Av 2018 10 25 1 0 1.5446335E-02 0.000000 0.000000 1.5316249E-04 0.000000 0.000000 0.000000 - Av 2018 10 25 2 0 1.5439110E-02 0.000000 0.000000 1.5311701E-04 0.000000 0.000000 0.000000 - Av 2018 10 25 3 0 1.5435445E-02 0.000000 0.000000 1.5307157E-04 0.000000 0.000000 0.000000 - Av 2018 10 25 4 0 1.5430545E-02 0.000000 0.000000 1.5302614E-04 0.000000 0.000000 0.000000 - Av 2018 10 25 5 0 1.5426076E-02 0.000000 0.000000 1.5298072E-04 0.000000 0.000000 0.000000 - Av 2018 10 25 6 0 1.5421459E-02 0.000000 0.000000 1.5293530E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 18 0 1.5863737E-02 0.000000 0.000000 1.5354803E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 19 0 1.5346359E-02 0.000000 0.000000 1.5350243E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 20 0 1.5520061E-02 0.000000 0.000000 1.5345686E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 21 0 1.5453469E-02 0.000000 0.000000 1.5341128E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 22 0 1.5470432E-02 0.000000 0.000000 1.5336572E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 23 0 1.5458345E-02 0.000000 0.000000 1.5332019E-04 0.000000 0.000000 0.000000 + Av 2018 10 24 24 0 1.5456360E-02 0.000000 0.000000 1.5327465E-04 0.000000 0.000000 0.000000 + Av 2018 10 25 1 0 1.5446335E-02 0.000000 0.000000 1.5316249E-04 0.000000 0.000000 0.000000 + Av 2018 10 25 2 0 1.5439110E-02 0.000000 0.000000 1.5311701E-04 0.000000 0.000000 0.000000 + Av 2018 10 25 3 0 1.5435445E-02 0.000000 0.000000 1.5307157E-04 0.000000 0.000000 0.000000 + Av 2018 10 25 4 0 1.5430545E-02 0.000000 0.000000 1.5302614E-04 0.000000 0.000000 0.000000 + Av 2018 10 25 5 0 1.5426076E-02 0.000000 0.000000 1.5298072E-04 0.000000 0.000000 0.000000 + Av 2018 10 25 6 0 1.5421459E-02 0.000000 0.000000 1.5293530E-04 0.000000 0.000000 0.000000 Av 2018 10 25 7 0 1.4212362E-02 0.000000 0.000000 1.3519326E-04 0.000000 0.000000 8.0439262E-05 Av 2018 10 25 8 0 6.5027666E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.3205266E-03 Av 2018 10 25 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.5606140E-03 @@ -7169,19 +7169,19 @@ Av 2018 10 25 15 0 9.7858876E-02 2.7699851E-10 0.000000 0.000000 1.1777279E-02 1.9999960E-02 4.5606140E-03 Av 2018 10 25 16 0 0.1491365 3.2790312E-10 0.000000 0.000000 1.4857100E-02 1.9999960E-02 2.3205266E-03 Av 2018 10 25 17 0 0.2321801 1.0740572E-09 0.000000 1.3506785E-04 2.5012631E-02 2.9999940E-02 8.0439262E-05 - Av 2018 10 25 18 0 0.4878216 5.2599334E-09 0.000000 1.5289786E-04 5.4359328E-02 5.9999879E-02 0.000000 - Av 2018 10 25 19 0 0.4059489 6.7454248E-10 0.000000 1.5307365E-04 2.5721440E-02 1.9999960E-02 0.000000 - Av 2018 10 25 20 0 9.5704757E-02 0.000000 0.000000 1.5310170E-04 5.5612195E-03 0.000000 0.000000 - Av 2018 10 25 21 0 3.7606210E-02 0.000000 0.000000 1.5305619E-04 1.8098112E-03 0.000000 0.000000 - Av 2018 10 25 22 0 2.5194740E-02 0.000000 0.000000 1.5301067E-04 7.6218823E-04 0.000000 0.000000 - Av 2018 10 25 23 0 1.9797565E-02 0.000000 0.000000 1.5296516E-04 3.8120383E-04 0.000000 0.000000 - Av 2018 10 25 24 0 1.7950412E-02 0.000000 0.000000 1.5291969E-04 2.1503132E-04 0.000000 0.000000 - Av 2018 10 26 1 0 0.4491722 1.1444418E-08 0.000000 1.5294700E-04 6.3421935E-02 7.9999842E-02 0.000000 - Av 2018 10 26 2 0 0.4405725 2.1554049E-10 0.000000 1.5321633E-04 1.9310543E-02 9.9999802E-03 0.000000 - Av 2018 10 26 3 0 4.1172735E-02 0.000000 0.000000 1.5320758E-04 4.5277043E-03 0.000000 0.000000 - Av 2018 10 26 4 0 9.4183728E-02 2.1881241E-10 0.000000 1.5318066E-04 8.2866307E-03 9.9999802E-03 0.000000 - Av 2018 10 26 5 0 6.2816396E-02 0.000000 0.000000 1.5317192E-04 2.6243036E-03 0.000000 0.000000 - Av 2018 10 26 6 0 2.3724064E-02 0.000000 0.000000 1.5312633E-04 1.0190753E-03 0.000000 0.000000 + Av 2018 10 25 18 0 0.4878216 5.2599334E-09 0.000000 1.5289786E-04 5.4359328E-02 5.9999879E-02 0.000000 + Av 2018 10 25 19 0 0.4059489 6.7454248E-10 0.000000 1.5307365E-04 2.5721440E-02 1.9999960E-02 0.000000 + Av 2018 10 25 20 0 9.5704757E-02 0.000000 0.000000 1.5310170E-04 5.5612195E-03 0.000000 0.000000 + Av 2018 10 25 21 0 3.7606210E-02 0.000000 0.000000 1.5305619E-04 1.8098112E-03 0.000000 0.000000 + Av 2018 10 25 22 0 2.5194740E-02 0.000000 0.000000 1.5301067E-04 7.6218823E-04 0.000000 0.000000 + Av 2018 10 25 23 0 1.9797565E-02 0.000000 0.000000 1.5296516E-04 3.8120383E-04 0.000000 0.000000 + Av 2018 10 25 24 0 1.7950412E-02 0.000000 0.000000 1.5291969E-04 2.1503132E-04 0.000000 0.000000 + Av 2018 10 26 1 0 0.4491722 1.1444418E-08 0.000000 1.5294700E-04 6.3421935E-02 7.9999842E-02 0.000000 + Av 2018 10 26 2 0 0.4405725 2.1554049E-10 0.000000 1.5321633E-04 1.9310543E-02 9.9999802E-03 0.000000 + Av 2018 10 26 3 0 4.1172735E-02 0.000000 0.000000 1.5320758E-04 4.5277043E-03 0.000000 0.000000 + Av 2018 10 26 4 0 9.4183728E-02 2.1881241E-10 0.000000 1.5318066E-04 8.2866307E-03 9.9999802E-03 0.000000 + Av 2018 10 26 5 0 6.2816396E-02 0.000000 0.000000 1.5317192E-04 2.6243036E-03 0.000000 0.000000 + Av 2018 10 26 6 0 2.3724064E-02 0.000000 0.000000 1.5312633E-04 1.0190753E-03 0.000000 0.000000 Av 2018 10 26 7 0 2.2337707E-02 0.000000 0.000000 1.4691793E-04 4.8237556E-04 0.000000 2.8012877E-05 Av 2018 10 26 8 0 8.4190397E-03 0.000000 0.000000 0.000000 2.6166046E-04 0.000000 2.4571070E-03 Av 2018 10 26 9 0 2.9610490E-02 1.3068610E-10 0.000000 0.000000 4.3580541E-03 9.9999802E-03 4.8862011E-03 @@ -7193,20 +7193,20 @@ Av 2018 10 26 15 0 8.7276666E-04 0.000000 0.000000 0.000000 8.7760374E-05 0.000000 4.8862011E-03 Av 2018 10 26 16 0 7.2541763E-04 0.000000 0.000000 0.000000 6.0732829E-05 9.9999802E-03 2.4571070E-03 Av 2018 10 26 17 0 3.7416816E-02 1.6452474E-10 0.000000 1.4652140E-04 3.9729793E-03 2.9999940E-02 2.8012877E-05 - Av 2018 10 26 18 0 0.2559752 3.6323107E-09 0.000000 1.5274438E-04 3.2243073E-02 3.9999921E-02 0.000000 - Av 2018 10 26 19 0 0.3105415 9.8242725E-10 0.000000 1.5289082E-04 2.2742769E-02 1.9999960E-02 0.000000 - Av 2018 10 26 20 0 0.2670634 2.2820661E-09 0.000000 1.5300210E-04 2.8571529E-02 2.9999940E-02 0.000000 - Av 2018 10 26 21 0 0.2190896 2.6715247E-10 0.000000 1.5311294E-04 1.3685858E-02 9.9999802E-03 0.000000 - Av 2018 10 26 22 0 6.2855273E-02 0.000000 0.000000 1.5311205E-04 3.5276699E-03 0.000000 0.000000 - Av 2018 10 26 23 0 3.1615261E-02 0.000000 0.000000 1.5306642E-04 1.2803186E-03 0.000000 0.000000 - Av 2018 10 26 24 0 2.2438776E-02 0.000000 0.000000 1.5302080E-04 5.7926570E-04 0.000000 0.000000 - Av 2018 10 27 1 0 1.8987190E-02 0.000000 0.000000 1.5289446E-04 3.0442339E-04 0.000000 0.000000 - Av 2018 10 27 2 0 1.7449336E-02 0.000000 0.000000 1.5285324E-04 1.7796367E-04 0.000000 0.000000 - Av 2018 10 27 3 0 1.6674533E-02 0.000000 0.000000 1.5280773E-04 1.1255500E-04 0.000000 0.000000 - Av 2018 10 27 4 0 1.6242199E-02 0.000000 0.000000 1.5276221E-04 7.5592405E-05 0.000000 0.000000 - Av 2018 10 27 5 0 1.5983155E-02 0.000000 0.000000 1.5271670E-04 5.3214459E-05 0.000000 0.000000 - Av 2018 10 27 6 0 1.5817748E-02 0.000000 0.000000 1.5267121E-04 3.8901075E-05 0.000000 0.000000 - Av 2018 10 27 7 0 1.6785804E-02 0.000000 0.000000 1.5262574E-04 1.8813703E-04 0.000000 0.000000 + Av 2018 10 26 18 0 0.2559752 3.6323107E-09 0.000000 1.5274438E-04 3.2243073E-02 3.9999921E-02 0.000000 + Av 2018 10 26 19 0 0.3105415 9.8242725E-10 0.000000 1.5289082E-04 2.2742769E-02 1.9999960E-02 0.000000 + Av 2018 10 26 20 0 0.2670634 2.2820661E-09 0.000000 1.5300210E-04 2.8571529E-02 2.9999940E-02 0.000000 + Av 2018 10 26 21 0 0.2190896 2.6715247E-10 0.000000 1.5311294E-04 1.3685858E-02 9.9999802E-03 0.000000 + Av 2018 10 26 22 0 6.2855273E-02 0.000000 0.000000 1.5311205E-04 3.5276699E-03 0.000000 0.000000 + Av 2018 10 26 23 0 3.1615261E-02 0.000000 0.000000 1.5306642E-04 1.2803186E-03 0.000000 0.000000 + Av 2018 10 26 24 0 2.2438776E-02 0.000000 0.000000 1.5302080E-04 5.7926570E-04 0.000000 0.000000 + Av 2018 10 27 1 0 1.8987190E-02 0.000000 0.000000 1.5289446E-04 3.0442339E-04 0.000000 0.000000 + Av 2018 10 27 2 0 1.7449336E-02 0.000000 0.000000 1.5285324E-04 1.7796367E-04 0.000000 0.000000 + Av 2018 10 27 3 0 1.6674533E-02 0.000000 0.000000 1.5280773E-04 1.1255500E-04 0.000000 0.000000 + Av 2018 10 27 4 0 1.6242199E-02 0.000000 0.000000 1.5276221E-04 7.5592405E-05 0.000000 0.000000 + Av 2018 10 27 5 0 1.5983155E-02 0.000000 0.000000 1.5271670E-04 5.3214459E-05 0.000000 0.000000 + Av 2018 10 27 6 0 1.5817748E-02 0.000000 0.000000 1.5267121E-04 3.8901075E-05 0.000000 0.000000 + Av 2018 10 27 7 0 1.6785804E-02 0.000000 0.000000 1.5262574E-04 1.8813703E-04 0.000000 0.000000 Av 2018 10 27 8 0 8.9097582E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.2963274E-03 Av 2018 10 27 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.6220566E-03 Av 2018 10 27 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.7996218E-03 @@ -7216,21 +7216,21 @@ Av 2018 10 27 14 0 0.6050822 3.3318276E-08 0.000000 0.000000 8.9055315E-02 0.1399997 5.7996218E-03 Av 2018 10 27 15 0 1.376895 7.8850540E-08 0.000000 0.000000 0.1395028 0.1499997 4.6220566E-03 Av 2018 10 27 16 0 1.399068 9.4847813E-08 0.000000 0.000000 0.1268002 0.1299997 2.2963274E-03 - Av 2018 10 27 17 0 0.8183650 1.9343101E-08 0.000000 1.5518497E-04 5.6904797E-02 4.9999900E-02 0.000000 - Av 2018 10 27 18 0 0.6074784 4.4650928E-08 0.000000 1.5570017E-04 6.8135493E-02 6.9999859E-02 0.000000 - Av 2018 10 27 19 0 0.5295079 9.3483470E-09 0.000000 1.5622823E-04 3.5531871E-02 2.9999940E-02 0.000000 - Av 2018 10 27 20 0 1.019251 2.4310381E-07 0.000000 1.5688629E-04 0.1353221 0.1499997 0.000000 - Av 2018 10 27 21 0 2.242934 9.4052962E-07 0.000000 1.5882996E-04 0.2313124 0.2399995 0.000000 - Av 2018 10 27 22 0 2.527349 1.8234141E-06 0.000000 1.6189941E-04 0.2301082 0.2299995 0.000000 - Av 2018 10 27 23 0 1.190527 6.0880052E-09 0.000000 1.6416069E-04 3.3622228E-02 9.9999802E-03 0.000000 - Av 2018 10 27 24 0 0.2190675 5.5196466E-08 0.000000 1.6442226E-04 3.0597458E-02 2.9999940E-02 0.000000 - Av 2018 10 28 1 0 0.2190675 0.000000 0.000000 1.6452654E-04 6.2929154E-03 0.000000 0.000000 - Av 2018 10 28 2 0 2.4669096E-02 0.000000 0.000000 1.6448820E-04 1.9859015E-03 0.000000 0.000000 - Av 2018 10 28 3 0 3.2834738E-02 0.000000 0.000000 1.6443789E-04 8.1989146E-04 0.000000 0.000000 - Av 2018 10 28 4 0 1.9244142E-02 0.000000 0.000000 1.6438760E-04 4.0453294E-04 0.000000 0.000000 - Av 2018 10 28 5 0 1.9927641E-02 0.000000 0.000000 1.6433733E-04 2.2598737E-04 0.000000 0.000000 - Av 2018 10 28 6 0 1.7873332E-02 0.000000 0.000000 1.6428708E-04 1.3816464E-04 0.000000 0.000000 - Av 2018 10 28 7 0 1.7659593E-02 0.000000 0.000000 1.6423684E-04 9.0403490E-05 0.000000 0.000000 + Av 2018 10 27 17 0 0.8183650 1.9343101E-08 0.000000 1.5518497E-04 5.6904797E-02 4.9999900E-02 0.000000 + Av 2018 10 27 18 0 0.6074784 4.4650928E-08 0.000000 1.5570017E-04 6.8135493E-02 6.9999859E-02 0.000000 + Av 2018 10 27 19 0 0.5295079 9.3483470E-09 0.000000 1.5622823E-04 3.5531871E-02 2.9999940E-02 0.000000 + Av 2018 10 27 20 0 1.019251 2.4310381E-07 0.000000 1.5688629E-04 0.1353221 0.1499997 0.000000 + Av 2018 10 27 21 0 2.242934 9.4052962E-07 0.000000 1.5882996E-04 0.2313124 0.2399995 0.000000 + Av 2018 10 27 22 0 2.527349 1.8234141E-06 0.000000 1.6189941E-04 0.2301082 0.2299995 0.000000 + Av 2018 10 27 23 0 1.190527 6.0880052E-09 0.000000 1.6416069E-04 3.3622228E-02 9.9999802E-03 0.000000 + Av 2018 10 27 24 0 0.2190675 5.5196466E-08 0.000000 1.6442226E-04 3.0597458E-02 2.9999940E-02 0.000000 + Av 2018 10 28 1 0 0.2190675 0.000000 0.000000 1.6452654E-04 6.2929154E-03 0.000000 0.000000 + Av 2018 10 28 2 0 2.4669096E-02 0.000000 0.000000 1.6448820E-04 1.9859015E-03 0.000000 0.000000 + Av 2018 10 28 3 0 3.2834738E-02 0.000000 0.000000 1.6443789E-04 8.1989146E-04 0.000000 0.000000 + Av 2018 10 28 4 0 1.9244142E-02 0.000000 0.000000 1.6438760E-04 4.0453294E-04 0.000000 0.000000 + Av 2018 10 28 5 0 1.9927641E-02 0.000000 0.000000 1.6433733E-04 2.2598737E-04 0.000000 0.000000 + Av 2018 10 28 6 0 1.7873332E-02 0.000000 0.000000 1.6428708E-04 1.3816464E-04 0.000000 0.000000 + Av 2018 10 28 7 0 1.7659593E-02 0.000000 0.000000 1.6423684E-04 9.0403490E-05 0.000000 0.000000 Av 2018 10 28 8 0 8.6354027E-03 0.000000 0.000000 0.000000 6.2344814E-05 0.000000 2.2782898E-03 Av 2018 10 28 9 0 3.0456614E-04 0.000000 0.000000 0.000000 4.4825876E-05 0.000000 4.6431459E-03 Av 2018 10 28 10 0 3.7829057E-04 0.000000 0.000000 0.000000 3.3337139E-05 0.000000 5.8688568E-03 @@ -7240,21 +7240,21 @@ Av 2018 10 28 14 0 2.6775908E-02 0.000000 0.000000 0.000000 3.9408631E-03 0.000000 5.8688568E-03 Av 2018 10 28 15 0 2.6775908E-02 0.000000 0.000000 0.000000 1.3935922E-03 0.000000 4.6431459E-03 Av 2018 10 28 16 0 0.5429031 9.2712008E-07 0.000000 0.000000 7.9894900E-02 0.1199998 2.2782898E-03 - Av 2018 10 28 17 0 0.5429031 0.000000 0.000000 1.7068078E-04 1.3249120E-02 0.000000 0.000000 - Av 2018 10 28 18 0 3.5001136E-02 0.000000 0.000000 1.7062783E-04 3.4451699E-03 0.000000 0.000000 - Av 2018 10 28 19 0 4.2963009E-02 0.000000 0.000000 1.7057490E-04 1.2572788E-03 0.000000 0.000000 - Av 2018 10 28 20 0 2.0658560E-02 0.000000 0.000000 1.7052199E-04 5.7092489E-04 0.000000 0.000000 - Av 2018 10 28 21 0 2.1908140E-02 0.000000 0.000000 1.7046911E-04 3.0080584E-04 0.000000 0.000000 - Av 2018 10 28 22 0 1.8784363E-02 0.000000 0.000000 1.7041623E-04 1.7617490E-04 0.000000 0.000000 - Av 2018 10 28 23 0 1.8577658E-02 0.000000 0.000000 1.7036338E-04 1.1157910E-04 0.000000 0.000000 - Av 2018 10 28 24 0 0.4363533 6.6002946E-07 0.000000 1.7094165E-04 6.1293449E-02 7.9999842E-02 0.000000 - Av 2018 10 29 1 0 0.4792929 5.2256532E-08 0.000000 1.7197247E-04 2.7210224E-02 1.9999960E-02 0.000000 - Av 2018 10 29 2 0 0.1917498 4.8245035E-08 0.000000 1.7242602E-04 2.1306241E-02 1.9999960E-02 0.000000 - Av 2018 10 29 3 0 0.1398055 0.000000 0.000000 1.7269583E-04 4.8596789E-03 0.000000 0.000000 - Av 2018 10 29 4 0 2.2835221E-02 0.000000 0.000000 1.7264206E-04 1.6344544E-03 0.000000 0.000000 - Av 2018 10 29 5 0 7.4897185E-02 1.2228463E-08 0.000000 1.7267304E-04 7.0365155E-03 9.9999802E-03 0.000000 - Av 2018 10 29 6 0 6.2461842E-02 0.000000 0.000000 1.7278196E-04 2.4671310E-03 0.000000 0.000000 - Av 2018 10 29 7 0 2.5119301E-02 0.000000 0.000000 1.7272813E-04 9.7133522E-04 0.000000 0.000000 + Av 2018 10 28 17 0 0.5429031 0.000000 0.000000 1.7068078E-04 1.3249120E-02 0.000000 0.000000 + Av 2018 10 28 18 0 3.5001136E-02 0.000000 0.000000 1.7062783E-04 3.4451699E-03 0.000000 0.000000 + Av 2018 10 28 19 0 4.2963009E-02 0.000000 0.000000 1.7057490E-04 1.2572788E-03 0.000000 0.000000 + Av 2018 10 28 20 0 2.0658560E-02 0.000000 0.000000 1.7052199E-04 5.7092489E-04 0.000000 0.000000 + Av 2018 10 28 21 0 2.1908140E-02 0.000000 0.000000 1.7046911E-04 3.0080584E-04 0.000000 0.000000 + Av 2018 10 28 22 0 1.8784363E-02 0.000000 0.000000 1.7041623E-04 1.7617490E-04 0.000000 0.000000 + Av 2018 10 28 23 0 1.8577658E-02 0.000000 0.000000 1.7036338E-04 1.1157910E-04 0.000000 0.000000 + Av 2018 10 28 24 0 0.4363533 6.6002946E-07 0.000000 1.7094165E-04 6.1293449E-02 7.9999842E-02 0.000000 + Av 2018 10 29 1 0 0.4792929 5.2256532E-08 0.000000 1.7197247E-04 2.7210224E-02 1.9999960E-02 0.000000 + Av 2018 10 29 2 0 0.1917498 4.8245035E-08 0.000000 1.7242602E-04 2.1306241E-02 1.9999960E-02 0.000000 + Av 2018 10 29 3 0 0.1398055 0.000000 0.000000 1.7269583E-04 4.8596789E-03 0.000000 0.000000 + Av 2018 10 29 4 0 2.2835221E-02 0.000000 0.000000 1.7264206E-04 1.6344544E-03 0.000000 0.000000 + Av 2018 10 29 5 0 7.4897185E-02 1.2228463E-08 0.000000 1.7267304E-04 7.0365155E-03 9.9999802E-03 0.000000 + Av 2018 10 29 6 0 6.2461842E-02 0.000000 0.000000 1.7278196E-04 2.4671310E-03 0.000000 0.000000 + Av 2018 10 29 7 0 2.5119301E-02 0.000000 0.000000 1.7272813E-04 9.7133522E-04 0.000000 0.000000 Av 2018 10 29 8 0 1.4719424E-02 0.000000 0.000000 0.000000 4.6406660E-04 0.000000 1.9651509E-03 Av 2018 10 29 9 0 1.7216020E-03 0.000000 0.000000 0.000000 2.5338444E-04 0.000000 4.0565147E-03 Av 2018 10 29 10 0 2.0898529E-03 0.000000 0.000000 0.000000 1.5232257E-04 0.000000 5.1653031E-03 @@ -7264,21 +7264,21 @@ Av 2018 10 29 14 0 1.0181225E-02 2.3304327E-09 0.000000 0.000000 1.4513604E-03 2.9999940E-02 5.1653031E-03 Av 2018 10 29 15 0 1.2276974E-02 0.000000 0.000000 0.000000 8.6746609E-04 0.000000 4.0565147E-03 Av 2018 10 29 16 0 4.3474948E-03 0.000000 0.000000 0.000000 4.2348748E-04 0.000000 1.9651509E-03 - Av 2018 10 29 17 0 1.4638361E-02 0.000000 0.000000 1.7229869E-04 2.3479467E-04 0.000000 0.000000 - Av 2018 10 29 18 0 2.0885076E-02 0.000000 0.000000 1.7224500E-04 1.4274882E-04 0.000000 0.000000 - Av 2018 10 29 19 0 1.7742362E-02 0.000000 0.000000 1.7219133E-04 9.3005023E-05 0.000000 0.000000 - Av 2018 10 29 20 0 1.8292256E-02 0.000000 0.000000 1.7213768E-04 6.3924512E-05 0.000000 0.000000 - Av 2018 10 29 21 0 1.8066768E-02 0.000000 0.000000 1.7208404E-04 4.5838431E-05 9.9999802E-03 0.000000 - Av 2018 10 29 22 0 1.7934669E-02 0.000000 0.000000 1.7203043E-04 3.4015466E-05 0.000000 0.000000 - Av 2018 10 29 23 0 1.8547801E-02 0.000000 0.000000 1.7197683E-04 1.7358418E-04 0.000000 0.000000 - Av 2018 10 29 24 0 1.8096212E-02 0.000000 0.000000 1.7192325E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 1 0 1.7045429E-02 0.000000 0.000000 1.7155886E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 2 0 1.7382743E-02 0.000000 0.000000 1.7151037E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 3 0 1.7258538E-02 0.000000 0.000000 1.7145704E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 4 0 1.7294478E-02 0.000000 0.000000 1.7140371E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 5 0 1.7274735E-02 0.000000 0.000000 1.7135039E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 6 0 1.7274356E-02 0.000000 0.000000 1.7129708E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 7 0 1.7267246E-02 0.000000 0.000000 1.7124381E-04 0.000000 0.000000 0.000000 + Av 2018 10 29 17 0 1.4638361E-02 0.000000 0.000000 1.7229869E-04 2.3479467E-04 0.000000 0.000000 + Av 2018 10 29 18 0 2.0885076E-02 0.000000 0.000000 1.7224500E-04 1.4274882E-04 0.000000 0.000000 + Av 2018 10 29 19 0 1.7742362E-02 0.000000 0.000000 1.7219133E-04 9.3005023E-05 0.000000 0.000000 + Av 2018 10 29 20 0 1.8292256E-02 0.000000 0.000000 1.7213768E-04 6.3924512E-05 0.000000 0.000000 + Av 2018 10 29 21 0 1.8066768E-02 0.000000 0.000000 1.7208404E-04 4.5838431E-05 9.9999802E-03 0.000000 + Av 2018 10 29 22 0 1.7934669E-02 0.000000 0.000000 1.7203043E-04 3.4015466E-05 0.000000 0.000000 + Av 2018 10 29 23 0 1.8547801E-02 0.000000 0.000000 1.7197683E-04 1.7358418E-04 0.000000 0.000000 + Av 2018 10 29 24 0 1.8096212E-02 0.000000 0.000000 1.7192325E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 1 0 1.7045429E-02 0.000000 0.000000 1.7155886E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 2 0 1.7382743E-02 0.000000 0.000000 1.7151037E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 3 0 1.7258538E-02 0.000000 0.000000 1.7145704E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 4 0 1.7294478E-02 0.000000 0.000000 1.7140371E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 5 0 1.7274735E-02 0.000000 0.000000 1.7135039E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 6 0 1.7274356E-02 0.000000 0.000000 1.7129708E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 7 0 1.7267246E-02 0.000000 0.000000 1.7124381E-04 0.000000 0.000000 0.000000 Av 2018 10 30 8 0 8.6327437E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.0142517E-03 Av 2018 10 30 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2128954E-03 Av 2018 10 30 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4044137E-03 @@ -7288,21 +7288,21 @@ Av 2018 10 30 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.4044137E-03 Av 2018 10 30 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2128954E-03 Av 2018 10 30 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.0142517E-03 - Av 2018 10 30 17 0 1.1598900E-02 0.000000 0.000000 1.7071195E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 18 0 1.9161152E-02 0.000000 0.000000 1.7065887E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 19 0 1.6524477E-02 0.000000 0.000000 1.7060580E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 20 0 1.7434061E-02 0.000000 0.000000 1.7055274E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 21 0 1.7390281E-02 0.000000 0.000000 1.7049970E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 10 30 22 0 1.7692842E-02 0.000000 0.000000 1.7044666E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 10 30 23 0 1.7300734E-02 0.000000 0.000000 1.7039364E-04 0.000000 0.000000 0.000000 - Av 2018 10 30 24 0 0.1567751 1.2679575E-07 0.000000 1.7060572E-04 2.0341696E-02 4.9999900E-02 0.000000 - Av 2018 10 31 1 0 0.2522455 5.5602548E-08 0.000000 1.7094532E-04 2.0838534E-02 1.9999960E-02 0.000000 - Av 2018 10 31 2 0 0.1635656 1.2830900E-08 0.000000 1.7136107E-04 1.2231315E-02 9.9999802E-03 0.000000 - Av 2018 10 31 3 0 7.2587073E-02 0.000000 0.000000 1.7148808E-04 3.2496096E-03 0.000000 0.000000 - Av 2018 10 31 4 0 2.8306991E-02 0.000000 0.000000 1.7143467E-04 1.2020569E-03 0.000000 0.000000 - Av 2018 10 31 5 0 2.5359325E-02 0.000000 0.000000 1.7138128E-04 5.5078202E-04 0.000000 0.000000 - Av 2018 10 31 6 0 2.0193836E-02 0.000000 0.000000 1.7132792E-04 2.9202207E-04 0.000000 0.000000 - Av 2018 10 31 7 0 1.9407803E-02 0.000000 0.000000 1.7127456E-04 1.7181430E-04 0.000000 0.000000 + Av 2018 10 30 17 0 1.1598900E-02 0.000000 0.000000 1.7071195E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 18 0 1.9161152E-02 0.000000 0.000000 1.7065887E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 19 0 1.6524477E-02 0.000000 0.000000 1.7060580E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 20 0 1.7434061E-02 0.000000 0.000000 1.7055274E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 21 0 1.7390281E-02 0.000000 0.000000 1.7049970E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 10 30 22 0 1.7692842E-02 0.000000 0.000000 1.7044666E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 10 30 23 0 1.7300734E-02 0.000000 0.000000 1.7039364E-04 0.000000 0.000000 0.000000 + Av 2018 10 30 24 0 0.1567751 1.2679575E-07 0.000000 1.7060572E-04 2.0341696E-02 4.9999900E-02 0.000000 + Av 2018 10 31 1 0 0.2522455 5.5602548E-08 0.000000 1.7094532E-04 2.0838534E-02 1.9999960E-02 0.000000 + Av 2018 10 31 2 0 0.1635656 1.2830900E-08 0.000000 1.7136107E-04 1.2231315E-02 9.9999802E-03 0.000000 + Av 2018 10 31 3 0 7.2587073E-02 0.000000 0.000000 1.7148808E-04 3.2496096E-03 0.000000 0.000000 + Av 2018 10 31 4 0 2.8306991E-02 0.000000 0.000000 1.7143467E-04 1.2020569E-03 0.000000 0.000000 + Av 2018 10 31 5 0 2.5359325E-02 0.000000 0.000000 1.7138128E-04 5.5078202E-04 0.000000 0.000000 + Av 2018 10 31 6 0 2.0193836E-02 0.000000 0.000000 1.7132792E-04 2.9202207E-04 0.000000 0.000000 + Av 2018 10 31 7 0 1.9407803E-02 0.000000 0.000000 1.7127456E-04 1.7181430E-04 0.000000 0.000000 Av 2018 10 31 8 0 9.2845662E-03 0.000000 0.000000 0.000000 1.0919281E-04 0.000000 1.9988252E-03 Av 2018 10 31 9 0 5.0013687E-04 0.000000 0.000000 0.000000 7.3609866E-05 0.000000 4.2375200E-03 Av 2018 10 31 10 0 6.3114462E-04 0.000000 0.000000 0.000000 5.1973333E-05 0.000000 5.4768026E-03 @@ -7312,21 +7312,21 @@ Av 2018 10 31 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 5.4768026E-03 Av 2018 10 31 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2375200E-03 Av 2018 10 31 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.9988252E-03 - Av 2018 10 31 17 0 1.1600934E-02 0.000000 0.000000 1.7074189E-04 0.000000 0.000000 0.000000 - Av 2018 10 31 18 0 1.9164506E-02 0.000000 0.000000 1.7068870E-04 0.000000 0.000000 0.000000 - Av 2018 10 31 19 0 1.6527358E-02 0.000000 0.000000 1.7063553E-04 0.000000 0.000000 0.000000 - Av 2018 10 31 20 0 1.7437093E-02 0.000000 0.000000 1.7058238E-04 0.000000 0.000000 0.000000 - Av 2018 10 31 21 0 1.7113551E-02 0.000000 0.000000 1.7052925E-04 0.000000 0.000000 0.000000 - Av 2018 10 31 22 0 1.7218832E-02 0.000000 0.000000 1.7047614E-04 0.000000 0.000000 0.000000 - Av 2018 10 31 23 0 1.7175008E-02 0.000000 0.000000 1.7042305E-04 0.000000 0.000000 0.000000 - Av 2018 10 31 24 0 1.7183032E-02 0.000000 0.000000 1.7036998E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 1 0 1.7152078E-02 0.000000 0.000000 1.7000853E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 2 0 1.7134691E-02 0.000000 0.000000 1.6995567E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 3 0 1.7133556E-02 0.000000 0.000000 1.6990285E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 4 0 1.7126774E-02 0.000000 0.000000 1.6985004E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 5 0 1.7121956E-02 0.000000 0.000000 1.6979722E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 6 0 1.7116455E-02 0.000000 0.000000 1.6974444E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 7 0 1.7111197E-02 0.000000 0.000000 1.6969166E-04 0.000000 0.000000 0.000000 + Av 2018 10 31 17 0 1.1600934E-02 0.000000 0.000000 1.7074189E-04 0.000000 0.000000 0.000000 + Av 2018 10 31 18 0 1.9164506E-02 0.000000 0.000000 1.7068870E-04 0.000000 0.000000 0.000000 + Av 2018 10 31 19 0 1.6527358E-02 0.000000 0.000000 1.7063553E-04 0.000000 0.000000 0.000000 + Av 2018 10 31 20 0 1.7437093E-02 0.000000 0.000000 1.7058238E-04 0.000000 0.000000 0.000000 + Av 2018 10 31 21 0 1.7113551E-02 0.000000 0.000000 1.7052925E-04 0.000000 0.000000 0.000000 + Av 2018 10 31 22 0 1.7218832E-02 0.000000 0.000000 1.7047614E-04 0.000000 0.000000 0.000000 + Av 2018 10 31 23 0 1.7175008E-02 0.000000 0.000000 1.7042305E-04 0.000000 0.000000 0.000000 + Av 2018 10 31 24 0 1.7183032E-02 0.000000 0.000000 1.7036998E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 1 0 1.7152078E-02 0.000000 0.000000 1.7000853E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 2 0 1.7134691E-02 0.000000 0.000000 1.6995567E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 3 0 1.7133556E-02 0.000000 0.000000 1.6990285E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 4 0 1.7126774E-02 0.000000 0.000000 1.6985004E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 5 0 1.7121956E-02 0.000000 0.000000 1.6979722E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 6 0 1.7116455E-02 0.000000 0.000000 1.6974444E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 7 0 1.7111197E-02 0.000000 0.000000 1.6969166E-04 0.000000 0.000000 0.000000 Av 2018 11 1 8 0 8.5542509E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.4904236E-03 Av 2018 11 1 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3162635E-03 Av 2018 11 1 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8968916E-03 @@ -7336,21 +7336,21 @@ Av 2018 11 1 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 6.8968916E-03 Av 2018 11 1 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.3162635E-03 Av 2018 11 1 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.4904236E-03 - Av 2018 11 1 17 0 1.1493783E-02 0.000000 0.000000 1.6916485E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 18 0 1.8987503E-02 0.000000 0.000000 1.6911226E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 19 0 1.6374726E-02 0.000000 0.000000 1.6905970E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 20 0 1.7276067E-02 0.000000 0.000000 1.6900714E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 21 0 1.6955523E-02 0.000000 0.000000 1.6895460E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 22 0 1.7059840E-02 0.000000 0.000000 1.6890207E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 23 0 1.7016433E-02 0.000000 0.000000 1.6884957E-04 0.000000 0.000000 0.000000 - Av 2018 11 1 24 0 1.7024390E-02 0.000000 0.000000 1.6879707E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 1 0 1.6994316E-02 0.000000 0.000000 1.6844767E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 2 0 1.6977482E-02 0.000000 0.000000 1.6839539E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 3 0 1.7816246E-02 0.000000 0.000000 1.6834313E-04 0.000000 2.9999940E-02 0.000000 - Av 2018 11 2 4 0 1.8418867E-02 0.000000 0.000000 1.6829091E-04 0.000000 2.9999940E-02 0.000000 - Av 2018 11 2 5 0 0.1068504 7.9019863E-08 0.000000 1.6846410E-04 1.3036600E-02 2.9999940E-02 0.000000 - Av 2018 11 2 6 0 0.1023148 0.000000 0.000000 1.6885326E-04 3.9850306E-03 0.000000 0.000000 - Av 2018 11 2 7 0 2.3991471E-02 0.000000 0.000000 1.6880079E-04 1.4055029E-03 0.000000 0.000000 + Av 2018 11 1 17 0 1.1493783E-02 0.000000 0.000000 1.6916485E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 18 0 1.8987503E-02 0.000000 0.000000 1.6911226E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 19 0 1.6374726E-02 0.000000 0.000000 1.6905970E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 20 0 1.7276067E-02 0.000000 0.000000 1.6900714E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 21 0 1.6955523E-02 0.000000 0.000000 1.6895460E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 22 0 1.7059840E-02 0.000000 0.000000 1.6890207E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 23 0 1.7016433E-02 0.000000 0.000000 1.6884957E-04 0.000000 0.000000 0.000000 + Av 2018 11 1 24 0 1.7024390E-02 0.000000 0.000000 1.6879707E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 1 0 1.6994316E-02 0.000000 0.000000 1.6844767E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 2 0 1.6977482E-02 0.000000 0.000000 1.6839539E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 3 0 1.7816246E-02 0.000000 0.000000 1.6834313E-04 0.000000 2.9999940E-02 0.000000 + Av 2018 11 2 4 0 1.8418867E-02 0.000000 0.000000 1.6829091E-04 0.000000 2.9999940E-02 0.000000 + Av 2018 11 2 5 0 0.1068504 7.9019863E-08 0.000000 1.6846410E-04 1.3036600E-02 2.9999940E-02 0.000000 + Av 2018 11 2 6 0 0.1023148 0.000000 0.000000 1.6885326E-04 3.9850306E-03 0.000000 0.000000 + Av 2018 11 2 7 0 2.3991471E-02 0.000000 0.000000 1.6880079E-04 1.4055029E-03 0.000000 0.000000 Av 2018 11 2 8 0 1.9433938E-02 0.000000 0.000000 0.000000 6.2396954E-04 0.000000 2.1785758E-03 Av 2018 11 2 9 0 2.1988517E-03 0.000000 0.000000 0.000000 3.2362575E-04 0.000000 4.7165430E-03 Av 2018 11 2 10 0 2.6172639E-03 0.000000 0.000000 0.000000 1.8739094E-04 0.000000 6.1652227E-03 @@ -7360,21 +7360,21 @@ Av 2018 11 2 14 0 3.7714245E-04 0.000000 0.000000 0.000000 4.0123890E-05 0.000000 6.1652227E-03 Av 2018 11 2 15 0 1.3620019E-03 0.000000 0.000000 0.000000 1.9166266E-04 0.000000 4.7165430E-03 Av 2018 11 2 16 0 1.2176766E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.1785758E-03 - Av 2018 11 2 17 0 1.1433458E-02 0.000000 0.000000 1.6827699E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 18 0 1.8887848E-02 0.000000 0.000000 1.6822469E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 19 0 1.6288785E-02 0.000000 0.000000 1.6817242E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 20 0 1.7185401E-02 0.000000 0.000000 1.6812018E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 21 0 1.6866541E-02 0.000000 0.000000 1.6806793E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 22 0 1.6970312E-02 0.000000 0.000000 1.6801570E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 23 0 1.6927134E-02 0.000000 0.000000 1.6796349E-04 0.000000 0.000000 0.000000 - Av 2018 11 2 24 0 1.6935054E-02 0.000000 0.000000 1.6791129E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 1 0 1.6905276E-02 0.000000 0.000000 1.6756575E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 2 0 1.6888622E-02 0.000000 0.000000 1.6751378E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 3 0 1.6887350E-02 0.000000 0.000000 1.6746181E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 4 0 1.6880732E-02 0.000000 0.000000 1.6740986E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 5 0 1.6875975E-02 0.000000 0.000000 1.6735792E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 6 0 1.6870571E-02 0.000000 0.000000 1.6730600E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 7 0 1.6865395E-02 0.000000 0.000000 1.6725410E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 17 0 1.1433458E-02 0.000000 0.000000 1.6827699E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 18 0 1.8887848E-02 0.000000 0.000000 1.6822469E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 19 0 1.6288785E-02 0.000000 0.000000 1.6817242E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 20 0 1.7185401E-02 0.000000 0.000000 1.6812018E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 21 0 1.6866541E-02 0.000000 0.000000 1.6806793E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 22 0 1.6970312E-02 0.000000 0.000000 1.6801570E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 23 0 1.6927134E-02 0.000000 0.000000 1.6796349E-04 0.000000 0.000000 0.000000 + Av 2018 11 2 24 0 1.6935054E-02 0.000000 0.000000 1.6791129E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 1 0 1.6905276E-02 0.000000 0.000000 1.6756575E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 2 0 1.6888622E-02 0.000000 0.000000 1.6751378E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 3 0 1.6887350E-02 0.000000 0.000000 1.6746181E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 4 0 1.6880732E-02 0.000000 0.000000 1.6740986E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 5 0 1.6875975E-02 0.000000 0.000000 1.6735792E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 6 0 1.6870571E-02 0.000000 0.000000 1.6730600E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 7 0 1.6865395E-02 0.000000 0.000000 1.6725410E-04 0.000000 0.000000 0.000000 Av 2018 11 3 8 0 8.4313741E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.9461166E-03 Av 2018 11 3 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2747245E-03 Av 2018 11 3 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.6302738E-03 @@ -7384,21 +7384,21 @@ Av 2018 11 3 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.6302738E-03 Av 2018 11 3 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2747245E-03 Av 2018 11 3 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 1.9461166E-03 - Av 2018 11 3 17 0 1.1328757E-02 0.000000 0.000000 1.6673600E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 11 3 18 0 1.8714890E-02 0.000000 0.000000 1.6668429E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 19 0 1.6139640E-02 0.000000 0.000000 1.6663258E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 20 0 1.7028052E-02 0.000000 0.000000 1.6658088E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 21 0 1.6712118E-02 0.000000 0.000000 1.6652921E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 22 0 1.6814951E-02 0.000000 0.000000 1.6647755E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 23 0 1.6772177E-02 0.000000 0.000000 1.6642590E-04 0.000000 0.000000 0.000000 - Av 2018 11 3 24 0 1.6780034E-02 0.000000 0.000000 1.6637429E-04 0.000000 0.000000 0.000000 - Av 2018 11 4 1 0 1.6751096E-02 0.000000 0.000000 1.6604022E-04 0.000000 0.000000 0.000000 - Av 2018 11 4 2 0 1.7290864E-02 0.000000 0.000000 1.6598881E-04 0.000000 1.9999960E-02 0.000000 - Av 2018 11 4 3 0 1.8274762E-02 0.000000 0.000000 1.6593740E-04 0.000000 3.9999921E-02 0.000000 - Av 2018 11 4 4 0 0.1319942 1.1158311E-07 0.000000 1.6614760E-04 1.6733816E-02 2.9999940E-02 0.000000 - Av 2018 11 4 5 0 0.2298955 5.3706163E-08 0.000000 1.6679465E-04 2.0079745E-02 1.9999960E-02 0.000000 - Av 2018 11 4 6 0 0.1644758 1.3607454E-08 0.000000 1.6719151E-04 1.2092318E-02 9.9999802E-03 0.000000 - Av 2018 11 4 7 0 7.0590779E-02 0.000000 0.000000 1.6731946E-04 3.2225254E-03 0.000000 0.000000 + Av 2018 11 3 17 0 1.1328757E-02 0.000000 0.000000 1.6673600E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 11 3 18 0 1.8714890E-02 0.000000 0.000000 1.6668429E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 19 0 1.6139640E-02 0.000000 0.000000 1.6663258E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 20 0 1.7028052E-02 0.000000 0.000000 1.6658088E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 21 0 1.6712118E-02 0.000000 0.000000 1.6652921E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 22 0 1.6814951E-02 0.000000 0.000000 1.6647755E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 23 0 1.6772177E-02 0.000000 0.000000 1.6642590E-04 0.000000 0.000000 0.000000 + Av 2018 11 3 24 0 1.6780034E-02 0.000000 0.000000 1.6637429E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 1 0 1.6751096E-02 0.000000 0.000000 1.6604022E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 2 0 1.7290864E-02 0.000000 0.000000 1.6598881E-04 0.000000 1.9999960E-02 0.000000 + Av 2018 11 4 3 0 1.8274762E-02 0.000000 0.000000 1.6593740E-04 0.000000 3.9999921E-02 0.000000 + Av 2018 11 4 4 0 0.1319942 1.1158311E-07 0.000000 1.6614760E-04 1.6733816E-02 2.9999940E-02 0.000000 + Av 2018 11 4 5 0 0.2298955 5.3706163E-08 0.000000 1.6679465E-04 2.0079745E-02 1.9999960E-02 0.000000 + Av 2018 11 4 6 0 0.1644758 1.3607454E-08 0.000000 1.6719151E-04 1.2092318E-02 9.9999802E-03 0.000000 + Av 2018 11 4 7 0 7.0590779E-02 0.000000 0.000000 1.6731946E-04 3.2225254E-03 0.000000 0.000000 Av 2018 11 4 8 0 1.6770832E-02 0.000000 0.000000 0.000000 1.1943391E-03 0.000000 1.7644628E-03 Av 2018 11 4 9 0 5.8735060E-03 0.000000 0.000000 0.000000 5.4794928E-04 0.000000 3.9338167E-03 Av 2018 11 4 10 0 3.5055564E-03 0.000000 0.000000 0.000000 2.9078135E-04 0.000000 5.2209389E-03 @@ -7408,21 +7408,21 @@ Av 2018 11 4 14 0 5.8947783E-04 0.000000 0.000000 0.000000 5.1847590E-05 9.9999802E-03 5.2209389E-03 Av 2018 11 4 15 0 4.1261851E-04 0.000000 0.000000 0.000000 3.8002803E-05 0.000000 3.9338167E-03 Av 2018 11 4 16 0 1.3314119E-03 0.000000 0.000000 0.000000 1.8551879E-04 0.000000 1.7644628E-03 - Av 2018 11 4 17 0 1.2117947E-02 0.000000 0.000000 1.6680038E-04 0.000000 0.000000 0.000000 - Av 2018 11 4 18 0 1.8449223E-02 0.000000 0.000000 1.6674856E-04 0.000000 0.000000 0.000000 - Av 2018 11 4 19 0 1.6240742E-02 0.000000 0.000000 1.6669676E-04 0.000000 0.000000 0.000000 - Av 2018 11 4 20 0 1.7001612E-02 0.000000 0.000000 1.6664497E-04 0.000000 0.000000 0.000000 - Av 2018 11 4 21 0 1.6730014E-02 0.000000 0.000000 1.6659319E-04 0.000000 0.000000 0.000000 - Av 2018 11 4 22 0 1.6817417E-02 0.000000 0.000000 1.6654143E-04 0.000000 0.000000 0.000000 - Av 2018 11 4 23 0 1.6779993E-02 0.000000 0.000000 1.6648968E-04 0.000000 0.000000 0.000000 - Av 2018 11 4 24 0 1.6785976E-02 0.000000 0.000000 1.6643797E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 1 0 1.6757190E-02 0.000000 0.000000 1.6609662E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 2 0 1.6740505E-02 0.000000 0.000000 1.6604509E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 3 0 1.6739305E-02 0.000000 0.000000 1.6599360E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 4 0 1.6732726E-02 0.000000 0.000000 1.6594211E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 5 0 1.6728019E-02 0.000000 0.000000 1.6589065E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 6 0 1.6722664E-02 0.000000 0.000000 1.6583921E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 7 0 1.6717538E-02 0.000000 0.000000 1.6578779E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 17 0 1.2117947E-02 0.000000 0.000000 1.6680038E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 18 0 1.8449223E-02 0.000000 0.000000 1.6674856E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 19 0 1.6240742E-02 0.000000 0.000000 1.6669676E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 20 0 1.7001612E-02 0.000000 0.000000 1.6664497E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 21 0 1.6730014E-02 0.000000 0.000000 1.6659319E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 22 0 1.6817417E-02 0.000000 0.000000 1.6654143E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 23 0 1.6779993E-02 0.000000 0.000000 1.6648968E-04 0.000000 0.000000 0.000000 + Av 2018 11 4 24 0 1.6785976E-02 0.000000 0.000000 1.6643797E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 1 0 1.6757190E-02 0.000000 0.000000 1.6609662E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 2 0 1.6740505E-02 0.000000 0.000000 1.6604509E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 3 0 1.6739305E-02 0.000000 0.000000 1.6599360E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 4 0 1.6732726E-02 0.000000 0.000000 1.6594211E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 5 0 1.6728019E-02 0.000000 0.000000 1.6589065E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 6 0 1.6722664E-02 0.000000 0.000000 1.6583921E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 7 0 1.6717538E-02 0.000000 0.000000 1.6578779E-04 0.000000 0.000000 0.000000 Av 2018 11 5 8 0 8.3574569E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.5920062E-03 Av 2018 11 5 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.6040156E-03 Av 2018 11 5 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8200218E-03 @@ -7432,21 +7432,21 @@ Av 2018 11 5 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.8200218E-03 Av 2018 11 5 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.6040156E-03 Av 2018 11 5 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.5920062E-03 - Av 2018 11 5 17 0 1.1229444E-02 0.000000 0.000000 1.6527432E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 18 0 1.8550828E-02 0.000000 0.000000 1.6522307E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 19 0 1.5998153E-02 0.000000 0.000000 1.6517182E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 20 0 1.6878780E-02 0.000000 0.000000 1.6512060E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 21 0 1.6565619E-02 0.000000 0.000000 1.6506940E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 22 0 1.6667550E-02 0.000000 0.000000 1.6501821E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 23 0 1.6625151E-02 0.000000 0.000000 1.6496703E-04 0.000000 0.000000 0.000000 - Av 2018 11 5 24 0 1.6632941E-02 0.000000 0.000000 1.6491585E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 1 0 1.6604330E-02 0.000000 0.000000 1.6458583E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 2 0 1.7141864E-02 0.000000 0.000000 1.6453488E-04 0.000000 1.9999960E-02 0.000000 - Av 2018 11 6 3 0 1.6948037E-02 0.000000 0.000000 1.6448395E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 4 0 1.6455041E-02 0.000000 0.000000 1.6443302E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 5 0 1.6619541E-02 0.000000 0.000000 1.6438210E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 6 0 1.6555425E-02 0.000000 0.000000 1.6433120E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 7 0 1.6570803E-02 0.000000 0.000000 1.6428033E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 17 0 1.1229444E-02 0.000000 0.000000 1.6527432E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 18 0 1.8550828E-02 0.000000 0.000000 1.6522307E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 19 0 1.5998153E-02 0.000000 0.000000 1.6517182E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 20 0 1.6878780E-02 0.000000 0.000000 1.6512060E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 21 0 1.6565619E-02 0.000000 0.000000 1.6506940E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 22 0 1.6667550E-02 0.000000 0.000000 1.6501821E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 23 0 1.6625151E-02 0.000000 0.000000 1.6496703E-04 0.000000 0.000000 0.000000 + Av 2018 11 5 24 0 1.6632941E-02 0.000000 0.000000 1.6491585E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 1 0 1.6604330E-02 0.000000 0.000000 1.6458583E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 2 0 1.7141864E-02 0.000000 0.000000 1.6453488E-04 0.000000 1.9999960E-02 0.000000 + Av 2018 11 6 3 0 1.6948037E-02 0.000000 0.000000 1.6448395E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 4 0 1.6455041E-02 0.000000 0.000000 1.6443302E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 5 0 1.6619541E-02 0.000000 0.000000 1.6438210E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 6 0 1.6555425E-02 0.000000 0.000000 1.6433120E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 7 0 1.6570803E-02 0.000000 0.000000 1.6428033E-04 0.000000 0.000000 0.000000 Av 2018 11 6 8 0 8.2786530E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.4102453E-03 Av 2018 11 6 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2430855E-03 Av 2018 11 6 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.3708030E-03 @@ -7456,21 +7456,21 @@ Av 2018 11 6 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.3708030E-03 Av 2018 11 6 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2430855E-03 Av 2018 11 6 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.4102453E-03 - Av 2018 11 6 17 0 1.1127398E-02 0.000000 0.000000 1.6377242E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 18 0 1.8382255E-02 0.000000 0.000000 1.6372171E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 19 0 1.5852788E-02 0.000000 0.000000 1.6367102E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 20 0 1.6725419E-02 0.000000 0.000000 1.6362034E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 21 0 1.6415112E-02 0.000000 0.000000 1.6356968E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 22 0 1.6516127E-02 0.000000 0.000000 1.6351904E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 23 0 1.6474124E-02 0.000000 0.000000 1.6346843E-04 0.000000 0.000000 0.000000 - Av 2018 11 6 24 0 1.6481850E-02 0.000000 0.000000 1.6341780E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 1 0 1.6729837E-02 0.000000 0.000000 1.6309870E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 11 7 2 0 1.6618503E-02 0.000000 0.000000 1.6304829E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 3 0 1.6374571E-02 0.000000 0.000000 1.6299791E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 4 0 1.6452542E-02 0.000000 0.000000 1.6294752E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 5 0 1.6418584E-02 0.000000 0.000000 1.6289714E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 6 0 1.6423548E-02 0.000000 0.000000 1.6284679E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 7 0 1.6414981E-02 0.000000 0.000000 1.6279645E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 17 0 1.1127398E-02 0.000000 0.000000 1.6377242E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 18 0 1.8382255E-02 0.000000 0.000000 1.6372171E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 19 0 1.5852788E-02 0.000000 0.000000 1.6367102E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 20 0 1.6725419E-02 0.000000 0.000000 1.6362034E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 21 0 1.6415112E-02 0.000000 0.000000 1.6356968E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 22 0 1.6516127E-02 0.000000 0.000000 1.6351904E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 23 0 1.6474124E-02 0.000000 0.000000 1.6346843E-04 0.000000 0.000000 0.000000 + Av 2018 11 6 24 0 1.6481850E-02 0.000000 0.000000 1.6341780E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 1 0 1.6729837E-02 0.000000 0.000000 1.6309870E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 11 7 2 0 1.6618503E-02 0.000000 0.000000 1.6304829E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 3 0 1.6374571E-02 0.000000 0.000000 1.6299791E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 4 0 1.6452542E-02 0.000000 0.000000 1.6294752E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 5 0 1.6418584E-02 0.000000 0.000000 1.6289714E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 6 0 1.6423548E-02 0.000000 0.000000 1.6284679E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 7 0 1.6414981E-02 0.000000 0.000000 1.6279645E-04 0.000000 0.000000 0.000000 Av 2018 11 7 8 0 8.2071517E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.3495007E-03 Av 2018 11 7 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.1538694E-03 Av 2018 11 7 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2834878E-03 @@ -7480,21 +7480,21 @@ Av 2018 11 7 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2834878E-03 Av 2018 11 7 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.1538694E-03 Av 2018 11 7 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.3495007E-03 - Av 2018 11 7 17 0 1.1026944E-02 0.000000 0.000000 1.6229395E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 18 0 1.8216312E-02 0.000000 0.000000 1.6224377E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 19 0 1.5709691E-02 0.000000 0.000000 1.6219362E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 20 0 1.6574452E-02 0.000000 0.000000 1.6214349E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 21 0 1.6266953E-02 0.000000 0.000000 1.6209338E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 22 0 1.6367067E-02 0.000000 0.000000 1.6204329E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 23 0 1.6325450E-02 0.000000 0.000000 1.6199319E-04 0.000000 0.000000 0.000000 - Av 2018 11 7 24 0 1.6333114E-02 0.000000 0.000000 1.6194311E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 1 0 1.6306080E-02 0.000000 0.000000 1.6163454E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 2 0 1.6291123E-02 0.000000 0.000000 1.6158464E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 3 0 1.6289547E-02 0.000000 0.000000 1.6153479E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 4 0 1.6283320E-02 0.000000 0.000000 1.6148493E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 5 0 1.6278714E-02 0.000000 0.000000 1.6143511E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 6 0 1.6273545E-02 0.000000 0.000000 1.6138529E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 7 0 1.6268572E-02 0.000000 0.000000 1.6133547E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 17 0 1.1026944E-02 0.000000 0.000000 1.6229395E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 18 0 1.8216312E-02 0.000000 0.000000 1.6224377E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 19 0 1.5709691E-02 0.000000 0.000000 1.6219362E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 20 0 1.6574452E-02 0.000000 0.000000 1.6214349E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 21 0 1.6266953E-02 0.000000 0.000000 1.6209338E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 22 0 1.6367067E-02 0.000000 0.000000 1.6204329E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 23 0 1.6325450E-02 0.000000 0.000000 1.6199319E-04 0.000000 0.000000 0.000000 + Av 2018 11 7 24 0 1.6333114E-02 0.000000 0.000000 1.6194311E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 1 0 1.6306080E-02 0.000000 0.000000 1.6163454E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 2 0 1.6291123E-02 0.000000 0.000000 1.6158464E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 3 0 1.6289547E-02 0.000000 0.000000 1.6153479E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 4 0 1.6283320E-02 0.000000 0.000000 1.6148493E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 5 0 1.6278714E-02 0.000000 0.000000 1.6143511E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 6 0 1.6273545E-02 0.000000 0.000000 1.6138529E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 7 0 1.6268572E-02 0.000000 0.000000 1.6133547E-04 0.000000 0.000000 0.000000 Av 2018 11 8 8 0 8.1330165E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.2197548E-03 Av 2018 11 8 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8982644E-03 Av 2018 11 8 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.9668968E-03 @@ -7504,21 +7504,21 @@ Av 2018 11 8 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.9668968E-03 Av 2018 11 8 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8982644E-03 Av 2018 11 8 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2197548E-03 - Av 2018 11 8 17 0 1.0928040E-02 0.000000 0.000000 1.6083827E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 18 0 1.8052932E-02 0.000000 0.000000 1.6078865E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 19 0 1.5568799E-02 0.000000 0.000000 1.6073901E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 20 0 1.6425811E-02 0.000000 0.000000 1.6068941E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 21 0 1.6121082E-02 0.000000 0.000000 1.6063981E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 22 0 1.6220301E-02 0.000000 0.000000 1.6059024E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 23 0 1.6179066E-02 0.000000 0.000000 1.6054069E-04 0.000000 0.000000 0.000000 - Av 2018 11 8 24 0 1.6186669E-02 0.000000 0.000000 1.6049115E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 1 0 1.6160382E-02 0.000000 0.000000 1.6019269E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 2 0 1.6145891E-02 0.000000 0.000000 1.6014333E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 3 0 1.6144222E-02 0.000000 0.000000 1.6009397E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 4 0 1.6138095E-02 0.000000 0.000000 1.6004464E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 5 0 1.6133524E-02 0.000000 0.000000 1.5999534E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 6 0 1.6401349E-02 0.000000 0.000000 1.5994604E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 11 9 7 0 1.6301526E-02 0.000000 0.000000 1.5989676E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 17 0 1.0928040E-02 0.000000 0.000000 1.6083827E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 18 0 1.8052932E-02 0.000000 0.000000 1.6078865E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 19 0 1.5568799E-02 0.000000 0.000000 1.6073901E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 20 0 1.6425811E-02 0.000000 0.000000 1.6068941E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 21 0 1.6121082E-02 0.000000 0.000000 1.6063981E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 22 0 1.6220301E-02 0.000000 0.000000 1.6059024E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 23 0 1.6179066E-02 0.000000 0.000000 1.6054069E-04 0.000000 0.000000 0.000000 + Av 2018 11 8 24 0 1.6186669E-02 0.000000 0.000000 1.6049115E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 1 0 1.6160382E-02 0.000000 0.000000 1.6019269E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 2 0 1.6145891E-02 0.000000 0.000000 1.6014333E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 3 0 1.6144222E-02 0.000000 0.000000 1.6009397E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 4 0 1.6138095E-02 0.000000 0.000000 1.6004464E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 5 0 1.6133524E-02 0.000000 0.000000 1.5999534E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 6 0 1.6401349E-02 0.000000 0.000000 1.5994604E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 11 9 7 0 1.6301526E-02 0.000000 0.000000 1.5989676E-04 0.000000 0.000000 0.000000 Av 2018 11 9 8 0 7.9655908E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.1892674E-03 Av 2018 11 9 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8742913E-03 Av 2018 11 9 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.9646816E-03 @@ -7528,21 +7528,21 @@ Av 2018 11 9 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.9646816E-03 Av 2018 11 9 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8742913E-03 Av 2018 11 9 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1892674E-03 - Av 2018 11 9 17 0 1.0830641E-02 0.000000 0.000000 1.5940476E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 18 0 1.7892035E-02 0.000000 0.000000 1.5935565E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 19 0 1.5430052E-02 0.000000 0.000000 1.5930654E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 20 0 1.6279433E-02 0.000000 0.000000 1.5925744E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 21 0 1.5977426E-02 0.000000 0.000000 1.5920837E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 22 0 1.6075769E-02 0.000000 0.000000 1.5915932E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 23 0 1.6034909E-02 0.000000 0.000000 1.5911028E-04 0.000000 0.000000 0.000000 - Av 2018 11 9 24 0 1.6042454E-02 0.000000 0.000000 1.5906127E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 1 0 1.6016886E-02 0.000000 0.000000 1.5877257E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 2 0 1.6002841E-02 0.000000 0.000000 1.5872372E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 3 0 1.6001089E-02 0.000000 0.000000 1.5867488E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 4 0 1.5995063E-02 0.000000 0.000000 1.5862606E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 5 0 1.5990525E-02 0.000000 0.000000 1.5857727E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 6 0 1.5985474E-02 0.000000 0.000000 1.5852849E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 7 0 1.5980601E-02 0.000000 0.000000 1.5847971E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 17 0 1.0830641E-02 0.000000 0.000000 1.5940476E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 18 0 1.7892035E-02 0.000000 0.000000 1.5935565E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 19 0 1.5430052E-02 0.000000 0.000000 1.5930654E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 20 0 1.6279433E-02 0.000000 0.000000 1.5925744E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 21 0 1.5977426E-02 0.000000 0.000000 1.5920837E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 22 0 1.6075769E-02 0.000000 0.000000 1.5915932E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 23 0 1.6034909E-02 0.000000 0.000000 1.5911028E-04 0.000000 0.000000 0.000000 + Av 2018 11 9 24 0 1.6042454E-02 0.000000 0.000000 1.5906127E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 1 0 1.6016886E-02 0.000000 0.000000 1.5877257E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 2 0 1.6002841E-02 0.000000 0.000000 1.5872372E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 3 0 1.6001089E-02 0.000000 0.000000 1.5867488E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 4 0 1.5995063E-02 0.000000 0.000000 1.5862606E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 5 0 1.5990525E-02 0.000000 0.000000 1.5857727E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 6 0 1.5985474E-02 0.000000 0.000000 1.5852849E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 7 0 1.5980601E-02 0.000000 0.000000 1.5847971E-04 0.000000 0.000000 0.000000 Av 2018 11 10 8 0 7.9890583E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.2101220E-03 Av 2018 11 10 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9761824E-03 Av 2018 11 10 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1371821E-03 @@ -7552,21 +7552,21 @@ Av 2018 11 10 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1371821E-03 Av 2018 11 10 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9761824E-03 Av 2018 11 10 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2101220E-03 - Av 2018 11 10 17 0 1.0734707E-02 0.000000 0.000000 1.5799281E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 18 0 1.7733557E-02 0.000000 0.000000 1.5794419E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 19 0 1.5293390E-02 0.000000 0.000000 1.5789560E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 20 0 1.6135257E-02 0.000000 0.000000 1.5784703E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 21 0 1.5835933E-02 0.000000 0.000000 1.5779847E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 22 0 1.5933413E-02 0.000000 0.000000 1.5774992E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 23 0 1.5892919E-02 0.000000 0.000000 1.5770138E-04 0.000000 0.000000 0.000000 - Av 2018 11 10 24 0 1.5900405E-02 0.000000 0.000000 1.5765286E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 1 0 1.5875531E-02 0.000000 0.000000 1.5737358E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 2 0 1.5861921E-02 0.000000 0.000000 1.5732524E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 3 0 1.5860084E-02 0.000000 0.000000 1.5727691E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 4 0 1.5854156E-02 0.000000 0.000000 1.5722858E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 5 0 1.5849652E-02 0.000000 0.000000 1.5718029E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 6 0 1.5844654E-02 0.000000 0.000000 1.5713199E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 7 0 1.5839830E-02 0.000000 0.000000 1.5708372E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 17 0 1.0734707E-02 0.000000 0.000000 1.5799281E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 18 0 1.7733557E-02 0.000000 0.000000 1.5794419E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 19 0 1.5293390E-02 0.000000 0.000000 1.5789560E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 20 0 1.6135257E-02 0.000000 0.000000 1.5784703E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 21 0 1.5835933E-02 0.000000 0.000000 1.5779847E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 22 0 1.5933413E-02 0.000000 0.000000 1.5774992E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 23 0 1.5892919E-02 0.000000 0.000000 1.5770138E-04 0.000000 0.000000 0.000000 + Av 2018 11 10 24 0 1.5900405E-02 0.000000 0.000000 1.5765286E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 1 0 1.5875531E-02 0.000000 0.000000 1.5737358E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 2 0 1.5861921E-02 0.000000 0.000000 1.5732524E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 3 0 1.5860084E-02 0.000000 0.000000 1.5727691E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 4 0 1.5854156E-02 0.000000 0.000000 1.5722858E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 5 0 1.5849652E-02 0.000000 0.000000 1.5718029E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 6 0 1.5844654E-02 0.000000 0.000000 1.5713199E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 7 0 1.5839830E-02 0.000000 0.000000 1.5708372E-04 0.000000 0.000000 0.000000 Av 2018 11 11 8 0 7.9186875E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.1183207E-03 Av 2018 11 11 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8000849E-03 Av 2018 11 11 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.9226883E-03 @@ -7576,21 +7576,21 @@ Av 2018 11 11 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.9226883E-03 Av 2018 11 11 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8000849E-03 Av 2018 11 11 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 1.1183207E-03 - Av 2018 11 11 17 0 1.0640197E-02 0.000000 0.000000 1.5660180E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 18 0 1.7577434E-02 0.000000 0.000000 1.5655371E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 19 0 1.5158758E-02 0.000000 0.000000 1.5650560E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 20 0 1.5993217E-02 0.000000 0.000000 1.5645751E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 21 0 1.5696535E-02 0.000000 0.000000 1.5640944E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 22 0 1.5793163E-02 0.000000 0.000000 1.5636139E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 23 0 1.5753036E-02 0.000000 0.000000 1.5631337E-04 0.000000 0.000000 0.000000 - Av 2018 11 11 24 0 1.5760463E-02 0.000000 0.000000 1.5626533E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 1 0 1.5736258E-02 0.000000 0.000000 1.5599512E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 2 0 1.5723063E-02 0.000000 0.000000 1.5594726E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 3 0 1.5721148E-02 0.000000 0.000000 1.5589943E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 4 0 1.5715312E-02 0.000000 0.000000 1.5585159E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 5 0 1.5710844E-02 0.000000 0.000000 1.5580378E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 6 0 1.5705902E-02 0.000000 0.000000 1.5575599E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 7 0 1.5701126E-02 0.000000 0.000000 1.5570820E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 17 0 1.0640197E-02 0.000000 0.000000 1.5660180E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 18 0 1.7577434E-02 0.000000 0.000000 1.5655371E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 19 0 1.5158758E-02 0.000000 0.000000 1.5650560E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 20 0 1.5993217E-02 0.000000 0.000000 1.5645751E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 21 0 1.5696535E-02 0.000000 0.000000 1.5640944E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 22 0 1.5793163E-02 0.000000 0.000000 1.5636139E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 23 0 1.5753036E-02 0.000000 0.000000 1.5631337E-04 0.000000 0.000000 0.000000 + Av 2018 11 11 24 0 1.5760463E-02 0.000000 0.000000 1.5626533E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 1 0 1.5736258E-02 0.000000 0.000000 1.5599512E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 2 0 1.5723063E-02 0.000000 0.000000 1.5594726E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 3 0 1.5721148E-02 0.000000 0.000000 1.5589943E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 4 0 1.5715312E-02 0.000000 0.000000 1.5585159E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 5 0 1.5710844E-02 0.000000 0.000000 1.5580378E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 6 0 1.5705902E-02 0.000000 0.000000 1.5575599E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 7 0 1.5701126E-02 0.000000 0.000000 1.5570820E-04 0.000000 0.000000 0.000000 Av 2018 11 12 8 0 7.8493468E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.1576373E-03 Av 2018 11 12 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9522183E-03 Av 2018 11 12 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1679805E-03 @@ -7600,21 +7600,21 @@ Av 2018 11 12 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1679805E-03 Av 2018 11 12 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9522183E-03 Av 2018 11 12 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1576373E-03 - Av 2018 11 12 17 0 1.0547070E-02 0.000000 0.000000 1.5523117E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 18 0 1.7423594E-02 0.000000 0.000000 1.5518356E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 19 0 1.5026094E-02 0.000000 0.000000 1.5513595E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 20 0 1.5853258E-02 0.000000 0.000000 1.5508835E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 21 0 1.5559180E-02 0.000000 0.000000 1.5504076E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 22 0 1.5654968E-02 0.000000 0.000000 1.5499321E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 23 0 1.5615201E-02 0.000000 0.000000 1.5494566E-04 0.000000 0.000000 0.000000 - Av 2018 11 12 24 0 1.5622567E-02 0.000000 0.000000 1.5489812E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 1 0 1.5599010E-02 0.000000 0.000000 1.5463664E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 2 0 1.5586217E-02 0.000000 0.000000 1.5458927E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 3 0 1.5584228E-02 0.000000 0.000000 1.5454191E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 4 0 1.5578484E-02 0.000000 0.000000 1.5449456E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 5 0 1.5574049E-02 0.000000 0.000000 1.5444723E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 6 0 1.5569162E-02 0.000000 0.000000 1.5439992E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 7 0 1.5564432E-02 0.000000 0.000000 1.5435263E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 17 0 1.0547070E-02 0.000000 0.000000 1.5523117E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 18 0 1.7423594E-02 0.000000 0.000000 1.5518356E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 19 0 1.5026094E-02 0.000000 0.000000 1.5513595E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 20 0 1.5853258E-02 0.000000 0.000000 1.5508835E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 21 0 1.5559180E-02 0.000000 0.000000 1.5504076E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 22 0 1.5654968E-02 0.000000 0.000000 1.5499321E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 23 0 1.5615201E-02 0.000000 0.000000 1.5494566E-04 0.000000 0.000000 0.000000 + Av 2018 11 12 24 0 1.5622567E-02 0.000000 0.000000 1.5489812E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 1 0 1.5599010E-02 0.000000 0.000000 1.5463664E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 2 0 1.5586217E-02 0.000000 0.000000 1.5458927E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 3 0 1.5584228E-02 0.000000 0.000000 1.5454191E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 4 0 1.5578484E-02 0.000000 0.000000 1.5449456E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 5 0 1.5574049E-02 0.000000 0.000000 1.5444723E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 6 0 1.5569162E-02 0.000000 0.000000 1.5439992E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 7 0 1.5564432E-02 0.000000 0.000000 1.5435263E-04 0.000000 0.000000 0.000000 Av 2018 11 13 8 0 7.7810138E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.1164800E-03 Av 2018 11 13 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9013194E-03 Av 2018 11 13 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1279187E-03 @@ -7624,21 +7624,21 @@ Av 2018 11 13 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1279187E-03 Av 2018 11 13 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9013194E-03 Av 2018 11 13 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.1164800E-03 - Av 2018 11 13 17 0 1.0455294E-02 0.000000 0.000000 1.5388042E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 18 0 1.7271986E-02 0.000000 0.000000 1.5383327E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 19 0 1.4895355E-02 0.000000 0.000000 1.5378614E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 20 0 1.5715327E-02 0.000000 0.000000 1.5373903E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 21 0 1.5423816E-02 0.000000 0.000000 1.5369194E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 22 0 1.5518777E-02 0.000000 0.000000 1.5364484E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 23 0 1.5479360E-02 0.000000 0.000000 1.5359778E-04 0.000000 0.000000 0.000000 - Av 2018 11 13 24 0 1.5486671E-02 0.000000 0.000000 1.5355072E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 1 0 1.5463738E-02 0.000000 0.000000 1.5329766E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 2 0 1.5451332E-02 0.000000 0.000000 1.5325076E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 3 0 1.5449272E-02 0.000000 0.000000 1.5320387E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 4 0 1.5710719E-02 0.000000 0.000000 1.5315702E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 11 14 5 0 1.5613444E-02 0.000000 0.000000 1.5311014E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 6 0 1.5373800E-02 0.000000 0.000000 1.5306330E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 7 0 1.5450762E-02 0.000000 0.000000 1.5301647E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 17 0 1.0455294E-02 0.000000 0.000000 1.5388042E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 18 0 1.7271986E-02 0.000000 0.000000 1.5383327E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 19 0 1.4895355E-02 0.000000 0.000000 1.5378614E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 20 0 1.5715327E-02 0.000000 0.000000 1.5373903E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 21 0 1.5423816E-02 0.000000 0.000000 1.5369194E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 22 0 1.5518777E-02 0.000000 0.000000 1.5364484E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 23 0 1.5479360E-02 0.000000 0.000000 1.5359778E-04 0.000000 0.000000 0.000000 + Av 2018 11 13 24 0 1.5486671E-02 0.000000 0.000000 1.5355072E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 1 0 1.5463738E-02 0.000000 0.000000 1.5329766E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 2 0 1.5451332E-02 0.000000 0.000000 1.5325076E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 3 0 1.5449272E-02 0.000000 0.000000 1.5320387E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 4 0 1.5710719E-02 0.000000 0.000000 1.5315702E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 11 14 5 0 1.5613444E-02 0.000000 0.000000 1.5311014E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 6 0 1.5373800E-02 0.000000 0.000000 1.5306330E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 7 0 1.5450762E-02 0.000000 0.000000 1.5301647E-04 0.000000 0.000000 0.000000 Av 2018 11 14 8 0 7.7024298E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.0969053E-03 Av 2018 11 14 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.9058959E-03 Av 2018 11 14 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1664336E-03 @@ -7648,21 +7648,21 @@ Av 2018 11 14 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1664336E-03 Av 2018 11 14 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 2.9058959E-03 Av 2018 11 14 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0969053E-03 - Av 2018 11 14 17 0 1.0364829E-02 0.000000 0.000000 1.5254896E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 18 0 1.7122544E-02 0.000000 0.000000 1.5250230E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 19 0 1.4766485E-02 0.000000 0.000000 1.5245564E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 20 0 1.5579369E-02 0.000000 0.000000 1.5240899E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 21 0 1.5290384E-02 0.000000 0.000000 1.5236237E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 22 0 1.5384532E-02 0.000000 0.000000 1.5231576E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 23 0 1.5345463E-02 0.000000 0.000000 1.5226916E-04 0.000000 0.000000 0.000000 - Av 2018 11 14 24 0 1.5352717E-02 0.000000 0.000000 1.5222258E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 1 0 1.5330387E-02 0.000000 0.000000 1.5197763E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 2 0 1.5318352E-02 0.000000 0.000000 1.5193118E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 3 0 1.5316227E-02 0.000000 0.000000 1.5188476E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 4 0 1.5310660E-02 0.000000 0.000000 1.5183837E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 5 0 1.5306290E-02 0.000000 0.000000 1.5179196E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 6 0 1.5301505E-02 0.000000 0.000000 1.5174558E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 7 0 1.5296868E-02 0.000000 0.000000 1.5169922E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 17 0 1.0364829E-02 0.000000 0.000000 1.5254896E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 18 0 1.7122544E-02 0.000000 0.000000 1.5250230E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 19 0 1.4766485E-02 0.000000 0.000000 1.5245564E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 20 0 1.5579369E-02 0.000000 0.000000 1.5240899E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 21 0 1.5290384E-02 0.000000 0.000000 1.5236237E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 22 0 1.5384532E-02 0.000000 0.000000 1.5231576E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 23 0 1.5345463E-02 0.000000 0.000000 1.5226916E-04 0.000000 0.000000 0.000000 + Av 2018 11 14 24 0 1.5352717E-02 0.000000 0.000000 1.5222258E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 1 0 1.5330387E-02 0.000000 0.000000 1.5197763E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 2 0 1.5318352E-02 0.000000 0.000000 1.5193118E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 3 0 1.5316227E-02 0.000000 0.000000 1.5188476E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 4 0 1.5310660E-02 0.000000 0.000000 1.5183837E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 5 0 1.5306290E-02 0.000000 0.000000 1.5179196E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 6 0 1.5301505E-02 0.000000 0.000000 1.5174558E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 7 0 1.5296868E-02 0.000000 0.000000 1.5169922E-04 0.000000 0.000000 0.000000 Av 2018 11 15 8 0 7.6472554E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.2818231E-03 Av 2018 11 15 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4633966E-03 Av 2018 11 15 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.0040586E-03 @@ -7672,21 +7672,21 @@ Av 2018 11 15 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.0040586E-03 Av 2018 11 15 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.4633966E-03 Av 2018 11 15 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2818231E-03 - Av 2018 11 15 17 0 1.0275644E-02 0.000000 0.000000 1.5123635E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 18 0 1.6975215E-02 0.000000 0.000000 1.5119014E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 19 0 1.4639437E-02 0.000000 0.000000 1.5114395E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 20 0 1.5445331E-02 0.000000 0.000000 1.5109776E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 21 0 1.5158840E-02 0.000000 0.000000 1.5105159E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 22 0 1.5252183E-02 0.000000 0.000000 1.5100544E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 23 0 1.5213456E-02 0.000000 0.000000 1.5095930E-04 0.000000 0.000000 0.000000 - Av 2018 11 15 24 0 1.5220653E-02 0.000000 0.000000 1.5091318E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 1 0 1.5198905E-02 0.000000 0.000000 1.5067605E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 2 0 1.5187232E-02 0.000000 0.000000 1.5063008E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 3 0 1.5185044E-02 0.000000 0.000000 1.5058411E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 4 0 1.5179559E-02 0.000000 0.000000 1.5053815E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 5 0 1.5175222E-02 0.000000 0.000000 1.5049221E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 6 0 1.5170489E-02 0.000000 0.000000 1.5044629E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 7 0 1.5165895E-02 0.000000 0.000000 1.5040039E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 17 0 1.0275644E-02 0.000000 0.000000 1.5123635E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 18 0 1.6975215E-02 0.000000 0.000000 1.5119014E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 19 0 1.4639437E-02 0.000000 0.000000 1.5114395E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 20 0 1.5445331E-02 0.000000 0.000000 1.5109776E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 21 0 1.5158840E-02 0.000000 0.000000 1.5105159E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 22 0 1.5252183E-02 0.000000 0.000000 1.5100544E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 23 0 1.5213456E-02 0.000000 0.000000 1.5095930E-04 0.000000 0.000000 0.000000 + Av 2018 11 15 24 0 1.5220653E-02 0.000000 0.000000 1.5091318E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 1 0 1.5198905E-02 0.000000 0.000000 1.5067605E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 2 0 1.5187232E-02 0.000000 0.000000 1.5063008E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 3 0 1.5185044E-02 0.000000 0.000000 1.5058411E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 4 0 1.5179559E-02 0.000000 0.000000 1.5053815E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 5 0 1.5175222E-02 0.000000 0.000000 1.5049221E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 6 0 1.5170489E-02 0.000000 0.000000 1.5044629E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 7 0 1.5165895E-02 0.000000 0.000000 1.5040039E-04 0.000000 0.000000 0.000000 Av 2018 11 16 8 0 7.5817811E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.2729889E-03 Av 2018 11 16 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.5095969E-03 Av 2018 11 16 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.1097106E-03 @@ -7696,21 +7696,21 @@ Av 2018 11 16 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 5.1097106E-03 Av 2018 11 16 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.5095969E-03 Av 2018 11 16 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.2729889E-03 - Av 2018 11 16 17 0 1.0187703E-02 0.000000 0.000000 1.4994205E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 18 0 1.6829943E-02 0.000000 0.000000 1.4989630E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 19 0 1.4514163E-02 0.000000 0.000000 1.4985056E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 20 0 1.5313165E-02 0.000000 0.000000 1.4980482E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 21 0 1.5029131E-02 0.000000 0.000000 1.4975911E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 22 0 1.5121681E-02 0.000000 0.000000 1.4971341E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 23 0 1.5083291E-02 0.000000 0.000000 1.4966771E-04 0.000000 0.000000 0.000000 - Av 2018 11 16 24 0 1.5090432E-02 0.000000 0.000000 1.4962205E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 1 0 1.5333202E-02 0.000000 0.000000 1.4939246E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 11 17 2 0 1.5230095E-02 0.000000 0.000000 1.4934693E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 3 0 1.4995806E-02 0.000000 0.000000 1.4930141E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 4 0 1.5071087E-02 0.000000 0.000000 1.4925591E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 5 0 1.5038729E-02 0.000000 0.000000 1.4921042E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 6 0 1.5043798E-02 0.000000 0.000000 1.4916493E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 7 0 1.5035855E-02 0.000000 0.000000 1.4911947E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 17 0 1.0187703E-02 0.000000 0.000000 1.4994205E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 18 0 1.6829943E-02 0.000000 0.000000 1.4989630E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 19 0 1.4514163E-02 0.000000 0.000000 1.4985056E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 20 0 1.5313165E-02 0.000000 0.000000 1.4980482E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 21 0 1.5029131E-02 0.000000 0.000000 1.4975911E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 22 0 1.5121681E-02 0.000000 0.000000 1.4971341E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 23 0 1.5083291E-02 0.000000 0.000000 1.4966771E-04 0.000000 0.000000 0.000000 + Av 2018 11 16 24 0 1.5090432E-02 0.000000 0.000000 1.4962205E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 1 0 1.5333202E-02 0.000000 0.000000 1.4939246E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 11 17 2 0 1.5230095E-02 0.000000 0.000000 1.4934693E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 3 0 1.4995806E-02 0.000000 0.000000 1.4930141E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 4 0 1.5071087E-02 0.000000 0.000000 1.4925591E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 5 0 1.5038729E-02 0.000000 0.000000 1.4921042E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 6 0 1.5043798E-02 0.000000 0.000000 1.4916493E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 7 0 1.5035855E-02 0.000000 0.000000 1.4911947E-04 0.000000 0.000000 0.000000 Av 2018 11 17 8 0 7.5176768E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.0286956E-03 Av 2018 11 17 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8951466E-03 Av 2018 11 17 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2472496E-03 @@ -7720,21 +7720,21 @@ Av 2018 11 17 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.2472496E-03 Av 2018 11 17 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8951466E-03 Av 2018 11 17 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.0286956E-03 - Av 2018 11 17 17 0 1.0100977E-02 0.000000 0.000000 1.4866561E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 18 0 1.6686676E-02 0.000000 0.000000 1.4862030E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 19 0 1.4390614E-02 0.000000 0.000000 1.4857500E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 20 0 1.5182821E-02 0.000000 0.000000 1.4852973E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 21 0 1.4901211E-02 0.000000 0.000000 1.4848445E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 22 0 1.4992978E-02 0.000000 0.000000 1.4843920E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 23 0 1.4954921E-02 0.000000 0.000000 1.4839396E-04 0.000000 0.000000 0.000000 - Av 2018 11 17 24 0 1.4962008E-02 0.000000 0.000000 1.4834873E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 1 0 1.4941365E-02 0.000000 0.000000 1.4812639E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 2 0 1.4930372E-02 0.000000 0.000000 1.4808131E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 3 0 1.4928069E-02 0.000000 0.000000 1.4803623E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 4 0 1.4922744E-02 0.000000 0.000000 1.4799116E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 5 0 1.4918472E-02 0.000000 0.000000 1.4794611E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 6 0 1.4913836E-02 0.000000 0.000000 1.4790107E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 7 0 1.4909330E-02 0.000000 0.000000 1.4785604E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 17 0 1.0100977E-02 0.000000 0.000000 1.4866561E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 18 0 1.6686676E-02 0.000000 0.000000 1.4862030E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 19 0 1.4390614E-02 0.000000 0.000000 1.4857500E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 20 0 1.5182821E-02 0.000000 0.000000 1.4852973E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 21 0 1.4901211E-02 0.000000 0.000000 1.4848445E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 22 0 1.4992978E-02 0.000000 0.000000 1.4843920E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 23 0 1.4954921E-02 0.000000 0.000000 1.4839396E-04 0.000000 0.000000 0.000000 + Av 2018 11 17 24 0 1.4962008E-02 0.000000 0.000000 1.4834873E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 1 0 1.4941365E-02 0.000000 0.000000 1.4812639E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 2 0 1.4930372E-02 0.000000 0.000000 1.4808131E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 3 0 1.4928069E-02 0.000000 0.000000 1.4803623E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 4 0 1.4922744E-02 0.000000 0.000000 1.4799116E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 5 0 1.4918472E-02 0.000000 0.000000 1.4794611E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 6 0 1.4913836E-02 0.000000 0.000000 1.4790107E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 7 0 1.4909330E-02 0.000000 0.000000 1.4785604E-04 0.000000 0.000000 0.000000 Av 2018 11 18 8 0 7.4535212E-03 0.000000 0.000000 0.000000 0.000000 0.000000 9.4318698E-04 Av 2018 11 18 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.7109475E-03 Av 2018 11 18 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.0071150E-03 @@ -7744,21 +7744,21 @@ Av 2018 11 18 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.0071150E-03 Av 2018 11 18 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.7109475E-03 Av 2018 11 18 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.4318698E-04 - Av 2018 11 18 17 0 1.0015433E-02 0.000000 0.000000 1.4740656E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 18 0 1.6545361E-02 0.000000 0.000000 1.4736169E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 19 0 1.4268748E-02 0.000000 0.000000 1.4731682E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 20 0 1.5054252E-02 0.000000 0.000000 1.4727197E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 21 0 1.4775032E-02 0.000000 0.000000 1.4722714E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 22 0 1.4866028E-02 0.000000 0.000000 1.4718232E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 23 0 1.4828298E-02 0.000000 0.000000 1.4713751E-04 0.000000 0.000000 0.000000 - Av 2018 11 18 24 0 1.4835329E-02 0.000000 0.000000 1.4709272E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 1 0 1.4815211E-02 0.000000 0.000000 1.4687740E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 2 0 1.4804542E-02 0.000000 0.000000 1.4683274E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 3 0 1.4802184E-02 0.000000 0.000000 1.4678809E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 4 0 1.4796939E-02 0.000000 0.000000 1.4674346E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 5 0 1.4792698E-02 0.000000 0.000000 1.4669885E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 6 0 1.4788110E-02 0.000000 0.000000 1.4665425E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 7 0 1.4783645E-02 0.000000 0.000000 1.4660964E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 17 0 1.0015433E-02 0.000000 0.000000 1.4740656E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 18 0 1.6545361E-02 0.000000 0.000000 1.4736169E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 19 0 1.4268748E-02 0.000000 0.000000 1.4731682E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 20 0 1.5054252E-02 0.000000 0.000000 1.4727197E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 21 0 1.4775032E-02 0.000000 0.000000 1.4722714E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 22 0 1.4866028E-02 0.000000 0.000000 1.4718232E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 23 0 1.4828298E-02 0.000000 0.000000 1.4713751E-04 0.000000 0.000000 0.000000 + Av 2018 11 18 24 0 1.4835329E-02 0.000000 0.000000 1.4709272E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 1 0 1.4815211E-02 0.000000 0.000000 1.4687740E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 2 0 1.4804542E-02 0.000000 0.000000 1.4683274E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 3 0 1.4802184E-02 0.000000 0.000000 1.4678809E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 4 0 1.4796939E-02 0.000000 0.000000 1.4674346E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 5 0 1.4792698E-02 0.000000 0.000000 1.4669885E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 6 0 1.4788110E-02 0.000000 0.000000 1.4665425E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 7 0 1.4783645E-02 0.000000 0.000000 1.4660964E-04 0.000000 0.000000 0.000000 Av 2018 11 19 8 0 7.3906896E-03 0.000000 0.000000 0.000000 0.000000 0.000000 9.4671885E-04 Av 2018 11 19 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.7801443E-03 Av 2018 11 19 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1402103E-03 @@ -7768,21 +7768,21 @@ Av 2018 11 19 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.1402103E-03 Av 2018 11 19 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.7801443E-03 Av 2018 11 19 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.4671885E-04 - Av 2018 11 19 17 0 9.9310400E-03 0.000000 0.000000 1.4616449E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 18 0 1.6405949E-02 0.000000 0.000000 1.4612004E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 19 0 1.4148528E-02 0.000000 0.000000 1.4607562E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 20 0 1.4927417E-02 0.000000 0.000000 1.4603121E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 21 0 1.4650555E-02 0.000000 0.000000 1.4598679E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 22 0 1.4740789E-02 0.000000 0.000000 1.4594241E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 23 0 1.4703384E-02 0.000000 0.000000 1.4589803E-04 0.000000 0.000000 0.000000 - Av 2018 11 19 24 0 1.4710359E-02 0.000000 0.000000 1.4585366E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 1 0 1.4690748E-02 0.000000 0.000000 1.4564508E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 2 0 1.4680390E-02 0.000000 0.000000 1.4560085E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 3 0 1.4677981E-02 0.000000 0.000000 1.4555662E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 4 0 1.4672810E-02 0.000000 0.000000 1.4551241E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 5 0 1.4668602E-02 0.000000 0.000000 1.4546822E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 6 0 1.4664060E-02 0.000000 0.000000 1.4542403E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 7 0 1.4659636E-02 0.000000 0.000000 1.4537986E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 17 0 9.9310400E-03 0.000000 0.000000 1.4616449E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 18 0 1.6405949E-02 0.000000 0.000000 1.4612004E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 19 0 1.4148528E-02 0.000000 0.000000 1.4607562E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 20 0 1.4927417E-02 0.000000 0.000000 1.4603121E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 21 0 1.4650555E-02 0.000000 0.000000 1.4598679E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 22 0 1.4740789E-02 0.000000 0.000000 1.4594241E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 23 0 1.4703384E-02 0.000000 0.000000 1.4589803E-04 0.000000 0.000000 0.000000 + Av 2018 11 19 24 0 1.4710359E-02 0.000000 0.000000 1.4585366E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 1 0 1.4690748E-02 0.000000 0.000000 1.4564508E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 2 0 1.4680390E-02 0.000000 0.000000 1.4560085E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 3 0 1.4677981E-02 0.000000 0.000000 1.4555662E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 4 0 1.4672810E-02 0.000000 0.000000 1.4551241E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 5 0 1.4668602E-02 0.000000 0.000000 1.4546822E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 6 0 1.4664060E-02 0.000000 0.000000 1.4542403E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 7 0 1.4659636E-02 0.000000 0.000000 1.4537986E-04 0.000000 0.000000 0.000000 Av 2018 11 20 8 0 7.3286970E-03 0.000000 0.000000 0.000000 0.000000 0.000000 9.5773605E-04 Av 2018 11 20 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8746943E-03 Av 2018 11 20 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.3127844E-03 @@ -7792,21 +7792,21 @@ Av 2018 11 20 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.3127844E-03 Av 2018 11 20 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8746943E-03 Av 2018 11 20 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 9.5773605E-04 - Av 2018 11 20 17 0 9.8477686E-03 0.000000 0.000000 1.4493891E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 18 0 1.6268391E-02 0.000000 0.000000 1.4489489E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 19 0 1.4029903E-02 0.000000 0.000000 1.4485088E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 20 0 1.4802266E-02 0.000000 0.000000 1.4480689E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 21 0 1.4527732E-02 0.000000 0.000000 1.4476292E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 22 0 1.4617214E-02 0.000000 0.000000 1.4471894E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 23 0 1.4580127E-02 0.000000 0.000000 1.4467500E-04 0.000000 0.000000 0.000000 - Av 2018 11 20 24 0 1.4587051E-02 0.000000 0.000000 1.4463106E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 1 0 1.4567927E-02 0.000000 0.000000 1.4442898E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 2 0 1.4557870E-02 0.000000 0.000000 1.4438517E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 3 0 1.4555413E-02 0.000000 0.000000 1.4434136E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 4 0 1.4550315E-02 0.000000 0.000000 1.4429756E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 5 0 1.4546138E-02 0.000000 0.000000 1.4425379E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 6 0 1.4541643E-02 0.000000 0.000000 1.4421003E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 7 0 1.4537260E-02 0.000000 0.000000 1.4416628E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 17 0 9.8477686E-03 0.000000 0.000000 1.4493891E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 18 0 1.6268391E-02 0.000000 0.000000 1.4489489E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 19 0 1.4029903E-02 0.000000 0.000000 1.4485088E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 20 0 1.4802266E-02 0.000000 0.000000 1.4480689E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 21 0 1.4527732E-02 0.000000 0.000000 1.4476292E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 22 0 1.4617214E-02 0.000000 0.000000 1.4471894E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 23 0 1.4580127E-02 0.000000 0.000000 1.4467500E-04 0.000000 0.000000 0.000000 + Av 2018 11 20 24 0 1.4587051E-02 0.000000 0.000000 1.4463106E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 1 0 1.4567927E-02 0.000000 0.000000 1.4442898E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 2 0 1.4557870E-02 0.000000 0.000000 1.4438517E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 3 0 1.4555413E-02 0.000000 0.000000 1.4434136E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 4 0 1.4550315E-02 0.000000 0.000000 1.4429756E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 5 0 1.4546138E-02 0.000000 0.000000 1.4425379E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 6 0 1.4541643E-02 0.000000 0.000000 1.4421003E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 7 0 1.4537260E-02 0.000000 0.000000 1.4416628E-04 0.000000 0.000000 0.000000 Av 2018 11 21 8 0 7.2675198E-03 0.000000 0.000000 0.000000 0.000000 0.000000 8.7512069E-04 Av 2018 11 21 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.6858472E-03 Av 2018 11 21 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 4.0590134E-03 @@ -7816,21 +7816,21 @@ Av 2018 11 21 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.0590134E-03 Av 2018 11 21 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.6858472E-03 Av 2018 11 21 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 8.7512069E-04 - Av 2018 11 21 17 0 9.7655952E-03 0.000000 0.000000 1.4372948E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 18 0 1.6132643E-02 0.000000 0.000000 1.4368587E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 19 0 1.3912840E-02 0.000000 0.000000 1.4364229E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 20 0 1.4678763E-02 0.000000 0.000000 1.4359871E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 21 0 1.4406523E-02 0.000000 0.000000 1.4355514E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 22 0 1.4495265E-02 0.000000 0.000000 1.4351158E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 23 0 1.4458492E-02 0.000000 0.000000 1.4346806E-04 0.000000 0.000000 0.000000 - Av 2018 11 21 24 0 1.5500060E-02 0.000000 0.000000 1.4342843E-04 0.000000 3.9999921E-02 0.000000 - Av 2018 11 22 1 0 8.5260369E-02 3.6001123E-07 0.000000 1.4370031E-04 1.0070716E-02 5.9999879E-02 0.000000 - Av 2018 11 22 2 0 0.2412328 9.3824390E-08 0.000000 1.4493689E-04 2.6290035E-02 2.9999940E-02 0.000000 - Av 2018 11 22 3 0 0.1642357 0.000000 0.000000 1.4541642E-04 5.9408727E-03 0.000000 0.000000 - Av 2018 11 22 4 0 2.2799375E-02 0.000000 0.000000 1.4537213E-04 1.9018777E-03 0.000000 0.000000 - Av 2018 11 22 5 0 3.0130792E-02 0.000000 0.000000 1.4532785E-04 7.9252705E-04 0.000000 0.000000 - Av 2018 11 22 6 0 1.7327134E-02 0.000000 0.000000 1.4528360E-04 3.9351758E-04 0.000000 0.000000 - Av 2018 11 22 7 0 1.7888717E-02 0.000000 0.000000 1.4523935E-04 2.2083061E-04 0.000000 0.000000 + Av 2018 11 21 17 0 9.7655952E-03 0.000000 0.000000 1.4372948E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 18 0 1.6132643E-02 0.000000 0.000000 1.4368587E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 19 0 1.3912840E-02 0.000000 0.000000 1.4364229E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 20 0 1.4678763E-02 0.000000 0.000000 1.4359871E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 21 0 1.4406523E-02 0.000000 0.000000 1.4355514E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 22 0 1.4495265E-02 0.000000 0.000000 1.4351158E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 23 0 1.4458492E-02 0.000000 0.000000 1.4346806E-04 0.000000 0.000000 0.000000 + Av 2018 11 21 24 0 1.5500060E-02 0.000000 0.000000 1.4342843E-04 0.000000 3.9999921E-02 0.000000 + Av 2018 11 22 1 0 8.5260369E-02 3.6001123E-07 0.000000 1.4370031E-04 1.0070716E-02 5.9999879E-02 0.000000 + Av 2018 11 22 2 0 0.2412328 9.3824390E-08 0.000000 1.4493689E-04 2.6290035E-02 2.9999940E-02 0.000000 + Av 2018 11 22 3 0 0.1642357 0.000000 0.000000 1.4541642E-04 5.9408727E-03 0.000000 0.000000 + Av 2018 11 22 4 0 2.2799375E-02 0.000000 0.000000 1.4537213E-04 1.9018777E-03 0.000000 0.000000 + Av 2018 11 22 5 0 3.0130792E-02 0.000000 0.000000 1.4532785E-04 7.9252705E-04 0.000000 0.000000 + Av 2018 11 22 6 0 1.7327134E-02 0.000000 0.000000 1.4528360E-04 3.9351758E-04 0.000000 0.000000 + Av 2018 11 22 7 0 1.7888717E-02 0.000000 0.000000 1.4523935E-04 2.2083061E-04 0.000000 0.000000 Av 2018 11 22 8 0 7.8929998E-03 0.000000 0.000000 0.000000 1.3546541E-04 0.000000 8.3965313E-04 Av 2018 11 22 9 0 6.0378673E-04 0.000000 0.000000 0.000000 8.8864996E-05 0.000000 2.6359579E-03 Av 2018 11 22 10 0 7.7407283E-04 0.000000 0.000000 0.000000 6.1407394E-05 0.000000 4.0124361E-03 @@ -7840,21 +7840,21 @@ Av 2018 11 22 14 0 0.7573099 3.9869758E-07 0.000000 0.000000 5.5740803E-02 4.9999900E-02 4.0124361E-03 Av 2018 11 22 15 0 0.2792675 5.0696897E-08 0.000000 0.000000 2.2226937E-02 1.9999960E-02 2.6359579E-03 Av 2018 11 22 16 0 0.1822766 6.0288194E-08 0.000000 0.000000 1.8297786E-02 1.9999960E-02 8.3965313E-04 - Av 2018 11 22 17 0 0.1496724 1.7226615E-08 0.000000 1.5560084E-04 1.1111343E-02 9.9999802E-03 0.000000 - Av 2018 11 22 18 0 0.1159796 1.9949676E-08 0.000000 1.5584857E-04 1.0260871E-02 9.9999802E-03 0.000000 - Av 2018 11 22 19 0 0.1727179 8.0226464E-08 0.000000 1.5620868E-04 1.7646585E-02 1.9999960E-02 0.000000 - Av 2018 11 22 20 0 0.1128772 0.000000 0.000000 1.5658056E-04 4.4535645E-03 0.000000 0.000000 - Av 2018 11 22 21 0 6.8566754E-02 2.0305267E-08 0.000000 1.5663114E-04 8.2593532E-03 9.9999802E-03 0.000000 - Av 2018 11 22 22 0 0.2845231 3.2662649E-07 0.000000 1.5718394E-04 3.3501454E-02 3.9999921E-02 0.000000 - Av 2018 11 22 23 0 0.2184856 0.000000 0.000000 1.5796635E-04 7.1704118E-03 0.000000 0.000000 - Av 2018 11 22 24 0 2.5607180E-02 0.000000 0.000000 1.5791687E-04 2.1896819E-03 0.000000 0.000000 - Av 2018 11 23 1 0 3.3422329E-02 0.000000 0.000000 1.5756288E-04 8.8506332E-04 0.000000 0.000000 - Av 2018 11 23 2 0 1.8725544E-02 0.000000 0.000000 1.5752930E-04 4.3043788E-04 0.000000 0.000000 - Av 2018 11 23 3 0 0.1114479 8.4263739E-08 0.000000 1.5769881E-04 1.3682608E-02 1.9999960E-02 0.000000 - Av 2018 11 23 4 0 0.2089442 8.5297117E-08 0.000000 1.5833348E-04 1.9232217E-02 1.9999960E-02 0.000000 - Av 2018 11 23 5 0 0.1126831 0.000000 0.000000 1.5874911E-04 4.5896852E-03 0.000000 0.000000 - Av 2018 11 23 6 0 0.2316990 3.4534955E-07 0.000000 1.5913237E-04 3.1978473E-02 3.9999921E-02 0.000000 - Av 2018 11 23 7 0 0.2274226 0.000000 0.000000 1.6000133E-04 7.0537855E-03 0.000000 0.000000 + Av 2018 11 22 17 0 0.1496724 1.7226615E-08 0.000000 1.5560084E-04 1.1111343E-02 9.9999802E-03 0.000000 + Av 2018 11 22 18 0 0.1159796 1.9949676E-08 0.000000 1.5584857E-04 1.0260871E-02 9.9999802E-03 0.000000 + Av 2018 11 22 19 0 0.1727179 8.0226464E-08 0.000000 1.5620868E-04 1.7646585E-02 1.9999960E-02 0.000000 + Av 2018 11 22 20 0 0.1128772 0.000000 0.000000 1.5658056E-04 4.4535645E-03 0.000000 0.000000 + Av 2018 11 22 21 0 6.8566754E-02 2.0305267E-08 0.000000 1.5663114E-04 8.2593532E-03 9.9999802E-03 0.000000 + Av 2018 11 22 22 0 0.2845231 3.2662649E-07 0.000000 1.5718394E-04 3.3501454E-02 3.9999921E-02 0.000000 + Av 2018 11 22 23 0 0.2184856 0.000000 0.000000 1.5796635E-04 7.1704118E-03 0.000000 0.000000 + Av 2018 11 22 24 0 2.5607180E-02 0.000000 0.000000 1.5791687E-04 2.1896819E-03 0.000000 0.000000 + Av 2018 11 23 1 0 3.3422329E-02 0.000000 0.000000 1.5756288E-04 8.8506332E-04 0.000000 0.000000 + Av 2018 11 23 2 0 1.8725544E-02 0.000000 0.000000 1.5752930E-04 4.3043788E-04 0.000000 0.000000 + Av 2018 11 23 3 0 0.1114479 8.4263739E-08 0.000000 1.5769881E-04 1.3682608E-02 1.9999960E-02 0.000000 + Av 2018 11 23 4 0 0.2089442 8.5297117E-08 0.000000 1.5833348E-04 1.9232217E-02 1.9999960E-02 0.000000 + Av 2018 11 23 5 0 0.1126831 0.000000 0.000000 1.5874911E-04 4.5896852E-03 0.000000 0.000000 + Av 2018 11 23 6 0 0.2316990 3.4534955E-07 0.000000 1.5913237E-04 3.1978473E-02 3.9999921E-02 0.000000 + Av 2018 11 23 7 0 0.2274226 0.000000 0.000000 1.6000133E-04 7.0537855E-03 0.000000 0.000000 Av 2018 11 23 8 0 6.2074367E-02 2.2261696E-08 0.000000 0.000000 9.1358479E-03 9.9999802E-03 7.3481706E-04 Av 2018 11 23 9 0 0.2677757 3.4784597E-07 0.000000 0.000000 3.3028983E-02 3.9999921E-02 2.3604142E-03 Av 2018 11 23 10 0 0.9363263 3.7673485E-06 0.000000 0.000000 0.1154596 0.1299997 3.6186029E-03 @@ -7864,21 +7864,21 @@ Av 2018 11 23 14 0 0.1771685 0.000000 0.000000 0.000000 7.3873391E-03 0.000000 3.6186029E-03 Av 2018 11 23 15 0 1.5212168E-02 0.000000 0.000000 0.000000 2.2389183E-03 0.000000 2.3604142E-03 Av 2018 11 23 16 0 1.6657054E-02 0.000000 0.000000 9.4658753E-06 9.0057106E-04 0.000000 7.3481706E-04 - Av 2018 11 23 17 0 1.5531771E-02 0.000000 0.000000 1.7107060E-04 4.3653671E-04 0.000000 0.000000 - Av 2018 11 23 18 0 2.2808433E-02 0.000000 0.000000 1.7102018E-04 2.4081113E-04 9.9999802E-03 0.000000 - Av 2018 11 23 19 0 1.8296789E-02 0.000000 0.000000 1.7097467E-04 1.4586220E-04 0.000000 0.000000 - Av 2018 11 23 20 0 1.8502725E-02 0.000000 0.000000 1.7091969E-04 9.4763920E-05 0.000000 0.000000 - Av 2018 11 23 21 0 1.7874159E-02 0.000000 0.000000 1.7086472E-04 6.4988744E-05 0.000000 0.000000 - Av 2018 11 23 22 0 1.7757449E-02 0.000000 0.000000 1.7080976E-04 4.6518628E-05 0.000000 0.000000 - Av 2018 11 23 23 0 1.7583206E-02 0.000000 0.000000 1.7075482E-04 3.4470057E-05 0.000000 0.000000 - Av 2018 11 23 24 0 1.8509096E-02 0.000000 0.000000 1.7069990E-04 1.7497211E-04 0.000000 0.000000 - Av 2018 11 24 1 0 1.7914765E-02 1.4089217E-10 0.000000 1.7019262E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 2 0 1.6895661E-02 0.000000 0.000000 1.7015649E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 3 0 1.7243840E-02 0.000000 0.000000 1.7010191E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 4 0 1.7115358E-02 0.000000 0.000000 1.7004734E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 5 0 1.7152619E-02 0.000000 0.000000 1.6999280E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 6 0 1.7132252E-02 0.000000 0.000000 1.6993827E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 7 0 1.7131925E-02 0.000000 0.000000 1.6988376E-04 0.000000 0.000000 0.000000 + Av 2018 11 23 17 0 1.5531771E-02 0.000000 0.000000 1.7107060E-04 4.3653671E-04 0.000000 0.000000 + Av 2018 11 23 18 0 2.2808433E-02 0.000000 0.000000 1.7102018E-04 2.4081113E-04 9.9999802E-03 0.000000 + Av 2018 11 23 19 0 1.8296789E-02 0.000000 0.000000 1.7097467E-04 1.4586220E-04 0.000000 0.000000 + Av 2018 11 23 20 0 1.8502725E-02 0.000000 0.000000 1.7091969E-04 9.4763920E-05 0.000000 0.000000 + Av 2018 11 23 21 0 1.7874159E-02 0.000000 0.000000 1.7086472E-04 6.4988744E-05 0.000000 0.000000 + Av 2018 11 23 22 0 1.7757449E-02 0.000000 0.000000 1.7080976E-04 4.6518628E-05 0.000000 0.000000 + Av 2018 11 23 23 0 1.7583206E-02 0.000000 0.000000 1.7075482E-04 3.4470057E-05 0.000000 0.000000 + Av 2018 11 23 24 0 1.8509096E-02 0.000000 0.000000 1.7069990E-04 1.7497211E-04 0.000000 0.000000 + Av 2018 11 24 1 0 1.7914765E-02 1.4089217E-10 0.000000 1.7019262E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 2 0 1.6895661E-02 0.000000 0.000000 1.7015649E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 3 0 1.7243840E-02 0.000000 0.000000 1.7010191E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 4 0 1.7115358E-02 0.000000 0.000000 1.7004734E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 5 0 1.7152619E-02 0.000000 0.000000 1.6999280E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 6 0 1.7132252E-02 0.000000 0.000000 1.6993827E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 7 0 1.7131925E-02 0.000000 0.000000 1.6988376E-04 0.000000 0.000000 0.000000 Av 2018 11 24 8 0 8.5632103E-03 0.000000 0.000000 5.6397694E-06 0.000000 0.000000 7.4631593E-04 Av 2018 11 24 9 0 3.2994352E-02 2.8125259E-08 0.000000 0.000000 4.8558093E-03 9.9999802E-03 2.4537633E-03 Av 2018 11 24 10 0 3.5182178E-02 0.000000 0.000000 0.000000 2.0412842E-03 0.000000 3.7880528E-03 @@ -7888,21 +7888,21 @@ Av 2018 11 24 14 0 1.6657654E-03 0.000000 0.000000 0.000000 1.3990280E-04 0.000000 3.7880528E-03 Av 2018 11 24 15 0 9.2783291E-04 0.000000 0.000000 0.000000 9.1391557E-05 0.000000 2.4537633E-03 Av 2018 11 24 16 0 1.0776691E-03 0.000000 0.000000 5.5873534E-06 6.2945597E-05 0.000000 7.4631593E-04 - Av 2018 11 24 17 0 1.2265104E-02 0.000000 0.000000 1.6972238E-04 4.5211375E-05 0.000000 0.000000 - Av 2018 11 24 18 0 1.9330390E-02 0.000000 0.000000 1.6966791E-04 3.3595614E-05 0.000000 0.000000 - Av 2018 11 24 19 0 1.7729789E-02 0.000000 0.000000 1.6961343E-04 1.7229574E-04 0.000000 0.000000 - Av 2018 11 24 20 0 1.8050669E-02 0.000000 0.000000 1.6955899E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 21 0 1.6761050E-02 0.000000 0.000000 1.6950455E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 22 0 1.7202064E-02 0.000000 0.000000 1.6945014E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 23 0 1.7041327E-02 0.000000 0.000000 1.6939575E-04 0.000000 0.000000 0.000000 - Av 2018 11 24 24 0 1.7089827E-02 0.000000 0.000000 1.6934137E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 1 0 1.7035101E-02 0.000000 0.000000 1.6883851E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 2 0 1.7016292E-02 0.000000 0.000000 1.6878445E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 3 0 1.7015487E-02 0.000000 0.000000 1.6873042E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 4 0 1.7008426E-02 0.000000 0.000000 1.6867640E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 5 0 1.7003540E-02 0.000000 0.000000 1.6862238E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 6 0 1.6997902E-02 0.000000 0.000000 1.6856841E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 7 0 1.6992528E-02 0.000000 0.000000 1.6851444E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 17 0 1.2265104E-02 0.000000 0.000000 1.6972238E-04 4.5211375E-05 0.000000 0.000000 + Av 2018 11 24 18 0 1.9330390E-02 0.000000 0.000000 1.6966791E-04 3.3595614E-05 0.000000 0.000000 + Av 2018 11 24 19 0 1.7729789E-02 0.000000 0.000000 1.6961343E-04 1.7229574E-04 0.000000 0.000000 + Av 2018 11 24 20 0 1.8050669E-02 0.000000 0.000000 1.6955899E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 21 0 1.6761050E-02 0.000000 0.000000 1.6950455E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 22 0 1.7202064E-02 0.000000 0.000000 1.6945014E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 23 0 1.7041327E-02 0.000000 0.000000 1.6939575E-04 0.000000 0.000000 0.000000 + Av 2018 11 24 24 0 1.7089827E-02 0.000000 0.000000 1.6934137E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 1 0 1.7035101E-02 0.000000 0.000000 1.6883851E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 2 0 1.7016292E-02 0.000000 0.000000 1.6878445E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 3 0 1.7015487E-02 0.000000 0.000000 1.6873042E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 4 0 1.7008426E-02 0.000000 0.000000 1.6867640E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 5 0 1.7003540E-02 0.000000 0.000000 1.6862238E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 6 0 1.6997902E-02 0.000000 0.000000 1.6856841E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 7 0 1.6992528E-02 0.000000 0.000000 1.6851444E-04 0.000000 0.000000 0.000000 Av 2018 11 25 8 0 8.4948856E-03 0.000000 0.000000 1.4694306E-05 0.000000 0.000000 6.9893722E-04 Av 2018 11 25 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.3526780E-03 Av 2018 11 25 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.6569501E-03 @@ -7912,21 +7912,21 @@ Av 2018 11 25 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.6569501E-03 Av 2018 11 25 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.3526780E-03 Av 2018 11 25 16 0 9.6911209E-04 0.000000 0.000000 1.4263336E-05 0.000000 0.000000 6.9893722E-04 - Av 2018 11 25 17 0 1.2045133E-02 0.000000 0.000000 1.6797574E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 18 0 1.8634126E-02 0.000000 0.000000 1.6792196E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 19 0 1.6335769E-02 0.000000 0.000000 1.6786820E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 20 0 1.7127626E-02 0.000000 0.000000 1.6781448E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 21 0 1.6844988E-02 0.000000 0.000000 1.6776075E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 22 0 1.6935963E-02 0.000000 0.000000 1.6770704E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 23 0 1.6897034E-02 0.000000 0.000000 1.6765334E-04 0.000000 0.000000 0.000000 - Av 2018 11 25 24 0 1.6903274E-02 0.000000 0.000000 1.6759966E-04 0.000000 0.000000 0.000000 - Av 2018 11 26 1 0 1.6864479E-02 0.000000 0.000000 1.6711430E-04 0.000000 0.000000 0.000000 - Av 2018 11 26 2 0 1.6841365E-02 0.000000 0.000000 1.6706093E-04 0.000000 0.000000 0.000000 - Av 2018 11 26 3 0 1.6842153E-02 0.000000 0.000000 1.6700759E-04 0.000000 0.000000 0.000000 - Av 2018 11 26 4 0 1.6834630E-02 0.000000 0.000000 1.6695425E-04 0.000000 0.000000 0.000000 - Av 2018 11 26 5 0 1.6829997E-02 0.000000 0.000000 1.6690094E-04 0.000000 0.000000 0.000000 - Av 2018 11 26 6 0 1.6824365E-02 0.000000 0.000000 1.6684765E-04 0.000000 0.000000 0.000000 - Av 2018 11 26 7 0 1.6819084E-02 0.000000 0.000000 1.6679437E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 17 0 1.2045133E-02 0.000000 0.000000 1.6797574E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 18 0 1.8634126E-02 0.000000 0.000000 1.6792196E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 19 0 1.6335769E-02 0.000000 0.000000 1.6786820E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 20 0 1.7127626E-02 0.000000 0.000000 1.6781448E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 21 0 1.6844988E-02 0.000000 0.000000 1.6776075E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 22 0 1.6935963E-02 0.000000 0.000000 1.6770704E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 23 0 1.6897034E-02 0.000000 0.000000 1.6765334E-04 0.000000 0.000000 0.000000 + Av 2018 11 25 24 0 1.6903274E-02 0.000000 0.000000 1.6759966E-04 0.000000 0.000000 0.000000 + Av 2018 11 26 1 0 1.6864479E-02 0.000000 0.000000 1.6711430E-04 0.000000 0.000000 0.000000 + Av 2018 11 26 2 0 1.6841365E-02 0.000000 0.000000 1.6706093E-04 0.000000 0.000000 0.000000 + Av 2018 11 26 3 0 1.6842153E-02 0.000000 0.000000 1.6700759E-04 0.000000 0.000000 0.000000 + Av 2018 11 26 4 0 1.6834630E-02 0.000000 0.000000 1.6695425E-04 0.000000 0.000000 0.000000 + Av 2018 11 26 5 0 1.6829997E-02 0.000000 0.000000 1.6690094E-04 0.000000 0.000000 0.000000 + Av 2018 11 26 6 0 1.6824365E-02 0.000000 0.000000 1.6684765E-04 0.000000 0.000000 0.000000 + Av 2018 11 26 7 0 1.6819084E-02 0.000000 0.000000 1.6679437E-04 0.000000 0.000000 0.000000 Av 2018 11 26 8 0 8.4081749E-03 0.000000 0.000000 0.000000 0.000000 0.000000 8.2954630E-04 Av 2018 11 26 9 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 2.8593866E-03 Av 2018 11 26 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4744536E-03 @@ -7936,21 +7936,21 @@ Av 2018 11 26 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 4.4744536E-03 Av 2018 11 26 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 2.8593866E-03 Av 2018 11 26 16 0 0.000000 0.000000 0.000000 0.000000 0.000000 9.9999802E-03 8.2954630E-04 - Av 2018 11 26 17 0 1.1296587E-02 0.000000 0.000000 1.6626253E-04 0.000000 0.000000 0.000000 - Av 2018 11 26 18 0 1.8989488E-02 0.000000 0.000000 1.6620946E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 11 26 19 0 1.7107144E-02 0.000000 0.000000 1.6615637E-04 0.000000 2.9999940E-02 0.000000 - Av 2018 11 26 20 0 1.9945383E-02 1.5334757E-08 0.000000 1.6619399E-04 3.2524558E-04 9.9999802E-03 0.000000 - Av 2018 11 26 21 0 0.1126539 1.2778949E-07 0.000000 1.6658979E-04 1.3808695E-02 1.9999960E-02 0.000000 - Av 2018 11 26 22 0 0.3806681 8.0768706E-07 0.000000 1.6777488E-04 4.3821260E-02 4.9999900E-02 0.000000 - Av 2018 11 26 23 0 0.4197968 3.0292907E-07 0.000000 1.6961148E-04 3.2637049E-02 2.9999940E-02 0.000000 - Av 2018 11 26 24 0 0.2013284 3.4312976E-08 0.000000 1.7059836E-04 1.4196324E-02 9.9999802E-03 0.000000 - Av 2018 11 27 1 0 0.6455536 3.4932873E-06 0.000000 1.7168239E-04 8.6397059E-02 9.9999800E-02 0.000000 - Av 2018 11 27 2 0 1.217804 5.6344506E-06 0.000000 1.7619258E-04 0.1171034 0.1199998 0.000000 - Av 2018 11 27 3 0 0.6323277 4.6247120E-08 0.000000 1.7993308E-04 2.4082184E-02 9.9999802E-03 0.000000 - Av 2018 11 27 4 0 0.4373095 2.2758068E-06 0.000000 1.8130837E-04 6.2527128E-02 6.9999859E-02 0.000000 - Av 2018 11 27 5 0 1.218283 9.7299890E-06 2.4935235E-07 1.8572368E-04 0.1312269 0.1399997 0.000000 - Av 2018 11 27 6 0 0.8200459 5.5201167E-07 5.0812162E-07 1.9078926E-04 4.2613685E-02 2.9999940E-02 0.000000 - Av 2018 11 27 7 0 9.2582047E-02 0.000000 5.1488405E-07 1.9183820E-04 7.9515027E-03 0.000000 0.000000 + Av 2018 11 26 17 0 1.1296587E-02 0.000000 0.000000 1.6626253E-04 0.000000 0.000000 0.000000 + Av 2018 11 26 18 0 1.8989488E-02 0.000000 0.000000 1.6620946E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 11 26 19 0 1.7107144E-02 0.000000 0.000000 1.6615637E-04 0.000000 2.9999940E-02 0.000000 + Av 2018 11 26 20 0 1.9945383E-02 1.5334757E-08 0.000000 1.6619399E-04 3.2524558E-04 9.9999802E-03 0.000000 + Av 2018 11 26 21 0 0.1126539 1.2778949E-07 0.000000 1.6658979E-04 1.3808695E-02 1.9999960E-02 0.000000 + Av 2018 11 26 22 0 0.3806681 8.0768706E-07 0.000000 1.6777488E-04 4.3821260E-02 4.9999900E-02 0.000000 + Av 2018 11 26 23 0 0.4197968 3.0292907E-07 0.000000 1.6961148E-04 3.2637049E-02 2.9999940E-02 0.000000 + Av 2018 11 26 24 0 0.2013284 3.4312976E-08 0.000000 1.7059836E-04 1.4196324E-02 9.9999802E-03 0.000000 + Av 2018 11 27 1 0 0.6455536 3.4932873E-06 0.000000 1.7168239E-04 8.6397059E-02 9.9999800E-02 0.000000 + Av 2018 11 27 2 0 1.217804 5.6344506E-06 0.000000 1.7619258E-04 0.1171034 0.1199998 0.000000 + Av 2018 11 27 3 0 0.6323277 4.6247120E-08 0.000000 1.7993308E-04 2.4082184E-02 9.9999802E-03 0.000000 + Av 2018 11 27 4 0 0.4373095 2.2758068E-06 0.000000 1.8130837E-04 6.2527128E-02 6.9999859E-02 0.000000 + Av 2018 11 27 5 0 1.218283 9.7299890E-06 2.4935235E-07 1.8572368E-04 0.1312269 0.1399997 0.000000 + Av 2018 11 27 6 0 0.8200459 5.5201167E-07 5.0812162E-07 1.9078926E-04 4.2613685E-02 2.9999940E-02 0.000000 + Av 2018 11 27 7 0 9.2582047E-02 0.000000 5.1488405E-07 1.9183820E-04 7.9515027E-03 0.000000 0.000000 Av 2018 11 27 8 0 5.3509228E-02 0.000000 5.0728875E-07 1.9467290E-05 2.3650380E-03 0.000000 7.8321237E-04 Av 2018 11 27 9 0 6.4200312E-03 0.000000 4.9980542E-07 0.000000 9.3989854E-04 0.000000 2.7649708E-03 Av 2018 11 27 10 0 7.1854303E-03 0.000000 4.9243255E-07 0.000000 4.5189602E-04 0.000000 4.3551233E-03 @@ -7960,21 +7960,21 @@ Av 2018 11 27 14 0 7.5366913E-04 0.000000 4.6401260E-07 0.000000 6.6218279E-05 0.000000 4.3551233E-03 Av 2018 11 27 15 0 5.1216118E-04 0.000000 4.5716769E-07 0.000000 4.7302536E-05 0.000000 2.7649708E-03 Av 2018 11 27 16 0 1.7028046E-03 0.000000 4.5042376E-07 1.8954714E-05 3.4992907E-05 0.000000 7.8321237E-04 - Av 2018 11 27 17 0 1.5178671E-02 0.000000 4.4377930E-07 1.9119745E-04 1.7655941E-04 0.000000 0.000000 - Av 2018 11 27 18 0 2.1958921E-02 0.000000 4.3723287E-07 1.9113350E-04 0.000000 0.000000 0.000000 - Av 2018 11 27 19 0 1.8392175E-02 0.000000 4.3078299E-07 1.9106956E-04 0.000000 0.000000 0.000000 - Av 2018 11 27 20 0 1.9622806E-02 0.000000 4.2442829E-07 1.9100563E-04 0.000000 0.000000 0.000000 - Av 2018 11 27 21 0 1.9185361E-02 0.000000 4.1816730E-07 1.9094172E-04 0.000000 0.000000 0.000000 - Av 2018 11 27 22 0 1.9327939E-02 0.000000 4.1199866E-07 1.9087786E-04 0.000000 0.000000 0.000000 - Av 2018 11 27 23 0 1.9268855E-02 0.000000 4.0592104E-07 1.9081401E-04 0.000000 0.000000 0.000000 - Av 2018 11 27 24 0 1.9279905E-02 0.000000 3.9993307E-07 1.9075020E-04 0.000000 0.000000 0.000000 - Av 2018 11 28 1 0 1.9217938E-02 0.000000 3.9403341E-07 1.8997044E-04 0.000000 0.000000 0.000000 - Av 2018 11 28 2 0 1.9485570E-02 0.000000 3.8822083E-07 1.8990712E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 11 28 3 0 1.9383127E-02 0.000000 3.8249394E-07 1.8984383E-04 0.000000 0.000000 0.000000 - Av 2018 11 28 4 0 1.9105215E-02 0.000000 3.7685155E-07 1.8978058E-04 0.000000 0.000000 0.000000 - Av 2018 11 28 5 0 1.9192491E-02 0.000000 3.7129240E-07 1.8971734E-04 0.000000 0.000000 0.000000 - Av 2018 11 28 6 0 1.9152801E-02 0.000000 3.6581528E-07 1.8965411E-04 0.000000 0.000000 0.000000 - Av 2018 11 28 7 0 1.9461419E-02 0.000000 3.6041894E-07 1.8959089E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 11 27 17 0 1.5178671E-02 0.000000 4.4377930E-07 1.9119745E-04 1.7655941E-04 0.000000 0.000000 + Av 2018 11 27 18 0 2.1958921E-02 0.000000 4.3723287E-07 1.9113350E-04 0.000000 0.000000 0.000000 + Av 2018 11 27 19 0 1.8392175E-02 0.000000 4.3078299E-07 1.9106956E-04 0.000000 0.000000 0.000000 + Av 2018 11 27 20 0 1.9622806E-02 0.000000 4.2442829E-07 1.9100563E-04 0.000000 0.000000 0.000000 + Av 2018 11 27 21 0 1.9185361E-02 0.000000 4.1816730E-07 1.9094172E-04 0.000000 0.000000 0.000000 + Av 2018 11 27 22 0 1.9327939E-02 0.000000 4.1199866E-07 1.9087786E-04 0.000000 0.000000 0.000000 + Av 2018 11 27 23 0 1.9268855E-02 0.000000 4.0592104E-07 1.9081401E-04 0.000000 0.000000 0.000000 + Av 2018 11 27 24 0 1.9279905E-02 0.000000 3.9993307E-07 1.9075020E-04 0.000000 0.000000 0.000000 + Av 2018 11 28 1 0 1.9217938E-02 0.000000 3.9403341E-07 1.8997044E-04 0.000000 0.000000 0.000000 + Av 2018 11 28 2 0 1.9485570E-02 0.000000 3.8822083E-07 1.8990712E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 11 28 3 0 1.9383127E-02 0.000000 3.8249394E-07 1.8984383E-04 0.000000 0.000000 0.000000 + Av 2018 11 28 4 0 1.9105215E-02 0.000000 3.7685155E-07 1.8978058E-04 0.000000 0.000000 0.000000 + Av 2018 11 28 5 0 1.9192491E-02 0.000000 3.7129240E-07 1.8971734E-04 0.000000 0.000000 0.000000 + Av 2018 11 28 6 0 1.9152801E-02 0.000000 3.6581528E-07 1.8965411E-04 0.000000 0.000000 0.000000 + Av 2018 11 28 7 0 1.9461419E-02 0.000000 3.6041894E-07 1.8959089E-04 0.000000 9.9999802E-03 0.000000 Av 2018 11 28 8 0 0.2144598 1.1797897E-06 3.8582189E-07 4.3268941E-05 2.9943544E-02 4.9999900E-02 6.6840206E-04 Av 2018 11 28 9 0 0.5784158 3.1043498E-06 4.9188839E-07 0.000000 6.4087659E-02 6.9999859E-02 2.4169786E-03 Av 2018 11 28 10 0 0.5336847 9.7725251E-07 5.9115268E-07 0.000000 4.1653626E-02 3.9999921E-02 3.8313540E-03 @@ -7984,21 +7984,21 @@ Av 2018 11 28 14 0 0.5698425 1.6000932E-06 7.8627028E-07 0.000000 4.8076801E-02 4.9999900E-02 3.8313540E-03 Av 2018 11 28 15 0 0.2101631 0.000000 8.1703814E-07 0.000000 8.6534442E-03 0.000000 2.4169786E-03 Av 2018 11 28 16 0 8.8174067E-02 1.5416674E-07 8.0910672E-07 5.7997458E-05 1.2387803E-02 1.9999960E-02 6.6840206E-04 - Av 2018 11 28 17 0 9.4776116E-02 0.000000 8.0127188E-07 2.0563800E-04 3.4196542E-03 0.000000 0.000000 - Av 2018 11 28 18 0 2.6821099E-02 0.000000 7.8945186E-07 2.0556750E-04 1.2501227E-03 0.000000 0.000000 - Av 2018 11 28 19 0 3.1065352E-02 0.000000 7.7780618E-07 2.0549701E-04 5.6832685E-04 0.000000 0.000000 - Av 2018 11 28 20 0 2.3120705E-02 0.000000 7.6633233E-07 2.0542655E-04 2.9967667E-04 0.000000 0.000000 - Av 2018 11 28 21 0 2.3203762E-02 0.000000 7.5502771E-07 2.0535612E-04 1.7561573E-04 0.000000 0.000000 - Av 2018 11 28 22 0 2.1883698E-02 0.000000 7.4388987E-07 2.0528572E-04 1.1127369E-04 0.000000 0.000000 - Av 2018 11 28 23 0 2.1646902E-02 0.000000 7.3291631E-07 2.0521534E-04 7.4837997E-05 0.000000 0.000000 - Av 2018 11 28 24 0 2.1320513E-02 0.000000 7.2210463E-07 2.0514497E-04 5.2742729E-05 0.000000 0.000000 - Av 2018 11 29 1 0 2.1115717E-02 0.000000 7.1145286E-07 2.0417695E-04 3.8591421E-05 0.000000 0.000000 - Av 2018 11 29 2 0 2.2029260E-02 0.000000 7.0095825E-07 2.0411413E-04 1.8723721E-04 0.000000 0.000000 - Av 2018 11 29 3 0 2.1438990E-02 0.000000 6.9061798E-07 2.0404447E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 4 0 2.0361202E-02 0.000000 6.8043028E-07 2.0397482E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 5 0 2.0725122E-02 0.000000 6.7039286E-07 2.0390519E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 6 0 2.0587768E-02 0.000000 6.6050353E-07 2.0383559E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 7 0 2.0624734E-02 0.000000 6.5076006E-07 2.0376600E-04 0.000000 0.000000 0.000000 + Av 2018 11 28 17 0 9.4776116E-02 0.000000 8.0127188E-07 2.0563800E-04 3.4196542E-03 0.000000 0.000000 + Av 2018 11 28 18 0 2.6821099E-02 0.000000 7.8945186E-07 2.0556750E-04 1.2501227E-03 0.000000 0.000000 + Av 2018 11 28 19 0 3.1065352E-02 0.000000 7.7780618E-07 2.0549701E-04 5.6832685E-04 0.000000 0.000000 + Av 2018 11 28 20 0 2.3120705E-02 0.000000 7.6633233E-07 2.0542655E-04 2.9967667E-04 0.000000 0.000000 + Av 2018 11 28 21 0 2.3203762E-02 0.000000 7.5502771E-07 2.0535612E-04 1.7561573E-04 0.000000 0.000000 + Av 2018 11 28 22 0 2.1883698E-02 0.000000 7.4388987E-07 2.0528572E-04 1.1127369E-04 0.000000 0.000000 + Av 2018 11 28 23 0 2.1646902E-02 0.000000 7.3291631E-07 2.0521534E-04 7.4837997E-05 0.000000 0.000000 + Av 2018 11 28 24 0 2.1320513E-02 0.000000 7.2210463E-07 2.0514497E-04 5.2742729E-05 0.000000 0.000000 + Av 2018 11 29 1 0 2.1115717E-02 0.000000 7.1145286E-07 2.0417695E-04 3.8591421E-05 0.000000 0.000000 + Av 2018 11 29 2 0 2.2029260E-02 0.000000 7.0095825E-07 2.0411413E-04 1.8723721E-04 0.000000 0.000000 + Av 2018 11 29 3 0 2.1438990E-02 0.000000 6.9061798E-07 2.0404447E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 4 0 2.0361202E-02 0.000000 6.8043028E-07 2.0397482E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 5 0 2.0725122E-02 0.000000 6.7039286E-07 2.0390519E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 6 0 2.0587768E-02 0.000000 6.6050353E-07 2.0383559E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 7 0 2.0624734E-02 0.000000 6.5076006E-07 2.0376600E-04 0.000000 0.000000 0.000000 Av 2018 11 29 8 0 1.0602515E-02 0.000000 6.4116028E-07 5.6846315E-05 0.000000 0.000000 6.6750054E-04 Av 2018 11 29 9 0 3.0413191E-04 0.000000 6.3170216E-07 0.000000 0.000000 0.000000 2.4724465E-03 Av 2018 11 29 10 0 4.2287404E-05 0.000000 6.2238360E-07 0.000000 0.000000 0.000000 3.9436421E-03 @@ -8008,21 +8008,21 @@ Av 2018 11 29 14 0 1.9294890E-05 0.000000 5.8646367E-07 0.000000 0.000000 0.000000 3.9436421E-03 Av 2018 11 29 15 0 2.9559167E-05 0.000000 5.7781244E-07 0.000000 0.000000 0.000000 2.4724465E-03 Av 2018 11 29 16 0 3.8712882E-03 0.000000 5.6928877E-07 5.6290723E-05 0.000000 0.000000 6.6750054E-04 - Av 2018 11 29 17 0 1.6348399E-02 0.000000 5.6089090E-07 2.0307150E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 18 0 2.1981552E-02 0.000000 5.5261683E-07 2.0300217E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 19 0 2.0012319E-02 0.000000 5.4446485E-07 2.0293286E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 20 0 2.0686522E-02 0.000000 5.3643316E-07 2.0286358E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 21 0 2.0441603E-02 0.000000 5.2851993E-07 2.0279434E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 22 0 2.0516289E-02 0.000000 5.2072346E-07 2.0272512E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 23 0 2.0479864E-02 0.000000 5.1304198E-07 2.0265592E-04 0.000000 0.000000 0.000000 - Av 2018 11 29 24 0 2.0482091E-02 0.000000 5.0547379E-07 2.0258674E-04 0.000000 0.000000 0.000000 - Av 2018 11 30 1 0 2.0411981E-02 0.000000 4.9801724E-07 2.0165050E-04 0.000000 0.000000 0.000000 - Av 2018 11 30 2 0 2.0367086E-02 0.000000 4.9067069E-07 2.0158196E-04 0.000000 0.000000 0.000000 - Av 2018 11 30 3 0 2.0372394E-02 0.000000 4.8343253E-07 2.0151345E-04 0.000000 0.000000 0.000000 - Av 2018 11 30 4 0 2.0360261E-02 0.000000 4.7630112E-07 2.0144494E-04 0.000000 0.000000 0.000000 - Av 2018 11 30 5 0 2.0354211E-02 0.000000 4.6927491E-07 2.0137648E-04 0.000000 0.000000 0.000000 - Av 2018 11 30 6 0 2.0346064E-02 0.000000 4.6235240E-07 2.0130801E-04 0.000000 0.000000 0.000000 - Av 2018 11 30 7 0 2.0963546E-02 0.000000 4.5553199E-07 2.0123959E-04 0.000000 1.9999960E-02 0.000000 + Av 2018 11 29 17 0 1.6348399E-02 0.000000 5.6089090E-07 2.0307150E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 18 0 2.1981552E-02 0.000000 5.5261683E-07 2.0300217E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 19 0 2.0012319E-02 0.000000 5.4446485E-07 2.0293286E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 20 0 2.0686522E-02 0.000000 5.3643316E-07 2.0286358E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 21 0 2.0441603E-02 0.000000 5.2851993E-07 2.0279434E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 22 0 2.0516289E-02 0.000000 5.2072346E-07 2.0272512E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 23 0 2.0479864E-02 0.000000 5.1304198E-07 2.0265592E-04 0.000000 0.000000 0.000000 + Av 2018 11 29 24 0 2.0482091E-02 0.000000 5.0547379E-07 2.0258674E-04 0.000000 0.000000 0.000000 + Av 2018 11 30 1 0 2.0411981E-02 0.000000 4.9801724E-07 2.0165050E-04 0.000000 0.000000 0.000000 + Av 2018 11 30 2 0 2.0367086E-02 0.000000 4.9067069E-07 2.0158196E-04 0.000000 0.000000 0.000000 + Av 2018 11 30 3 0 2.0372394E-02 0.000000 4.8343253E-07 2.0151345E-04 0.000000 0.000000 0.000000 + Av 2018 11 30 4 0 2.0360261E-02 0.000000 4.7630112E-07 2.0144494E-04 0.000000 0.000000 0.000000 + Av 2018 11 30 5 0 2.0354211E-02 0.000000 4.6927491E-07 2.0137648E-04 0.000000 0.000000 0.000000 + Av 2018 11 30 6 0 2.0346064E-02 0.000000 4.6235240E-07 2.0130801E-04 0.000000 0.000000 0.000000 + Av 2018 11 30 7 0 2.0963546E-02 0.000000 4.5553199E-07 2.0123959E-04 0.000000 1.9999960E-02 0.000000 Av 2018 11 30 8 0 1.1613772E-02 0.000000 4.4881219E-07 6.7159926E-05 0.000000 0.000000 6.0914212E-04 Av 2018 11 30 9 0 5.2028567E-02 1.9584130E-07 4.4743430E-07 0.000000 7.5460309E-03 1.9999960E-02 2.3110965E-03 Av 2018 11 30 10 0 0.1957503 6.0593766E-07 4.6229832E-07 0.000000 2.3617666E-02 2.9999940E-02 3.7084799E-03 @@ -8032,21 +8032,21 @@ Av 2018 11 30 14 0 3.2023017E-03 0.000000 4.5107959E-07 0.000000 3.8109245E-04 9.9999802E-03 3.7084799E-03 Av 2018 11 30 15 0 0.9888153 2.3524990E-05 1.0769770E-06 0.000000 0.1446579 0.1799996 2.3110965E-03 Av 2018 11 30 16 0 1.641683 2.0313373E-05 2.2443787E-06 8.2524683E-05 0.1396829 0.1399997 6.0914212E-04 - Av 2018 11 30 17 0 0.6552735 1.1739441E-07 2.7656349E-06 2.2274954E-04 2.5688421E-02 9.9999802E-03 0.000000 - Av 2018 11 30 18 0 0.1042413 1.2983118E-07 2.7316432E-06 2.2345004E-04 1.3079060E-02 9.9999802E-03 0.000000 - Av 2018 11 30 19 0 0.1065796 0.000000 2.6949137E-06 2.2389868E-04 3.4128218E-03 0.000000 0.000000 - Av 2018 11 30 20 0 0.1759070 1.1726030E-06 2.6875625E-06 2.2462833E-04 2.3314107E-02 2.9999940E-02 0.000000 - Av 2018 11 30 21 0 0.2199473 1.3231355E-07 2.6838263E-06 2.2637175E-04 1.3230301E-02 9.9999802E-03 0.000000 - Av 2018 11 30 22 0 0.2839497 2.1243914E-06 2.7068181E-06 2.2789241E-04 3.4626663E-02 3.9999921E-02 0.000000 - Av 2018 11 30 23 0 0.2735922 1.3598209E-07 2.7293172E-06 2.3015971E-04 1.4911246E-02 9.9999802E-03 0.000000 - Av 2018 11 30 24 0 0.2800183 2.1831606E-06 2.7536782E-06 2.3184680E-04 3.5047449E-02 3.9999921E-02 0.000000 - Av 2018 12 1 1 0 0.3343550 5.9676796E-07 2.7903079E-06 2.3333487E-04 2.2976622E-02 1.9999960E-02 0.000000 - Av 2018 12 1 2 0 0.1099122 0.000000 2.7657607E-06 2.3444228E-04 5.1300568E-03 0.000000 0.000000 - Av 2018 12 1 3 0 4.0433481E-02 0.000000 2.7249612E-06 2.3435843E-04 1.7028314E-03 0.000000 0.000000 - Av 2018 12 1 4 0 3.4654923E-02 0.000000 2.6847638E-06 2.3427462E-04 7.2644063E-04 0.000000 0.000000 - Av 2018 12 1 5 0 2.7568121E-02 0.000000 2.6451592E-06 2.3419084E-04 3.6655247E-04 0.000000 0.000000 - Av 2018 12 1 6 0 2.6493587E-02 0.000000 2.6061389E-06 2.3410708E-04 2.0808179E-04 0.000000 0.000000 - Av 2018 12 1 7 0 2.5234785E-02 0.000000 2.5676943E-06 2.3402333E-04 1.2874237E-04 0.000000 0.000000 + Av 2018 11 30 17 0 0.6552735 1.1739441E-07 2.7656349E-06 2.2274954E-04 2.5688421E-02 9.9999802E-03 0.000000 + Av 2018 11 30 18 0 0.1042413 1.2983118E-07 2.7316432E-06 2.2345004E-04 1.3079060E-02 9.9999802E-03 0.000000 + Av 2018 11 30 19 0 0.1065796 0.000000 2.6949137E-06 2.2389868E-04 3.4128218E-03 0.000000 0.000000 + Av 2018 11 30 20 0 0.1759070 1.1726030E-06 2.6875625E-06 2.2462833E-04 2.3314107E-02 2.9999940E-02 0.000000 + Av 2018 11 30 21 0 0.2199473 1.3231355E-07 2.6838263E-06 2.2637175E-04 1.3230301E-02 9.9999802E-03 0.000000 + Av 2018 11 30 22 0 0.2839497 2.1243914E-06 2.7068181E-06 2.2789241E-04 3.4626663E-02 3.9999921E-02 0.000000 + Av 2018 11 30 23 0 0.2735922 1.3598209E-07 2.7293172E-06 2.3015971E-04 1.4911246E-02 9.9999802E-03 0.000000 + Av 2018 11 30 24 0 0.2800183 2.1831606E-06 2.7536782E-06 2.3184680E-04 3.5047449E-02 3.9999921E-02 0.000000 + Av 2018 12 1 1 0 0.3343550 5.9676796E-07 2.7903079E-06 2.3333487E-04 2.2976622E-02 1.9999960E-02 0.000000 + Av 2018 12 1 2 0 0.1099122 0.000000 2.7657607E-06 2.3444228E-04 5.1300568E-03 0.000000 0.000000 + Av 2018 12 1 3 0 4.0433481E-02 0.000000 2.7249612E-06 2.3435843E-04 1.7028314E-03 0.000000 0.000000 + Av 2018 12 1 4 0 3.4654923E-02 0.000000 2.6847638E-06 2.3427462E-04 7.2644063E-04 0.000000 0.000000 + Av 2018 12 1 5 0 2.7568121E-02 0.000000 2.6451592E-06 2.3419084E-04 3.6655247E-04 0.000000 0.000000 + Av 2018 12 1 6 0 2.6493587E-02 0.000000 2.6061389E-06 2.3410708E-04 2.0808179E-04 0.000000 0.000000 + Av 2018 12 1 7 0 2.5234785E-02 0.000000 2.5676943E-06 2.3402333E-04 1.2874237E-04 0.000000 0.000000 Av 2018 12 1 8 0 1.6553774E-02 0.000000 2.5298168E-06 1.1256129E-04 8.5010826E-05 0.000000 5.5171980E-04 Av 2018 12 1 9 0 4.0204464E-03 0.000000 2.4924980E-06 0.000000 5.9048201E-05 0.000000 2.1694279E-03 Av 2018 12 1 10 0 4.5698322E-04 0.000000 2.4557296E-06 0.000000 4.2701242E-05 0.000000 3.5112759E-03 @@ -8056,21 +8056,21 @@ Av 2018 12 1 14 0 2.3548250E-04 0.000000 2.3140012E-06 0.000000 0.000000 0.000000 3.5112759E-03 Av 2018 12 1 15 0 1.8927132E-04 0.000000 2.2798661E-06 0.000000 0.000000 0.000000 2.1694279E-03 Av 2018 12 1 16 0 7.8250952E-03 0.000000 2.2462345E-06 1.1189278E-04 0.000000 0.000000 5.5171980E-04 - Av 2018 12 1 17 0 2.1024428E-02 0.000000 2.2130992E-06 2.3318769E-04 0.000000 0.000000 0.000000 - Av 2018 12 1 18 0 2.4670009E-02 0.000000 2.1804524E-06 2.3310429E-04 0.000000 0.000000 0.000000 - Av 2018 12 1 19 0 2.3386672E-02 0.000000 2.1482872E-06 2.3302092E-04 0.000000 0.000000 0.000000 - Av 2018 12 1 20 0 2.3817234E-02 0.000000 2.1165965E-06 2.3293759E-04 0.000000 0.000000 0.000000 - Av 2018 12 1 21 0 2.3651926E-02 0.000000 2.0853736E-06 2.3285428E-04 0.000000 0.000000 0.000000 - Av 2018 12 1 22 0 2.3693874E-02 0.000000 2.0546111E-06 2.3277098E-04 0.000000 0.000000 0.000000 - Av 2018 12 1 23 0 2.3663824E-02 0.000000 2.0243021E-06 2.3268774E-04 0.000000 0.000000 0.000000 - Av 2018 12 1 24 0 0.2629537 3.3681099E-06 2.0888642E-06 2.3404008E-04 3.4825165E-02 6.9999859E-02 0.000000 - Av 2018 12 2 1 0 0.2859833 1.5519706E-07 2.1563771E-06 2.3565917E-04 1.5378670E-02 9.9999802E-03 0.000000 - Av 2018 12 2 2 0 6.5024443E-02 0.000000 2.1289161E-06 2.3617956E-04 3.8401352E-03 0.000000 0.000000 - Av 2018 12 2 3 0 4.5140617E-02 0.000000 2.0975112E-06 2.3609494E-04 1.3662910E-03 0.000000 0.000000 - Av 2018 12 2 4 0 3.0092258E-02 0.000000 2.0665698E-06 2.3601034E-04 6.1007513E-04 0.000000 0.000000 - Av 2018 12 2 5 0 2.8184399E-02 0.000000 2.0360844E-06 2.3592576E-04 3.1769043E-04 0.000000 0.000000 - Av 2018 12 2 6 0 6.6733971E-02 1.4616667E-07 2.0101693E-06 2.3615632E-04 6.1321273E-03 9.9999802E-03 0.000000 - Av 2018 12 2 7 0 6.7090757E-02 0.000000 1.9846161E-06 2.3665857E-04 2.3361864E-03 0.000000 0.000000 + Av 2018 12 1 17 0 2.1024428E-02 0.000000 2.2130992E-06 2.3318769E-04 0.000000 0.000000 0.000000 + Av 2018 12 1 18 0 2.4670009E-02 0.000000 2.1804524E-06 2.3310429E-04 0.000000 0.000000 0.000000 + Av 2018 12 1 19 0 2.3386672E-02 0.000000 2.1482872E-06 2.3302092E-04 0.000000 0.000000 0.000000 + Av 2018 12 1 20 0 2.3817234E-02 0.000000 2.1165965E-06 2.3293759E-04 0.000000 0.000000 0.000000 + Av 2018 12 1 21 0 2.3651926E-02 0.000000 2.0853736E-06 2.3285428E-04 0.000000 0.000000 0.000000 + Av 2018 12 1 22 0 2.3693874E-02 0.000000 2.0546111E-06 2.3277098E-04 0.000000 0.000000 0.000000 + Av 2018 12 1 23 0 2.3663824E-02 0.000000 2.0243021E-06 2.3268774E-04 0.000000 0.000000 0.000000 + Av 2018 12 1 24 0 0.2629537 3.3681099E-06 2.0888642E-06 2.3404008E-04 3.4825165E-02 6.9999859E-02 0.000000 + Av 2018 12 2 1 0 0.2859833 1.5519706E-07 2.1563771E-06 2.3565917E-04 1.5378670E-02 9.9999802E-03 0.000000 + Av 2018 12 2 2 0 6.5024443E-02 0.000000 2.1289161E-06 2.3617956E-04 3.8401352E-03 0.000000 0.000000 + Av 2018 12 2 3 0 4.5140617E-02 0.000000 2.0975112E-06 2.3609494E-04 1.3662910E-03 0.000000 0.000000 + Av 2018 12 2 4 0 3.0092258E-02 0.000000 2.0665698E-06 2.3601034E-04 6.1007513E-04 0.000000 0.000000 + Av 2018 12 2 5 0 2.8184399E-02 0.000000 2.0360844E-06 2.3592576E-04 3.1769043E-04 0.000000 0.000000 + Av 2018 12 2 6 0 6.6733971E-02 1.4616667E-07 2.0101693E-06 2.3615632E-04 6.1321273E-03 9.9999802E-03 0.000000 + Av 2018 12 2 7 0 6.7090757E-02 0.000000 1.9846161E-06 2.3665857E-04 2.3361864E-03 0.000000 0.000000 Av 2018 12 2 8 0 2.4032824E-02 0.000000 1.9553397E-06 1.2999590E-04 9.3095115E-04 0.000000 4.8444440E-04 Av 2018 12 2 9 0 1.0604104E-02 0.000000 1.9264955E-06 0.000000 4.4841479E-04 0.000000 1.9502522E-03 Av 2018 12 2 10 0 1.8021289E-03 0.000000 1.8980766E-06 0.000000 2.4625554E-04 0.000000 3.1738379E-03 @@ -8080,21 +8080,21 @@ Av 2018 12 2 14 0 6.3593552E-04 0.000000 1.7885320E-06 0.000000 4.7126399E-05 0.000000 3.1738379E-03 Av 2018 12 2 15 0 5.3595868E-04 0.000000 1.7621484E-06 0.000000 3.4875524E-05 0.000000 1.9502522E-03 Av 2018 12 2 16 0 1.0252632E-02 0.000000 1.7361539E-06 1.2931766E-04 1.7620387E-04 0.000000 4.8444440E-04 - Av 2018 12 2 17 0 2.2671115E-02 0.000000 1.7105430E-06 2.3581077E-04 0.000000 0.000000 0.000000 - Av 2018 12 2 18 0 2.4386017E-02 0.000000 1.6853097E-06 2.3572617E-04 0.000000 0.000000 0.000000 - Av 2018 12 2 19 0 2.3774832E-02 0.000000 1.6604488E-06 2.3564159E-04 0.000000 0.000000 0.000000 - Av 2018 12 2 20 0 2.3972500E-02 0.000000 1.6359546E-06 2.3555705E-04 0.000000 0.000000 0.000000 - Av 2018 12 2 21 0 2.3888979E-02 0.000000 1.6118217E-06 2.3547253E-04 0.000000 0.000000 0.000000 - Av 2018 12 2 22 0 2.3903282E-02 0.000000 1.5880448E-06 2.3538803E-04 0.000000 0.000000 0.000000 - Av 2018 12 2 23 0 2.3883622E-02 0.000000 1.5646187E-06 2.3530357E-04 0.000000 0.000000 0.000000 - Av 2018 12 2 24 0 2.3875823E-02 0.000000 1.5415380E-06 2.3521914E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 1 0 2.3775578E-02 0.000000 1.5187979E-06 2.3383407E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 2 0 2.3707589E-02 0.000000 1.4963933E-06 2.3375064E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 3 0 2.3716871E-02 0.000000 1.4743191E-06 2.3366723E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 4 0 2.3699336E-02 0.000000 1.4525706E-06 2.3358385E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 5 0 2.3691170E-02 0.000000 1.4311429E-06 2.3350051E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 6 0 2.3679797E-02 0.000000 1.4100312E-06 2.3341720E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 7 0 2.3669586E-02 0.000000 1.3892311E-06 2.3333391E-04 0.000000 0.000000 0.000000 + Av 2018 12 2 17 0 2.2671115E-02 0.000000 1.7105430E-06 2.3581077E-04 0.000000 0.000000 0.000000 + Av 2018 12 2 18 0 2.4386017E-02 0.000000 1.6853097E-06 2.3572617E-04 0.000000 0.000000 0.000000 + Av 2018 12 2 19 0 2.3774832E-02 0.000000 1.6604488E-06 2.3564159E-04 0.000000 0.000000 0.000000 + Av 2018 12 2 20 0 2.3972500E-02 0.000000 1.6359546E-06 2.3555705E-04 0.000000 0.000000 0.000000 + Av 2018 12 2 21 0 2.3888979E-02 0.000000 1.6118217E-06 2.3547253E-04 0.000000 0.000000 0.000000 + Av 2018 12 2 22 0 2.3903282E-02 0.000000 1.5880448E-06 2.3538803E-04 0.000000 0.000000 0.000000 + Av 2018 12 2 23 0 2.3883622E-02 0.000000 1.5646187E-06 2.3530357E-04 0.000000 0.000000 0.000000 + Av 2018 12 2 24 0 2.3875823E-02 0.000000 1.5415380E-06 2.3521914E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 1 0 2.3775578E-02 0.000000 1.5187979E-06 2.3383407E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 2 0 2.3707589E-02 0.000000 1.4963933E-06 2.3375064E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 3 0 2.3716871E-02 0.000000 1.4743191E-06 2.3366723E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 4 0 2.3699336E-02 0.000000 1.4525706E-06 2.3358385E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 5 0 2.3691170E-02 0.000000 1.4311429E-06 2.3350051E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 6 0 2.3679797E-02 0.000000 1.4100312E-06 2.3341720E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 7 0 2.3669586E-02 0.000000 1.3892311E-06 2.3333391E-04 0.000000 0.000000 0.000000 Av 2018 12 3 8 0 1.6438551E-02 0.000000 1.3687378E-06 1.2721791E-04 0.000000 0.000000 4.8196700E-04 Av 2018 12 3 9 0 4.6064584E-03 0.000000 1.3485468E-06 0.000000 0.000000 0.000000 1.9857658E-03 Av 2018 12 3 10 0 9.0274407E-05 0.000000 1.3286536E-06 0.000000 0.000000 0.000000 3.2485810E-03 @@ -8104,21 +8104,21 @@ Av 2018 12 3 14 0 9.2441762E-05 0.000000 1.2519724E-06 0.000000 0.000000 0.000000 3.2485810E-03 Av 2018 12 3 15 0 1.0090297E-04 0.000000 1.2335039E-06 0.000000 0.000000 0.000000 1.9857658E-03 Av 2018 12 3 16 0 8.7129232E-03 0.000000 1.2153077E-06 1.2655288E-04 0.000000 0.000000 4.8196700E-04 - Av 2018 12 3 17 0 2.1526817E-02 0.000000 1.1973800E-06 2.3250264E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 18 0 2.4265254E-02 0.000000 1.1797167E-06 2.3241967E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 19 0 2.3299422E-02 0.000000 1.1623141E-06 2.3233675E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 20 0 2.3621636E-02 0.000000 1.1451682E-06 2.3225385E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 21 0 2.3496021E-02 0.000000 1.1282751E-06 2.3217096E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 22 0 2.3526160E-02 0.000000 1.1116313E-06 2.3208812E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 23 0 2.3502182E-02 0.000000 1.0952330E-06 2.3200530E-04 0.000000 0.000000 0.000000 - Av 2018 12 3 24 0 2.3497056E-02 0.000000 1.0790766E-06 2.3192253E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 1 0 2.3400422E-02 0.000000 1.0631585E-06 2.3058888E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 2 0 2.3335699E-02 0.000000 1.0474753E-06 2.3050704E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 3 0 2.3344971E-02 0.000000 1.0320234E-06 2.3042524E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 4 0 2.3328548E-02 0.000000 1.0167994E-06 2.3034346E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 5 0 2.3321092E-02 0.000000 1.0018000E-06 2.3026169E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 6 0 2.3310553E-02 0.000000 9.8702196E-07 2.3017998E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 7 0 2.3301121E-02 0.000000 9.7246186E-07 2.3009829E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 17 0 2.1526817E-02 0.000000 1.1973800E-06 2.3250264E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 18 0 2.4265254E-02 0.000000 1.1797167E-06 2.3241967E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 19 0 2.3299422E-02 0.000000 1.1623141E-06 2.3233675E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 20 0 2.3621636E-02 0.000000 1.1451682E-06 2.3225385E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 21 0 2.3496021E-02 0.000000 1.1282751E-06 2.3217096E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 22 0 2.3526160E-02 0.000000 1.1116313E-06 2.3208812E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 23 0 2.3502182E-02 0.000000 1.0952330E-06 2.3200530E-04 0.000000 0.000000 0.000000 + Av 2018 12 3 24 0 2.3497056E-02 0.000000 1.0790766E-06 2.3192253E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 1 0 2.3400422E-02 0.000000 1.0631585E-06 2.3058888E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 2 0 2.3335699E-02 0.000000 1.0474753E-06 2.3050704E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 3 0 2.3344971E-02 0.000000 1.0320234E-06 2.3042524E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 4 0 2.3328548E-02 0.000000 1.0167994E-06 2.3034346E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 5 0 2.3321092E-02 0.000000 1.0018000E-06 2.3026169E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 6 0 2.3310553E-02 0.000000 9.8702196E-07 2.3017998E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 7 0 2.3301121E-02 0.000000 9.7246186E-07 2.3009829E-04 0.000000 0.000000 0.000000 Av 2018 12 4 8 0 1.6705753E-02 0.000000 9.5811652E-07 1.3330550E-04 0.000000 0.000000 4.3959613E-04 Av 2018 12 4 9 0 5.0576911E-03 0.000000 9.4398274E-07 0.000000 0.000000 0.000000 1.8527821E-03 Av 2018 12 4 10 0 6.3192085E-05 0.000000 9.3005752E-07 0.000000 0.000000 0.000000 3.0461699E-03 @@ -8128,21 +8128,21 @@ Av 2018 12 4 14 0 5.7123099E-05 0.000000 8.7638080E-07 0.000000 0.000000 0.000000 3.0461699E-03 Av 2018 12 4 15 0 6.5213433E-05 0.000000 8.6345278E-07 0.000000 0.000000 0.000000 1.8527821E-03 Av 2018 12 4 16 0 9.0912934E-03 0.000000 8.5071548E-07 1.3265325E-04 0.000000 0.000000 4.3959613E-04 - Av 2018 12 4 17 0 2.1542132E-02 0.000000 8.3816610E-07 2.2928299E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 18 0 2.3774071E-02 0.000000 8.2580186E-07 2.2920161E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 19 0 2.2985283E-02 0.000000 8.1361998E-07 2.2912027E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 20 0 2.3246858E-02 0.000000 8.0161777E-07 2.2903897E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 21 0 2.3143239E-02 0.000000 7.8979269E-07 2.2895767E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 22 0 2.3166629E-02 0.000000 7.7814195E-07 2.2887642E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 23 0 2.3145886E-02 0.000000 7.6666316E-07 2.2879519E-04 0.000000 0.000000 0.000000 - Av 2018 12 4 24 0 2.3140512E-02 0.000000 7.5535365E-07 2.2871398E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 1 0 2.3048081E-02 0.000000 7.4421104E-07 2.2742974E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 2 0 2.2986002E-02 0.000000 7.3323275E-07 2.2734945E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 3 0 2.2995198E-02 0.000000 7.2241642E-07 2.2726919E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 4 0 2.2979639E-02 0.000000 7.1175970E-07 2.2718895E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 5 0 2.2972710E-02 0.000000 7.0126009E-07 2.2710874E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 6 0 2.2962805E-02 0.000000 6.9091539E-07 2.2702858E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 7 0 2.2953963E-02 0.000000 6.8072336E-07 2.2694842E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 17 0 2.1542132E-02 0.000000 8.3816610E-07 2.2928299E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 18 0 2.3774071E-02 0.000000 8.2580186E-07 2.2920161E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 19 0 2.2985283E-02 0.000000 8.1361998E-07 2.2912027E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 20 0 2.3246858E-02 0.000000 8.0161777E-07 2.2903897E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 21 0 2.3143239E-02 0.000000 7.8979269E-07 2.2895767E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 22 0 2.3166629E-02 0.000000 7.7814195E-07 2.2887642E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 23 0 2.3145886E-02 0.000000 7.6666316E-07 2.2879519E-04 0.000000 0.000000 0.000000 + Av 2018 12 4 24 0 2.3140512E-02 0.000000 7.5535365E-07 2.2871398E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 1 0 2.3048081E-02 0.000000 7.4421104E-07 2.2742974E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 2 0 2.2986002E-02 0.000000 7.3323275E-07 2.2734945E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 3 0 2.2995198E-02 0.000000 7.2241642E-07 2.2726919E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 4 0 2.2979639E-02 0.000000 7.1175970E-07 2.2718895E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 5 0 2.2972710E-02 0.000000 7.0126009E-07 2.2710874E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 6 0 2.2962805E-02 0.000000 6.9091539E-07 2.2702858E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 7 0 2.2953963E-02 0.000000 6.8072336E-07 2.2694842E-04 0.000000 0.000000 0.000000 Av 2018 12 5 8 0 1.6850874E-02 0.000000 6.7068157E-07 1.3737634E-04 0.000000 0.000000 4.0678159E-04 Av 2018 12 5 9 0 5.3762393E-03 0.000000 6.6078798E-07 0.000000 0.000000 0.000000 1.7528168E-03 Av 2018 12 5 10 0 4.4234461E-05 0.000000 6.5104030E-07 0.000000 0.000000 0.000000 2.8954614E-03 @@ -8152,21 +8152,21 @@ Av 2018 12 5 14 0 3.2460219E-05 0.000000 6.1346651E-07 0.000000 0.000000 0.000000 2.8954614E-03 Av 2018 12 5 15 0 4.0284605E-05 0.000000 6.0441693E-07 0.000000 0.000000 0.000000 1.7528168E-03 Av 2018 12 5 16 0 9.3434704E-03 0.000000 5.9550081E-07 1.3673639E-04 0.000000 0.000000 4.0678159E-04 - Av 2018 12 5 17 0 2.1484725E-02 0.000000 5.8671623E-07 2.2614848E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 18 0 2.3334276E-02 0.000000 5.7806130E-07 2.2606865E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 19 0 2.2679154E-02 0.000000 5.6953400E-07 2.2598883E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 20 0 2.2894952E-02 0.000000 5.6113248E-07 2.2590907E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 21 0 2.2807948E-02 0.000000 5.5285489E-07 2.2582931E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 22 0 2.2826247E-02 0.000000 5.4469939E-07 2.2574958E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 23 0 2.2807952E-02 0.000000 5.3666423E-07 2.2566989E-04 0.000000 0.000000 0.000000 - Av 2018 12 5 24 0 2.2802401E-02 0.000000 5.2874759E-07 2.2559024E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 1 0 2.2713821E-02 0.000000 5.2094771E-07 2.2435345E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 2 0 2.2654183E-02 0.000000 5.1326293E-07 2.2427466E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 3 0 2.2663178E-02 0.000000 5.0569145E-07 2.2419589E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 4 0 2.2648327E-02 0.000000 4.9823177E-07 2.2411715E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 5 0 2.2641785E-02 0.000000 4.9088203E-07 2.2403843E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 6 0 2.2632375E-02 0.000000 4.8364075E-07 2.2395975E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 7 0 2.2623979E-02 0.000000 4.7650630E-07 2.2388110E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 17 0 2.1484725E-02 0.000000 5.8671623E-07 2.2614848E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 18 0 2.3334276E-02 0.000000 5.7806130E-07 2.2606865E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 19 0 2.2679154E-02 0.000000 5.6953400E-07 2.2598883E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 20 0 2.2894952E-02 0.000000 5.6113248E-07 2.2590907E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 21 0 2.2807948E-02 0.000000 5.5285489E-07 2.2582931E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 22 0 2.2826247E-02 0.000000 5.4469939E-07 2.2574958E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 23 0 2.2807952E-02 0.000000 5.3666423E-07 2.2566989E-04 0.000000 0.000000 0.000000 + Av 2018 12 5 24 0 2.2802401E-02 0.000000 5.2874759E-07 2.2559024E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 1 0 2.2713821E-02 0.000000 5.2094771E-07 2.2435345E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 2 0 2.2654183E-02 0.000000 5.1326293E-07 2.2427466E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 3 0 2.2663178E-02 0.000000 5.0569145E-07 2.2419589E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 4 0 2.2648327E-02 0.000000 4.9823177E-07 2.2411715E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 5 0 2.2641785E-02 0.000000 4.9088203E-07 2.2403843E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 6 0 2.2632375E-02 0.000000 4.8364075E-07 2.2395975E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 7 0 2.2623979E-02 0.000000 4.7650630E-07 2.2388110E-04 0.000000 0.000000 0.000000 Av 2018 12 6 8 0 1.7001893E-02 0.000000 4.6947707E-07 1.4136631E-04 0.000000 0.000000 3.7470978E-04 Av 2018 12 6 9 0 5.6921346E-03 0.000000 4.6255155E-07 0.000000 0.000000 0.000000 1.6495535E-03 Av 2018 12 6 10 0 3.0964122E-05 0.000000 4.5572818E-07 0.000000 0.000000 0.000000 2.7370425E-03 @@ -8176,21 +8176,21 @@ Av 2018 12 6 14 0 1.5708207E-05 0.000000 4.2942659E-07 0.000000 0.000000 0.000000 2.7370425E-03 Av 2018 12 6 15 0 2.3209566E-05 0.000000 4.2309188E-07 0.000000 0.000000 0.000000 1.6495535E-03 Av 2018 12 6 16 0 9.5978417E-03 0.000000 4.1685061E-07 1.4073825E-04 0.000000 0.000000 3.7470978E-04 - Av 2018 12 6 17 0 2.1436919E-02 0.000000 4.1070140E-07 2.2309602E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 18 0 2.2912461E-02 0.000000 4.0464292E-07 2.2301766E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 19 0 2.2387940E-02 0.000000 3.9867379E-07 2.2293933E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 20 0 2.2558874E-02 0.000000 3.9279274E-07 2.2286102E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 21 0 2.2488005E-02 0.000000 3.8699844E-07 2.2278276E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 22 0 2.2501230E-02 0.000000 3.8128960E-07 2.2270450E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 23 0 2.2485230E-02 0.000000 3.7566497E-07 2.2262630E-04 0.000000 0.000000 0.000000 - Av 2018 12 6 24 0 2.2479409E-02 0.000000 3.7012333E-07 2.2254810E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 1 0 2.2394441E-02 0.000000 3.6466344E-07 2.2135694E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 2 0 2.2337060E-02 0.000000 3.5928409E-07 2.2127958E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 3 0 2.2345778E-02 0.000000 3.5398406E-07 2.2120227E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 4 0 2.2331525E-02 0.000000 3.4876223E-07 2.2112497E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 5 0 2.2325274E-02 0.000000 3.4361744E-07 2.2104768E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 6 0 2.2316253E-02 0.000000 3.3854855E-07 2.2097043E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 7 0 2.2308210E-02 0.000000 3.3355442E-07 2.2089321E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 17 0 2.1436919E-02 0.000000 4.1070140E-07 2.2309602E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 18 0 2.2912461E-02 0.000000 4.0464292E-07 2.2301766E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 19 0 2.2387940E-02 0.000000 3.9867379E-07 2.2293933E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 20 0 2.2558874E-02 0.000000 3.9279274E-07 2.2286102E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 21 0 2.2488005E-02 0.000000 3.8699844E-07 2.2278276E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 22 0 2.2501230E-02 0.000000 3.8128960E-07 2.2270450E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 23 0 2.2485230E-02 0.000000 3.7566497E-07 2.2262630E-04 0.000000 0.000000 0.000000 + Av 2018 12 6 24 0 2.2479409E-02 0.000000 3.7012333E-07 2.2254810E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 1 0 2.2394441E-02 0.000000 3.6466344E-07 2.2135694E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 2 0 2.2337060E-02 0.000000 3.5928409E-07 2.2127958E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 3 0 2.2345778E-02 0.000000 3.5398406E-07 2.2120227E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 4 0 2.2331525E-02 0.000000 3.4876223E-07 2.2112497E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 5 0 2.2325274E-02 0.000000 3.4361744E-07 2.2104768E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 6 0 2.2316253E-02 0.000000 3.3854855E-07 2.2097043E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 7 0 2.2308210E-02 0.000000 3.3355442E-07 2.2089321E-04 0.000000 0.000000 0.000000 Av 2018 12 7 8 0 1.6807880E-02 0.000000 3.2863397E-07 1.4016146E-04 0.000000 0.000000 3.6661170E-04 Av 2018 12 7 9 0 5.6559118E-03 0.000000 3.2378611E-07 0.000000 0.000000 0.000000 1.6474384E-03 Av 2018 12 7 10 0 2.1674889E-05 0.000000 3.1900979E-07 0.000000 0.000000 0.000000 2.7449592E-03 @@ -8200,21 +8200,21 @@ Av 2018 12 7 14 0 2.0423960E-05 0.000000 3.0059869E-07 0.000000 0.000000 0.000000 2.7449592E-03 Av 2018 12 7 15 0 2.2362357E-05 0.000000 2.9616436E-07 0.000000 0.000000 0.000000 1.6474384E-03 Av 2018 12 7 16 0 9.4801029E-03 0.000000 0.000000 1.3954485E-04 0.000000 0.000000 3.6661170E-04 - Av 2018 12 7 17 0 2.1138586E-02 0.000000 0.000000 2.2012249E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 18 0 2.2556826E-02 0.000000 0.000000 2.2004556E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 19 0 2.2053240E-02 0.000000 0.000000 2.1996866E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 20 0 2.2217892E-02 0.000000 0.000000 2.1989179E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 21 0 2.2150198E-02 0.000000 0.000000 2.1981496E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 22 0 2.2163294E-02 0.000000 0.000000 2.1973814E-04 0.000000 0.000000 0.000000 - Av 2018 12 7 23 0 2.2473149E-02 0.000000 0.000000 2.1966133E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 12 7 24 0 2.2684194E-02 0.000000 0.000000 2.1958457E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 12 8 1 0 2.3185868E-02 0.000000 0.000000 2.1843726E-04 0.000000 2.9999940E-02 0.000000 - Av 2018 12 8 2 0 2.2599101E-02 0.000000 0.000000 2.1836130E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 3 0 2.1809733E-02 0.000000 0.000000 2.1828536E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 4 0 2.2073887E-02 0.000000 0.000000 2.1820946E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 5 0 2.1971725E-02 0.000000 0.000000 2.1813357E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 6 0 2.1996936E-02 0.000000 0.000000 2.1805771E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 7 0 2.1977864E-02 0.000000 0.000000 2.1798188E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 17 0 2.1138586E-02 0.000000 0.000000 2.2012249E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 18 0 2.2556826E-02 0.000000 0.000000 2.2004556E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 19 0 2.2053240E-02 0.000000 0.000000 2.1996866E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 20 0 2.2217892E-02 0.000000 0.000000 2.1989179E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 21 0 2.2150198E-02 0.000000 0.000000 2.1981496E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 22 0 2.2163294E-02 0.000000 0.000000 2.1973814E-04 0.000000 0.000000 0.000000 + Av 2018 12 7 23 0 2.2473149E-02 0.000000 0.000000 2.1966133E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 12 7 24 0 2.2684194E-02 0.000000 0.000000 2.1958457E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 12 8 1 0 2.3185868E-02 0.000000 0.000000 2.1843726E-04 0.000000 2.9999940E-02 0.000000 + Av 2018 12 8 2 0 2.2599101E-02 0.000000 0.000000 2.1836130E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 3 0 2.1809733E-02 0.000000 0.000000 2.1828536E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 4 0 2.2073887E-02 0.000000 0.000000 2.1820946E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 5 0 2.1971725E-02 0.000000 0.000000 2.1813357E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 6 0 2.1996936E-02 0.000000 0.000000 2.1805771E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 7 0 2.1977864E-02 0.000000 0.000000 2.1798188E-04 0.000000 0.000000 0.000000 Av 2018 12 8 8 0 1.5630467E-02 0.000000 0.000000 1.2474123E-04 0.000000 0.000000 4.2347665E-04 Av 2018 12 8 9 0 4.6404009E-03 0.000000 0.000000 0.000000 0.000000 0.000000 1.9406244E-03 Av 2018 12 8 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2460338E-03 @@ -8224,21 +8224,21 @@ Av 2018 12 8 14 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 3.2460338E-03 Av 2018 12 8 15 0 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.9406244E-03 Av 2018 12 8 16 0 8.4343115E-03 0.000000 0.000000 1.2413572E-04 0.000000 0.000000 4.2347665E-04 - Av 2018 12 8 17 0 2.0260822E-02 0.000000 0.000000 2.1722501E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 18 0 2.2468390E-02 0.000000 0.000000 2.1714947E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 19 0 2.1690536E-02 0.000000 0.000000 2.1707396E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 20 0 2.1950744E-02 0.000000 0.000000 2.1699847E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 21 0 2.1850012E-02 0.000000 0.000000 2.1692300E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 22 0 2.1874785E-02 0.000000 0.000000 2.1684758E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 23 0 2.1855922E-02 0.000000 0.000000 2.1677217E-04 0.000000 0.000000 0.000000 - Av 2018 12 8 24 0 2.1852234E-02 0.000000 0.000000 2.1669678E-04 0.000000 0.000000 0.000000 - Av 2018 12 9 1 0 2.1773301E-02 0.000000 0.000000 2.1559157E-04 0.000000 0.000000 0.000000 - Av 2018 12 9 2 0 2.1720586E-02 0.000000 0.000000 2.1551695E-04 0.000000 0.000000 0.000000 - Av 2018 12 9 3 0 2.1728778E-02 0.000000 0.000000 2.1544236E-04 0.000000 0.000000 0.000000 - Av 2018 12 9 4 0 2.1715794E-02 0.000000 0.000000 2.1536779E-04 0.000000 0.000000 0.000000 - Av 2018 12 9 5 0 2.1710178E-02 0.000000 0.000000 2.1529326E-04 0.000000 0.000000 0.000000 - Av 2018 12 9 6 0 2.1702003E-02 0.000000 0.000000 2.1521874E-04 0.000000 0.000000 0.000000 - Av 2018 12 9 7 0 2.1694722E-02 0.000000 0.000000 2.1514425E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 17 0 2.0260822E-02 0.000000 0.000000 2.1722501E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 18 0 2.2468390E-02 0.000000 0.000000 2.1714947E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 19 0 2.1690536E-02 0.000000 0.000000 2.1707396E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 20 0 2.1950744E-02 0.000000 0.000000 2.1699847E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 21 0 2.1850012E-02 0.000000 0.000000 2.1692300E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 22 0 2.1874785E-02 0.000000 0.000000 2.1684758E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 23 0 2.1855922E-02 0.000000 0.000000 2.1677217E-04 0.000000 0.000000 0.000000 + Av 2018 12 8 24 0 2.1852234E-02 0.000000 0.000000 2.1669678E-04 0.000000 0.000000 0.000000 + Av 2018 12 9 1 0 2.1773301E-02 0.000000 0.000000 2.1559157E-04 0.000000 0.000000 0.000000 + Av 2018 12 9 2 0 2.1720586E-02 0.000000 0.000000 2.1551695E-04 0.000000 0.000000 0.000000 + Av 2018 12 9 3 0 2.1728778E-02 0.000000 0.000000 2.1544236E-04 0.000000 0.000000 0.000000 + Av 2018 12 9 4 0 2.1715794E-02 0.000000 0.000000 2.1536779E-04 0.000000 0.000000 0.000000 + Av 2018 12 9 5 0 2.1710178E-02 0.000000 0.000000 2.1529326E-04 0.000000 0.000000 0.000000 + Av 2018 12 9 6 0 2.1702003E-02 0.000000 0.000000 2.1521874E-04 0.000000 0.000000 0.000000 + Av 2018 12 9 7 0 2.1694722E-02 0.000000 0.000000 2.1514425E-04 0.000000 0.000000 0.000000 Av 2018 12 9 8 0 1.5119158E-02 0.000000 0.000000 1.1861033E-04 0.000000 0.000000 4.3845203E-04 Av 2018 12 9 9 0 4.2737364E-03 0.000000 0.000000 0.000000 0.000000 0.000000 2.0467371E-03 Av 2018 12 9 10 0 0.000000 0.000000 0.000000 0.000000 0.000000 2.9999940E-02 3.4357964E-03 @@ -8248,21 +8248,21 @@ Av 2018 12 9 14 0 0.5660293 3.5912396E-06 4.9296204E-07 0.000000 4.9163695E-02 4.9999900E-02 3.4357964E-03 Av 2018 12 9 15 0 0.4718842 3.7024995E-06 6.9431906E-07 0.000000 4.6938211E-02 4.9999900E-02 2.0467371E-03 Av 2018 12 9 16 0 0.4448526 2.5416600E-06 8.6326855E-07 1.4152125E-04 3.9295699E-02 3.9999921E-02 4.3845203E-04 - Av 2018 12 9 17 0 0.4771020 4.3928349E-06 1.0506933E-06 2.4198984E-04 4.7893614E-02 4.9999900E-02 0.000000 - Av 2018 12 9 18 0 0.6665443 9.0246967E-06 1.4241795E-06 2.4754790E-04 6.6921048E-02 6.9999859E-02 0.000000 - Av 2018 12 9 19 0 0.6962153 7.0365991E-06 1.8701203E-06 2.5403238E-04 6.1124891E-02 5.9999879E-02 0.000000 - Av 2018 12 9 20 0 0.3103138 0.000000 2.0473349E-06 2.5784469E-04 1.0231405E-02 0.000000 0.000000 - Av 2018 12 9 21 0 3.7015405E-02 0.000000 2.0171335E-06 2.5774946E-04 2.8502406E-03 0.000000 0.000000 - Av 2018 12 9 22 0 4.9167484E-02 0.000000 1.9873778E-06 2.5765426E-04 1.0864049E-03 0.000000 0.000000 - Av 2018 12 9 23 0 2.9010013E-02 0.000000 1.9580607E-06 2.5755909E-04 5.0785980E-04 0.000000 0.000000 - Av 2018 12 9 24 0 3.0475922E-02 0.000000 1.9291763E-06 2.5746395E-04 2.7307143E-04 0.000000 0.000000 - Av 2018 12 10 1 0 2.7493561E-02 2.1288778E-10 1.9007241E-06 2.5577788E-04 1.6231954E-04 0.000000 0.000000 - Av 2018 12 10 2 0 2.7258340E-02 0.000000 1.8726915E-06 2.5570716E-04 1.0396021E-04 0.000000 0.000000 - Av 2018 12 10 3 0 0.1713648 1.8414131E-06 1.8992051E-06 2.5674951E-04 2.1174962E-02 2.9999940E-02 0.000000 - Av 2018 12 10 4 0 0.1581078 0.000000 1.9250597E-06 2.5871050E-04 5.4969881E-03 0.000000 0.000000 - Av 2018 12 10 5 0 2.9971752E-02 0.000000 1.8966620E-06 2.5861512E-04 1.7940268E-03 0.000000 0.000000 - Av 2018 12 10 6 0 4.2303152E-02 0.000000 1.8686832E-06 2.5851975E-04 7.5694791E-04 0.000000 0.000000 - Av 2018 12 10 7 0 7.0354015E-02 2.0764891E-07 1.8472385E-06 2.5884961E-04 6.4991750E-03 9.9999802E-03 0.000000 + Av 2018 12 9 17 0 0.4771020 4.3928349E-06 1.0506933E-06 2.4198984E-04 4.7893614E-02 4.9999900E-02 0.000000 + Av 2018 12 9 18 0 0.6665443 9.0246967E-06 1.4241795E-06 2.4754790E-04 6.6921048E-02 6.9999859E-02 0.000000 + Av 2018 12 9 19 0 0.6962153 7.0365991E-06 1.8701203E-06 2.5403238E-04 6.1124891E-02 5.9999879E-02 0.000000 + Av 2018 12 9 20 0 0.3103138 0.000000 2.0473349E-06 2.5784469E-04 1.0231405E-02 0.000000 0.000000 + Av 2018 12 9 21 0 3.7015405E-02 0.000000 2.0171335E-06 2.5774946E-04 2.8502406E-03 0.000000 0.000000 + Av 2018 12 9 22 0 4.9167484E-02 0.000000 1.9873778E-06 2.5765426E-04 1.0864049E-03 0.000000 0.000000 + Av 2018 12 9 23 0 2.9010013E-02 0.000000 1.9580607E-06 2.5755909E-04 5.0785980E-04 0.000000 0.000000 + Av 2018 12 9 24 0 3.0475922E-02 0.000000 1.9291763E-06 2.5746395E-04 2.7307143E-04 0.000000 0.000000 + Av 2018 12 10 1 0 2.7493561E-02 2.1288778E-10 1.9007241E-06 2.5577788E-04 1.6231954E-04 0.000000 0.000000 + Av 2018 12 10 2 0 2.7258340E-02 0.000000 1.8726915E-06 2.5570716E-04 1.0396021E-04 0.000000 0.000000 + Av 2018 12 10 3 0 0.1713648 1.8414131E-06 1.8992051E-06 2.5674951E-04 2.1174962E-02 2.9999940E-02 0.000000 + Av 2018 12 10 4 0 0.1581078 0.000000 1.9250597E-06 2.5871050E-04 5.4969881E-03 0.000000 0.000000 + Av 2018 12 10 5 0 2.9971752E-02 0.000000 1.8966620E-06 2.5861512E-04 1.7940268E-03 0.000000 0.000000 + Av 2018 12 10 6 0 4.2303152E-02 0.000000 1.8686832E-06 2.5851975E-04 7.5694791E-04 0.000000 0.000000 + Av 2018 12 10 7 0 7.0354015E-02 2.0764891E-07 1.8472385E-06 2.5884961E-04 6.4991750E-03 9.9999802E-03 0.000000 Av 2018 12 10 8 0 6.5164320E-02 0.000000 1.8260802E-06 1.6276364E-04 2.3913698E-03 0.000000 4.3979951E-04 Av 2018 12 10 9 0 1.1250056E-02 0.000000 1.7991425E-06 0.000000 9.4804005E-04 0.000000 2.0887314E-03 Av 2018 12 10 10 0 5.7421955E-03 0.000000 1.7726024E-06 0.000000 4.5505690E-04 0.000000 3.5177635E-03 @@ -8272,21 +8272,21 @@ Av 2018 12 10 14 0 8.6011027E-04 0.000000 1.6702994E-06 0.000000 6.6468318E-05 0.000000 3.5177635E-03 Av 2018 12 10 15 0 6.5217586E-04 0.000000 1.6456598E-06 0.000000 4.7461701E-05 0.000000 2.0887314E-03 Av 2018 12 10 16 0 1.1542321E-02 0.000000 1.6213838E-06 1.6199789E-04 3.5098928E-05 0.000000 4.3979951E-04 - Av 2018 12 10 17 0 2.6223298E-02 0.000000 1.5974658E-06 2.5865823E-04 1.7688012E-04 0.000000 0.000000 - Av 2018 12 10 18 0 2.7441405E-02 0.000000 1.5739007E-06 2.5856268E-04 0.000000 0.000000 0.000000 - Av 2018 12 10 19 0 2.5799897E-02 0.000000 1.5506832E-06 2.5846719E-04 0.000000 0.000000 0.000000 - Av 2018 12 10 20 0 2.6354559E-02 0.000000 1.5278083E-06 2.5837176E-04 0.000000 0.000000 0.000000 - Av 2018 12 10 21 0 2.6145646E-02 0.000000 1.5052708E-06 2.5827633E-04 0.000000 0.000000 0.000000 - Av 2018 12 10 22 0 2.6202284E-02 0.000000 1.4830656E-06 2.5818095E-04 0.000000 0.000000 0.000000 - Av 2018 12 10 23 0 2.6166636E-02 0.000000 1.4611880E-06 2.5808558E-04 0.000000 0.000000 0.000000 - Av 2018 12 10 24 0 2.6163122E-02 0.000000 1.4396333E-06 2.5799026E-04 0.000000 0.000000 0.000000 - Av 2018 12 11 1 0 2.6039369E-02 0.000000 1.4183964E-06 2.5628900E-04 0.000000 0.000000 0.000000 - Av 2018 12 11 2 0 0.1020873 8.0704933E-07 1.4212861E-06 2.5701441E-04 1.0982404E-02 3.9999921E-02 0.000000 - Av 2018 12 11 3 0 0.3160325 3.3586639E-06 1.5232926E-06 2.6001022E-04 3.4773294E-02 3.9999921E-02 0.000000 - Av 2018 12 11 4 0 0.2688580 2.1484702E-07 1.6059802E-06 2.6325457E-04 1.4922609E-02 9.9999802E-03 0.000000 - Av 2018 12 11 5 0 7.0930675E-02 0.000000 1.5886304E-06 2.6392582E-04 3.7570428E-03 0.000000 0.000000 - Av 2018 12 11 6 0 4.6064988E-02 0.000000 1.5651956E-06 2.6382788E-04 1.3436215E-03 0.000000 0.000000 - Av 2018 12 11 7 0 3.3257820E-02 0.000000 1.5421065E-06 2.6372998E-04 6.0199806E-04 0.000000 0.000000 + Av 2018 12 10 17 0 2.6223298E-02 0.000000 1.5974658E-06 2.5865823E-04 1.7688012E-04 0.000000 0.000000 + Av 2018 12 10 18 0 2.7441405E-02 0.000000 1.5739007E-06 2.5856268E-04 0.000000 0.000000 0.000000 + Av 2018 12 10 19 0 2.5799897E-02 0.000000 1.5506832E-06 2.5846719E-04 0.000000 0.000000 0.000000 + Av 2018 12 10 20 0 2.6354559E-02 0.000000 1.5278083E-06 2.5837176E-04 0.000000 0.000000 0.000000 + Av 2018 12 10 21 0 2.6145646E-02 0.000000 1.5052708E-06 2.5827633E-04 0.000000 0.000000 0.000000 + Av 2018 12 10 22 0 2.6202284E-02 0.000000 1.4830656E-06 2.5818095E-04 0.000000 0.000000 0.000000 + Av 2018 12 10 23 0 2.6166636E-02 0.000000 1.4611880E-06 2.5808558E-04 0.000000 0.000000 0.000000 + Av 2018 12 10 24 0 2.6163122E-02 0.000000 1.4396333E-06 2.5799026E-04 0.000000 0.000000 0.000000 + Av 2018 12 11 1 0 2.6039369E-02 0.000000 1.4183964E-06 2.5628900E-04 0.000000 0.000000 0.000000 + Av 2018 12 11 2 0 0.1020873 8.0704933E-07 1.4212861E-06 2.5701441E-04 1.0982404E-02 3.9999921E-02 0.000000 + Av 2018 12 11 3 0 0.3160325 3.3586639E-06 1.5232926E-06 2.6001022E-04 3.4773294E-02 3.9999921E-02 0.000000 + Av 2018 12 11 4 0 0.2688580 2.1484702E-07 1.6059802E-06 2.6325457E-04 1.4922609E-02 9.9999802E-03 0.000000 + Av 2018 12 11 5 0 7.0930675E-02 0.000000 1.5886304E-06 2.6392582E-04 3.7570428E-03 0.000000 0.000000 + Av 2018 12 11 6 0 4.6064988E-02 0.000000 1.5651956E-06 2.6382788E-04 1.3436215E-03 0.000000 0.000000 + Av 2018 12 11 7 0 3.3257820E-02 0.000000 1.5421065E-06 2.6372998E-04 6.0199806E-04 0.000000 0.000000 Av 2018 12 11 8 0 2.4017386E-02 0.000000 1.5193581E-06 1.6552657E-04 3.1422664E-04 0.000000 4.4593425E-04 Av 2018 12 11 9 0 7.8437636E-03 0.000000 1.4969452E-06 0.000000 1.8279051E-04 0.000000 2.1517321E-03 Av 2018 12 11 10 0 8.8279002E-04 0.000000 1.4748628E-06 0.000000 1.1517992E-04 0.000000 3.6345629E-03 @@ -8296,21 +8296,21 @@ Av 2018 12 11 14 0 0.2723617 6.3492985E-06 1.5782387E-06 0.000000 3.9912116E-02 5.9999879E-02 3.6345629E-03 Av 2018 12 11 15 0 1.051151 4.1814081E-05 2.9895293E-06 0.000000 0.1249262 0.1399997 2.1517321E-03 Av 2018 12 11 16 0 0.8637607 3.9621655E-06 4.3055679E-06 1.8545428E-04 4.8834331E-02 3.9999921E-02 4.4593425E-04 - Av 2018 12 11 17 0 0.8387243 3.9850791E-05 5.5644823E-06 2.9127294E-04 0.1103821 0.1199998 0.000000 - Av 2018 12 11 18 0 0.9188566 8.0901691E-06 6.9265889E-06 3.0185512E-04 5.7735115E-02 4.9999900E-02 0.000000 - Av 2018 12 11 19 0 0.3642985 3.0071492E-06 7.1615891E-06 3.0730199E-04 3.4075998E-02 2.9999940E-02 0.000000 - Av 2018 12 11 20 0 0.2510265 3.3880829E-07 7.1578493E-06 3.1029977E-04 1.4416214E-02 9.9999802E-03 0.000000 - Av 2018 12 11 21 0 0.1839533 1.3590242E-06 7.1043023E-06 3.1222976E-04 1.8716790E-02 1.9999960E-02 0.000000 - Av 2018 12 11 22 0 0.1390936 0.000000 7.0410019E-06 3.1398871E-04 4.5486316E-03 0.000000 0.000000 - Av 2018 12 11 23 0 0.1343847 1.3691423E-06 6.9792231E-06 3.1496549E-04 1.5831675E-02 1.9999960E-02 0.000000 - Av 2018 12 11 24 0 0.1857937 3.4482693E-07 6.9287653E-06 3.1729389E-04 1.1678774E-02 9.9999802E-03 0.000000 - Av 2018 12 12 1 0 0.1311871 3.6846382E-07 6.8484756E-06 3.1616693E-04 1.0390268E-02 9.9999802E-03 0.000000 - Av 2018 12 12 2 0 8.9271605E-02 0.000000 6.7587489E-06 3.1703111E-04 2.8827742E-03 0.000000 0.000000 - Av 2018 12 12 3 0 3.9976865E-02 0.000000 6.6590464E-06 3.1690561E-04 1.0959815E-03 0.000000 0.000000 - Av 2018 12 12 4 0 4.0974822E-02 0.000000 6.5608151E-06 3.1678015E-04 5.1145384E-04 0.000000 0.000000 - Av 2018 12 12 5 0 3.5017192E-02 0.000000 6.4640326E-06 3.1665474E-04 2.7467092E-04 0.000000 0.000000 - Av 2018 12 12 6 0 3.4691930E-02 0.000000 6.3686784E-06 3.1652936E-04 1.6312566E-04 0.000000 0.000000 - Av 2018 12 12 7 0 3.3618286E-02 0.000000 6.2747304E-06 3.1640407E-04 1.0440646E-04 0.000000 0.000000 + Av 2018 12 11 17 0 0.8387243 3.9850791E-05 5.5644823E-06 2.9127294E-04 0.1103821 0.1199998 0.000000 + Av 2018 12 11 18 0 0.9188566 8.0901691E-06 6.9265889E-06 3.0185512E-04 5.7735115E-02 4.9999900E-02 0.000000 + Av 2018 12 11 19 0 0.3642985 3.0071492E-06 7.1615891E-06 3.0730199E-04 3.4075998E-02 2.9999940E-02 0.000000 + Av 2018 12 11 20 0 0.2510265 3.3880829E-07 7.1578493E-06 3.1029977E-04 1.4416214E-02 9.9999802E-03 0.000000 + Av 2018 12 11 21 0 0.1839533 1.3590242E-06 7.1043023E-06 3.1222976E-04 1.8716790E-02 1.9999960E-02 0.000000 + Av 2018 12 11 22 0 0.1390936 0.000000 7.0410019E-06 3.1398871E-04 4.5486316E-03 0.000000 0.000000 + Av 2018 12 11 23 0 0.1343847 1.3691423E-06 6.9792231E-06 3.1496549E-04 1.5831675E-02 1.9999960E-02 0.000000 + Av 2018 12 11 24 0 0.1857937 3.4482693E-07 6.9287653E-06 3.1729389E-04 1.1678774E-02 9.9999802E-03 0.000000 + Av 2018 12 12 1 0 0.1311871 3.6846382E-07 6.8484756E-06 3.1616693E-04 1.0390268E-02 9.9999802E-03 0.000000 + Av 2018 12 12 2 0 8.9271605E-02 0.000000 6.7587489E-06 3.1703111E-04 2.8827742E-03 0.000000 0.000000 + Av 2018 12 12 3 0 3.9976865E-02 0.000000 6.6590464E-06 3.1690561E-04 1.0959815E-03 0.000000 0.000000 + Av 2018 12 12 4 0 4.0974822E-02 0.000000 6.5608151E-06 3.1678015E-04 5.1145384E-04 0.000000 0.000000 + Av 2018 12 12 5 0 3.5017192E-02 0.000000 6.4640326E-06 3.1665474E-04 2.7467092E-04 0.000000 0.000000 + Av 2018 12 12 6 0 3.4691930E-02 0.000000 6.3686784E-06 3.1652936E-04 1.6312566E-04 0.000000 0.000000 + Av 2018 12 12 7 0 3.3618286E-02 0.000000 6.2747304E-06 3.1640407E-04 1.0440646E-04 0.000000 0.000000 Av 2018 12 12 8 0 2.7415983E-02 0.000000 6.1821684E-06 2.2940169E-04 7.0770868E-05 0.000000 3.9489617E-04 Av 2018 12 12 9 0 1.0637918E-02 0.000000 6.0909715E-06 0.000000 5.0187624E-05 0.000000 1.9330141E-03 Av 2018 12 12 10 0 6.5850839E-04 0.000000 6.0011203E-06 0.000000 3.6907688E-05 0.000000 3.2736841E-03 @@ -8320,21 +8320,21 @@ Av 2018 12 12 14 0 6.1124505E-04 0.000000 5.6547751E-06 0.000000 0.000000 0.000000 3.2736841E-03 Av 2018 12 12 15 0 5.0813693E-04 0.000000 5.5713581E-06 0.000000 0.000000 0.000000 1.9330141E-03 Av 2018 12 12 16 0 1.6075516E-02 0.000000 5.4891721E-06 2.2840142E-04 0.000000 0.000000 3.9489617E-04 - Av 2018 12 12 17 0 3.2079153E-02 0.000000 5.4081979E-06 3.1515377E-04 0.000000 0.000000 0.000000 - Av 2018 12 12 18 0 3.2392595E-02 0.000000 5.3284184E-06 3.1502900E-04 0.000000 0.000000 0.000000 - Av 2018 12 12 19 0 3.2255895E-02 0.000000 5.2498162E-06 3.1490429E-04 0.000000 0.000000 0.000000 - Av 2018 12 12 20 0 3.2275885E-02 0.000000 5.1723732E-06 3.1477964E-04 0.000000 0.000000 0.000000 - Av 2018 12 12 21 0 3.2241553E-02 0.000000 5.0960725E-06 3.1465504E-04 0.000000 0.000000 0.000000 - Av 2018 12 12 22 0 3.2226272E-02 0.000000 5.0208973E-06 3.1453048E-04 0.000000 0.000000 0.000000 - Av 2018 12 12 23 0 3.2204520E-02 0.000000 4.9468313E-06 3.1440594E-04 0.000000 0.000000 0.000000 - Av 2018 12 12 24 0 3.2185175E-02 0.000000 4.8738575E-06 3.1428150E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 1 0 3.1998172E-02 0.000000 4.8019606E-06 3.1169955E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 2 0 3.1869750E-02 0.000000 4.7311241E-06 3.1157714E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 3 0 3.1888217E-02 0.000000 4.6613332E-06 3.1145479E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 4 0 3.1855762E-02 0.000000 4.5925708E-06 3.1133246E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 5 0 3.1841151E-02 0.000000 4.5248230E-06 3.1121017E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 6 0 3.1820476E-02 0.000000 4.4580747E-06 3.1108793E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 7 0 3.1802058E-02 0.000000 4.3923114E-06 3.1096576E-04 0.000000 0.000000 0.000000 + Av 2018 12 12 17 0 3.2079153E-02 0.000000 5.4081979E-06 3.1515377E-04 0.000000 0.000000 0.000000 + Av 2018 12 12 18 0 3.2392595E-02 0.000000 5.3284184E-06 3.1502900E-04 0.000000 0.000000 0.000000 + Av 2018 12 12 19 0 3.2255895E-02 0.000000 5.2498162E-06 3.1490429E-04 0.000000 0.000000 0.000000 + Av 2018 12 12 20 0 3.2275885E-02 0.000000 5.1723732E-06 3.1477964E-04 0.000000 0.000000 0.000000 + Av 2018 12 12 21 0 3.2241553E-02 0.000000 5.0960725E-06 3.1465504E-04 0.000000 0.000000 0.000000 + Av 2018 12 12 22 0 3.2226272E-02 0.000000 5.0208973E-06 3.1453048E-04 0.000000 0.000000 0.000000 + Av 2018 12 12 23 0 3.2204520E-02 0.000000 4.9468313E-06 3.1440594E-04 0.000000 0.000000 0.000000 + Av 2018 12 12 24 0 3.2185175E-02 0.000000 4.8738575E-06 3.1428150E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 1 0 3.1998172E-02 0.000000 4.8019606E-06 3.1169955E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 2 0 3.1869750E-02 0.000000 4.7311241E-06 3.1157714E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 3 0 3.1888217E-02 0.000000 4.6613332E-06 3.1145479E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 4 0 3.1855762E-02 0.000000 4.5925708E-06 3.1133246E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 5 0 3.1841151E-02 0.000000 4.5248230E-06 3.1121017E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 6 0 3.1820476E-02 0.000000 4.4580747E-06 3.1108793E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 7 0 3.1802058E-02 0.000000 4.3923114E-06 3.1096576E-04 0.000000 0.000000 0.000000 Av 2018 12 13 8 0 2.5300838E-02 0.000000 4.3275177E-06 2.1568497E-04 0.000000 0.000000 4.3253941E-04 Av 2018 12 13 9 0 9.4046881E-03 0.000000 4.2636802E-06 0.000000 0.000000 0.000000 2.1443923E-03 Av 2018 12 13 10 0 2.8541926E-04 0.000000 4.2007841E-06 0.000000 0.000000 0.000000 3.6399756E-03 @@ -8344,21 +8344,21 @@ Av 2018 12 13 14 0 3.4042692E-04 0.000000 3.9583424E-06 0.000000 0.000000 0.000000 3.6399756E-03 Av 2018 12 13 15 0 3.7286239E-04 0.000000 3.8999501E-06 0.000000 0.000000 0.000000 2.1443923E-03 Av 2018 12 13 16 0 1.4965396E-02 0.000000 3.8424200E-06 2.1470955E-04 0.000000 0.000000 4.3253941E-04 - Av 2018 12 13 17 0 3.0945249E-02 0.000000 3.7857380E-06 3.0974651E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 18 0 3.1833440E-02 0.000000 3.7298926E-06 3.0962483E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 19 0 3.1500544E-02 0.000000 3.6748709E-06 3.0950320E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 20 0 3.1592354E-02 0.000000 3.6206604E-06 3.0938163E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 21 0 3.1536601E-02 0.000000 3.5672501E-06 3.0926010E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 22 0 3.1532269E-02 0.000000 3.5146275E-06 3.0913862E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 23 0 3.1510174E-02 0.000000 3.4627813E-06 3.0901722E-04 0.000000 0.000000 0.000000 - Av 2018 12 13 24 0 3.1494372E-02 0.000000 3.4116997E-06 3.0889586E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 1 0 3.1316042E-02 0.000000 3.3613719E-06 3.0641313E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 2 0 3.1194458E-02 0.000000 3.3117863E-06 3.0629369E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 3 0 3.1213816E-02 0.000000 3.2629323E-06 3.0617430E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 4 0 3.1184275E-02 0.000000 3.2147989E-06 3.0605495E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 5 0 3.1171840E-02 0.000000 3.1673756E-06 3.0593565E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 6 0 3.1153560E-02 0.000000 3.1206519E-06 3.0581641E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 7 0 3.1137414E-02 0.000000 3.0746173E-06 3.0569721E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 17 0 3.0945249E-02 0.000000 3.7857380E-06 3.0974651E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 18 0 3.1833440E-02 0.000000 3.7298926E-06 3.0962483E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 19 0 3.1500544E-02 0.000000 3.6748709E-06 3.0950320E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 20 0 3.1592354E-02 0.000000 3.6206604E-06 3.0938163E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 21 0 3.1536601E-02 0.000000 3.5672501E-06 3.0926010E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 22 0 3.1532269E-02 0.000000 3.5146275E-06 3.0913862E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 23 0 3.1510174E-02 0.000000 3.4627813E-06 3.0901722E-04 0.000000 0.000000 0.000000 + Av 2018 12 13 24 0 3.1494372E-02 0.000000 3.4116997E-06 3.0889586E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 1 0 3.1316042E-02 0.000000 3.3613719E-06 3.0641313E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 2 0 3.1194458E-02 0.000000 3.3117863E-06 3.0629369E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 3 0 3.1213816E-02 0.000000 3.2629323E-06 3.0617430E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 4 0 3.1184275E-02 0.000000 3.2147989E-06 3.0605495E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 5 0 3.1171840E-02 0.000000 3.1673756E-06 3.0593565E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 6 0 3.1153560E-02 0.000000 3.1206519E-06 3.0581641E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 7 0 3.1137414E-02 0.000000 3.0746173E-06 3.0569721E-04 0.000000 0.000000 0.000000 Av 2018 12 14 8 0 2.5273858E-02 0.000000 3.0292620E-06 2.1974475E-04 0.000000 0.000000 3.9015137E-04 Av 2018 12 14 9 0 9.7094532E-03 0.000000 2.9845755E-06 0.000000 0.000000 0.000000 1.9556016E-03 Av 2018 12 14 10 0 1.9979345E-04 0.000000 2.9405485E-06 0.000000 0.000000 0.000000 3.3259764E-03 @@ -8368,21 +8368,21 @@ Av 2018 12 14 14 0 2.4273807E-04 0.000000 2.7708393E-06 0.000000 0.000000 0.000000 3.3259764E-03 Av 2018 12 14 15 0 2.5139906E-04 0.000000 2.7299650E-06 0.000000 0.000000 0.000000 1.9556016E-03 Av 2018 12 14 16 0 1.5129682E-02 0.000000 2.6896937E-06 2.1879314E-04 0.000000 0.000000 3.9015137E-04 - Av 2018 12 14 17 0 3.0654557E-02 0.000000 2.6500165E-06 3.0450770E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 18 0 3.1069636E-02 0.000000 2.6109246E-06 3.0438902E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 19 0 3.0903913E-02 0.000000 2.5724094E-06 3.0427039E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 20 0 3.0940220E-02 0.000000 2.5344623E-06 3.0415176E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 21 0 3.0906362E-02 0.000000 2.4970750E-06 3.0403322E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 22 0 3.0896986E-02 0.000000 2.4602391E-06 3.0391471E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 23 0 3.0879177E-02 0.000000 2.4239469E-06 3.0379626E-04 0.000000 0.000000 0.000000 - Av 2018 12 14 24 0 3.0864380E-02 0.000000 2.3881898E-06 3.0367784E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 1 0 3.0694433E-02 0.000000 2.3529603E-06 3.0129025E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 2 0 3.0578628E-02 0.000000 2.3182506E-06 3.0117368E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 3 0 3.0598376E-02 0.000000 2.2840527E-06 3.0105715E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 4 0 3.0571068E-02 0.000000 2.2503593E-06 3.0094071E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 5 0 3.0560195E-02 0.000000 2.2171628E-06 3.0082426E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 6 0 3.0543679E-02 0.000000 2.1844562E-06 3.0070791E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 7 0 3.0529201E-02 0.000000 2.1522321E-06 3.0059158E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 17 0 3.0654557E-02 0.000000 2.6500165E-06 3.0450770E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 18 0 3.1069636E-02 0.000000 2.6109246E-06 3.0438902E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 19 0 3.0903913E-02 0.000000 2.5724094E-06 3.0427039E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 20 0 3.0940220E-02 0.000000 2.5344623E-06 3.0415176E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 21 0 3.0906362E-02 0.000000 2.4970750E-06 3.0403322E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 22 0 3.0896986E-02 0.000000 2.4602391E-06 3.0391471E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 23 0 3.0879177E-02 0.000000 2.4239469E-06 3.0379626E-04 0.000000 0.000000 0.000000 + Av 2018 12 14 24 0 3.0864380E-02 0.000000 2.3881898E-06 3.0367784E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 1 0 3.0694433E-02 0.000000 2.3529603E-06 3.0129025E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 2 0 3.0578628E-02 0.000000 2.3182506E-06 3.0117368E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 3 0 3.0598376E-02 0.000000 2.2840527E-06 3.0105715E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 4 0 3.0571068E-02 0.000000 2.2503593E-06 3.0094071E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 5 0 3.0560195E-02 0.000000 2.2171628E-06 3.0082426E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 6 0 3.0543679E-02 0.000000 2.1844562E-06 3.0070791E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 7 0 3.0529201E-02 0.000000 2.1522321E-06 3.0059158E-04 0.000000 0.000000 0.000000 Av 2018 12 15 8 0 2.4793711E-02 0.000000 2.1204833E-06 2.1649543E-04 0.000000 0.000000 3.8172657E-04 Av 2018 12 15 9 0 9.5329871E-03 0.000000 2.0892028E-06 0.000000 0.000000 0.000000 1.9309295E-03 Av 2018 12 15 10 0 1.3985539E-04 0.000000 2.0583836E-06 0.000000 0.000000 0.000000 3.2892691E-03 @@ -8392,21 +8392,21 @@ Av 2018 12 15 14 0 1.6042951E-04 0.000000 1.9395875E-06 0.000000 0.000000 0.000000 3.2892691E-03 Av 2018 12 15 15 0 1.6930263E-04 0.000000 1.9109755E-06 0.000000 0.000000 0.000000 1.9309295E-03 Av 2018 12 15 16 0 1.4829214E-02 0.000000 1.8827857E-06 2.1556679E-04 0.000000 0.000000 3.8172657E-04 - Av 2018 12 15 17 0 3.0086163E-02 0.000000 1.8550116E-06 2.9943074E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 18 0 3.0470330E-02 0.000000 1.8276475E-06 2.9931491E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 19 0 3.0317321E-02 0.000000 1.8006867E-06 2.9919911E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 20 0 3.0351155E-02 0.000000 1.7741238E-06 2.9908336E-04 0.000000 0.000000 0.000000 - Av 2018 12 15 21 0 3.0696731E-02 0.000000 1.7479526E-06 2.9896764E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 12 15 22 0 3.1319596E-02 0.000000 1.7221676E-06 2.9885198E-04 0.000000 1.9999960E-02 0.000000 - Av 2018 12 15 23 0 3.1475209E-02 0.000000 1.6967629E-06 2.9873636E-04 0.000000 1.9999960E-02 0.000000 - Av 2018 12 15 24 0 4.0482011E-02 6.3382998E-07 1.6912836E-06 2.9935542E-04 1.2656109E-03 2.9999940E-02 0.000000 - Av 2018 12 16 1 0 0.1919579 3.2021521E-06 1.7846728E-06 2.9983834E-04 2.2612711E-02 2.9999940E-02 0.000000 - Av 2018 12 16 2 0 0.2204359 3.5320986E-07 1.8676760E-06 3.0300306E-04 1.3159711E-02 9.9999802E-03 0.000000 - Av 2018 12 16 3 0 0.1821379 1.4167940E-06 1.8949034E-06 3.0491297E-04 1.8404521E-02 1.9999960E-02 0.000000 - Av 2018 12 16 4 0 0.1873382 3.5683158E-07 1.9217064E-06 3.0719928E-04 1.1944871E-02 9.9999802E-03 0.000000 - Av 2018 12 16 5 0 8.0894746E-02 0.000000 1.9043780E-06 3.0802342E-04 3.1936916E-03 0.000000 0.000000 - Av 2018 12 16 6 0 4.3735944E-02 0.000000 1.8762854E-06 3.0790333E-04 1.1861034E-03 0.000000 0.000000 - Av 2018 12 16 7 0 3.8639419E-02 0.000000 1.8486073E-06 3.0778334E-04 5.4492190E-04 0.000000 0.000000 + Av 2018 12 15 17 0 3.0086163E-02 0.000000 1.8550116E-06 2.9943074E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 18 0 3.0470330E-02 0.000000 1.8276475E-06 2.9931491E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 19 0 3.0317321E-02 0.000000 1.8006867E-06 2.9919911E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 20 0 3.0351155E-02 0.000000 1.7741238E-06 2.9908336E-04 0.000000 0.000000 0.000000 + Av 2018 12 15 21 0 3.0696731E-02 0.000000 1.7479526E-06 2.9896764E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 12 15 22 0 3.1319596E-02 0.000000 1.7221676E-06 2.9885198E-04 0.000000 1.9999960E-02 0.000000 + Av 2018 12 15 23 0 3.1475209E-02 0.000000 1.6967629E-06 2.9873636E-04 0.000000 1.9999960E-02 0.000000 + Av 2018 12 15 24 0 4.0482011E-02 6.3382998E-07 1.6912836E-06 2.9935542E-04 1.2656109E-03 2.9999940E-02 0.000000 + Av 2018 12 16 1 0 0.1919579 3.2021521E-06 1.7846728E-06 2.9983834E-04 2.2612711E-02 2.9999940E-02 0.000000 + Av 2018 12 16 2 0 0.2204359 3.5320986E-07 1.8676760E-06 3.0300306E-04 1.3159711E-02 9.9999802E-03 0.000000 + Av 2018 12 16 3 0 0.1821379 1.4167940E-06 1.8949034E-06 3.0491297E-04 1.8404521E-02 1.9999960E-02 0.000000 + Av 2018 12 16 4 0 0.1873382 3.5683158E-07 1.9217064E-06 3.0719928E-04 1.1944871E-02 9.9999802E-03 0.000000 + Av 2018 12 16 5 0 8.0894746E-02 0.000000 1.9043780E-06 3.0802342E-04 3.1936916E-03 0.000000 0.000000 + Av 2018 12 16 6 0 4.3735944E-02 0.000000 1.8762854E-06 3.0790333E-04 1.1861034E-03 0.000000 0.000000 + Av 2018 12 16 7 0 3.8639419E-02 0.000000 1.8486073E-06 3.0778334E-04 5.4492190E-04 0.000000 0.000000 Av 2018 12 16 8 0 6.9569379E-02 3.5782313E-07 1.8324525E-06 2.1598731E-04 6.3369027E-03 9.9999802E-03 4.1925200E-04 Av 2018 12 16 9 0 5.2238345E-02 0.000000 1.8164810E-06 0.000000 2.3673405E-03 0.000000 2.1360728E-03 Av 2018 12 16 10 0 6.5125152E-03 0.000000 1.7896851E-06 0.000000 9.4061147E-04 0.000000 3.6432678E-03 @@ -8416,21 +8416,21 @@ Av 2018 12 16 14 0 0.6665281 8.8023025E-06 4.2094448E-06 0.000000 5.1142607E-02 4.9999900E-02 3.6432678E-03 Av 2018 12 16 15 0 0.2780285 1.1576618E-06 4.4591807E-06 0.000000 2.1924589E-02 1.9999960E-02 2.1360728E-03 Av 2018 12 16 16 0 0.1057931 0.000000 4.4297399E-06 2.4673011E-04 4.9605216E-03 0.000000 4.1925200E-04 - Av 2018 12 16 17 0 4.8543744E-02 0.000000 4.3643940E-06 3.3882839E-04 1.6600788E-03 0.000000 0.000000 - Av 2018 12 16 18 0 4.5860093E-02 0.000000 4.3000123E-06 3.3869129E-04 7.1199838E-04 0.000000 0.000000 - Av 2018 12 16 19 0 3.7936613E-02 0.000000 4.2365805E-06 3.3855424E-04 3.6058779E-04 0.000000 0.000000 - Av 2018 12 16 20 0 3.7221350E-02 0.000000 4.1740846E-06 3.3841725E-04 2.0523679E-04 0.000000 0.000000 - Av 2018 12 16 21 0 3.5857491E-02 0.000000 4.1125104E-06 3.3828031E-04 1.2723205E-04 0.000000 0.000000 - Av 2018 12 16 22 0 3.5482027E-02 0.000000 4.0518444E-06 3.3814344E-04 8.4140534E-05 0.000000 0.000000 - Av 2018 12 16 23 0 3.5118897E-02 0.000000 3.9920733E-06 3.3800659E-04 5.8513298E-05 0.000000 0.000000 - Av 2018 12 16 24 0 3.4934599E-02 0.000000 3.9331835E-06 3.3786983E-04 4.2354986E-05 0.000000 0.000000 - Av 2018 12 17 1 0 3.5729259E-02 0.000000 3.8751632E-06 3.3492877E-04 1.9798652E-04 0.000000 0.000000 - Av 2018 12 17 2 0 3.4948386E-02 0.000000 3.8179983E-06 3.3479437E-04 0.000000 0.000000 0.000000 - Av 2018 12 17 3 0 0.2189066 6.0981438E-06 3.9543092E-06 3.3694154E-04 2.6919050E-02 3.9999921E-02 0.000000 - Av 2018 12 17 4 0 0.2524520 4.2656194E-07 4.1011713E-06 3.4122463E-04 1.4078903E-02 9.9999802E-03 0.000000 - Av 2018 12 17 5 0 8.0726549E-02 0.000000 4.0541204E-06 3.4214056E-04 3.6012297E-03 0.000000 0.000000 - Av 2018 12 17 6 0 5.2267149E-02 0.000000 3.9943156E-06 3.4200205E-04 1.3007388E-03 0.000000 0.000000 - Av 2018 12 17 7 0 4.1653357E-02 0.000000 3.9353931E-06 3.4186360E-04 5.8662775E-04 0.000000 0.000000 + Av 2018 12 16 17 0 4.8543744E-02 0.000000 4.3643940E-06 3.3882839E-04 1.6600788E-03 0.000000 0.000000 + Av 2018 12 16 18 0 4.5860093E-02 0.000000 4.3000123E-06 3.3869129E-04 7.1199838E-04 0.000000 0.000000 + Av 2018 12 16 19 0 3.7936613E-02 0.000000 4.2365805E-06 3.3855424E-04 3.6058779E-04 0.000000 0.000000 + Av 2018 12 16 20 0 3.7221350E-02 0.000000 4.1740846E-06 3.3841725E-04 2.0523679E-04 0.000000 0.000000 + Av 2018 12 16 21 0 3.5857491E-02 0.000000 4.1125104E-06 3.3828031E-04 1.2723205E-04 0.000000 0.000000 + Av 2018 12 16 22 0 3.5482027E-02 0.000000 4.0518444E-06 3.3814344E-04 8.4140534E-05 0.000000 0.000000 + Av 2018 12 16 23 0 3.5118897E-02 0.000000 3.9920733E-06 3.3800659E-04 5.8513298E-05 0.000000 0.000000 + Av 2018 12 16 24 0 3.4934599E-02 0.000000 3.9331835E-06 3.3786983E-04 4.2354986E-05 0.000000 0.000000 + Av 2018 12 17 1 0 3.5729259E-02 0.000000 3.8751632E-06 3.3492877E-04 1.9798652E-04 0.000000 0.000000 + Av 2018 12 17 2 0 3.4948386E-02 0.000000 3.8179983E-06 3.3479437E-04 0.000000 0.000000 0.000000 + Av 2018 12 17 3 0 0.2189066 6.0981438E-06 3.9543092E-06 3.3694154E-04 2.6919050E-02 3.9999921E-02 0.000000 + Av 2018 12 17 4 0 0.2524520 4.2656194E-07 4.1011713E-06 3.4122463E-04 1.4078903E-02 9.9999802E-03 0.000000 + Av 2018 12 17 5 0 8.0726549E-02 0.000000 4.0541204E-06 3.4214056E-04 3.6012297E-03 0.000000 0.000000 + Av 2018 12 17 6 0 5.2267149E-02 0.000000 3.9943156E-06 3.4200205E-04 1.3007388E-03 0.000000 0.000000 + Av 2018 12 17 7 0 4.1653357E-02 0.000000 3.9353931E-06 3.4186360E-04 5.8662775E-04 0.000000 0.000000 Av 2018 12 17 8 0 3.2129321E-02 0.000000 3.8773396E-06 2.4721323E-04 3.0760726E-04 0.000000 4.2959992E-04 Av 2018 12 17 9 0 1.2203221E-02 0.000000 3.8201433E-06 0.000000 1.7953453E-04 0.000000 2.2001970E-03 Av 2018 12 17 10 0 1.0262883E-03 0.000000 3.7637901E-06 0.000000 1.1341064E-04 0.000000 3.7559941E-03 @@ -8440,21 +8440,21 @@ Av 2018 12 17 14 0 1.7023662E-03 0.000000 3.5465689E-06 0.000000 1.8873411E-04 0.000000 3.7559941E-03 Av 2018 12 17 15 0 1.3814623E-03 2.2926741E-09 3.4943243E-06 0.000000 0.000000 1.9999960E-02 2.2001970E-03 Av 2018 12 17 16 0 8.6821549E-02 1.4076869E-06 3.4874893E-06 2.4737779E-04 1.0255618E-02 1.9999960E-02 4.2959992E-04 - Av 2018 12 17 17 0 0.4336874 1.5323549E-05 3.9671081E-06 3.4706667E-04 5.1038887E-02 5.9999879E-02 0.000000 - Av 2018 12 17 18 0 0.7263229 2.2039252E-05 5.0958438E-06 3.5692024E-04 6.7915730E-02 6.9999859E-02 0.000000 - Av 2018 12 17 19 0 0.5796669 7.6260144E-06 5.9646586E-06 3.6658748E-04 4.3982398E-02 3.9999921E-02 0.000000 - Av 2018 12 17 20 0 0.4382201 7.7939530E-06 6.3704847E-06 3.7356463E-04 4.0598597E-02 3.9999921E-02 0.000000 - Av 2018 12 17 21 0 0.5192901 1.2446565E-05 6.9272046E-06 3.8120069E-04 4.8482656E-02 4.9999900E-02 0.000000 - Av 2018 12 17 22 0 0.5585381 1.2851903E-05 7.6403257E-06 3.8989095E-04 4.9912039E-02 4.9999900E-02 0.000000 - Av 2018 12 17 23 0 0.5570598 1.3270723E-05 8.3725499E-06 3.9890502E-04 4.9987420E-02 4.9999900E-02 0.000000 - Av 2018 12 17 24 0 0.6799321 2.6853038E-05 9.5532596E-06 4.0962695E-04 6.7094341E-02 6.9999859E-02 0.000000 - Av 2018 12 18 1 0 0.4782701 2.3986133E-06 1.0361850E-05 4.1486148E-04 2.7135663E-02 1.9999960E-02 0.000000 - Av 2018 12 18 2 0 0.2266723 2.3396590E-06 1.0363895E-05 4.1893701E-04 2.1293471E-02 1.9999960E-02 0.000000 - Av 2018 12 18 3 0 0.6182311 3.7695390E-05 1.1525577E-05 4.2699344E-04 7.0590295E-02 7.9999842E-02 0.000000 - Av 2018 12 18 4 0 1.339529 1.4271364E-04 1.7299639E-05 4.4429794E-04 0.1414194 0.1499997 0.000000 - Av 2018 12 18 5 0 1.541091 1.3563439E-04 2.6245725E-05 4.6651132E-04 0.1316054 0.1299997 0.000000 - Av 2018 12 18 6 0 1.466685 1.8718159E-04 3.6618447E-05 4.8961549E-04 0.1391594 0.1399997 0.000000 - Av 2018 12 18 7 0 1.042909 4.1803731E-05 4.3726795E-05 5.0934555E-04 6.8789840E-02 5.9999879E-02 0.000000 + Av 2018 12 17 17 0 0.4336874 1.5323549E-05 3.9671081E-06 3.4706667E-04 5.1038887E-02 5.9999879E-02 0.000000 + Av 2018 12 17 18 0 0.7263229 2.2039252E-05 5.0958438E-06 3.5692024E-04 6.7915730E-02 6.9999859E-02 0.000000 + Av 2018 12 17 19 0 0.5796669 7.6260144E-06 5.9646586E-06 3.6658748E-04 4.3982398E-02 3.9999921E-02 0.000000 + Av 2018 12 17 20 0 0.4382201 7.7939530E-06 6.3704847E-06 3.7356463E-04 4.0598597E-02 3.9999921E-02 0.000000 + Av 2018 12 17 21 0 0.5192901 1.2446565E-05 6.9272046E-06 3.8120069E-04 4.8482656E-02 4.9999900E-02 0.000000 + Av 2018 12 17 22 0 0.5585381 1.2851903E-05 7.6403257E-06 3.8989095E-04 4.9912039E-02 4.9999900E-02 0.000000 + Av 2018 12 17 23 0 0.5570598 1.3270723E-05 8.3725499E-06 3.9890502E-04 4.9987420E-02 4.9999900E-02 0.000000 + Av 2018 12 17 24 0 0.6799321 2.6853038E-05 9.5532596E-06 4.0962695E-04 6.7094341E-02 6.9999859E-02 0.000000 + Av 2018 12 18 1 0 0.4782701 2.3986133E-06 1.0361850E-05 4.1486148E-04 2.7135663E-02 1.9999960E-02 0.000000 + Av 2018 12 18 2 0 0.2266723 2.3396590E-06 1.0363895E-05 4.1893701E-04 2.1293471E-02 1.9999960E-02 0.000000 + Av 2018 12 18 3 0 0.6182311 3.7695390E-05 1.1525577E-05 4.2699344E-04 7.0590295E-02 7.9999842E-02 0.000000 + Av 2018 12 18 4 0 1.339529 1.4271364E-04 1.7299639E-05 4.4429794E-04 0.1414194 0.1499997 0.000000 + Av 2018 12 18 5 0 1.541091 1.3563439E-04 2.6245725E-05 4.6651132E-04 0.1316054 0.1299997 0.000000 + Av 2018 12 18 6 0 1.466685 1.8718159E-04 3.6618447E-05 4.8961549E-04 0.1391594 0.1399997 0.000000 + Av 2018 12 18 7 0 1.042909 4.1803731E-05 4.3726795E-05 5.0934555E-04 6.8789840E-02 5.9999879E-02 0.000000 Av 2018 12 18 8 0 0.4392385 1.0880519E-05 4.4853085E-05 4.1985419E-04 3.5474438E-02 2.9999940E-02 4.5730776E-04 Av 2018 12 18 9 0 0.1917534 0.000000 4.4557986E-05 8.1002945E-06 6.9878111E-03 0.000000 2.3494672E-03 Av 2018 12 18 10 0 1.7576551E-02 0.000000 4.3900687E-05 0.000000 2.1479004E-03 0.000000 4.0129730E-03 @@ -8464,21 +8464,21 @@ Av 2018 12 18 14 0 5.4750657E-03 0.000000 4.1367028E-05 0.000000 1.4316299E-04 0.000000 4.0129730E-03 Av 2018 12 18 15 0 3.2564364E-02 1.3150253E-06 4.0801413E-05 7.7629229E-06 3.9605801E-03 2.9999940E-02 2.3494672E-03 Av 2018 12 18 16 0 0.1495405 4.0479013E-06 4.0381346E-05 4.2753422E-04 1.4279648E-02 1.9999960E-02 4.5730776E-04 - Av 2018 12 18 17 0 0.1437019 0.000000 3.9922405E-05 5.3088734E-04 3.9445246E-03 0.000000 0.000000 - Av 2018 12 18 18 0 6.3818902E-02 0.000000 3.9333489E-05 5.3063215E-04 1.3945810E-03 0.000000 0.000000 - Av 2018 12 18 19 0 6.8893321E-02 0.000000 3.8753256E-05 5.3037715E-04 6.2010909E-04 0.000000 0.000000 - Av 2018 12 18 20 0 5.9728280E-02 0.000000 3.8181584E-05 5.3012226E-04 3.2197963E-04 0.000000 0.000000 - Av 2018 12 18 21 0 5.9857767E-02 0.000000 3.7618345E-05 5.2986742E-04 1.8658716E-04 0.000000 0.000000 - Av 2018 12 18 22 0 5.8311038E-02 0.000000 3.7063415E-05 5.2961276E-04 1.1723607E-04 0.000000 0.000000 - Av 2018 12 18 23 0 5.8003902E-02 0.000000 3.6516671E-05 5.2935816E-04 7.8337107E-05 0.000000 0.000000 - Av 2018 12 18 24 0 5.7578996E-02 0.000000 3.5977995E-05 5.2910374E-04 5.4924967E-05 0.000000 0.000000 - Av 2018 12 19 1 0 5.6937549E-02 0.000000 3.5447261E-05 5.2264403E-04 4.0020881E-05 0.000000 0.000000 - Av 2018 12 19 2 0 5.7560276E-02 0.000000 3.4924360E-05 5.2239577E-04 1.9136733E-04 0.000000 0.000000 - Av 2018 12 19 3 0 5.6967571E-02 0.000000 3.4409171E-05 5.2214763E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 4 0 5.5770226E-02 0.000000 3.3901582E-05 5.2189961E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 5 0 5.6084391E-02 0.000000 3.3401480E-05 5.2165170E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 6 0 5.5874016E-02 0.000000 3.2908756E-05 5.2140391E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 7 0 5.5847041E-02 0.000000 3.2423301E-05 5.2115624E-04 0.000000 0.000000 0.000000 + Av 2018 12 18 17 0 0.1437019 0.000000 3.9922405E-05 5.3088734E-04 3.9445246E-03 0.000000 0.000000 + Av 2018 12 18 18 0 6.3818902E-02 0.000000 3.9333489E-05 5.3063215E-04 1.3945810E-03 0.000000 0.000000 + Av 2018 12 18 19 0 6.8893321E-02 0.000000 3.8753256E-05 5.3037715E-04 6.2010909E-04 0.000000 0.000000 + Av 2018 12 18 20 0 5.9728280E-02 0.000000 3.8181584E-05 5.3012226E-04 3.2197963E-04 0.000000 0.000000 + Av 2018 12 18 21 0 5.9857767E-02 0.000000 3.7618345E-05 5.2986742E-04 1.8658716E-04 0.000000 0.000000 + Av 2018 12 18 22 0 5.8311038E-02 0.000000 3.7063415E-05 5.2961276E-04 1.1723607E-04 0.000000 0.000000 + Av 2018 12 18 23 0 5.8003902E-02 0.000000 3.6516671E-05 5.2935816E-04 7.8337107E-05 0.000000 0.000000 + Av 2018 12 18 24 0 5.7578996E-02 0.000000 3.5977995E-05 5.2910374E-04 5.4924967E-05 0.000000 0.000000 + Av 2018 12 19 1 0 5.6937549E-02 0.000000 3.5447261E-05 5.2264403E-04 4.0020881E-05 0.000000 0.000000 + Av 2018 12 19 2 0 5.7560276E-02 0.000000 3.4924360E-05 5.2239577E-04 1.9136733E-04 0.000000 0.000000 + Av 2018 12 19 3 0 5.6967571E-02 0.000000 3.4409171E-05 5.2214763E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 4 0 5.5770226E-02 0.000000 3.3901582E-05 5.2189961E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 5 0 5.6084391E-02 0.000000 3.3401480E-05 5.2165170E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 6 0 5.5874016E-02 0.000000 3.2908756E-05 5.2140391E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 7 0 5.5847041E-02 0.000000 3.2423301E-05 5.2115624E-04 0.000000 0.000000 0.000000 Av 2018 12 19 8 0 4.9170606E-02 0.000000 3.1945008E-05 4.2429441E-04 0.000000 0.000000 4.3915579E-04 Av 2018 12 19 9 0 2.1278078E-02 0.000000 3.1473766E-05 2.3772882E-05 0.000000 0.000000 2.2585834E-03 Av 2018 12 19 10 0 2.1069166E-03 0.000000 3.1009480E-05 0.000000 0.000000 0.000000 3.8584333E-03 @@ -8488,21 +8488,21 @@ Av 2018 12 19 14 0 2.8687490E-03 0.000000 2.9219816E-05 0.000000 0.000000 0.000000 3.8584333E-03 Av 2018 12 19 15 0 4.3835416E-03 0.000000 2.8788780E-05 2.2290798E-05 0.000000 0.000000 2.2585834E-03 Av 2018 12 19 16 0 3.2532614E-02 0.000000 2.8364098E-05 4.2231832E-04 0.000000 0.000000 4.3915579E-04 - Av 2018 12 19 17 0 5.6442574E-02 0.000000 2.7945684E-05 5.1868608E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 18 0 5.4610662E-02 0.000000 2.7533441E-05 5.1843969E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 19 0 5.5158559E-02 0.000000 2.7127280E-05 5.1819347E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 20 0 5.4879807E-02 0.000000 2.6727108E-05 5.1794731E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 21 0 5.4889314E-02 0.000000 2.6332842E-05 5.1770126E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 22 0 5.4799400E-02 0.000000 2.5944391E-05 5.1745534E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 23 0 5.4744855E-02 0.000000 2.5561671E-05 5.1720953E-04 0.000000 0.000000 0.000000 - Av 2018 12 19 24 0 5.4678805E-02 0.000000 2.5184596E-05 5.1696383E-04 0.000000 0.000000 0.000000 - Av 2018 12 20 1 0 5.4213196E-02 0.000000 2.4813084E-05 5.1076722E-04 0.000000 0.000000 0.000000 - Av 2018 12 20 2 0 5.3887658E-02 0.000000 2.4447052E-05 5.1052740E-04 0.000000 0.000000 0.000000 - Av 2018 12 20 3 0 5.3918894E-02 0.000000 2.4086419E-05 5.1028765E-04 0.000000 0.000000 0.000000 - Av 2018 12 20 4 0 5.3826816E-02 0.000000 2.3731105E-05 5.1004806E-04 0.000000 0.000000 0.000000 - Av 2018 12 20 5 0 5.3778350E-02 0.000000 2.3381033E-05 5.0980854E-04 0.000000 0.000000 0.000000 - Av 2018 12 20 6 0 5.3715445E-02 0.000000 2.3036126E-05 5.0956913E-04 0.000000 0.000000 0.000000 - Av 2018 12 20 7 0 5.3658273E-02 0.000000 2.2696307E-05 5.0932984E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 17 0 5.6442574E-02 0.000000 2.7945684E-05 5.1868608E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 18 0 5.4610662E-02 0.000000 2.7533441E-05 5.1843969E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 19 0 5.5158559E-02 0.000000 2.7127280E-05 5.1819347E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 20 0 5.4879807E-02 0.000000 2.6727108E-05 5.1794731E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 21 0 5.4889314E-02 0.000000 2.6332842E-05 5.1770126E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 22 0 5.4799400E-02 0.000000 2.5944391E-05 5.1745534E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 23 0 5.4744855E-02 0.000000 2.5561671E-05 5.1720953E-04 0.000000 0.000000 0.000000 + Av 2018 12 19 24 0 5.4678805E-02 0.000000 2.5184596E-05 5.1696383E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 1 0 5.4213196E-02 0.000000 2.4813084E-05 5.1076722E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 2 0 5.3887658E-02 0.000000 2.4447052E-05 5.1052740E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 3 0 5.3918894E-02 0.000000 2.4086419E-05 5.1028765E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 4 0 5.3826816E-02 0.000000 2.3731105E-05 5.1004806E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 5 0 5.3778350E-02 0.000000 2.3381033E-05 5.0980854E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 6 0 5.3715445E-02 0.000000 2.3036126E-05 5.0956913E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 7 0 5.3658273E-02 0.000000 2.2696307E-05 5.0932984E-04 0.000000 0.000000 0.000000 Av 2018 12 20 8 0 4.7590904E-02 0.000000 2.2361501E-05 4.1364136E-04 0.000000 9.9999802E-03 4.3386073E-04 Av 2018 12 20 9 0 0.1861317 1.8801433E-05 2.2670747E-05 2.2482709E-05 2.4451897E-02 4.9999900E-02 2.2290160E-03 Av 2018 12 20 10 0 0.3036196 1.0035812E-05 2.3314289E-05 0.000000 2.8002113E-02 2.9999940E-02 3.8072413E-03 @@ -8512,21 +8512,21 @@ Av 2018 12 20 14 0 5.2708737E-03 0.000000 2.2294229E-05 0.000000 3.9248887E-04 0.000000 3.8072413E-03 Av 2018 12 20 15 0 7.7732750E-03 0.000000 2.1965354E-05 3.4500379E-05 2.2034753E-04 9.9999802E-03 2.2290160E-03 Av 2018 12 20 16 0 3.4313254E-02 0.000000 2.1641330E-05 4.2918467E-04 1.3521197E-04 0.000000 4.3386073E-04 - Av 2018 12 20 17 0 5.7290509E-02 0.000000 2.1322085E-05 5.2438432E-04 8.8720277E-05 0.000000 0.000000 - Av 2018 12 20 18 0 5.5215940E-02 0.000000 2.1007552E-05 5.2413472E-04 6.1319093E-05 0.000000 0.000000 - Av 2018 12 20 19 0 5.5558227E-02 0.000000 2.0697658E-05 5.2388525E-04 4.4166492E-05 0.000000 0.000000 - Av 2018 12 20 20 0 5.5170383E-02 0.000000 2.0392334E-05 5.2363583E-04 3.2894361E-05 0.000000 0.000000 - Av 2018 12 20 21 0 5.6086022E-02 0.000000 2.0091515E-05 5.2338658E-04 1.7012922E-04 0.000000 0.000000 - Av 2018 12 20 22 0 5.5469710E-02 0.000000 1.9795134E-05 5.2313745E-04 0.000000 0.000000 0.000000 - Av 2018 12 20 23 0 5.4454252E-02 0.000000 1.9503124E-05 5.2288844E-04 0.000000 0.000000 0.000000 - Av 2018 12 20 24 0 5.4734118E-02 0.000000 1.9215422E-05 5.2263960E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 1 0 5.4154038E-02 0.000000 1.8931963E-05 5.1635428E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 2 0 5.3873952E-02 0.000000 1.8652689E-05 5.1611138E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 3 0 5.3900667E-02 0.000000 1.8377534E-05 5.1586854E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 4 0 5.3821277E-02 0.000000 1.8106435E-05 5.1562587E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 5 0 5.3779341E-02 0.000000 1.7839337E-05 5.1538332E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 6 0 5.3724937E-02 0.000000 1.7576178E-05 5.1514083E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 7 0 5.3675417E-02 0.000000 1.7316903E-05 5.1489845E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 17 0 5.7290509E-02 0.000000 2.1322085E-05 5.2438432E-04 8.8720277E-05 0.000000 0.000000 + Av 2018 12 20 18 0 5.5215940E-02 0.000000 2.1007552E-05 5.2413472E-04 6.1319093E-05 0.000000 0.000000 + Av 2018 12 20 19 0 5.5558227E-02 0.000000 2.0697658E-05 5.2388525E-04 4.4166492E-05 0.000000 0.000000 + Av 2018 12 20 20 0 5.5170383E-02 0.000000 2.0392334E-05 5.2363583E-04 3.2894361E-05 0.000000 0.000000 + Av 2018 12 20 21 0 5.6086022E-02 0.000000 2.0091515E-05 5.2338658E-04 1.7012922E-04 0.000000 0.000000 + Av 2018 12 20 22 0 5.5469710E-02 0.000000 1.9795134E-05 5.2313745E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 23 0 5.4454252E-02 0.000000 1.9503124E-05 5.2288844E-04 0.000000 0.000000 0.000000 + Av 2018 12 20 24 0 5.4734118E-02 0.000000 1.9215422E-05 5.2263960E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 1 0 5.4154038E-02 0.000000 1.8931963E-05 5.1635428E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 2 0 5.3873952E-02 0.000000 1.8652689E-05 5.1611138E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 3 0 5.3900667E-02 0.000000 1.8377534E-05 5.1586854E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 4 0 5.3821277E-02 0.000000 1.8106435E-05 5.1562587E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 5 0 5.3779341E-02 0.000000 1.7839337E-05 5.1538332E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 6 0 5.3724937E-02 0.000000 1.7576178E-05 5.1514083E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 7 0 5.3675417E-02 0.000000 1.7316903E-05 5.1489845E-04 0.000000 0.000000 0.000000 Av 2018 12 21 8 0 4.8062451E-02 0.000000 1.7061451E-05 4.3306267E-04 0.000000 0.000000 3.7087995E-04 Av 2018 12 21 9 0 2.1469533E-02 0.000000 1.6809767E-05 9.6528442E-05 0.000000 0.000000 1.8994804E-03 Av 2018 12 21 10 0 1.2516339E-03 0.000000 1.6561797E-05 0.000000 0.000000 0.000000 3.2426408E-03 @@ -8536,21 +8536,21 @@ Av 2018 12 21 14 0 1.5253080E-03 0.000000 1.5605960E-05 0.000000 0.000000 0.000000 3.2426408E-03 Av 2018 12 21 15 0 7.9840729E-03 0.000000 1.5375748E-05 9.5078023E-05 0.000000 0.000000 1.8994804E-03 Av 2018 12 21 16 0 3.5022303E-02 0.000000 1.5148930E-05 4.3112878E-04 0.000000 0.000000 3.7087995E-04 - Av 2018 12 21 17 0 5.3969122E-02 0.000000 1.4925460E-05 5.1248109E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 18 0 5.2871622E-02 0.000000 1.4705286E-05 5.1223999E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 19 0 5.3190779E-02 0.000000 1.4488361E-05 5.1199895E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 20 0 5.3017803E-02 0.000000 1.4274635E-05 5.1175809E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 21 0 5.3016394E-02 0.000000 1.4064062E-05 5.1151728E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 22 0 5.2955769E-02 0.000000 1.3856595E-05 5.1127665E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 23 0 5.2916169E-02 0.000000 1.3652188E-05 5.1103608E-04 0.000000 0.000000 0.000000 - Av 2018 12 21 24 0 5.2869685E-02 0.000000 1.3450797E-05 5.1079562E-04 0.000000 0.000000 0.000000 - Av 2018 12 22 1 0 5.2432641E-02 0.000000 1.3252376E-05 5.0476560E-04 0.000000 0.000000 0.000000 - Av 2018 12 22 2 0 5.2132182E-02 0.000000 1.3056883E-05 5.0453079E-04 0.000000 0.000000 0.000000 - Av 2018 12 22 3 0 5.2178390E-02 0.000000 1.2864273E-05 5.0429616E-04 0.000000 0.000000 0.000000 - Av 2018 12 22 4 0 5.2104458E-02 0.000000 1.2674505E-05 5.0406158E-04 0.000000 0.000000 0.000000 - Av 2018 12 22 5 0 5.2072700E-02 0.000000 1.2487536E-05 5.0382712E-04 0.000000 0.000000 0.000000 - Av 2018 12 22 6 0 5.2026674E-02 0.000000 1.2303326E-05 5.0359278E-04 0.000000 0.000000 0.000000 - Av 2018 12 22 7 0 5.1985994E-02 0.000000 1.2121832E-05 5.0335855E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 17 0 5.3969122E-02 0.000000 1.4925460E-05 5.1248109E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 18 0 5.2871622E-02 0.000000 1.4705286E-05 5.1223999E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 19 0 5.3190779E-02 0.000000 1.4488361E-05 5.1199895E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 20 0 5.3017803E-02 0.000000 1.4274635E-05 5.1175809E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 21 0 5.3016394E-02 0.000000 1.4064062E-05 5.1151728E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 22 0 5.2955769E-02 0.000000 1.3856595E-05 5.1127665E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 23 0 5.2916169E-02 0.000000 1.3652188E-05 5.1103608E-04 0.000000 0.000000 0.000000 + Av 2018 12 21 24 0 5.2869685E-02 0.000000 1.3450797E-05 5.1079562E-04 0.000000 0.000000 0.000000 + Av 2018 12 22 1 0 5.2432641E-02 0.000000 1.3252376E-05 5.0476560E-04 0.000000 0.000000 0.000000 + Av 2018 12 22 2 0 5.2132182E-02 0.000000 1.3056883E-05 5.0453079E-04 0.000000 0.000000 0.000000 + Av 2018 12 22 3 0 5.2178390E-02 0.000000 1.2864273E-05 5.0429616E-04 0.000000 0.000000 0.000000 + Av 2018 12 22 4 0 5.2104458E-02 0.000000 1.2674505E-05 5.0406158E-04 0.000000 0.000000 0.000000 + Av 2018 12 22 5 0 5.2072700E-02 0.000000 1.2487536E-05 5.0382712E-04 0.000000 0.000000 0.000000 + Av 2018 12 22 6 0 5.2026674E-02 0.000000 1.2303326E-05 5.0359278E-04 0.000000 0.000000 0.000000 + Av 2018 12 22 7 0 5.1985994E-02 0.000000 1.2121832E-05 5.0335855E-04 0.000000 0.000000 0.000000 Av 2018 12 22 8 0 4.6101637E-02 0.000000 1.1943016E-05 4.1742038E-04 0.000000 0.000000 3.8956391E-04 Av 2018 12 22 9 0 2.0119451E-02 0.000000 1.1766839E-05 6.6225388E-05 0.000000 0.000000 1.9848410E-03 Av 2018 12 22 10 0 7.8769552E-04 0.000000 1.1593259E-05 0.000000 0.000000 0.000000 3.3853361E-03 @@ -8560,21 +8560,21 @@ Av 2018 12 22 14 0 1.0536127E-03 0.000000 1.0924171E-05 0.000000 0.000000 0.000000 3.3853361E-03 Av 2018 12 22 15 0 5.4637012E-03 0.000000 1.0763022E-05 6.4823340E-05 0.000000 0.000000 1.9848410E-03 Av 2018 12 22 16 0 3.2164641E-02 0.000000 1.0604252E-05 4.1555104E-04 0.000000 0.000000 3.8956391E-04 - Av 2018 12 22 17 0 0.1239019 9.1573620E-06 1.0760496E-05 5.0385809E-04 9.8668337E-03 6.9999859E-02 0.000000 - Av 2018 12 22 18 0 0.8272701 1.8476983E-04 1.7233217E-05 5.1727169E-04 0.1036130 0.1199998 0.000000 - Av 2018 12 22 19 0 1.356570 4.8296802E-06 3.0617572E-05 5.4080866E-04 0.1191705 0.1199998 0.000000 - Av 2018 12 22 20 0 1.049195 1.1004206E-04 4.1288335E-05 5.6307681E-04 8.4349960E-02 7.9999842E-02 0.000000 - Av 2018 12 22 21 0 0.7010503 4.5684566E-05 4.6057987E-05 5.8064883E-04 5.4371003E-02 4.9999900E-02 0.000000 - Av 2018 12 22 22 0 0.3432652 1.8791554E-06 4.7024529E-05 5.9005839E-04 1.7223904E-02 9.9999802E-03 0.000000 - Av 2018 12 22 23 0 0.1143622 0.000000 4.6396046E-05 5.9165561E-04 4.1688788E-03 0.000000 0.000000 - Av 2018 12 22 24 0 8.5081622E-02 0.000000 4.5711629E-05 5.9136079E-04 1.4546975E-03 0.000000 0.000000 - Av 2018 12 23 1 0 0.2783278 3.0616746E-05 4.6105637E-05 5.8845832E-04 3.0500857E-02 3.9999921E-02 0.000000 - Av 2018 12 23 2 0 0.7207356 1.2284413E-04 5.0785609E-05 6.0364767E-04 7.3295459E-02 7.9999842E-02 0.000000 - Av 2018 12 23 3 0 0.4785660 0.000000 5.4312237E-05 6.1558577E-04 1.1998345E-02 0.000000 0.000000 - Av 2018 12 23 4 0 6.7210689E-02 0.000000 5.3511048E-05 6.1527593E-04 3.2041613E-03 0.000000 0.000000 - Av 2018 12 23 5 0 9.7285733E-02 0.000000 5.2721676E-05 6.1496632E-04 1.1890961E-03 0.000000 0.000000 - Av 2018 12 23 6 0 0.5778505 1.6605259E-04 5.7777368E-05 6.2405708E-04 7.2983257E-02 8.9999817E-02 0.000000 - Av 2018 12 23 7 0 0.8504364 8.0071914E-05 6.5555600E-05 6.4477668E-04 6.2688127E-02 5.9999879E-02 0.000000 + Av 2018 12 22 17 0 0.1239019 9.1573620E-06 1.0760496E-05 5.0385809E-04 9.8668337E-03 6.9999859E-02 0.000000 + Av 2018 12 22 18 0 0.8272701 1.8476983E-04 1.7233217E-05 5.1727169E-04 0.1036130 0.1199998 0.000000 + Av 2018 12 22 19 0 1.356570 4.8296802E-06 3.0617572E-05 5.4080866E-04 0.1191705 0.1199998 0.000000 + Av 2018 12 22 20 0 1.049195 1.1004206E-04 4.1288335E-05 5.6307681E-04 8.4349960E-02 7.9999842E-02 0.000000 + Av 2018 12 22 21 0 0.7010503 4.5684566E-05 4.6057987E-05 5.8064883E-04 5.4371003E-02 4.9999900E-02 0.000000 + Av 2018 12 22 22 0 0.3432652 1.8791554E-06 4.7024529E-05 5.9005839E-04 1.7223904E-02 9.9999802E-03 0.000000 + Av 2018 12 22 23 0 0.1143622 0.000000 4.6396046E-05 5.9165561E-04 4.1688788E-03 0.000000 0.000000 + Av 2018 12 22 24 0 8.5081622E-02 0.000000 4.5711629E-05 5.9136079E-04 1.4546975E-03 0.000000 0.000000 + Av 2018 12 23 1 0 0.2783278 3.0616746E-05 4.6105637E-05 5.8845832E-04 3.0500857E-02 3.9999921E-02 0.000000 + Av 2018 12 23 2 0 0.7207356 1.2284413E-04 5.0785609E-05 6.0364767E-04 7.3295459E-02 7.9999842E-02 0.000000 + Av 2018 12 23 3 0 0.4785660 0.000000 5.4312237E-05 6.1558577E-04 1.1998345E-02 0.000000 0.000000 + Av 2018 12 23 4 0 6.7210689E-02 0.000000 5.3511048E-05 6.1527593E-04 3.2041613E-03 0.000000 0.000000 + Av 2018 12 23 5 0 9.7285733E-02 0.000000 5.2721676E-05 6.1496632E-04 1.1890961E-03 0.000000 0.000000 + Av 2018 12 23 6 0 0.5778505 1.6605259E-04 5.7777368E-05 6.2405708E-04 7.2983257E-02 8.9999817E-02 0.000000 + Av 2018 12 23 7 0 0.8504364 8.0071914E-05 6.5555600E-05 6.4477668E-04 6.2688127E-02 5.9999879E-02 0.000000 Av 2018 12 23 8 0 0.3107639 0.000000 6.7400535E-05 5.6054752E-04 1.0412537E-02 0.000000 4.3028954E-04 Av 2018 12 23 9 0 4.1314777E-02 0.000000 6.6406268E-05 1.7601583E-04 2.8873226E-03 0.000000 2.1766210E-03 Av 2018 12 23 10 0 3.3359505E-02 0.000000 6.5426677E-05 0.000000 1.0973178E-03 0.000000 3.7078077E-03 @@ -8584,21 +8584,21 @@ Av 2018 12 23 14 0 0.2255559 4.8370093E-05 6.3363375E-05 0.000000 3.1521913E-02 5.9999879E-02 3.7078077E-03 Av 2018 12 23 15 0 0.2440067 1.1431304E-06 6.4173473E-05 1.8987199E-04 1.1937585E-02 9.9999802E-03 2.1766210E-03 Av 2018 12 23 16 0 0.1185301 1.6324643E-06 6.3325177E-05 5.7647342E-04 8.7996135E-03 9.9999802E-03 4.3028954E-04 - Av 2018 12 23 17 0 0.5248265 1.1511578E-04 6.6539367E-05 6.8131008E-04 5.8430538E-02 6.9999859E-02 0.000000 - Av 2018 12 23 18 0 1.252090 1.9351563E-05 8.7064320E-05 7.0659874E-04 0.1308801 0.1399997 0.000000 - Av 2018 12 23 19 0 1.785490 1.4136049E-04 1.3440479E-04 7.3897216E-04 0.1667116 0.1699997 0.000000 - Av 2018 12 23 20 0 0.9622669 1.6738786E-05 1.6414591E-04 7.6169660E-04 3.6915626E-02 1.9999960E-02 0.000000 - Av 2018 12 23 21 0 0.1119156 0.000000 1.6232510E-04 7.6613331E-04 7.1870978E-03 0.000000 0.000000 - Av 2018 12 23 22 0 0.1507976 0.000000 1.5993055E-04 7.6571899E-04 2.1934845E-03 0.000000 0.000000 - Av 2018 12 23 23 0 9.4088197E-02 0.000000 1.5757132E-04 7.6530495E-04 8.8626408E-04 0.000000 0.000000 - Av 2018 12 23 24 0 0.1014564 0.000000 1.5524690E-04 7.6489110E-04 4.3091102E-04 0.000000 0.000000 - Av 2018 12 24 1 0 9.3391031E-02 4.0741850E-09 1.5295691E-04 7.5372087E-04 2.3822195E-04 0.000000 0.000000 - Av 2018 12 24 2 0 0.3001772 6.2642241E-05 1.5296225E-04 7.5980159E-04 2.9511871E-02 3.9999921E-02 0.000000 - Av 2018 12 24 3 0 0.2742345 0.000000 1.5295619E-04 7.6812308E-04 6.8584192E-03 0.000000 0.000000 - Av 2018 12 24 4 0 9.0619341E-02 0.000000 1.5069985E-04 7.6771062E-04 2.1181023E-03 0.000000 0.000000 - Av 2018 12 24 5 0 0.1133638 0.000000 1.4847679E-04 7.6729839E-04 8.6235610E-04 0.000000 0.000000 - Av 2018 12 24 6 0 9.3571767E-02 0.000000 1.4628652E-04 7.6688634E-04 4.2146328E-04 0.000000 0.000000 - Av 2018 12 24 7 0 9.5831931E-02 0.000000 1.4412856E-04 7.6647452E-04 2.3385802E-04 0.000000 0.000000 + Av 2018 12 23 17 0 0.5248265 1.1511578E-04 6.6539367E-05 6.8131008E-04 5.8430538E-02 6.9999859E-02 0.000000 + Av 2018 12 23 18 0 1.252090 1.9351563E-05 8.7064320E-05 7.0659874E-04 0.1308801 0.1399997 0.000000 + Av 2018 12 23 19 0 1.785490 1.4136049E-04 1.3440479E-04 7.3897216E-04 0.1667116 0.1699997 0.000000 + Av 2018 12 23 20 0 0.9622669 1.6738786E-05 1.6414591E-04 7.6169660E-04 3.6915626E-02 1.9999960E-02 0.000000 + Av 2018 12 23 21 0 0.1119156 0.000000 1.6232510E-04 7.6613331E-04 7.1870978E-03 0.000000 0.000000 + Av 2018 12 23 22 0 0.1507976 0.000000 1.5993055E-04 7.6571899E-04 2.1934845E-03 0.000000 0.000000 + Av 2018 12 23 23 0 9.4088197E-02 0.000000 1.5757132E-04 7.6530495E-04 8.8626408E-04 0.000000 0.000000 + Av 2018 12 23 24 0 0.1014564 0.000000 1.5524690E-04 7.6489110E-04 4.3091102E-04 0.000000 0.000000 + Av 2018 12 24 1 0 9.3391031E-02 4.0741850E-09 1.5295691E-04 7.5372087E-04 2.3822195E-04 0.000000 0.000000 + Av 2018 12 24 2 0 0.3001772 6.2642241E-05 1.5296225E-04 7.5980159E-04 2.9511871E-02 3.9999921E-02 0.000000 + Av 2018 12 24 3 0 0.2742345 0.000000 1.5295619E-04 7.6812308E-04 6.8584192E-03 0.000000 0.000000 + Av 2018 12 24 4 0 9.0619341E-02 0.000000 1.5069985E-04 7.6771062E-04 2.1181023E-03 0.000000 0.000000 + Av 2018 12 24 5 0 0.1133638 0.000000 1.4847679E-04 7.6729839E-04 8.6235610E-04 0.000000 0.000000 + Av 2018 12 24 6 0 9.3571767E-02 0.000000 1.4628652E-04 7.6688634E-04 4.2146328E-04 0.000000 0.000000 + Av 2018 12 24 7 0 9.5831931E-02 0.000000 1.4412856E-04 7.6647452E-04 2.3385802E-04 0.000000 0.000000 Av 2018 12 24 8 0 8.6544089E-02 0.000000 1.4200243E-04 6.7435956E-04 1.4226281E-04 0.000000 4.1683347E-04 Av 2018 12 24 9 0 5.7112798E-02 0.000000 1.3990767E-04 3.0598551E-04 9.2729882E-05 0.000000 2.0893910E-03 Av 2018 12 24 10 0 2.0598181E-02 0.000000 1.3784382E-04 0.000000 6.3757754E-05 0.000000 3.5535316E-03 @@ -8608,21 +8608,21 @@ Av 2018 12 24 14 0 1.3834139E-02 0.000000 1.2988837E-04 0.000000 0.000000 0.000000 3.5535316E-03 Av 2018 12 24 15 0 3.3187650E-02 0.000000 1.2797231E-04 3.0352169E-04 0.000000 0.000000 2.0893910E-03 Av 2018 12 24 16 0 7.1870133E-02 0.000000 1.2608453E-04 6.7107449E-04 0.000000 0.000000 4.1683347E-04 - Av 2018 12 24 17 0 8.9390516E-02 0.000000 1.2422458E-04 7.6236814E-04 0.000000 0.000000 0.000000 - Av 2018 12 24 18 0 8.9243591E-02 0.000000 1.2239207E-04 7.6195865E-04 0.000000 0.000000 0.000000 - Av 2018 12 24 19 0 8.8991880E-02 0.000000 1.2058661E-04 7.6154945E-04 0.000000 0.000000 0.000000 - Av 2018 12 24 20 0 8.8780269E-02 0.000000 1.1880777E-04 7.6114037E-04 0.000000 0.000000 0.000000 - Av 2018 12 24 21 0 8.8558331E-02 0.000000 1.1705516E-04 7.6073158E-04 0.000000 0.000000 0.000000 - Av 2018 12 24 22 0 8.8343568E-02 0.000000 1.1532842E-04 7.6032302E-04 0.000000 0.000000 0.000000 - Av 2018 12 24 23 0 8.8129818E-02 0.000000 1.1362714E-04 7.5991463E-04 0.000000 0.000000 0.000000 - Av 2018 12 24 24 0 8.7919176E-02 0.000000 1.1195096E-04 7.5950648E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 1 0 8.6985901E-02 0.000000 1.1029951E-04 7.4842828E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 2 0 8.6308032E-02 0.000000 1.0867242E-04 7.4803212E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 3 0 8.6270444E-02 0.000000 1.0706933E-04 7.4763614E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 4 0 8.6013488E-02 0.000000 1.0548989E-04 7.4724044E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 5 0 8.5836023E-02 0.000000 1.0393374E-04 7.4684492E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 6 0 8.5634097E-02 0.000000 1.0240056E-04 7.4644957E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 7 0 8.5443795E-02 0.000000 1.0088999E-04 7.4605440E-04 0.000000 0.000000 0.000000 + Av 2018 12 24 17 0 8.9390516E-02 0.000000 1.2422458E-04 7.6236814E-04 0.000000 0.000000 0.000000 + Av 2018 12 24 18 0 8.9243591E-02 0.000000 1.2239207E-04 7.6195865E-04 0.000000 0.000000 0.000000 + Av 2018 12 24 19 0 8.8991880E-02 0.000000 1.2058661E-04 7.6154945E-04 0.000000 0.000000 0.000000 + Av 2018 12 24 20 0 8.8780269E-02 0.000000 1.1880777E-04 7.6114037E-04 0.000000 0.000000 0.000000 + Av 2018 12 24 21 0 8.8558331E-02 0.000000 1.1705516E-04 7.6073158E-04 0.000000 0.000000 0.000000 + Av 2018 12 24 22 0 8.8343568E-02 0.000000 1.1532842E-04 7.6032302E-04 0.000000 0.000000 0.000000 + Av 2018 12 24 23 0 8.8129818E-02 0.000000 1.1362714E-04 7.5991463E-04 0.000000 0.000000 0.000000 + Av 2018 12 24 24 0 8.7919176E-02 0.000000 1.1195096E-04 7.5950648E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 1 0 8.6985901E-02 0.000000 1.1029951E-04 7.4842828E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 2 0 8.6308032E-02 0.000000 1.0867242E-04 7.4803212E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 3 0 8.6270444E-02 0.000000 1.0706933E-04 7.4763614E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 4 0 8.6013488E-02 0.000000 1.0548989E-04 7.4724044E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 5 0 8.5836023E-02 0.000000 1.0393374E-04 7.4684492E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 6 0 8.5634097E-02 0.000000 1.0240056E-04 7.4644957E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 7 0 8.5443795E-02 0.000000 1.0088999E-04 7.4605440E-04 0.000000 0.000000 0.000000 Av 2018 12 25 8 0 7.9696923E-02 0.000000 9.9401703E-05 6.6423428E-04 0.000000 0.000000 3.7011466E-04 Av 2018 12 25 9 0 5.3904988E-02 0.000000 9.7935364E-05 3.4157376E-04 0.000000 0.000000 1.8349594E-03 Av 2018 12 25 10 0 2.1495271E-02 0.000000 9.6490665E-05 5.9625949E-05 0.000000 0.000000 3.1147469E-03 @@ -8632,21 +8632,21 @@ Av 2018 12 25 14 0 1.5032410E-02 0.000000 9.0921858E-05 5.8049860E-05 0.000000 0.000000 3.1147469E-03 Av 2018 12 25 15 0 3.3897974E-02 0.000000 8.9580615E-05 3.3920960E-04 0.000000 0.000000 1.8349594E-03 Av 2018 12 25 16 0 6.8194434E-02 0.000000 8.8259163E-05 6.6108216E-04 0.000000 0.000000 3.7011466E-04 - Av 2018 12 25 17 0 8.3513975E-02 0.000000 8.6957203E-05 7.4211432E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 18 0 8.3508924E-02 0.000000 8.5674445E-05 7.4172142E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 19 0 8.3284274E-02 0.000000 8.4410618E-05 7.4132869E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 20 0 8.3138570E-02 0.000000 8.3165432E-05 7.4093626E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 21 0 8.2967952E-02 0.000000 8.1938611E-05 7.4054394E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 22 0 8.2808502E-02 0.000000 8.0729893E-05 7.4015185E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 23 0 8.2647637E-02 0.000000 7.9539001E-05 7.3975994E-04 0.000000 0.000000 0.000000 - Av 2018 12 25 24 0 8.2489699E-02 0.000000 7.8365672E-05 7.3936832E-04 0.000000 0.000000 0.000000 - Av 2018 12 26 1 0 8.1638679E-02 0.000000 7.7209654E-05 7.2875578E-04 0.000000 0.000000 0.000000 - Av 2018 12 26 2 0 8.1031755E-02 0.000000 7.6070697E-05 7.2837551E-04 0.000000 0.000000 0.000000 - Av 2018 12 26 3 0 8.1037492E-02 0.000000 7.4948526E-05 7.2799536E-04 0.000000 0.000000 0.000000 - Av 2018 12 26 4 0 8.0832496E-02 0.000000 7.3842915E-05 7.2761544E-04 0.000000 0.000000 0.000000 - Av 2018 12 26 5 0 8.0703020E-02 0.000000 7.2753624E-05 7.2723569E-04 0.000000 0.000000 0.000000 - Av 2018 12 26 6 0 8.0549523E-02 0.000000 7.1680392E-05 7.2685612E-04 0.000000 0.000000 0.000000 - Av 2018 12 26 7 0 8.1625432E-02 0.000000 7.0622998E-05 7.2647672E-04 0.000000 1.9999960E-02 0.000000 + Av 2018 12 25 17 0 8.3513975E-02 0.000000 8.6957203E-05 7.4211432E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 18 0 8.3508924E-02 0.000000 8.5674445E-05 7.4172142E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 19 0 8.3284274E-02 0.000000 8.4410618E-05 7.4132869E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 20 0 8.3138570E-02 0.000000 8.3165432E-05 7.4093626E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 21 0 8.2967952E-02 0.000000 8.1938611E-05 7.4054394E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 22 0 8.2808502E-02 0.000000 8.0729893E-05 7.4015185E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 23 0 8.2647637E-02 0.000000 7.9539001E-05 7.3975994E-04 0.000000 0.000000 0.000000 + Av 2018 12 25 24 0 8.2489699E-02 0.000000 7.8365672E-05 7.3936832E-04 0.000000 0.000000 0.000000 + Av 2018 12 26 1 0 8.1638679E-02 0.000000 7.7209654E-05 7.2875578E-04 0.000000 0.000000 0.000000 + Av 2018 12 26 2 0 8.1031755E-02 0.000000 7.6070697E-05 7.2837551E-04 0.000000 0.000000 0.000000 + Av 2018 12 26 3 0 8.1037492E-02 0.000000 7.4948526E-05 7.2799536E-04 0.000000 0.000000 0.000000 + Av 2018 12 26 4 0 8.0832496E-02 0.000000 7.3842915E-05 7.2761544E-04 0.000000 0.000000 0.000000 + Av 2018 12 26 5 0 8.0703020E-02 0.000000 7.2753624E-05 7.2723569E-04 0.000000 0.000000 0.000000 + Av 2018 12 26 6 0 8.0549523E-02 0.000000 7.1680392E-05 7.2685612E-04 0.000000 0.000000 0.000000 + Av 2018 12 26 7 0 8.1625432E-02 0.000000 7.0622998E-05 7.2647672E-04 0.000000 1.9999960E-02 0.000000 Av 2018 12 26 8 0 0.1035848 1.1739826E-05 7.0005990E-05 6.4654788E-04 3.7199834E-03 2.9999940E-02 3.7483548E-04 Av 2018 12 26 9 0 0.1773564 1.5470909E-05 6.9956332E-05 3.3223353E-04 1.5752696E-02 1.9999960E-02 1.8348733E-03 Av 2018 12 26 10 0 0.3845043 9.4441733E-05 7.2906536E-05 6.3858170E-05 4.2511567E-02 4.9999900E-02 3.1074933E-03 @@ -8656,21 +8656,21 @@ Av 2018 12 26 14 0 0.1869038 4.4313190E-05 7.5750708E-05 8.8698464E-05 2.3169382E-02 3.9999921E-02 3.1074933E-03 Av 2018 12 26 15 0 0.2139961 2.4030762E-06 7.6326396E-05 3.7696501E-04 1.0858682E-02 9.9999802E-03 1.8348733E-03 Av 2018 12 26 16 0 0.1041993 0.000000 7.5287680E-05 6.9959729E-04 2.9778453E-03 0.000000 3.7483548E-04 - Av 2018 12 26 17 0 0.7145652 1.9516227E-05 9.2108217E-05 7.9508830E-04 8.9546308E-02 0.1099998 0.000000 - Av 2018 12 26 18 0 0.6584157 1.0376598E-08 1.0859229E-04 8.1308559E-04 1.4280645E-02 0.000000 0.000000 - Av 2018 12 26 19 0 8.7215491E-02 0.000000 1.0699077E-04 8.1276777E-04 3.6387416E-03 0.000000 0.000000 - Av 2018 12 26 20 0 0.1281535 0.000000 1.0541248E-04 8.1233057E-04 1.3111081E-03 0.000000 0.000000 - Av 2018 12 26 21 0 0.1365720 4.6591108E-06 1.0402827E-04 8.1373326E-04 6.8557071E-03 9.9999802E-03 0.000000 - Av 2018 12 26 22 0 0.1413765 0.000000 1.0266362E-04 8.1575807E-04 2.4422596E-03 0.000000 0.000000 - Av 2018 12 26 23 0 9.8654047E-02 0.000000 1.0114918E-04 8.1531925E-04 9.6370856E-04 0.000000 0.000000 - Av 2018 12 26 24 0 9.9784411E-02 0.000000 9.9657074E-05 8.1488065E-04 4.6112246E-04 0.000000 0.000000 - Av 2018 12 27 1 0 9.3500048E-02 4.8542614E-09 9.8187149E-05 8.0273440E-04 2.5204729E-04 0.000000 0.000000 - Av 2018 12 27 2 0 9.2535794E-02 0.000000 9.6738921E-05 8.0239476E-04 1.5163842E-04 0.000000 0.000000 - Av 2018 12 27 3 0 9.1576830E-02 0.000000 9.5311865E-05 8.0196967E-04 9.8010707E-05 0.000000 0.000000 - Av 2018 12 27 4 0 9.1084592E-02 0.000000 9.3905866E-05 8.0154481E-04 6.6945358E-05 0.000000 0.000000 - Av 2018 12 27 5 0 9.0666987E-02 0.000000 9.2520611E-05 8.0112013E-04 4.7765145E-05 0.000000 0.000000 - Av 2018 12 27 6 0 9.0352640E-02 0.000000 9.1155780E-05 8.0069568E-04 3.5300931E-05 0.000000 0.000000 - Av 2018 12 27 7 0 9.1101587E-02 0.000000 8.9811088E-05 8.0027146E-04 1.7749006E-04 0.000000 0.000000 + Av 2018 12 26 17 0 0.7145652 1.9516227E-05 9.2108217E-05 7.9508830E-04 8.9546308E-02 0.1099998 0.000000 + Av 2018 12 26 18 0 0.6584157 1.0376598E-08 1.0859229E-04 8.1308559E-04 1.4280645E-02 0.000000 0.000000 + Av 2018 12 26 19 0 8.7215491E-02 0.000000 1.0699077E-04 8.1276777E-04 3.6387416E-03 0.000000 0.000000 + Av 2018 12 26 20 0 0.1281535 0.000000 1.0541248E-04 8.1233057E-04 1.3111081E-03 0.000000 0.000000 + Av 2018 12 26 21 0 0.1365720 4.6591108E-06 1.0402827E-04 8.1373326E-04 6.8557071E-03 9.9999802E-03 0.000000 + Av 2018 12 26 22 0 0.1413765 0.000000 1.0266362E-04 8.1575807E-04 2.4422596E-03 0.000000 0.000000 + Av 2018 12 26 23 0 9.8654047E-02 0.000000 1.0114918E-04 8.1531925E-04 9.6370856E-04 0.000000 0.000000 + Av 2018 12 26 24 0 9.9784411E-02 0.000000 9.9657074E-05 8.1488065E-04 4.6112246E-04 0.000000 0.000000 + Av 2018 12 27 1 0 9.3500048E-02 4.8542614E-09 9.8187149E-05 8.0273440E-04 2.5204729E-04 0.000000 0.000000 + Av 2018 12 27 2 0 9.2535794E-02 0.000000 9.6738921E-05 8.0239476E-04 1.5163842E-04 0.000000 0.000000 + Av 2018 12 27 3 0 9.1576830E-02 0.000000 9.5311865E-05 8.0196967E-04 9.8010707E-05 0.000000 0.000000 + Av 2018 12 27 4 0 9.1084592E-02 0.000000 9.3905866E-05 8.0154481E-04 6.6945358E-05 0.000000 0.000000 + Av 2018 12 27 5 0 9.0666987E-02 0.000000 9.2520611E-05 8.0112013E-04 4.7765145E-05 0.000000 0.000000 + Av 2018 12 27 6 0 9.0352640E-02 0.000000 9.1155780E-05 8.0069568E-04 3.5300931E-05 0.000000 0.000000 + Av 2018 12 27 7 0 9.1101587E-02 0.000000 8.9811088E-05 8.0027146E-04 1.7749006E-04 0.000000 0.000000 Av 2018 12 27 8 0 8.4431529E-02 0.000000 8.8486231E-05 7.1293738E-04 0.000000 0.000000 3.9504553E-04 Av 2018 12 27 9 0 5.6700878E-02 0.000000 8.7180917E-05 3.8004911E-04 0.000000 0.000000 1.9062477E-03 Av 2018 12 27 10 0 2.3776833E-02 0.000000 8.5894862E-05 9.0615998E-05 0.000000 0.000000 3.2199272E-03 @@ -8680,21 +8680,21 @@ Av 2018 12 27 14 0 1.7124206E-02 0.000000 8.0937578E-05 8.8923611E-05 0.000000 0.000000 3.2199272E-03 Av 2018 12 27 15 0 3.6507674E-02 0.000000 7.9743622E-05 3.7751044E-04 0.000000 0.000000 1.9062477E-03 Av 2018 12 27 16 0 7.1848698E-02 0.000000 7.8567275E-05 7.0955255E-04 0.000000 0.000000 3.9504553E-04 - Av 2018 12 27 17 0 8.7891504E-02 0.000000 7.7408287E-05 7.9604040E-04 0.000000 0.000000 0.000000 - Av 2018 12 27 18 0 8.8024758E-02 0.000000 7.6266391E-05 7.9561840E-04 0.000000 0.000000 0.000000 - Av 2018 12 27 19 0 8.7767065E-02 0.000000 7.5141339E-05 7.9519663E-04 0.000000 0.000000 0.000000 - Av 2018 12 27 20 0 8.7647617E-02 0.000000 7.4032891E-05 7.9477509E-04 0.000000 0.000000 0.000000 - Av 2018 12 27 21 0 8.7482370E-02 0.000000 7.2940791E-05 7.9435372E-04 0.000000 0.000000 0.000000 - Av 2018 12 27 22 0 8.7335281E-02 0.000000 7.1864801E-05 7.9393259E-04 0.000000 0.000000 0.000000 - Av 2018 12 27 23 0 8.7184072E-02 0.000000 7.0804686E-05 7.9351163E-04 0.000000 0.000000 0.000000 - Av 2018 12 27 24 0 8.7036461E-02 0.000000 6.9760201E-05 7.9309091E-04 0.000000 0.000000 0.000000 - Av 2018 12 28 1 0 8.6756811E-02 0.000000 6.8731126E-05 7.8139058E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 12 28 2 0 8.6637229E-02 8.1040491E-07 6.7746965E-05 7.8180130E-04 0.000000 9.9999802E-03 0.000000 - Av 2018 12 28 3 0 0.1218311 4.6515979E-06 6.6947840E-05 7.8439934E-04 5.1150527E-03 9.9999802E-03 0.000000 - Av 2018 12 28 4 0 0.1720581 4.6590890E-06 6.6301123E-05 7.8846578E-04 9.0705585E-03 9.9999802E-03 0.000000 - Av 2018 12 28 5 0 0.1376396 0.000000 6.5493266E-05 7.9060317E-04 2.7118777E-03 0.000000 0.000000 - Av 2018 12 28 6 0 9.3909502E-02 0.000000 6.4527136E-05 7.9018722E-04 1.0453479E-03 0.000000 0.000000 - Av 2018 12 28 7 0 9.3847692E-02 0.000000 6.3575259E-05 7.8977150E-04 4.9236539E-04 0.000000 0.000000 + Av 2018 12 27 17 0 8.7891504E-02 0.000000 7.7408287E-05 7.9604040E-04 0.000000 0.000000 0.000000 + Av 2018 12 27 18 0 8.8024758E-02 0.000000 7.6266391E-05 7.9561840E-04 0.000000 0.000000 0.000000 + Av 2018 12 27 19 0 8.7767065E-02 0.000000 7.5141339E-05 7.9519663E-04 0.000000 0.000000 0.000000 + Av 2018 12 27 20 0 8.7647617E-02 0.000000 7.4032891E-05 7.9477509E-04 0.000000 0.000000 0.000000 + Av 2018 12 27 21 0 8.7482370E-02 0.000000 7.2940791E-05 7.9435372E-04 0.000000 0.000000 0.000000 + Av 2018 12 27 22 0 8.7335281E-02 0.000000 7.1864801E-05 7.9393259E-04 0.000000 0.000000 0.000000 + Av 2018 12 27 23 0 8.7184072E-02 0.000000 7.0804686E-05 7.9351163E-04 0.000000 0.000000 0.000000 + Av 2018 12 27 24 0 8.7036461E-02 0.000000 6.9760201E-05 7.9309091E-04 0.000000 0.000000 0.000000 + Av 2018 12 28 1 0 8.6756811E-02 0.000000 6.8731126E-05 7.8139058E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 12 28 2 0 8.6637229E-02 8.1040491E-07 6.7746965E-05 7.8180130E-04 0.000000 9.9999802E-03 0.000000 + Av 2018 12 28 3 0 0.1218311 4.6515979E-06 6.6947840E-05 7.8439934E-04 5.1150527E-03 9.9999802E-03 0.000000 + Av 2018 12 28 4 0 0.1720581 4.6590890E-06 6.6301123E-05 7.8846578E-04 9.0705585E-03 9.9999802E-03 0.000000 + Av 2018 12 28 5 0 0.1376396 0.000000 6.5493266E-05 7.9060317E-04 2.7118777E-03 0.000000 0.000000 + Av 2018 12 28 6 0 9.3909502E-02 0.000000 6.4527136E-05 7.9018722E-04 1.0453479E-03 0.000000 0.000000 + Av 2018 12 28 7 0 9.3847692E-02 0.000000 6.3575259E-05 7.8977150E-04 4.9236539E-04 0.000000 0.000000 Av 2018 12 28 8 0 8.2398951E-02 0.000000 6.2637424E-05 7.0155290E-04 2.6614830E-04 0.000000 3.9910484E-04 Av 2018 12 28 9 0 9.4831213E-02 4.3783348E-06 6.1874249E-05 3.7379816E-04 5.7981792E-03 9.9999802E-03 1.8955318E-03 Av 2018 12 28 10 0 0.1539631 1.6024873E-05 6.1710496E-05 9.4040181E-05 1.5347298E-02 1.9999960E-02 3.1924064E-03 @@ -8704,21 +8704,21 @@ Av 2018 12 28 14 0 0.2049071 3.5581037E-05 6.0555951E-05 1.0765763E-04 2.2599177E-02 2.9999940E-02 3.1924064E-03 Av 2018 12 28 15 0 0.2016004 2.6745145E-06 6.1064740E-05 4.0075506E-04 1.0455079E-02 9.9999802E-03 1.8955318E-03 Av 2018 12 28 16 0 0.1068971 0.000000 6.0262057E-05 7.3149649E-04 2.8960041E-03 0.000000 3.9910484E-04 - Av 2018 12 28 17 0 0.1378996 3.1994091E-06 5.9491107E-05 8.2048622E-04 6.0197692E-03 9.9999802E-03 0.000000 - Av 2018 12 28 18 0 0.1278973 0.000000 5.8730951E-05 8.2219398E-04 2.1147302E-03 0.000000 0.000000 - Av 2018 12 28 19 0 9.5367953E-02 0.000000 5.7864578E-05 8.2175137E-04 8.6128165E-04 0.000000 0.000000 - Av 2018 12 28 20 0 9.4994023E-02 0.000000 5.7010984E-05 8.2130893E-04 4.2103720E-04 0.000000 0.000000 - Av 2018 12 28 21 0 9.0684466E-02 0.000000 5.6169985E-05 8.2086679E-04 2.3366077E-04 0.000000 0.000000 - Av 2018 12 28 22 0 9.0114623E-02 0.000000 5.5341388E-05 8.2042493E-04 1.4216041E-04 0.000000 0.000000 - Av 2018 12 28 23 0 8.9183033E-02 0.000000 5.4525019E-05 8.1998319E-04 9.2671886E-05 0.000000 0.000000 - Av 2018 12 28 24 0 8.8803887E-02 0.000000 5.3720691E-05 8.1954175E-04 6.3722604E-05 0.000000 0.000000 - Av 2018 12 29 1 0 8.7650612E-02 4.9405431E-09 5.2928404E-05 8.0735702E-04 4.5709210E-05 0.000000 0.000000 - Av 2018 12 29 2 0 8.6891152E-02 0.000000 5.2147810E-05 8.0701429E-04 3.3928998E-05 0.000000 0.000000 - Av 2018 12 29 3 0 8.7864265E-02 0.000000 5.1378549E-05 8.0658641E-04 1.7331936E-04 0.000000 0.000000 - Av 2018 12 29 4 0 0.1263124 4.7462318E-06 5.0795792E-05 8.0812187E-04 5.6033386E-03 9.9999802E-03 0.000000 - Av 2018 12 29 5 0 0.1761551 4.7538974E-06 5.0396309E-05 8.1223232E-04 9.2542060E-03 9.9999802E-03 0.000000 - Av 2018 12 29 6 0 0.1387104 0.000000 4.9827559E-05 8.1437716E-04 2.7317174E-03 0.000000 0.000000 - Av 2018 12 29 7 0 9.4828457E-02 0.000000 4.9092523E-05 8.1394275E-04 1.0512684E-03 0.000000 0.000000 + Av 2018 12 28 17 0 0.1378996 3.1994091E-06 5.9491107E-05 8.2048622E-04 6.0197692E-03 9.9999802E-03 0.000000 + Av 2018 12 28 18 0 0.1278973 0.000000 5.8730951E-05 8.2219398E-04 2.1147302E-03 0.000000 0.000000 + Av 2018 12 28 19 0 9.5367953E-02 0.000000 5.7864578E-05 8.2175137E-04 8.6128165E-04 0.000000 0.000000 + Av 2018 12 28 20 0 9.4994023E-02 0.000000 5.7010984E-05 8.2130893E-04 4.2103720E-04 0.000000 0.000000 + Av 2018 12 28 21 0 9.0684466E-02 0.000000 5.6169985E-05 8.2086679E-04 2.3366077E-04 0.000000 0.000000 + Av 2018 12 28 22 0 9.0114623E-02 0.000000 5.5341388E-05 8.2042493E-04 1.4216041E-04 0.000000 0.000000 + Av 2018 12 28 23 0 8.9183033E-02 0.000000 5.4525019E-05 8.1998319E-04 9.2671886E-05 0.000000 0.000000 + Av 2018 12 28 24 0 8.8803887E-02 0.000000 5.3720691E-05 8.1954175E-04 6.3722604E-05 0.000000 0.000000 + Av 2018 12 29 1 0 8.7650612E-02 4.9405431E-09 5.2928404E-05 8.0735702E-04 4.5709210E-05 0.000000 0.000000 + Av 2018 12 29 2 0 8.6891152E-02 0.000000 5.2147810E-05 8.0701429E-04 3.3928998E-05 0.000000 0.000000 + Av 2018 12 29 3 0 8.7864265E-02 0.000000 5.1378549E-05 8.0658641E-04 1.7331936E-04 0.000000 0.000000 + Av 2018 12 29 4 0 0.1263124 4.7462318E-06 5.0795792E-05 8.0812187E-04 5.6033386E-03 9.9999802E-03 0.000000 + Av 2018 12 29 5 0 0.1761551 4.7538974E-06 5.0396309E-05 8.1223232E-04 9.2542060E-03 9.9999802E-03 0.000000 + Av 2018 12 29 6 0 0.1387104 0.000000 4.9827559E-05 8.1437716E-04 2.7317174E-03 0.000000 0.000000 + Av 2018 12 29 7 0 9.4828457E-02 0.000000 4.9092523E-05 8.1394275E-04 1.0512684E-03 0.000000 0.000000 Av 2018 12 29 8 0 8.7434143E-02 0.000000 4.8368329E-05 7.0663675E-04 4.9460854E-04 0.000000 4.8578077E-04 Av 2018 12 29 9 0 5.0490201E-02 0.000000 4.7654823E-05 3.1416659E-04 2.6715340E-04 0.000000 2.2677637E-03 Av 2018 12 29 10 0 1.3353200E-02 0.000000 4.6951838E-05 0.000000 1.5932911E-04 0.000000 3.8068565E-03 @@ -8728,21 +8728,21 @@ Av 2018 12 29 14 0 7.5901053E-03 0.000000 4.4321849E-05 0.000000 2.4739851E-04 0.000000 3.8068565E-03 Av 2018 12 29 15 0 2.7238896E-02 0.000000 4.3668031E-05 3.1380757E-04 1.4925454E-04 0.000000 2.2677637E-03 Av 2018 12 29 16 0 6.7751907E-02 0.000000 4.3023858E-05 7.0540950E-04 9.6673291E-05 9.9999802E-03 4.8578077E-04 - Av 2018 12 29 17 0 9.2932984E-02 1.6444208E-06 4.2449963E-05 8.1301766E-04 8.3335588E-04 9.9999802E-03 0.000000 - Av 2018 12 29 18 0 0.7787241 3.4211687E-05 6.7233595E-05 8.2924339E-04 9.9371076E-02 0.1199998 0.000000 - Av 2018 12 29 19 0 1.593216 2.8035071E-04 1.3708921E-04 8.6527650E-04 0.1459154 0.1499997 0.000000 - Av 2018 12 29 20 0 1.267702 2.3567759E-04 1.9650919E-04 8.9980027E-04 8.6999267E-02 7.9999842E-02 0.000000 - Av 2018 12 29 21 0 0.7340733 1.7499902E-04 2.1612455E-04 9.2650589E-04 5.4675780E-02 4.9999900E-02 0.000000 - Av 2018 12 29 22 0 0.4137917 7.1060131E-06 2.1971956E-04 9.4078376E-04 1.7262770E-02 9.9999802E-03 0.000000 - Av 2018 12 29 23 0 0.1616740 0.000000 2.1674359E-04 9.4322371E-04 4.1756812E-03 0.000000 0.000000 - Av 2018 12 29 24 0 0.1394307 0.000000 2.1354627E-04 9.4277761E-04 1.4565057E-03 0.000000 0.000000 - Av 2018 12 30 1 0 0.1216888 7.3930946E-09 2.1039641E-04 9.2798483E-04 6.4190110E-04 0.000000 0.000000 - Av 2018 12 30 2 0 0.1187595 0.000000 2.0729301E-04 9.2764921E-04 3.3124321E-04 0.000000 0.000000 - Av 2018 12 30 3 0 0.2679926 6.3868996E-05 2.0663237E-04 9.3344814E-04 2.1476416E-02 2.9999940E-02 0.000000 - Av 2018 12 30 4 0 0.2522093 0.000000 2.0596961E-04 9.4100926E-04 5.5249929E-03 0.000000 0.000000 - Av 2018 12 30 5 0 0.1177049 0.000000 2.0293123E-04 9.4056875E-04 1.8009153E-03 0.000000 0.000000 - Av 2018 12 30 6 0 0.1316230 0.000000 1.9993768E-04 9.4012805E-04 7.5923628E-04 0.000000 0.000000 - Av 2018 12 30 7 0 0.1166655 0.000000 1.9698829E-04 9.3968731E-04 3.7999987E-04 0.000000 0.000000 + Av 2018 12 29 17 0 9.2932984E-02 1.6444208E-06 4.2449963E-05 8.1301766E-04 8.3335588E-04 9.9999802E-03 0.000000 + Av 2018 12 29 18 0 0.7787241 3.4211687E-05 6.7233595E-05 8.2924339E-04 9.9371076E-02 0.1199998 0.000000 + Av 2018 12 29 19 0 1.593216 2.8035071E-04 1.3708921E-04 8.6527650E-04 0.1459154 0.1499997 0.000000 + Av 2018 12 29 20 0 1.267702 2.3567759E-04 1.9650919E-04 8.9980027E-04 8.6999267E-02 7.9999842E-02 0.000000 + Av 2018 12 29 21 0 0.7340733 1.7499902E-04 2.1612455E-04 9.2650589E-04 5.4675780E-02 4.9999900E-02 0.000000 + Av 2018 12 29 22 0 0.4137917 7.1060131E-06 2.1971956E-04 9.4078376E-04 1.7262770E-02 9.9999802E-03 0.000000 + Av 2018 12 29 23 0 0.1616740 0.000000 2.1674359E-04 9.4322371E-04 4.1756812E-03 0.000000 0.000000 + Av 2018 12 29 24 0 0.1394307 0.000000 2.1354627E-04 9.4277761E-04 1.4565057E-03 0.000000 0.000000 + Av 2018 12 30 1 0 0.1216888 7.3930946E-09 2.1039641E-04 9.2798483E-04 6.4190110E-04 0.000000 0.000000 + Av 2018 12 30 2 0 0.1187595 0.000000 2.0729301E-04 9.2764921E-04 3.3124321E-04 0.000000 0.000000 + Av 2018 12 30 3 0 0.2679926 6.3868996E-05 2.0663237E-04 9.3344814E-04 2.1476416E-02 2.9999940E-02 0.000000 + Av 2018 12 30 4 0 0.2522093 0.000000 2.0596961E-04 9.4100926E-04 5.5249929E-03 0.000000 0.000000 + Av 2018 12 30 5 0 0.1177049 0.000000 2.0293123E-04 9.4056875E-04 1.8009153E-03 0.000000 0.000000 + Av 2018 12 30 6 0 0.1316230 0.000000 1.9993768E-04 9.4012805E-04 7.5923628E-04 0.000000 0.000000 + Av 2018 12 30 7 0 0.1166655 0.000000 1.9698829E-04 9.3968731E-04 3.7999987E-04 0.000000 0.000000 Av 2018 12 30 8 0 0.1120578 0.000000 1.9408240E-04 8.5651135E-04 2.1446233E-04 0.000000 3.7606852E-04 Av 2018 12 30 9 0 8.5642979E-02 0.000000 1.9121938E-04 5.5964751E-04 1.3211615E-04 0.000000 1.7234458E-03 Av 2018 12 30 10 0 5.5912428E-02 0.000000 1.8839860E-04 3.0415092E-04 8.6948960E-05 0.000000 2.8827889E-03 @@ -8752,21 +8752,21 @@ Av 2018 12 30 14 0 4.9587056E-02 0.000000 1.7752548E-04 3.0238606E-04 1.6866888E-04 0.000000 2.8827889E-03 Av 2018 12 30 15 0 6.6019982E-02 0.000000 1.7490669E-04 5.5700011E-04 0.000000 0.000000 1.7234458E-03 Av 2018 12 30 16 0 9.6330792E-02 0.000000 1.7232654E-04 8.5298164E-04 0.000000 0.000000 3.7606852E-04 - Av 2018 12 30 17 0 0.1112281 0.000000 1.6978446E-04 9.3527511E-04 0.000000 0.000000 0.000000 - Av 2018 12 30 18 0 0.1112898 0.000000 1.6727987E-04 9.3483349E-04 0.000000 0.000000 0.000000 - Av 2018 12 30 19 0 0.1108705 0.000000 1.6481223E-04 9.3439181E-04 0.000000 0.000000 0.000000 - Av 2018 12 30 20 0 0.1106234 0.000000 1.6238098E-04 9.3395007E-04 0.000000 0.000000 0.000000 - Av 2018 12 30 21 0 0.1103213 0.000000 1.5998562E-04 9.3350816E-04 0.000000 0.000000 0.000000 - Av 2018 12 30 22 0 0.1100432 0.000000 1.5762557E-04 9.3306630E-04 0.000000 0.000000 0.000000 - Av 2018 12 30 23 0 0.1097615 0.000000 1.5530035E-04 9.3262427E-04 0.000000 0.000000 0.000000 - Av 2018 12 30 24 0 0.1094858 0.000000 1.5300945E-04 9.3218230E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 1 0 0.1082508 0.000000 1.5075230E-04 9.1758487E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 2 0 0.1073550 0.000000 1.4852847E-04 9.1715838E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 3 0 0.1073085 0.000000 1.4633745E-04 9.1673183E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 4 0 0.1069712 0.000000 1.4417873E-04 9.1630523E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 5 0 0.1067393 0.000000 1.4205187E-04 9.1587851E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 6 0 0.1064751 0.000000 1.3995638E-04 9.1545173E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 7 0 0.1062263 0.000000 1.3789181E-04 9.1502490E-04 0.000000 0.000000 0.000000 + Av 2018 12 30 17 0 0.1112281 0.000000 1.6978446E-04 9.3527511E-04 0.000000 0.000000 0.000000 + Av 2018 12 30 18 0 0.1112898 0.000000 1.6727987E-04 9.3483349E-04 0.000000 0.000000 0.000000 + Av 2018 12 30 19 0 0.1108705 0.000000 1.6481223E-04 9.3439181E-04 0.000000 0.000000 0.000000 + Av 2018 12 30 20 0 0.1106234 0.000000 1.6238098E-04 9.3395007E-04 0.000000 0.000000 0.000000 + Av 2018 12 30 21 0 0.1103213 0.000000 1.5998562E-04 9.3350816E-04 0.000000 0.000000 0.000000 + Av 2018 12 30 22 0 0.1100432 0.000000 1.5762557E-04 9.3306630E-04 0.000000 0.000000 0.000000 + Av 2018 12 30 23 0 0.1097615 0.000000 1.5530035E-04 9.3262427E-04 0.000000 0.000000 0.000000 + Av 2018 12 30 24 0 0.1094858 0.000000 1.5300945E-04 9.3218230E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 1 0 0.1082508 0.000000 1.5075230E-04 9.1758487E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 2 0 0.1073550 0.000000 1.4852847E-04 9.1715838E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 3 0 0.1073085 0.000000 1.4633745E-04 9.1673183E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 4 0 0.1069712 0.000000 1.4417873E-04 9.1630523E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 5 0 0.1067393 0.000000 1.4205187E-04 9.1587851E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 6 0 0.1064751 0.000000 1.3995638E-04 9.1545173E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 7 0 0.1062263 0.000000 1.3789181E-04 9.1502490E-04 0.000000 0.000000 0.000000 Av 2018 12 31 8 0 0.1004303 0.000000 1.3585768E-04 8.3335309E-04 0.000000 0.000000 3.6929536E-04 Av 2018 12 31 9 0 7.7196643E-02 0.000000 1.3385358E-04 5.4906501E-04 0.000000 0.000000 1.6595732E-03 Av 2018 12 31 10 0 4.9014136E-02 0.000000 1.3187903E-04 3.0539936E-04 0.000000 0.000000 2.7652034E-03 @@ -8776,11 +8776,11 @@ Av 2018 12 31 14 0 4.3098982E-02 0.000000 1.2426784E-04 3.0369073E-04 0.000000 0.000000 2.7652034E-03 Av 2018 12 31 15 0 5.9343934E-02 0.000000 1.2243469E-04 5.4650207E-04 0.000000 0.000000 1.6595732E-03 Av 2018 12 31 16 0 8.9305624E-02 0.000000 1.2062860E-04 8.2993583E-04 0.000000 0.000000 3.6929536E-04 - Av 2018 12 31 17 0 0.1034668 0.000000 1.1884913E-04 9.1075338E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 18 0 0.1037867 0.000000 1.1709592E-04 9.1032597E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 19 0 0.1033809 0.000000 1.1536857E-04 9.0989843E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 20 0 0.1032309 0.000000 1.1366671E-04 9.0947084E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 21 0 0.1029954 0.000000 1.1198995E-04 9.0904318E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 22 0 0.1027930 0.000000 1.1033792E-04 9.0861553E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 23 0 0.1025824 0.000000 1.0871026E-04 9.0818782E-04 0.000000 0.000000 0.000000 - Av 2018 12 31 24 0 0.1023780 0.000000 1.0710661E-04 9.0776006E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 17 0 0.1034668 0.000000 1.1884913E-04 9.1075338E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 18 0 0.1037867 0.000000 1.1709592E-04 9.1032597E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 19 0 0.1033809 0.000000 1.1536857E-04 9.0989843E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 20 0 0.1032309 0.000000 1.1366671E-04 9.0947084E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 21 0 0.1029954 0.000000 1.1198995E-04 9.0904318E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 22 0 0.1027930 0.000000 1.1033792E-04 9.0861553E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 23 0 0.1025824 0.000000 1.0871026E-04 9.0818782E-04 0.000000 0.000000 0.000000 + Av 2018 12 31 24 0 0.1023780 0.000000 1.0710661E-04 9.0776006E-04 0.000000 0.000000 0.000000 diff --git a/tests/ipwater/data/HSPF_Test.wdm b/tests/ipwater/data/HSPF_Test.wdm new file mode 100644 index 00000000..dda4a0c5 Binary files /dev/null and b/tests/ipwater/data/HSPF_Test.wdm differ diff --git a/tests/ipwater/data/HSPF_Test240.uci b/tests/ipwater/data/HSPF_Test240.uci index b106e251..8981507a 100644 --- a/tests/ipwater/data/HSPF_Test240.uci +++ b/tests/ipwater/data/HSPF_Test240.uci @@ -13,7 +13,7 @@ WDM1 1 HSPF_Test.wdm MESSU 25 HSPF_Test.ech 26 HSPF_Test220.out 40 Flow_Test.plt - 41 HSPF_Test_Met.SEQ + 41 HSPF_Test_Met.SEQ BINO 27 HSPF_Test220.hbn END FILES @@ -190,7 +190,7 @@ PERLND *** x - x JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 1 0.09 0.10 0.10 0.14 0.17 0.18 0.18 0.18 0.17 0.15 0.12 0.10 END MON-INTERCEP - + END PERLND FTABLES @@ -220,7 +220,7 @@ PLTGEN SCALING <-range><--ymin--><--ymax--><--ivlin-><-thresh-> *** # - # YMIN YMAX IVLIN THRESH *** - 1 7 100 30 -1.0E32 + 1 7 100 30 -1.0E32 END SCALING CURV-DATA @@ -262,14 +262,14 @@ PLTGEN <-range> <-----label----> *** Curve label Line Intg Col Tran *** # - # type eqv code code *** - 1 PREC 0 0 1 + 1 PREC 0 0 1 END CURV-DATA CURV-DATA <-range> <-----label----> *** Curve label Line Intg Col Tran *** # - # type eqv code code *** - 1 PETINP 0 0 1 + 1 PETINP 0 0 1 END CURV-DATA END PLTGEN @@ -298,13 +298,13 @@ END COPY EXT SOURCES <-Volume-> SsysSgap<--Mult-->Tran <-Target vols> <-Grp> <-Member-> *** x x tem strg<-factor->strg x x x x *** -WDM 1 PREC ENGLZERO IMPLND 1 EXTNL PREC +WDM 1 PREC ENGLZERO IMPLND 1 EXTNL PREC WDM 2 HPET ENGL IMPLND 1 EXTNL PETINP -WDM 1 PREC ENGLZERO PERLND 1 EXTNL PREC +WDM 1 PREC ENGLZERO PERLND 1 EXTNL PREC WDM 2 HPET ENGL PERLND 1 EXTNL PETINP -WDM 1 PREC ENGLZERO RCHRES 1 EXTNL PREC -WDM 2 HPET ENGL RCHRES 1 EXTNL POTEV -WDM 1 PREC ENGLZERO COPY 1 INPUT MEAN 1 +WDM 1 PREC ENGLZERO RCHRES 1 EXTNL PREC +WDM 2 HPET ENGL RCHRES 1 EXTNL POTEV +WDM 1 PREC ENGLZERO COPY 1 INPUT MEAN 1 WDM 2 HPET ENGL COPY 1 INPUT MEAN 2 END EXT SOURCES @@ -328,19 +328,19 @@ END SCHEMATIC MASS-LINK 1 <-Volume-> <-Grp> <-Member-><--Mult--> <-Target vols> <-Grp> <-Member-> *** x x<-factor-> x x *** -IMPLND IWATER SURO 0.0833333 RCHRES INFLOW IVOL +IMPLND IWATER SURO 0.0833333 RCHRES INFLOW IVOL END MASS-LINK 1 MASS-LINK 2 <-Volume-> <-Grp> <-Member-><--Mult--> <-Target vols> <-Grp> <-Member-> *** x x<-factor-> x x *** -PERLND PWATER PERO 0.0833333 RCHRES INFLOW IVOL +PERLND PWATER PERO 0.0833333 RCHRES INFLOW IVOL END MASS-LINK 2 MASS-LINK 3 <-Volume-> <-Grp> <-Member-><--Mult--> <-Target vols> <-Grp> <-Member-> *** x x<-factor-> x x *** -RCHRES ROFLOW RCHRES INFLOW +RCHRES ROFLOW RCHRES INFLOW END MASS-LINK 3 - + END RUN diff --git a/tests/ipwater/data/make_uci_data.py b/tests/ipwater/data/make_uci_data.py index 84181cca..0b148c34 100644 --- a/tests/ipwater/data/make_uci_data.py +++ b/tests/ipwater/data/make_uci_data.py @@ -1,10 +1,9 @@ import json import os - from pathlib import Path -from hsp2.hsp2tools import readUCI from hsp2.hsp2io.hdf import HDF5 +from hsp2.hsp2tools import readUCI this_dir = Path(__file__).parent diff --git a/tests/ipwater/data/uci_data.json b/tests/ipwater/data/uci_data.json index 57679de9..0d18f338 100644 --- a/tests/ipwater/data/uci_data.json +++ b/tests/ipwater/data/uci_data.json @@ -217,4 +217,4 @@ "stop": "2019-01-01 00:00:00", "units": 1 } -} \ No newline at end of file +} diff --git a/tests/ipwater/test_ipwater.py b/tests/ipwater/test_ipwater.py index 1df3d497..50e7ebe4 100644 --- a/tests/ipwater/test_ipwater.py +++ b/tests/ipwater/test_ipwater.py @@ -3,13 +3,11 @@ import pandas as pd import pytest - +from hsp2.hsp2.IWATER import iwater +from hsp2.hsp2.PWATER import pwater from numba import types from numba.typed import Dict -from hsp2.hsp2.PWATER import pwater -from hsp2.hsp2.IWATER import iwater - data_path = Path(__file__).parent / "data" diff --git a/tests/land_spec/hwmA51800.uci b/tests/land_spec/hwmA51800.uci index 5575bcbf..46811761 100644 --- a/tests/land_spec/hwmA51800.uci +++ b/tests/land_spec/hwmA51800.uci @@ -1,5 +1,5 @@ RUN - + GLOBAL A51800 hwm | P5 | p532cal_06 | VA,SUFFOLK START 1984/ 1/ 1 END 2005/12/31 @@ -55,7 +55,7 @@ SPEC-ACTIONS ***Action Lines for fertilizer IF (prec < 0.1) THEN - PERLND 1 DY 11984 1 1 12 2 3 FNO3 += 0. + PERLND 1 DY 11984 1 1 12 2 3 FNO3 += 0. PERLND 1 DY 11984 2 1 12 2 3 FNO3 += 0.090044 PERLND 1 DY 11984 3 1 12 2 3 FNO3 += 1.917460 PERLND 1 DY 11984 4 1 12 2 3 FNO3 += 2.733176 @@ -89,7 +89,7 @@ PERLND ATEMP-DAT # # ELDAT AIRTMP *** - 1 0. 23.1476 + 1 0. 23.1476 END ATEMP-DAT ICE-FLAG @@ -99,22 +99,22 @@ PERLND SNOW-PARM1 # # LAT ELEV SHADE SNOWCF COVIND *** - 1 36.69108 55.78 0.05 1.3 1.08 + 1 36.69108 55.78 0.05 1.3 1.08 END SNOW-PARM1 SNOW-PARM2 # # RDCSN TSNOW SNOEVP CCFACT MWATER MGMELT *** - 1 0.12 32. 0.13 0.5 0.03 0.03 + 1 0.12 32. 0.13 0.5 0.03 0.03 END SNOW-PARM2 SNOW-INIT1 # # PACK-SNOW PACK-ICE PACK-WATR RDENPF DULL PAKTMP *** - 1 0. 0. 0. 0.15 100. 30. + 1 0. 0. 0. 0.15 100. 30. END SNOW-INIT1 SNOW-INIT2 # # COVINX XLNMLT SKYCLR *** - 1 1.08 0. 0.9 + 1 1.08 0. 0.9 END SNOW-INIT2 PWAT-PARM1 @@ -134,27 +134,27 @@ PERLND PWAT-PARM4 # # CEPSC UZSN NSUR INTFW IRC LZETP *** - 1 0.7 2. 0.435477 + 1 0.7 2. 0.435477 END PWAT-PARM4 MON-INTERCEP # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .067 .065 .062 .06 .064 .085 .138 .15 .146 .109 .087 .077 + 1 .067 .065 .062 .06 .064 .085 .138 .15 .146 .109 .087 .077 END MON-INTERCEP MON-UZSN # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .672 .672 .672 .672 .672 .7841.064 1.12 1.12 .896 .784 .728 + 1 .672 .672 .672 .672 .672 .7841.064 1.12 1.12 .896 .784 .728 END MON-UZSN MON-MANNING # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .2028.2028.1971.2103.2804.3505.3692.3594.3262.2283.2085.2028 + 1 .2028.2028.1971.2103.2804.3505.3692.3594.3262.2283.2085.2028 END MON-MANNING MON-LZETPARM # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .232 .221 .208 .2 .218 .312 .547 .6 .582 .416 .322 .276 + 1 .232 .221 .208 .2 .218 .312 .547 .6 .582 .416 .322 .276 END MON-LZETPARM PWAT-STATE1 @@ -169,27 +169,27 @@ PERLND SED-PARM2 # - # SMPF KRER JRER AFFIX COVER NVSI *** - 1 1. 1.394872 2. 0.07675 30.57534 + 1 1. 1.394872 2. 0.07675 30.57534 END SED-PARM2 SED-PARM3 # - # KSER JSER KGER JGER *** - 1 6.974359 2. 0. 4. + 1 6.974359 2. 0. 4. END SED-PARM3 MON-COVER # - # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .0618.0618.0557.1392.2285.3906.6657.7618.8416.7424.6945.0618 + 1 .0618.0618.0557.1392.2285.3906.6657.7618.8416.7424.6945.0618 END MON-COVER MON-NVSI # - # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 + 1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 END MON-NVSI SED-STOR # - # DETS *** - 1 0. + 1 0. END SED-STOR PSTEMP-PARM1 @@ -199,37 +199,37 @@ PERLND PSTEMP-PARM2 # - # ASLT BSLT ULTP1 ULTP2 LGTP1 LGTP2*** - 1 0. 1. 0. 0. 0. 0. + 1 0. 1. 0. 0. 0. 0. END PSTEMP-PARM2 MON-ASLT # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 35.5837.1440.4945.0949.4653.6255.76 54.651.5446.0841.5536.97 + 1 35.5837.1440.4945.0949.4653.6255.76 54.651.5446.0841.5536.97 END MON-ASLT MON-BSLT # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .5 .5 .5 .5 .5 .5 .5 .5 .5 .5 .5 .5 + 1 .5 .5 .5 .5 .5 .5 .5 .5 .5 .5 .5 .5 END MON-BSLT MON-ULTP1 # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 38.4541.2547.2755.5763.4370.9274.7772.6767.1757.3449.1940.94 + 1 38.4541.2547.2755.5763.4370.9274.7772.6767.1757.3449.1940.94 END MON-ULTP1 MON-ULTP2 # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 + 1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 END MON-ULTP2 MON-LGTP1 # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 46.5145.4146.5749.0952.7956.0359.0160.4159.74 57.253.27 49.9 + 1 46.5145.4146.5749.0952.7956.0359.0160.4159.74 57.253.27 49.9 END MON-LGTP1 PSTEMP-TEMPS # # AIRTC SLTMP ULTMP LGTMP *** - 1 32. 32. 32. 50. + 1 32. 32. 32. 50. END PSTEMP-TEMPS PWT-PARM1 @@ -239,37 +239,37 @@ PERLND PWT-PARM2 # # ELEV IDOXP ICO2P ADOXP ACO2P *** - 1 55.78 0. 0. 0. 0. + 1 55.78 0. 0. 0. 0. END PWT-PARM2 MON-IFWDOX # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 12.7 12.7 11.2 9.7 7.4 6.6 6.2 6.2 7.5 8.4 9.4 11.6 + 1 12.7 12.7 11.2 9.7 7.4 6.6 6.2 6.2 7.5 8.4 9.4 11.6 END MON-IFWDOX MON-GRNDDOX # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 10. 10. 10. 10. 7.5 5.5 5. 5. 6.5 7.5 9. 10. + 1 10. 10. 10. 10. 7.5 5.5 5. 5. 6.5 7.5 9. 10. END MON-GRNDDOX PWT-TEMPS # - # SOTMP IOTMP AOTMP*** - 1 33. 40. 55. + 1 33. 40. 55. END PWT-TEMPS PWT-GASES # # SODOX SOCO2 IODOX IOCO2 AODOX AOCO2 *** - 1 14.5 0. 12.7 0. 10. 0. + 1 14.5 0. 12.7 0. 10. 0. END PWT-GASES MST-PARM # # SLMPF ULPF LLPF*** - 1 1. 1. 1. + 1 1. 1. 1. END MST-PARM SOIL-DATA # - # SURFDEP UPDEP LODEP GRNDDEP SURFBD UPBD LOBD GRNDBD *** - 1 0.4 11.5631 93.9878 60. 80.0514 89.2348 80.7519 82.6256 + 1 0.4 11.5631 93.9878 60. 80.0514 89.2348 80.7519 82.6256 END SOIL-DATA NIT-FLAGS @@ -284,7 +284,7 @@ PERLND NIT-FSTGEN # # NO3 NH4 PLN KDSA KADA KIMN KAM KDNI KNI KIMA*** - 1 .8 .2 1.07 1.05 1.05 1.07 1.07 1.07 1.05 1.07 + 1 .8 .2 1.07 1.05 1.05 1.07 1.07 1.07 1.05 1.07 END NIT-FSTGEN NIT-FSTPM @@ -294,32 +294,32 @@ PERLND NIT-ORGPM # - # KLON KRON KONLR THNLR *** - 1 0.20357 1.157812 0.0001 1.07 + 1 0.20357 1.157812 0.0001 1.07 END NIT-ORGPM NIT-AMVOLAT # - # SKVOL UKVOL LKVOL AKVOL THVOL TRFVOL *** - 1 0.5 0.1 0. 0. 1.07 20. + 1 0.5 0.1 0. 0. 1.07 20. END NIT-AMVOLAT NIT-CMAX # # CMAX *** - 1 5000. + 1 5000. END NIT-CMAX NIT-SVALPM # # XFIX K1 N1*** - 1 1. 1. 1.5 + 1 1. 1. 1.5 END NIT-SVALPM MON-NITUPT # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NITUPT SOIL-DATA2 # # SWILTP UWILTP LWILTP AWILTP *** - 1 0.01 0.01 0.01 0.1 + 1 0.01 0.01 0.01 0.1 END SOIL-DATA2 CROP-DATES @@ -329,87 +329,87 @@ PERLND NIT-YIELD # - # NUTTGT NMXRAT *** - 1 105. 1. + 1 105. 1. END NIT-YIELD MON-NUPT-FR1 # - # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .01 .04 .09 .115 .135 .145 .15 .14 .095 .05 .025 .005 + 1 .01 .04 .09 .115 .135 .145 .15 .14 .095 .05 .025 .005 END MON-NUPT-FR1 MON-NUPT-FR2 # - # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 + 1 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 END MON-NUPT-FR2 NIT-UPIMCSAT # - # CSUNI CSUAM CSINI CSIAM *** - 1 + 1 END NIT-UPIMCSAT MON-NITUPNI # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NITUPNI MON-NITUPAM # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NITUPAM MON-NITIMNI # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NITIMNI MON-NITIMAM # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NITIMAM MON-NITIMAM # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NITIMAM MON-NITIMAM # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NITIMAM MON-NITIMAM # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NITIMAM MON-NPRETBG # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .01 .01 .005.0005.0001.0001.0001.0001.0005 .01 .02 .02 + 1 .01 .01 .005.0005.0001.0001.0001.0001.0005 .01 .02 .02 END MON-NPRETBG MON-NITAGUTF # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NITAGUTF MON-NPRETAG # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NPRETAG MON-NPRETFLI # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-NPRETFLI NIT-STOR1 # # ORGN AMAD AMSU NO3 PLTN RORGN*** - 1 3.1555 1. 0.03 0.3 0. 50. + 1 3.1555 1. 0.03 0.3 0. 50. END NIT-STOR1 NIT-STOR2 # # IAMSU INO3 ISLON ISRON AGPLTN LITTRN*** - 1 0. 0. 0. 0. + 1 0. 0. 0. 0. END NIT-STOR2 PHOS-FLAGS @@ -424,47 +424,47 @@ PERLND PHOS-FSTGEN # # THPLP THKDSP THKADP THKIMP THKMP *** - 1 1.07 1.05 1.05 1.07 1.07 + 1 1.07 1.05 1.05 1.07 1.07 END PHOS-FSTGEN PHOS-FSTPM # # KDSP KADP KIMP KMP *** - 1 0. 0. 0.05 0.005 + 1 0. 0. 0.05 0.005 END PHOS-FSTPM PHOS-CMAX # # CMAX *** - 1 50. + 1 50. END PHOS-CMAX PHOS-SVALPM # # XFIX K1 N1*** - 1 100. 5. 1.5 + 1 100. 5. 1.5 END PHOS-SVALPM MON-PHOSUPT # # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 + 1 END MON-PHOSUPT PHOS-YIELD # # PUPTGT PMXRAT *** - 1 25. 1.5 + 1 25. 1.5 END PHOS-YIELD MON-PUPT-FR1 # - # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .01 .04 .09 .115 .135 .145 .15 .14 .095 .05 .025 .005 + 1 .01 .04 .09 .115 .135 .145 .15 .14 .095 .05 .025 .005 END MON-PUPT-FR1 MON-PUPT-FR2 # - # JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** - 1 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 + 1 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 .01 END MON-PUPT-FR2 PHOS-STOR1 # # ORGP P4AD P4SU PLTP *** - 1 15. 1. 0. 0. + 1 15. 1. 0. 0. END PHOS-STOR1 END PERLND diff --git a/tests/test05/HSP2compare/TEST05.UCI b/tests/test05/HSP2compare/TEST05.UCI index 3ddfb1ae..79508b5d 100644 --- a/tests/test05/HSP2compare/TEST05.UCI +++ b/tests/test05/HSP2compare/TEST05.UCI @@ -7,7 +7,7 @@ GLOBAL RESUME 0 RUN 1 UNIT SYSTEM 1 END GLOBAL -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 test.wdm MESSU 22 test05.ech diff --git a/tests/test05/HSP2compare/TEST05bin.UCI b/tests/test05/HSP2compare/TEST05bin.UCI index 612405ea..880c8f9d 100644 --- a/tests/test05/HSP2compare/TEST05bin.UCI +++ b/tests/test05/HSP2compare/TEST05bin.UCI @@ -200,19 +200,19 @@ EXT SOURCES <-Volume-> SsysSgap<--Mult-->Tran <-Target vols> <-Grp> <-Member-> *** x x tem strg<-factor->strg x x x x *** *** Met Seg C:1,PI:PETINP=0.7 -WDM 39 PREC ENGLZERO PERLND 1 2 EXTNL PREC +WDM 39 PREC ENGLZERO PERLND 1 2 EXTNL PREC WDM 123 ATMP ENGL SAME PERLND 1 2 ATEMP AIRTMP WDM 41 EVAP ENGL 0.7DIV PERLND 1 2 EXTNL PETINP WDM 42 WIND ENGL DIV PERLND 1 2 EXTNL WINMOV WDM 46 SOLR ENGL DIV PERLND 1 2 EXTNL SOLRAD -WDM 126 DEWP ENGL SAME PERLND 1 2 EXTNL DTMPG +WDM 126 DEWP ENGL SAME PERLND 1 2 EXTNL DTMPG *** Met Seg C:1,PI:PETINP=0.7 -WDM 131 PREC ENGLZERO PERLND 3 EXTNL PREC +WDM 131 PREC ENGLZERO PERLND 3 EXTNL PREC WDM 122 ATMP ENGL SAME PERLND 3 ATEMP AIRTMP WDM 41 EVAP ENGL 0.7DIV PERLND 3 EXTNL PETINP WDM 42 WIND ENGL DIV PERLND 3 EXTNL WINMOV WDM 46 SOLR ENGL DIV PERLND 3 EXTNL SOLRAD -WDM 125 DEWP ENGL SAME PERLND 3 EXTNL DTMPG +WDM 125 DEWP ENGL SAME PERLND 3 EXTNL DTMPG WDM 136 FLOW ENGL SAME PLTGEN 1 INPUT MEAN 4 END EXT SOURCES @@ -229,7 +229,7 @@ COPY 1 OUTPUT MEAN 1 1. COPY 2 INPUT MEAN 1 PERLND 1 PWATER PERO 122000. COPY 3 INPUT MEAN 1 PERLND 2 PWATER PERO 176200. COPY 3 INPUT MEAN 1 PERLND 3 PWATER PERO 75500. COPY 3 INPUT MEAN 1 -COPY 3 OUTPUT MEAN 1 1. DISPLY 1 INPUT TIMSER +COPY 3 OUTPUT MEAN 1 1. DISPLY 1 INPUT TIMSER COPY 1 OUTPUT MEAN 1 1. PLTGEN 1 INPUT MEAN 1 COPY 2 OUTPUT MEAN 1 1. PLTGEN 1 INPUT MEAN 2 COPY 3 OUTPUT MEAN 1 1. PLTGEN 1 INPUT MEAN 3 diff --git a/tests/test05/HSPFresults/TEST05.UCI b/tests/test05/HSPFresults/TEST05.UCI index 3ddfb1ae..79508b5d 100644 --- a/tests/test05/HSPFresults/TEST05.UCI +++ b/tests/test05/HSPFresults/TEST05.UCI @@ -7,7 +7,7 @@ GLOBAL RESUME 0 RUN 1 UNIT SYSTEM 1 END GLOBAL -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 test.wdm MESSU 22 test05.ech diff --git a/tests/test05/HSPFresults/TEST05bin.UCI b/tests/test05/HSPFresults/TEST05bin.UCI index 612405ea..880c8f9d 100644 --- a/tests/test05/HSPFresults/TEST05bin.UCI +++ b/tests/test05/HSPFresults/TEST05bin.UCI @@ -200,19 +200,19 @@ EXT SOURCES <-Volume-> SsysSgap<--Mult-->Tran <-Target vols> <-Grp> <-Member-> *** x x tem strg<-factor->strg x x x x *** *** Met Seg C:1,PI:PETINP=0.7 -WDM 39 PREC ENGLZERO PERLND 1 2 EXTNL PREC +WDM 39 PREC ENGLZERO PERLND 1 2 EXTNL PREC WDM 123 ATMP ENGL SAME PERLND 1 2 ATEMP AIRTMP WDM 41 EVAP ENGL 0.7DIV PERLND 1 2 EXTNL PETINP WDM 42 WIND ENGL DIV PERLND 1 2 EXTNL WINMOV WDM 46 SOLR ENGL DIV PERLND 1 2 EXTNL SOLRAD -WDM 126 DEWP ENGL SAME PERLND 1 2 EXTNL DTMPG +WDM 126 DEWP ENGL SAME PERLND 1 2 EXTNL DTMPG *** Met Seg C:1,PI:PETINP=0.7 -WDM 131 PREC ENGLZERO PERLND 3 EXTNL PREC +WDM 131 PREC ENGLZERO PERLND 3 EXTNL PREC WDM 122 ATMP ENGL SAME PERLND 3 ATEMP AIRTMP WDM 41 EVAP ENGL 0.7DIV PERLND 3 EXTNL PETINP WDM 42 WIND ENGL DIV PERLND 3 EXTNL WINMOV WDM 46 SOLR ENGL DIV PERLND 3 EXTNL SOLRAD -WDM 125 DEWP ENGL SAME PERLND 3 EXTNL DTMPG +WDM 125 DEWP ENGL SAME PERLND 3 EXTNL DTMPG WDM 136 FLOW ENGL SAME PLTGEN 1 INPUT MEAN 4 END EXT SOURCES @@ -229,7 +229,7 @@ COPY 1 OUTPUT MEAN 1 1. COPY 2 INPUT MEAN 1 PERLND 1 PWATER PERO 122000. COPY 3 INPUT MEAN 1 PERLND 2 PWATER PERO 176200. COPY 3 INPUT MEAN 1 PERLND 3 PWATER PERO 75500. COPY 3 INPUT MEAN 1 -COPY 3 OUTPUT MEAN 1 1. DISPLY 1 INPUT TIMSER +COPY 3 OUTPUT MEAN 1 1. DISPLY 1 INPUT TIMSER COPY 1 OUTPUT MEAN 1 1. PLTGEN 1 INPUT MEAN 1 COPY 2 OUTPUT MEAN 1 1. PLTGEN 1 INPUT MEAN 2 COPY 3 OUTPUT MEAN 1 1. PLTGEN 1 INPUT MEAN 3 diff --git a/tests/test05/HSPFresults/test05.d62 b/tests/test05/HSPFresults/test05.d62 index b3ec0545..1764f321 100644 --- a/tests/test05/HSPFresults/test05.d62 +++ b/tests/test05/HSPFresults/test05.d62 @@ -3,42 +3,42 @@ - SIMULATED FLOW (CFS) + SIMULATED FLOW (CFS) Annual data display: Summary for period ending 1976/12 Day JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC - + 1 11.35 28.76 112.01 328.69 386.18 215.49 113.29 12.92 0.26 0.02 1.41 0.20 2 11.10 28.13 108.22 303.71 417.19 203.30 107.10 10.25 0.21 0.01 1.35 0.19 3 10.86 27.38 104.74 283.23 398.27 191.25 100.70 7.80 0.17 0.01 1.25 0.19 4 10.63 26.70 101.50 266.45 374.22 179.40 93.97 5.34 0.13 0.47 1.17 0.19 5 10.40 26.07 98.44 251.78 351.72 168.07 88.24 3.00 0.11 0.58 1.09 0.18 - + 6 10.17 25.45 96.39 238.38 330.44 157.49 82.11 1.46 0.08 0.45 1.00 0.18 7 9.96 25.88 98.07 225.75 311.65 147.79 76.37 0.63 0.07 0.27 0.96 0.17 8 9.74 28.85 98.76 214.28 294.66 138.59 70.48 0.28 0.05 0.01 0.92 0.17 9 9.54 31.40 102.96 203.59 277.39 129.15 64.65 0.20 0.04 0.01 0.86 0.17 10 9.33 32.42 106.94 192.06 260.89 151.26 58.85 0.16 0.03 0.00 0.83 0.16 - + 11 9.19 32.04 129.42 181.82 245.62 147.62 53.20 0.13 0.03 0.00 0.80 0.16 12 9.30 31.52 230.22 173.01 231.43 140.46 48.18 0.10 0.02 0.00 0.79 0.16 13 10.18 30.91 266.62 163.33 259.65 164.18 43.20 0.08 0.02 0.00 0.77 0.15 14 11.52 30.65 287.19 158.00 252.79 203.47 38.23 0.30 0.01 0.00 0.74 0.15 15 12.70 36.81 294.23 186.18 244.51 187.40 34.57 0.11 0.01 0.00 0.68 0.15 - + 16 12.70 48.50 308.34 175.28 299.64 172.57 32.18 0.05 0.01 0.00 0.59 0.14 17 12.42 51.32 327.43 221.35 314.85 160.19 28.18 1.92 0.00 0.00 0.48 0.14 18 12.25 48.84 337.45 474.16 295.31 149.72 24.38 1.59 0.00 0.01 0.41 0.30 19 12.09 47.10 324.06 421.73 276.91 140.57 21.59 1.01 1.08 0.24 0.37 0.52 20 12.01 53.15 308.28 439.27 259.16 131.60 20.67 0.49 1.12 0.22 0.34 0.54 - + 21 11.85 59.64 293.69 561.71 243.04 123.11 20.25 0.29 0.67 0.19 0.33 0.53 22 13.11 57.39 280.72 509.54 246.60 115.25 19.48 0.24 0.37 0.12 0.33 0.52 23 16.33 56.56 268.81 623.06 269.43 107.56 17.69 0.19 0.12 0.87 0.31 0.51 24 17.41 66.28 257.65 680.63 259.20 119.09 14.64 0.15 0.08 1.29 0.27 0.50 25 17.35 71.49 247.03 646.42 245.70 120.11 11.23 1.36 0.07 1.19 0.23 0.49 - + 26 19.01 87.88 239.40 578.49 231.72 112.40 9.81 2.56 0.05 1.15 0.22 0.48 27 20.25 109.63 232.61 521.63 218.35 116.93 8.59 1.98 0.06 1.12 0.21 0.56 28 24.36 117.97 223.55 477.89 208.42 135.45 22.71 1.26 0.05 1.08 0.21 0.58 diff --git a/tests/test05/HSPFresults/test05.ech b/tests/test05/HSPFresults/test05.ech index 05a1c74c..a673c51f 100644 --- a/tests/test05/HSPFresults/test05.ech +++ b/tests/test05/HSPFresults/test05.ech @@ -1,13 +1,13 @@ - FOUND RUN - FOUND END RUN + FOUND RUN + FOUND END RUN ************************************************************ * * * Hydrological Simulation Program - FORTRAN * * * ************************************************************ - + Developed for: Modified and Maintained by - + U.S. Environmental RESPEC, Inc. Protection Agency (605)394-6512 Office of Research email: hspf@respec.com @@ -17,47 +17,47 @@ Athens, Georgia (706)355-8400 email: ceam@epamail.epa.gov - + In cooperation with: - + U.S. Geological Survey Release 12.5 Water Resources Discipline September 2018 Office of Surface Water Reston, Virginia email: h2osoft@usgs.gov - - + + Start of Job - + PREPROCESSING USERS CONTROL INPUT. - + SEARCHING FOR BOUNDARIES OF NEXT DATA SET IN USERS CONTROL INPUT. - - FOUND RUN - FOUND END RUN - + + FOUND RUN + FOUND END RUN + INTERPRETING RUN DATA SET IN USERS CONTROL INPUT - - FOUND GLOBAL - FOUND END GLOBAL - FOUND FILES - FOUND END FILES + + FOUND GLOBAL + FOUND END GLOBAL + FOUND FILES + FOUND END FILES FOUND OPN SEQUENCE FOUND END OPN SEQUENCE - FOUND PERLND - FOUND END PERLND - FOUND DISPLY - FOUND END DISPLY - FOUND COPY - FOUND END COPY - FOUND PLTGEN - FOUND END PLTGEN - FOUND EXT SOURCES - FOUND END EXT SOURCES - FOUND NETWORK - FOUND END NETWORK - - + FOUND PERLND + FOUND END PERLND + FOUND DISPLY + FOUND END DISPLY + FOUND COPY + FOUND END COPY + FOUND PLTGEN + FOUND END PLTGEN + FOUND EXT SOURCES + FOUND END EXT SOURCES + FOUND NETWORK + FOUND END NETWORK + + ==================================================================================================================================== PROCESSING GLOBAL BLOCK @@ -69,36 +69,36 @@ RUN INTERPRETER OUTPUT LEVEL HAS BEEN SET TO: 3 RUNTIME SPECIAL ACTION OUTPUT LEVEL HAS BEEN SET TO: 2 - + SYSTEM HAS BEEN ASKED TO INTERPRET AND EXECUTE THE RUN. RUNFG = 1 THE UNIT SYSTEM OF THE RUN WILL BE ENGLISH. EMFG = 1 - + FINISHED PROCESSING GLOBAL BLOCK ==================================================================================================================================== - + ==================================================================================================================================== CATEGORY BLOCK NOT FOUND - + FINISHED PROCESSING CATEGORY BLOCK ==================================================================================================================================== - + ==================================================================================================================================== PROCESSING OPN SEQUENCE BLOCK - - + + USERS CONTROL INPUT IS: - OPN SEQUENCE - INGRP INDELT 00:30 - PERLND 1 - PERLND 2 - PERLND 3 - COPY 1 - COPY 2 - COPY 3 - DISPLY 1 - PLTGEN 1 - END INGRP - END OPN SEQUENCE + OPN SEQUENCE + INGRP INDELT 00:30 + PERLND 1 + PERLND 2 + PERLND 3 + COPY 1 + COPY 2 + COPY 3 + DISPLY 1 + PLTGEN 1 + END INGRP + END OPN SEQUENCE FINISHED PROCESSING OPN SEQUENCE BLOCK ==================================================================================================================================== @@ -110,18 +110,18 @@ PROCESSING PERVIOUS LAND-SEGMENT NO: 1 TIME STEP(DELT): 30 MINS PROCESSING GENERAL INPUT - + AIRTFG SNOWFG PWATFG SEDFG PSTFG PWGFG PQALFG MSTLFG PESTFG NITRFG PHOSFG TRACFG 0 1 1 0 0 0 0 0 0 0 0 0 - + Printout level flags Print-ivl Print-yrend ATEMP SNOW PWAT SED PSTMP PWTG RQAL MSTL PEST NITR PHOS TRAC PIVL PYREND 4 4 4 4 4 4 4 4 4 4 4 4 1 12 - + Binary Output level flags Print-ivl Print-yrend ATEMP SNOW PWAT SED PSTMP PWTG RQAL MSTL PEST NITR PHOS TRAC PIVL PYREND 4 4 4 4 4 4 4 4 4 4 4 4 1 12 - + Perv Land-segment id Unit systems Print-file nos BinaryOutfileNos IUNITS OUNITS English Metric English Metric BEANS 1 1 1 0 93 0 @@ -130,25 +130,25 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION SNOW - + ICEFG 1 - + SNOPFG VMKFG 0 0 - + LAT MELEV SHADE SNOWCF COVIND KMELT TBASE degrees (ft) (in) (in/d.F) (F) 43. 1225. 0.0 1.45 0.5 0.00 32.0 - + RDCSN TSNOW SNOEVP CCFACT MWATER MGMELT (deg F) (in/day) 0.12 32. 0.05 0.5 0.08 0.0001 - + Pack-snow Pack-ice Pack-watr RDENPF DULL PAKTMP (in) (in) (in) (deg F) 1.4 0.2 0.1 0.2 375. 27.5 - + COVINX XLNMLT SKYCLR (in) (in) 0.50 0.0 1.0 @@ -157,42 +157,42 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION PWATER - + CSNOFG RTOPFG UZFG VCSFG VUZFG VNNFG VIFWFG VIRCFG VLEFG IFFCFG HWTFG IRRGFG IFRDFG NCANPY 1 0 0 1 1 1 0 0 1 1 0 0 0 0 - + FOREST LZSN INFILT LSUR SLSUR KVARY AGWRC (inches) (in/hr) (feet) (1/inches) (1/day) 0.000 8.0 0.100 350. 0.010 0.5 0.98 - + PETMAX PETMIN INFEXP INFILD DEEPFR BASETP AGWETP (degF) (degF) 40. 35. 2.0 2.0 0.10 0.0 0.08 - + CEPSC UZSN NSUR INTFW IRC LZETP (inches) (inches)(nManning) (1/day) 0.00 0.01 0.1 1.0 0.60 0.00 - + FZG FZGL (/in) 1.00 0.100 - + Values of Interception Storage at start of each calendar month (inches): JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.04 0.04 0.03 0.03 0.03 0.03 0.10 0.17 0.19 0.14 0.05 0.04 - + Values of Upper Zone Storage at start of each calendar month (inches): JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.4 0.4 0.4 0.4 1.6 1.1 1.1 1.3 1.3 1.3 1.1 0.9 - + Values of Manning's N at start of each calendar month: JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.30 0.30 0.30 0.30 0.27 0.25 0.25 0.25 0.25 0.25 0.35 0.33 - + Values of Lower Zone ET at start of each calendar month: JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.20 0.20 0.20 0.23 0.23 0.25 0.60 0.80 0.75 0.50 0.30 0.20 - + Segment-wide storages (inches): CEPS SURS UZS IFWS LZS AGWS GWVS 0.05 0.0 0.15 0.0 4.0 0.05 0.05 @@ -207,18 +207,18 @@ PROCESSING PERVIOUS LAND-SEGMENT NO: 2 TIME STEP(DELT): 30 MINS PROCESSING GENERAL INPUT - + AIRTFG SNOWFG PWATFG SEDFG PSTFG PWGFG PQALFG MSTLFG PESTFG NITRFG PHOSFG TRACFG 0 1 1 0 0 0 0 0 0 0 0 0 - + Printout level flags Print-ivl Print-yrend ATEMP SNOW PWAT SED PSTMP PWTG RQAL MSTL PEST NITR PHOS TRAC PIVL PYREND 4 4 4 4 4 4 4 4 4 4 4 4 1 12 - + Binary Output level flags Print-ivl Print-yrend ATEMP SNOW PWAT SED PSTMP PWTG RQAL MSTL PEST NITR PHOS TRAC PIVL PYREND 4 4 4 4 4 4 4 4 4 4 4 4 1 12 - + Perv Land-segment id Unit systems Print-file nos BinaryOutfileNos IUNITS OUNITS English Metric English Metric CORN 1 1 1 0 93 0 @@ -227,25 +227,25 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION SNOW - + ICEFG 1 - + SNOPFG VMKFG 0 0 - + LAT MELEV SHADE SNOWCF COVIND KMELT TBASE degrees (ft) (in) (in/d.F) (F) 43. 1225. 0.0 1.45 0.5 0.00 32.0 - + RDCSN TSNOW SNOEVP CCFACT MWATER MGMELT (deg F) (in/day) 0.12 32. 0.05 0.5 0.08 0.0001 - + Pack-snow Pack-ice Pack-watr RDENPF DULL PAKTMP (in) (in) (in) (deg F) 1.4 0.2 0.1 0.2 375. 27.5 - + COVINX XLNMLT SKYCLR (in) (in) 0.50 0.0 1.0 @@ -254,42 +254,42 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION PWATER - + CSNOFG RTOPFG UZFG VCSFG VUZFG VNNFG VIFWFG VIRCFG VLEFG IFFCFG HWTFG IRRGFG IFRDFG NCANPY 1 0 0 1 1 1 0 0 1 1 0 0 0 0 - + FOREST LZSN INFILT LSUR SLSUR KVARY AGWRC (inches) (in/hr) (feet) (1/inches) (1/day) 0.000 8.0 0.100 350. 0.010 0.5 0.98 - + PETMAX PETMIN INFEXP INFILD DEEPFR BASETP AGWETP (degF) (degF) 40. 35. 2.0 2.0 0.10 0.0 0.08 - + CEPSC UZSN NSUR INTFW IRC LZETP (inches) (inches)(nManning) (1/day) 0.00 0.01 0.1 1.0 0.60 0.00 - + FZG FZGL (/in) 1.00 0.100 - + Values of Interception Storage at start of each calendar month (inches): JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.12 0.12 0.12 0.12 0.05 0.08 0.14 0.19 0.20 0.15 0.13 0.13 - + Values of Upper Zone Storage at start of each calendar month (inches): JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.4 0.4 0.4 0.4 1.4 1.0 1.0 1.2 1.2 1.2 1.0 0.9 - + Values of Manning's N at start of each calendar month: JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.30 0.30 0.30 0.30 0.27 0.25 0.25 0.25 0.25 0.25 0.35 0.33 - + Values of Lower Zone ET at start of each calendar month: JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.20 0.20 0.20 0.23 0.23 0.25 0.60 0.80 0.75 0.50 0.30 0.20 - + Segment-wide storages (inches): CEPS SURS UZS IFWS LZS AGWS GWVS 0.10 0.0 0.10 0.0 4.0 0.05 0.05 @@ -304,18 +304,18 @@ PROCESSING PERVIOUS LAND-SEGMENT NO: 3 TIME STEP(DELT): 30 MINS PROCESSING GENERAL INPUT - + AIRTFG SNOWFG PWATFG SEDFG PSTFG PWGFG PQALFG MSTLFG PESTFG NITRFG PHOSFG TRACFG 0 1 1 0 0 0 0 0 0 0 0 0 - + Printout level flags Print-ivl Print-yrend ATEMP SNOW PWAT SED PSTMP PWTG RQAL MSTL PEST NITR PHOS TRAC PIVL PYREND 4 4 4 4 4 4 4 4 4 4 4 4 1 12 - + Binary Output level flags Print-ivl Print-yrend ATEMP SNOW PWAT SED PSTMP PWTG RQAL MSTL PEST NITR PHOS TRAC PIVL PYREND 4 4 4 4 4 4 4 4 4 4 4 4 1 12 - + Perv Land-segment id Unit systems Print-file nos BinaryOutfileNos IUNITS OUNITS English Metric English Metric OTHER 1 1 1 0 93 0 @@ -324,25 +324,25 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION SNOW - + ICEFG 1 - + SNOPFG VMKFG 0 0 - + LAT MELEV SHADE SNOWCF COVIND KMELT TBASE degrees (ft) (in) (in/d.F) (F) 43. 1225. 0.0 1.45 0.5 0.00 32.0 - + RDCSN TSNOW SNOEVP CCFACT MWATER MGMELT (deg F) (in/day) 0.12 32. 0.05 0.5 0.08 0.0001 - + Pack-snow Pack-ice Pack-watr RDENPF DULL PAKTMP (in) (in) (in) (deg F) 1.4 0.2 0.1 0.2 375. 27.5 - + COVINX XLNMLT SKYCLR (in) (in) 0.50 0.0 1.0 @@ -351,42 +351,42 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION PWATER - + CSNOFG RTOPFG UZFG VCSFG VUZFG VNNFG VIFWFG VIRCFG VLEFG IFFCFG HWTFG IRRGFG IFRDFG NCANPY 1 0 0 1 1 1 0 0 1 1 0 0 0 0 - + FOREST LZSN INFILT LSUR SLSUR KVARY AGWRC (inches) (in/hr) (feet) (1/inches) (1/day) 0.010 9.0 0.150 350. 0.010 0.5 0.98 - + PETMAX PETMIN INFEXP INFILD DEEPFR BASETP AGWETP (degF) (degF) 40. 35. 2.0 2.0 0.10 0.0 0.08 - + CEPSC UZSN NSUR INTFW IRC LZETP (inches) (inches)(nManning) (1/day) 0.00 0.01 0.1 1.2 0.80 0.00 - + FZG FZGL (/in) 1.00 0.100 - + Values of Interception Storage at start of each calendar month (inches): JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.06 0.06 0.06 0.07 0.07 0.08 0.10 0.10 0.10 0.10 0.07 0.06 - + Values of Upper Zone Storage at start of each calendar month (inches): JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.8 0.8 0.8 0.8 1.4 1.6 1.6 1.6 1.6 1.6 1.3 1.1 - + Values of Manning's N at start of each calendar month: JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.30 0.30 0.30 0.30 0.30 0.30 0.30 0.30 0.30 0.30 0.30 0.30 - + Values of Lower Zone ET at start of each calendar month: JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.25 0.25 0.25 0.25 0.30 0.35 0.40 0.40 0.45 0.35 0.30 0.25 - + Segment-wide storages (inches): CEPS SURS UZS IFWS LZS AGWS GWVS 0.05 0.0 0.30 0.0 6.5 0.15 0.10 @@ -405,11 +405,11 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PROCESSING DISPLY OPERATION NO. 1 TIME INTERVAL 30 MINS - + Title of display Transform Data for short-span display Data for long-span display code PIVL Digits File-no. PYRFG Digits File-no. PYREND SIMULATED FLOW (CFS) AVER 0 4 1 2 62 12 - + Convert DegC to F Display negative data A B THRSH1 THRSH2 1.00 0.00 0.00 0.00 @@ -425,7 +425,7 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PROCESSING COPY OPERATION NO. 1 - + NPT NMN 0 1 @@ -434,7 +434,7 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PROCESSING COPY OPERATION NO. 2 - + NPT NMN 0 1 @@ -443,7 +443,7 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PROCESSING COPY OPERATION NO. 3 - + NPT NMN 0 1 @@ -458,28 +458,28 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PROCESSING PLTGEN OPERATION NO. 1 - + PLOTFL NPT NMN LABLFG PYREND PIVL TYPEFG 92 0 4 0 9 24 1 - + General plot title: Y-axis label: - SIMULATED FLOW CFS - + SIMULATED FLOW CFS + YMIN YMAX IVLIN THRESH (ivl/in) 0. 1500. 20.-1.000E+30 - + Curve label: LINTYP INTEQ COLCOD TRAN - 0 0 0 - + 0 0 0 + Curve label: LINTYP INTEQ COLCOD TRAN - 0 0 0 - + 0 0 0 + Curve label: LINTYP INTEQ COLCOD TRAN - 0 0 0 - + 0 0 0 + Curve label: LINTYP INTEQ COLCOD TRAN - 0 0 0 + 0 0 0 FINISHED PROCESSING PLTGEN OPERATION NO. 1 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ @@ -506,7 +506,7 @@ INPUT TIMESERIES FROM EXTERNAL SOURCES - TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 + TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 WDM1 39 60 DIV 1.000E+00 EXTNL PREC 1 1 WDM1 123 120 SAME 1.000E+00 ATEMP AIRTMP 1 1 @@ -518,7 +518,7 @@ OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 PWATER AGWO 1 1 1.220E+05 COPY 1 INPUT MEAN 1 1 PWATER IFWO 1 1 1.220E+05 COPY 2 INPUT MEAN 1 1 @@ -532,7 +532,7 @@ INPUT TIMESERIES FROM EXTERNAL SOURCES - TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 + TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 WDM1 39 60 DIV 1.000E+00 EXTNL PREC 1 1 WDM1 123 120 SAME 1.000E+00 ATEMP AIRTMP 1 1 @@ -544,7 +544,7 @@ OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 PWATER AGWO 1 1 1.762E+05 COPY 1 INPUT MEAN 1 1 PWATER IFWO 1 1 1.762E+05 COPY 2 INPUT MEAN 1 1 @@ -558,7 +558,7 @@ INPUT TIMESERIES FROM EXTERNAL SOURCES - TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 + TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 WDM1 131 60 DIV 1.000E+00 EXTNL PREC 1 1 WDM1 122 120 SAME 1.000E+00 ATEMP AIRTMP 1 1 @@ -570,7 +570,7 @@ OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 PWATER AGWO 1 1 7.550E+04 COPY 1 INPUT MEAN 1 1 PWATER IFWO 1 1 7.550E+04 COPY 2 INPUT MEAN 1 1 @@ -584,7 +584,7 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 PERLND 1 PWATER AGWO 1 1 1.220E+05 INPUT MEAN 1 1 PERLND 2 PWATER AGWO 1 1 1.762E+05 INPUT MEAN 1 1 @@ -593,7 +593,7 @@ OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 OUTPUT MEAN 1 1 1.000E+00 COPY 2 INPUT MEAN 1 1 OUTPUT MEAN 1 1 1.000E+00 PLTGEN 1 INPUT MEAN 1 1 @@ -606,7 +606,7 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 PERLND 1 PWATER IFWO 1 1 1.220E+05 INPUT MEAN 1 1 PERLND 2 PWATER IFWO 1 1 1.762E+05 INPUT MEAN 1 1 @@ -616,7 +616,7 @@ OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 OUTPUT MEAN 1 1 1.000E+00 PLTGEN 1 INPUT MEAN 2 1 @@ -628,7 +628,7 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 PERLND 1 PWATER PERO 1 1 1.220E+05 INPUT MEAN 1 1 PERLND 2 PWATER PERO 1 1 1.762E+05 INPUT MEAN 1 1 @@ -637,7 +637,7 @@ OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 OUTPUT MEAN 1 1 1.000E+00 DISPLY 1 INPUT TIMSER 1 1 OUTPUT MEAN 1 1 1.000E+00 PLTGEN 1 INPUT MEAN 3 1 @@ -650,7 +650,7 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 COPY 3 OUTPUT MEAN 1 1 1.000E+00 INPUT TIMSER 1 1 @@ -662,12 +662,12 @@ INPUT TIMESERIES FROM EXTERNAL SOURCES - TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 + TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 WDM1 136 1440 SAME 1.000E+00 INPUT MEAN 4 1 FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 COPY 1 OUTPUT MEAN 1 1 1.000E+00 INPUT MEAN 1 1 COPY 2 OUTPUT MEAN 1 1 1.000E+00 INPUT MEAN 2 1 @@ -675,10 +675,10 @@ FINISHED PROCESSING BLOCKS CONTAINING TIME SERIES LINKAGES ==================================================================================================================================== - + INTERPRETATION OF RUN DATA SET COMPLETE - + COMMENCING EXECUTION - + End of Job diff --git a/tests/test05/HSPFresults/test05.p92 b/tests/test05/HSPFresults/test05.p92 index 9d63ad81..754ccbfc 100644 --- a/tests/test05/HSPFresults/test05.p92 +++ b/tests/test05/HSPFresults/test05.p92 @@ -2,10 +2,10 @@ SIMU HSPF FILE FOR DRIVING SEPARATE PLOT PROGRAM SIMU Time interval: 720 mins Last month in printout year: 9 SIMU No. of curves plotted: Point-valued: 0 Mean-valued: 4 Total 4 SIMU Label flag: 0 Pivl: 24 Idelt: 30 -SIMU Plot title: SIMULATED FLOW -SIMU Y-axis label: CFS +SIMU Plot title: SIMULATED FLOW +SIMU Y-axis label: CFS SIMU Scale info: Ymin: 0.0000 Threshold:-0.10000E+31 -SIMU Ymax: 1500.0 +SIMU Ymax: 1500.0 SIMU Time: 20.000 intervals/inch SIMU Data for each curve (Point-valued first, then mean-valued): SIMU Label LINTYP INTEQ COLCOD TRAN TRANCOD @@ -24,735 +24,735 @@ SIMU SIMU Date/time Values SIMU SIMU 1975 12 31 24 0-1.0000000E+30-1.0000000E+30-1.0000000E+30-1.0000000E+30 -SIMU 1976 1 1 12 0 273.7137 273.7137 274.1314 360.0000 -SIMU 1976 1 1 24 0 270.9065 270.9065 270.9065 360.0000 -SIMU 1976 1 2 12 0 267.8203 267.8203 267.8203 360.0000 -SIMU 1976 1 2 24 0 265.0379 265.0379 265.0379 360.0000 -SIMU 1976 1 3 12 0 262.0291 262.0291 262.0291 360.0000 -SIMU 1976 1 3 24 0 259.3096 259.3096 259.3096 360.0000 -SIMU 1976 1 4 12 0 256.3756 256.3756 256.3756 384.0000 -SIMU 1976 1 4 24 0 253.7173 253.7173 253.7173 384.0000 -SIMU 1976 1 5 12 0 250.8562 250.8562 250.8562 384.0000 -SIMU 1976 1 5 24 0 248.2574 248.2574 248.2574 384.0000 -SIMU 1976 1 6 12 0 245.4668 245.4668 245.4668 408.0000 -SIMU 1976 1 6 24 0 242.9262 242.9262 242.9262 408.0000 -SIMU 1976 1 7 12 0 240.2040 240.2040 240.2040 432.0000 -SIMU 1976 1 7 24 0 237.7201 237.7201 237.7201 432.0000 -SIMU 1976 1 8 12 0 235.0643 235.0643 235.0643 432.0000 -SIMU 1976 1 8 24 0 232.6355 232.6355 232.6355 432.0000 -SIMU 1976 1 9 12 0 230.0442 230.0442 230.0442 456.0000 -SIMU 1976 1 9 24 0 227.6693 227.6693 227.6693 456.0000 -SIMU 1976 1 10 12 0 225.1406 225.1406 225.1406 456.0000 -SIMU 1976 1 10 24 0 222.8182 222.8182 222.8182 456.0000 -SIMU 1976 1 11 12 0 220.3504 220.3504 220.3504 480.0000 -SIMU 1976 1 11 24 0 220.3348 220.3348 220.6296 480.0000 -SIMU 1976 1 12 12 0 218.7653 218.7653 218.7653 480.0000 -SIMU 1976 1 12 24 0 223.9155 223.9155 227.5199 480.0000 -SIMU 1976 1 13 12 0 224.2073 224.2073 229.0978 480.0000 -SIMU 1976 1 13 24 0 250.5231 250.5231 259.6499 480.0000 -SIMU 1976 1 14 12 0 250.1501 250.1501 251.4268 504.0000 -SIMU 1976 1 14 24 0 282.6879 283.4876 301.6508 504.0000 -SIMU 1976 1 15 12 0 285.4275 286.2410 286.2409 504.0000 -SIMU 1976 1 15 24 0 303.7103 304.4379 323.1508 504.0000 -SIMU 1976 1 16 12 0 305.7707 306.4214 306.4214 504.0000 -SIMU 1976 1 16 24 0 302.5865 303.1686 303.1686 504.0000 -SIMU 1976 1 17 12 0 299.1237 299.6443 299.6443 504.0000 -SIMU 1976 1 17 24 0 296.0120 296.4777 296.4777 504.0000 -SIMU 1976 1 18 12 0 292.6365 293.0529 293.0529 504.0000 -SIMU 1976 1 18 24 0 293.6567 294.1086 294.9831 504.0000 -SIMU 1976 1 19 12 0 291.2049 291.6229 291.6229 504.0000 -SIMU 1976 1 19 24 0 288.1777 288.5516 288.5516 504.0000 -SIMU 1976 1 20 12 0 284.8995 285.2339 285.2339 480.0000 -SIMU 1976 1 20 24 0 287.3622 287.6613 291.0746 480.0000 -SIMU 1976 1 21 12 0 285.6196 285.8871 285.8871 480.0000 -SIMU 1976 1 21 24 0 282.6551 282.8944 282.8944 480.0000 -SIMU 1976 1 22 12 0 279.8778 280.1126 285.2809 480.0000 -SIMU 1976 1 22 24 0 323.7802 324.8535 344.2205 480.0000 -SIMU 1976 1 23 12 0 326.0203 327.0487 340.6180 480.0000 -SIMU 1976 1 23 24 0 395.8738 397.3109 443.0800 480.0000 -SIMU 1976 1 24 12 0 401.3105 402.6367 402.6367 480.0000 -SIMU 1976 1 24 24 0 418.1101 419.2964 433.0610 480.0000 -SIMU 1976 1 25 12 0 416.4763 417.5373 417.5374 480.0000 -SIMU 1976 1 25 24 0 413.9085 414.8574 415.4517 480.0000 -SIMU 1976 1 26 12 0 410.0617 410.9106 426.1584 480.0000 -SIMU 1976 1 26 24 0 458.6590 459.5100 486.1920 480.0000 -SIMU 1976 1 27 12 0 458.6625 459.4549 463.1353 480.0000 -SIMU 1976 1 27 24 0 492.3941 494.8919 509.0454 480.0000 -SIMU 1976 1 28 12 0 492.6601 495.1029 497.4737 480.0000 -SIMU 1976 1 28 24 0 579.1383 589.1035 671.5825 480.0000 -SIMU 1976 1 29 12 0 594.1650 603.9413 634.2453 480.0000 -SIMU 1976 1 29 24 0 713.1340 729.8587 779.6940 480.0000 -SIMU 1976 1 30 12 0 716.6623 730.6788 730.6788 480.0000 -SIMU 1976 1 30 24 0 708.8400 720.0978 720.0978 480.0000 -SIMU 1976 1 31 12 0 699.4521 708.5308 708.5308 456.0000 -SIMU 1976 1 31 24 0 691.8361 699.1887 699.1887 456.0000 -SIMU 1976 2 1 12 0 682.7362 688.7186 688.7186 456.0000 -SIMU 1976 2 1 24 0 682.3723 687.6998 691.6342 456.0000 -SIMU 1976 2 2 12 0 674.7304 679.1472 679.1481 456.0000 -SIMU 1976 2 2 24 0 667.4161 671.0426 671.0426 456.0000 -SIMU 1976 2 3 12 0 658.8010 661.4517 661.4517 432.0000 -SIMU 1976 2 3 24 0 651.6752 652.9003 652.9003 432.0000 -SIMU 1976 2 4 12 0 643.2598 644.3555 644.3555 432.0000 -SIMU 1976 2 4 24 0 636.3148 637.2950 637.2950 432.0000 -SIMU 1976 2 5 12 0 628.1501 629.0268 629.0268 432.0000 -SIMU 1976 2 5 24 0 621.3827 622.1666 622.1666 432.0000 -SIMU 1976 2 6 12 0 613.5100 614.2114 614.2122 432.0000 -SIMU 1976 2 6 24 0 606.9158 607.5430 607.5430 432.0000 -SIMU 1976 2 7 12 0 599.2827 599.8436 599.8453 432.0000 -SIMU 1976 2 7 24 0 621.5203 622.4725 642.5262 432.0000 -SIMU 1976 2 8 12 0 625.0670 626.0715 629.5871 456.0000 -SIMU 1976 2 8 24 0 701.7318 707.7177 755.4160 456.0000 -SIMU 1976 2 9 12 0 707.7151 713.3344 723.4707 480.0000 -SIMU 1976 2 9 24 0 763.7617 770.9675 783.5859 480.0000 -SIMU 1976 2 10 12 0 763.2811 769.2648 771.3387 480.0000 -SIMU 1976 2 10 24 0 777.2682 782.5706 784.9334 480.0000 -SIMU 1976 2 11 12 0 769.1977 773.4739 773.4739 504.0000 -SIMU 1976 2 11 24 0 760.8099 764.2403 764.2402 504.0000 -SIMU 1976 2 12 12 0 751.8317 754.6130 755.4594 528.0000 -SIMU 1976 2 12 24 0 754.6191 757.0453 757.6956 528.0000 -SIMU 1976 2 13 12 0 745.3438 746.0004 746.0004 576.0000 -SIMU 1976 2 13 24 0 737.2469 737.8109 737.8109 576.0000 -SIMU 1976 2 14 12 0 727.6096 728.1143 728.1143 600.0000 -SIMU 1976 2 14 24 0 722.0472 722.6774 743.1882 600.0000 -SIMU 1976 2 15 12 0 788.0955 794.2668 858.8982 648.0000 -SIMU 1976 2 15 24 0 885.9044 897.9026 907.8766 648.0000 -SIMU 1976 2 16 12 0 890.0539 900.4751 934.2605 696.0000 -SIMU 1976 2 16 24 0 1147.188 1252.002 1393.779 696.0000 -SIMU 1976 2 17 12 0 1160.643 1247.780 1247.780 744.0000 -SIMU 1976 2 17 24 0 1147.576 1215.721 1215.721 744.0000 -SIMU 1976 2 18 12 0 1130.966 1184.332 1184.332 840.0000 -SIMU 1976 2 18 24 0 1118.276 1160.133 1160.133 840.0000 -SIMU 1976 2 19 12 0 1102.644 1135.538 1135.871 768.0000 -SIMU 1976 2 19 24 0 1098.210 1124.220 1124.789 768.0000 -SIMU 1976 2 20 12 0 1083.811 1104.346 1104.346 744.0000 -SIMU 1976 2 20 24 0 1159.870 1188.142 1446.803 744.0000 -SIMU 1976 2 21 12 0 1393.915 1445.009 1445.009 672.0000 -SIMU 1976 2 21 24 0 1378.056 1417.898 1417.898 672.0000 -SIMU 1976 2 22 12 0 1357.451 1388.551 1388.552 600.0000 -SIMU 1976 2 22 24 0 1342.063 1366.365 1366.365 600.0000 -SIMU 1976 2 23 12 0 1322.182 1341.198 1341.199 768.0000 -SIMU 1976 2 23 24 0 1344.435 1360.949 1373.761 768.0000 -SIMU 1976 2 24 12 0 1352.014 1366.486 1420.828 840.0000 -SIMU 1976 2 24 24 0 1631.467 1664.786 1760.583 840.0000 -SIMU 1976 2 25 12 0 1645.186 1673.444 1679.449 672.0000 -SIMU 1976 2 25 24 0 1719.133 1743.396 1751.933 672.0000 -SIMU 1976 2 26 12 0 1729.574 1751.620 1863.471 576.0000 -SIMU 1976 2 26 24 0 2145.076 2203.090 2354.557 576.0000 -SIMU 1976 2 27 12 0 2196.134 2248.779 2387.094 624.0000 -SIMU 1976 2 27 24 0 2647.731 2741.445 2875.384 624.0000 -SIMU 1976 2 28 12 0 2666.097 2744.970 2776.679 648.0000 -SIMU 1976 2 28 24 0 2796.178 2866.075 2885.736 648.0000 -SIMU 1976 2 29 12 0 2757.730 2812.425 2812.425 696.0000 -SIMU 1976 2 29 24 0 2724.651 2767.139 2767.139 696.0000 -SIMU 1976 3 1 12 0 2674.779 2707.797 2707.797 600.0000 -SIMU 1976 3 1 24 0 2642.787 2668.460 2668.460 600.0000 -SIMU 1976 3 2 12 0 2594.898 2614.871 2614.871 576.0000 -SIMU 1976 3 2 24 0 2563.970 2579.518 2579.518 576.0000 -SIMU 1976 3 3 12 0 2517.981 2530.094 2530.094 696.0000 -SIMU 1976 3 3 24 0 2488.078 2497.523 2497.523 696.0000 -SIMU 1976 3 4 12 0 2443.906 2451.277 2451.277 840.0000 -SIMU 1976 3 4 24 0 2414.992 2420.751 2420.751 840.0000 -SIMU 1976 3 5 12 0 2372.557 2377.063 2377.063 840.0000 -SIMU 1976 3 5 24 0 2344.595 2348.125 2348.125 840.0000 -SIMU 1976 3 6 12 0 2304.067 2306.842 2307.754 816.0000 -SIMU 1976 3 6 24 0 2312.121 2314.444 2319.128 816.0000 -SIMU 1976 3 7 12 0 2282.915 2284.728 2290.749 768.0000 -SIMU 1976 3 7 24 0 2389.728 2393.710 2416.441 768.0000 -SIMU 1976 3 8 12 0 2375.829 2379.557 2379.557 744.0000 -SIMU 1976 3 8 24 0 2356.251 2359.478 2361.091 744.0000 -SIMU 1976 3 9 12 0 2324.133 2326.993 2343.137 720.0000 -SIMU 1976 3 9 24 0 2533.496 2546.324 2598.988 720.0000 -SIMU 1976 3 10 12 0 2527.951 2539.621 2544.238 720.0000 -SIMU 1976 3 10 24 0 2575.119 2585.723 2589.015 720.0000 -SIMU 1976 3 11 12 0 2542.523 2551.394 2573.140 744.0000 -SIMU 1976 3 11 24 0 3130.838 3325.532 3639.246 744.0000 -SIMU 1976 3 12 12 0 3977.998 4697.345 4755.904 2400.000 -SIMU 1976 3 12 24 0 4568.944 6110.023 6294.532 2400.000 -SIMU 1976 3 13 12 0 4675.457 5991.283 6018.238 9600.000 -SIMU 1976 3 13 24 0 5412.477 6752.256 6779.295 9600.000 -SIMU 1976 3 14 12 0 5441.626 6522.768 6578.951 11520.00 -SIMU 1976 3 14 24 0 6084.311 7198.646 7206.401 11520.00 -SIMU 1976 3 15 12 0 6067.787 6967.828 7024.758 7200.000 -SIMU 1976 3 15 24 0 6255.849 6990.056 7098.378 7200.000 -SIMU 1976 3 16 12 0 6220.770 6828.191 6856.617 5520.000 -SIMU 1976 3 16 24 0 7004.281 7778.937 7943.517 5520.000 -SIMU 1976 3 17 12 0 6931.859 7551.336 7641.298 4512.000 -SIMU 1976 3 17 24 0 7275.872 7853.927 8075.415 4512.000 -SIMU 1976 3 18 12 0 7215.516 7689.605 7997.244 4464.000 -SIMU 1976 3 18 24 0 7592.294 8056.001 8200.375 4464.000 -SIMU 1976 3 19 12 0 7459.372 7824.978 7833.936 4920.000 -SIMU 1976 3 19 24 0 7421.499 7710.471 7721.106 4920.000 -SIMU 1976 3 20 12 0 7246.257 7471.947 7471.947 5472.000 -SIMU 1976 3 20 24 0 7149.289 7325.435 7325.435 5472.000 -SIMU 1976 3 21 12 0 6973.513 7111.144 7111.143 5016.000 -SIMU 1976 3 21 24 0 6878.085 6985.757 6985.757 5016.000 -SIMU 1976 3 22 12 0 6709.121 6793.473 6793.473 3768.000 -SIMU 1976 3 22 24 0 6614.783 6680.972 6680.972 3768.000 -SIMU 1976 3 23 12 0 6451.173 6503.203 6503.203 3000.000 -SIMU 1976 3 23 24 0 6358.853 6399.835 6399.835 3000.000 -SIMU 1976 3 24 12 0 6200.556 6232.910 6232.910 2592.000 -SIMU 1976 3 24 24 0 6108.588 6134.192 6134.193 2592.000 -SIMU 1976 3 25 12 0 5955.584 5975.905 5975.905 2496.000 -SIMU 1976 3 25 24 0 5865.451 5881.626 5881.626 2496.000 -SIMU 1976 3 26 12 0 5724.800 5737.979 5741.190 2280.000 -SIMU 1976 3 26 24 0 5715.033 5728.673 5749.997 2280.000 -SIMU 1976 3 27 12 0 5612.880 5625.292 5625.292 4008.000 -SIMU 1976 3 27 24 0 5530.031 5540.180 5540.180 4008.000 -SIMU 1976 3 28 12 0 5394.651 5402.991 5402.991 4152.000 -SIMU 1976 3 28 24 0 5317.143 5324.122 5327.223 4152.000 -SIMU 1976 3 29 12 0 5324.132 5335.811 5367.000 3336.000 -SIMU 1976 3 29 24 0 5782.515 6035.415 6549.230 3336.000 -SIMU 1976 3 30 12 0 7224.028 9555.914 9767.674 5976.000 -SIMU 1976 3 30 24 0 7472.900 9480.323 9480.323 5976.000 -SIMU 1976 3 31 12 0 7316.518 8884.538 8884.539 15264.00 -SIMU 1976 3 31 24 0 7238.360 8464.639 8464.639 15264.00 -SIMU 1976 4 1 12 0 7075.693 8036.026 8036.025 19440.00 -SIMU 1976 4 1 24 0 6987.918 7741.145 7741.146 19440.00 -SIMU 1976 4 2 12 0 6814.303 7406.119 7406.119 15384.00 -SIMU 1976 4 2 24 0 6706.199 7172.103 7172.103 15384.00 -SIMU 1976 4 3 12 0 6523.954 6891.536 6891.536 9432.000 -SIMU 1976 4 3 24 0 6412.716 6703.433 6703.432 9432.000 -SIMU 1976 4 4 12 0 6241.489 6472.034 6472.034 7104.000 -SIMU 1976 4 4 24 0 6134.128 6317.496 6317.497 7104.000 -SIMU 1976 4 5 12 0 5965.509 6111.832 6111.831 5928.000 -SIMU 1976 4 5 24 0 5856.542 5973.715 5973.715 5928.000 -SIMU 1976 4 6 12 0 5690.369 5784.559 5784.559 5280.000 -SIMU 1976 4 6 24 0 5581.546 5657.571 5657.572 5280.000 -SIMU 1976 4 7 12 0 5417.036 5478.667 5478.667 4680.000 -SIMU 1976 4 7 24 0 5307.307 5357.499 5357.499 4680.000 -SIMU 1976 4 8 12 0 5159.871 5200.943 5200.944 4152.000 -SIMU 1976 4 8 24 0 5050.623 5084.400 5084.399 4152.000 -SIMU 1976 4 9 12 0 4908.787 4936.705 4936.705 3816.000 -SIMU 1976 4 9 24 0 4812.399 4835.593 4835.593 3816.000 -SIMU 1976 4 10 12 0 4655.151 4674.522 4674.522 3528.000 -SIMU 1976 4 10 24 0 4527.910 4544.170 4544.170 3528.000 -SIMU 1976 4 11 12 0 4396.500 4410.582 4413.267 3408.000 -SIMU 1976 4 11 24 0 4302.192 4314.207 4314.207 3408.000 -SIMU 1976 4 12 12 0 4188.302 4198.553 4198.553 3072.000 -SIMU 1976 4 12 24 0 4096.929 4105.714 4105.714 3072.000 -SIMU 1976 4 13 12 0 3968.454 3975.816 3975.816 2832.000 -SIMU 1976 4 13 24 0 3858.228 3864.146 3864.147 2832.000 -SIMU 1976 4 14 12 0 3732.158 3736.671 3736.671 2760.000 -SIMU 1976 4 14 24 0 3713.524 3763.240 3847.532 2760.000 -SIMU 1976 4 15 12 0 4213.024 4442.344 4496.130 2736.000 -SIMU 1976 4 15 24 0 4250.309 4440.435 4440.435 2736.000 -SIMU 1976 4 16 12 0 4128.880 4279.158 4279.159 2640.000 -SIMU 1976 4 16 24 0 4015.025 4134.121 4134.122 2640.000 -SIMU 1976 4 17 12 0 4162.041 4388.927 4478.631 2712.000 -SIMU 1976 4 17 24 0 5332.612 6024.311 6146.051 2712.000 -SIMU 1976 4 18 12 0 7164.555 10746.90 11595.92 3960.000 -SIMU 1976 4 18 24 0 7628.225 11163.71 11163.71 3960.000 -SIMU 1976 4 19 12 0 7486.661 10410.07 10410.07 5832.000 -SIMU 1976 4 19 24 0 7403.147 9832.930 9832.930 5832.000 -SIMU 1976 4 20 12 0 7221.528 9252.327 9256.658 6192.000 -SIMU 1976 4 20 24 0 8600.985 11659.31 11828.30 6192.000 -SIMU 1976 4 21 12 0 9639.791 13331.55 13402.07 6000.000 -SIMU 1976 4 21 24 0 9924.361 13559.89 13559.89 6000.000 -SIMU 1976 4 22 12 0 9659.603 12586.00 12586.00 6192.000 -SIMU 1976 4 22 24 0 9506.230 11871.69 11871.69 6192.000 -SIMU 1976 4 23 12 0 9431.766 12162.72 13825.13 6120.000 -SIMU 1976 4 23 24 0 10365.31 15744.01 16081.51 6120.000 -SIMU 1976 4 24 12 0 10826.79 16290.42 16611.88 6768.000 -SIMU 1976 4 24 24 0 11493.72 16030.07 16058.38 6768.000 -SIMU 1976 4 25 12 0 11736.68 15501.91 15801.95 8952.000 -SIMU 1976 4 25 24 0 12024.70 15226.28 15226.28 8952.000 -SIMU 1976 4 26 12 0 11697.15 14233.31 14233.31 11664.00 -SIMU 1976 4 26 24 0 11519.66 13534.45 13534.45 11664.00 -SIMU 1976 4 27 12 0 11173.10 12778.73 12778.73 10896.00 -SIMU 1976 4 27 24 0 10975.75 12259.70 12259.70 10896.00 -SIMU 1976 4 28 12 0 10633.20 11663.72 11663.72 8832.000 -SIMU 1976 4 28 24 0 10444.50 11274.92 11274.92 8832.000 -SIMU 1976 4 29 12 0 10113.05 10785.08 10785.08 7512.000 -SIMU 1976 4 29 24 0 9910.364 10456.66 10456.66 7512.000 -SIMU 1976 4 30 12 0 9582.726 10028.91 10028.91 6864.000 -SIMU 1976 4 30 24 0 9389.166 9755.379 9755.379 6864.000 -SIMU 1976 5 1 12 0 9082.641 9384.731 9384.731 6432.000 -SIMU 1976 5 1 24 0 8901.657 9152.135 9152.135 6432.000 -SIMU 1976 5 2 12 0 9503.853 9853.097 9976.797 5928.000 -SIMU 1976 5 2 24 0 9716.493 10048.33 10048.33 5928.000 -SIMU 1976 5 3 12 0 9411.116 9680.611 9680.612 5400.000 -SIMU 1976 5 3 24 0 9216.255 9436.145 9436.145 5400.000 -SIMU 1976 5 4 12 0 8910.540 9090.828 9090.829 4944.000 -SIMU 1976 5 4 24 0 8723.168 8871.730 8871.730 4944.000 -SIMU 1976 5 5 12 0 8424.436 8547.482 8547.482 4536.000 -SIMU 1976 5 5 24 0 8232.727 8335.167 8335.166 4536.000 -SIMU 1976 5 6 12 0 7944.313 8030.040 8030.040 4344.000 -SIMU 1976 5 6 24 0 7758.746 7830.853 7830.853 4344.000 -SIMU 1976 5 7 12 0 7502.618 7563.573 7563.572 3912.000 -SIMU 1976 5 7 24 0 7343.863 7395.641 7395.641 3912.000 -SIMU 1976 5 8 12 0 7109.180 7153.368 7153.368 3720.000 -SIMU 1976 5 8 24 0 6952.368 6990.245 6990.245 3720.000 -SIMU 1976 5 9 12 0 6709.893 6742.497 6742.497 3576.000 -SIMU 1976 5 9 24 0 6544.151 6572.327 6572.327 3576.000 -SIMU 1976 5 10 12 0 6313.746 6338.182 6338.182 3456.000 -SIMU 1976 5 10 24 0 6163.176 6184.440 6184.440 3456.000 -SIMU 1976 5 11 12 0 5949.690 5968.250 5968.250 3360.000 -SIMU 1976 5 11 24 0 5805.403 5821.648 5821.648 3360.000 -SIMU 1976 5 12 12 0 5606.486 5620.741 5620.741 3192.000 -SIMU 1976 5 12 24 0 5475.732 5487.095 5488.084 3192.000 -SIMU 1976 5 13 12 0 5921.376 5965.900 6166.316 3312.000 -SIMU 1976 5 13 24 0 6240.886 6296.999 6297.000 3312.000 -SIMU 1976 5 14 12 0 6074.830 6120.905 6120.905 3336.000 -SIMU 1976 5 14 24 0 5974.801 6012.826 6012.826 3336.000 -SIMU 1976 5 15 12 0 5821.232 5853.288 5861.953 3192.000 -SIMU 1976 5 15 24 0 5841.707 5870.807 5874.759 3192.000 -SIMU 1976 5 16 12 0 6133.264 6211.042 6540.570 3888.000 -SIMU 1976 5 16 24 0 7443.866 7770.854 7841.980 3888.000 -SIMU 1976 5 17 12 0 7393.988 7657.070 7657.070 6312.000 -SIMU 1976 5 17 24 0 7248.306 7455.735 7455.735 6312.000 -SIMU 1976 5 18 12 0 7016.071 7180.006 7180.006 8064.000 -SIMU 1976 5 18 24 0 6864.927 6994.829 6994.828 8064.000 -SIMU 1976 5 19 12 0 6632.440 6735.670 6735.670 7296.000 -SIMU 1976 5 19 24 0 6473.555 6555.850 6555.850 7296.000 -SIMU 1976 5 20 12 0 6242.143 6307.977 6307.977 6264.000 -SIMU 1976 5 20 24 0 6078.955 6131.816 6131.816 6264.000 -SIMU 1976 5 21 12 0 5863.405 5906.022 5906.022 5592.000 -SIMU 1976 5 21 24 0 5725.353 5759.856 5759.856 5592.000 -SIMU 1976 5 22 12 0 5548.791 5578.020 5627.149 5208.000 -SIMU 1976 5 22 24 0 6055.835 6113.732 6209.580 5208.000 -SIMU 1976 5 23 12 0 6378.099 6441.832 6473.352 5976.000 -SIMU 1976 5 23 24 0 6387.691 6444.794 6459.470 5976.000 -SIMU 1976 5 24 12 0 6229.678 6278.872 6278.872 6672.000 -SIMU 1976 5 24 24 0 6120.713 6162.870 6162.870 6672.000 -SIMU 1976 5 25 12 0 5929.489 5965.768 5965.768 6312.000 -SIMU 1976 5 25 24 0 5796.314 5827.657 5827.657 6312.000 -SIMU 1976 5 26 12 0 5602.609 5629.787 5629.786 5640.000 -SIMU 1976 5 26 24 0 5469.314 5492.957 5492.957 5640.000 -SIMU 1976 5 27 12 0 5284.036 5304.670 5304.670 5088.000 -SIMU 1976 5 27 24 0 5158.005 5176.063 5176.063 5088.000 -SIMU 1976 5 28 12 0 4983.002 4998.846 4998.846 4728.000 -SIMU 1976 5 28 24 0 4909.798 4945.371 5005.282 4728.000 -SIMU 1976 5 29 12 0 5589.246 5941.422 6028.131 4704.000 -SIMU 1976 5 29 24 0 5797.516 6205.313 6205.313 4704.000 -SIMU 1976 5 30 12 0 5633.561 5950.626 5950.626 6552.000 -SIMU 1976 5 30 24 0 5528.438 5775.097 5775.097 6552.000 -SIMU 1976 5 31 12 0 5369.578 5561.591 5561.591 7776.000 -SIMU 1976 5 31 24 0 5268.968 5418.550 5418.550 7776.000 -SIMU 1976 6 1 12 0 5117.311 5233.938 5233.937 6648.000 -SIMU 1976 6 1 24 0 5018.680 5109.698 5109.698 6648.000 -SIMU 1976 6 2 12 0 4868.513 4939.623 4939.624 5496.000 -SIMU 1976 6 2 24 0 4762.963 4818.588 4818.588 5496.000 -SIMU 1976 6 3 12 0 4608.494 4652.067 4652.067 4728.000 -SIMU 1976 6 3 24 0 4493.570 4527.758 4527.758 4728.000 -SIMU 1976 6 4 12 0 4338.532 4365.403 4365.403 4200.000 -SIMU 1976 6 4 24 0 4224.821 4245.983 4245.983 4200.000 -SIMU 1976 6 5 12 0 4074.822 4091.525 4091.525 3864.000 -SIMU 1976 6 5 24 0 3962.500 3975.717 3975.717 3864.000 -SIMU 1976 6 6 12 0 3821.470 3831.957 3831.957 3600.000 -SIMU 1976 6 6 24 0 3719.002 3727.348 3727.348 3600.000 -SIMU 1976 6 7 12 0 3589.172 3595.836 3595.836 3408.000 -SIMU 1976 6 7 24 0 3492.674 3498.013 3498.013 3408.000 -SIMU 1976 6 8 12 0 3369.697 3373.993 3373.993 3216.000 -SIMU 1976 6 8 24 0 3274.981 3278.451 3278.451 3216.000 -SIMU 1976 6 9 12 0 3150.390 3153.204 3153.204 3048.000 -SIMU 1976 6 9 24 0 3044.716 3046.042 3046.042 3048.000 -SIMU 1976 6 10 12 0 3291.709 3459.219 3513.617 3024.000 -SIMU 1976 6 10 24 0 3518.919 3747.066 3747.066 3024.000 -SIMU 1976 6 11 12 0 3413.929 3595.808 3595.808 3048.000 -SIMU 1976 6 11 24 0 3344.455 3489.951 3489.951 3048.000 -SIMU 1976 6 12 12 0 3228.865 3345.692 3345.692 3024.000 -SIMU 1976 6 12 24 0 3221.686 3381.008 3396.237 3024.000 -SIMU 1976 6 13 12 0 3343.770 3607.325 3607.325 2808.000 -SIMU 1976 6 13 24 0 3731.925 4195.831 4273.231 2808.000 -SIMU 1976 6 14 12 0 4313.558 4992.616 4992.689 3264.000 -SIMU 1976 6 14 24 0 4236.824 4773.909 4773.984 3264.000 -SIMU 1976 6 15 12 0 4153.155 4580.737 4592.651 3120.000 -SIMU 1976 6 15 24 0 4062.318 4402.652 4402.652 3120.000 -SIMU 1976 6 16 12 0 3938.319 4210.056 4210.056 3408.000 -SIMU 1976 6 16 24 0 3855.712 4073.456 4073.456 3408.000 -SIMU 1976 6 17 12 0 3734.820 3909.976 3909.976 3192.000 -SIMU 1976 6 17 24 0 3637.509 3778.990 3778.990 3192.000 -SIMU 1976 6 18 12 0 3526.016 3640.807 3640.861 2664.000 -SIMU 1976 6 18 24 0 3452.074 3545.638 3545.638 2664.000 -SIMU 1976 6 19 12 0 3343.906 3420.537 3420.537 2424.000 -SIMU 1976 6 19 24 0 3263.694 3326.768 3326.768 2424.000 -SIMU 1976 6 20 12 0 3155.298 3207.479 3207.478 2208.000 -SIMU 1976 6 20 24 0 3066.159 3109.553 3109.553 2208.000 -SIMU 1976 6 21 12 0 2960.541 2996.813 2996.812 2040.000 -SIMU 1976 6 21 24 0 2882.089 2912.564 2912.564 2040.000 -SIMU 1976 6 22 12 0 2782.793 2808.525 2808.525 1896.000 -SIMU 1976 6 22 24 0 2701.439 2723.275 2723.275 1896.000 -SIMU 1976 6 23 12 0 2603.720 2622.335 2622.335 1752.000 -SIMU 1976 6 23 24 0 2524.560 2540.502 2540.502 1752.000 -SIMU 1976 6 24 12 0 2506.310 2572.711 2636.606 1704.000 -SIMU 1976 6 24 24 0 2803.375 3035.986 3079.804 1704.000 -SIMU 1976 6 25 12 0 2754.266 2936.758 2936.758 1632.000 -SIMU 1976 6 25 24 0 2686.124 2828.623 2828.623 1632.000 -SIMU 1976 6 26 12 0 2606.177 2717.578 2717.578 1560.000 -SIMU 1976 6 26 24 0 2561.369 2656.339 2677.624 1560.000 -SIMU 1976 6 27 12 0 2647.217 2752.256 2752.709 1512.000 -SIMU 1976 6 27 24 0 2713.907 2819.464 2860.134 1512.000 -SIMU 1976 6 28 12 0 3036.492 3202.362 3233.577 1416.000 -SIMU 1976 6 28 24 0 3110.139 3268.096 3268.096 1416.000 -SIMU 1976 6 29 12 0 3023.118 3145.993 3145.993 1368.000 -SIMU 1976 6 29 24 0 2956.332 3051.979 3051.979 1368.000 -SIMU 1976 6 30 12 0 2866.452 2940.957 2940.958 1416.000 -SIMU 1976 6 30 24 0 2798.310 2856.396 2856.396 1416.000 -SIMU 1976 7 1 12 0 2712.273 2757.601 2757.601 1368.000 -SIMU 1976 7 1 24 0 2644.846 2680.256 2680.256 1368.000 -SIMU 1976 7 2 12 0 2569.992 2597.689 2597.689 1248.000 -SIMU 1976 7 2 24 0 2521.579 2543.271 2543.271 1248.000 -SIMU 1976 7 3 12 0 2442.126 2459.143 2459.143 1200.000 -SIMU 1976 7 3 24 0 2360.918 2374.291 2374.291 1200.000 -SIMU 1976 7 4 12 0 2276.082 2286.612 2286.612 1128.000 -SIMU 1976 7 4 24 0 2215.493 2223.803 2223.803 1128.000 -SIMU 1976 7 5 12 0 2142.424 2148.998 2148.998 1056.000 -SIMU 1976 7 5 24 0 2081.151 2086.365 2086.365 1056.000 -SIMU 1976 7 6 12 0 2003.279 2007.428 2007.429 1008.000 -SIMU 1976 7 6 24 0 1930.496 1933.807 1933.807 1008.000 -SIMU 1976 7 7 12 0 1860.211 1862.865 1862.865 1008.000 -SIMU 1976 7 7 24 0 1801.562 1803.067 1803.067 1008.000 -SIMU 1976 7 8 12 0 1727.611 1728.135 1728.135 1008.000 -SIMU 1976 7 8 24 0 1654.591 1655.059 1655.059 1008.000 -SIMU 1976 7 9 12 0 1580.965 1581.384 1581.384 960.0000 -SIMU 1976 7 9 24 0 1521.349 1521.723 1521.723 960.0000 -SIMU 1976 7 10 12 0 1448.820 1449.155 1449.155 912.0000 -SIMU 1976 7 10 24 0 1375.131 1375.431 1375.431 912.0000 -SIMU 1976 7 11 12 0 1304.743 1305.011 1305.011 888.0000 -SIMU 1976 7 11 24 0 1248.129 1248.368 1248.368 888.0000 -SIMU 1976 7 12 12 0 1185.909 1186.123 1186.123 816.0000 -SIMU 1976 7 12 24 0 1126.353 1126.545 1126.545 816.0000 -SIMU 1976 7 13 12 0 1064.962 1065.078 1065.078 792.0000 -SIMU 1976 7 13 24 0 1008.634 1008.634 1008.634 792.0000 -SIMU 1976 7 14 12 0 947.6622 947.6622 947.6622 768.0000 -SIMU 1976 7 14 24 0 887.4125 887.4125 887.4125 768.0000 -SIMU 1976 7 15 12 0 835.6957 835.6957 835.6957 792.0000 -SIMU 1976 7 15 24 0 817.9781 823.5078 823.8835 792.0000 -SIMU 1976 7 16 12 0 788.2032 796.4568 796.4568 816.0000 -SIMU 1976 7 16 24 0 740.7318 748.1143 748.1143 816.0000 -SIMU 1976 7 17 12 0 692.7055 699.3084 699.3083 840.0000 -SIMU 1976 7 17 24 0 647.5076 653.4134 653.4134 840.0000 -SIMU 1976 7 18 12 0 602.0175 607.2998 607.2998 816.0000 -SIMU 1976 7 18 24 0 558.3641 563.0889 563.0889 816.0000 -SIMU 1976 7 19 12 0 524.3542 528.5801 528.5801 792.0000 -SIMU 1976 7 19 24 0 504.0474 507.8271 507.8271 792.0000 -SIMU 1976 7 20 12 0 479.9358 483.4558 488.4977 816.0000 -SIMU 1976 7 20 24 0 480.9326 484.4180 503.8568 816.0000 -SIMU 1976 7 21 12 0 486.5504 489.6679 489.6679 792.0000 -SIMU 1976 7 21 24 0 479.3178 482.1062 482.1063 792.0000 -SIMU 1976 7 22 12 0 471.2202 473.7142 473.7142 792.0000 -SIMU 1976 7 22 24 0 459.2761 461.5067 461.5067 792.0000 -SIMU 1976 7 23 12 0 436.4136 438.4089 438.4089 816.0000 -SIMU 1976 7 23 24 0 408.7779 410.5625 410.5625 816.0000 -SIMU 1976 7 24 12 0 372.2911 373.8872 373.8872 768.0000 -SIMU 1976 7 24 24 0 327.2109 328.6385 328.6385 768.0000 -SIMU 1976 7 25 12 0 286.3557 287.6327 287.6327 720.0000 -SIMU 1976 7 25 24 0 250.3043 251.4465 251.4465 720.0000 -SIMU 1976 7 26 12 0 229.2224 231.0525 237.9428 720.0000 -SIMU 1976 7 26 24 0 230.0116 232.8386 232.8386 720.0000 -SIMU 1976 7 27 12 0 210.4846 213.0132 213.0132 648.0000 -SIMU 1976 7 27 24 0 185.2401 189.8054 199.3956 648.0000 -SIMU 1976 7 28 12 0 355.7942 502.2871 564.0080 1272.000 -SIMU 1976 7 28 24 0 389.4540 525.8757 525.8757 1272.000 -SIMU 1976 7 29 12 0 379.2825 492.8959 492.8959 1896.000 -SIMU 1976 7 29 24 0 359.0034 454.1112 454.1112 1896.000 -SIMU 1976 7 30 12 0 331.6174 411.6410 411.6410 1296.000 -SIMU 1976 7 30 24 0 304.1752 371.9807 375.6659 1296.000 -SIMU 1976 7 31 12 0 299.1547 356.9792 356.9792 984.0000 -SIMU 1976 7 31 24 0 294.6993 344.0361 344.0361 984.0000 -SIMU 1976 8 1 12 0 284.0786 326.3608 326.3608 864.0000 -SIMU 1976 8 1 24 0 257.2543 293.6428 293.6428 864.0000 -SIMU 1976 8 2 12 0 229.6317 261.0710 261.0710 744.0000 -SIMU 1976 8 2 24 0 203.5243 230.7866 230.7866 744.0000 -SIMU 1976 8 3 12 0 177.7175 201.4372 201.4372 672.0000 -SIMU 1976 8 3 24 0 152.2990 172.9997 172.9998 672.0000 -SIMU 1976 8 4 12 0 125.5375 143.6541 143.6541 624.0000 -SIMU 1976 8 4 24 0 96.83620 112.7313 112.7313 624.0000 -SIMU 1976 8 5 12 0 70.62148 83.98846 83.98846 552.0000 -SIMU 1976 8 5 24 0 48.83453 59.95349 59.95348 552.0000 -SIMU 1976 8 6 12 0 33.63858 43.58369 43.58369 552.0000 -SIMU 1976 8 6 24 0 17.44626 26.34144 26.34144 552.0000 -SIMU 1976 8 7 12 0 9.618545 17.57463 17.57463 528.0000 -SIMU 1976 8 7 24 0 5.715816 12.83196 12.83196 528.0000 -SIMU 1976 8 8 12 0 1.375276 7.740143 7.740143 504.0000 -SIMU 1976 8 8 24 0 0.000000 5.692911 5.692911 504.0000 -SIMU 1976 8 9 12 0 0.000000 5.091894 5.091894 480.0000 -SIMU 1976 8 9 24 0 0.000000 4.554329 4.554329 480.0000 -SIMU 1976 8 10 12 0 0.000000 4.073516 4.073516 456.0000 -SIMU 1976 8 10 24 0 0.000000 3.643464 3.643464 456.0000 -SIMU 1976 8 11 12 0 0.000000 3.258813 3.258813 504.0000 -SIMU 1976 8 11 24 0 0.000000 2.914772 2.914772 504.0000 -SIMU 1976 8 12 12 0 0.000000 2.607051 2.607051 528.0000 -SIMU 1976 8 12 24 0 0.000000 2.331817 2.331817 528.0000 -SIMU 1976 8 13 12 0 0.000000 2.085641 2.085641 480.0000 -SIMU 1976 8 13 24 0 0.000000 1.865454 1.865454 480.0000 -SIMU 1976 8 14 12 0 3.306299 5.189642 8.569720 504.0000 -SIMU 1976 8 14 24 0 4.317553 6.061530 6.061530 504.0000 -SIMU 1976 8 15 12 0 2.381328 3.941188 3.941188 528.0000 -SIMU 1976 8 15 24 0 0.000000 1.395181 1.395181 528.0000 -SIMU 1976 8 16 12 0 0.000000 1.247888 1.247888 504.0000 -SIMU 1976 8 16 24 0 0.000000 1.116145 1.116145 504.0000 -SIMU 1976 8 17 12 0 27.85040 45.21229 46.50558 480.0000 -SIMU 1976 8 17 24 0 29.45068 45.73265 45.73265 480.0000 -SIMU 1976 8 18 12 0 27.14911 41.71215 41.71215 456.0000 -SIMU 1976 8 18 24 0 21.66637 34.69194 34.69194 456.0000 -SIMU 1976 8 19 12 0 16.10777 27.75819 27.75819 432.0000 -SIMU 1976 8 19 24 0 10.52678 20.94723 20.94723 432.0000 -SIMU 1976 8 20 12 0 5.192156 14.51250 14.51250 408.0000 -SIMU 1976 8 20 24 0 0.6898000 9.026163 9.026163 408.0000 -SIMU 1976 8 21 12 0 0.000000 7.456270 7.456270 408.0000 -SIMU 1976 8 21 24 0 0.000000 6.669090 6.669090 408.0000 -SIMU 1976 8 22 12 0 0.000000 5.965015 5.965015 384.0000 -SIMU 1976 8 22 24 0 0.000000 5.335272 5.335272 384.0000 -SIMU 1976 8 23 12 0 0.000000 4.772013 4.772013 360.0000 -SIMU 1976 8 23 24 0 0.000000 4.268219 4.268219 360.0000 -SIMU 1976 8 24 12 0 0.000000 3.817610 3.817610 336.0000 -SIMU 1976 8 24 24 0 0.000000 3.414574 3.414574 336.0000 -SIMU 1976 8 25 12 0 0.000000 3.054089 3.054089 360.0000 -SIMU 1976 8 25 24 0 30.53471 54.81184 62.28218 360.0000 -SIMU 1976 8 26 12 0 37.82723 62.75433 62.99365 408.0000 -SIMU 1976 8 26 24 0 37.40852 59.71318 59.71318 408.0000 -SIMU 1976 8 27 12 0 32.02015 51.97005 51.97005 360.0000 -SIMU 1976 8 27 24 0 25.22998 43.07370 43.07370 360.0000 -SIMU 1976 8 28 12 0 18.50882 34.46874 34.46874 336.0000 -SIMU 1976 8 28 24 0 11.87564 26.15062 26.15062 336.0000 -SIMU 1976 8 29 12 0 6.554318 19.32225 19.32225 336.0000 -SIMU 1976 8 29 24 0 2.632745 14.05273 14.05273 336.0000 -SIMU 1976 8 30 12 0 4.2170662E-02 10.25652 10.25652 312.0000 -SIMU 1976 8 30 24 0 0.000000 9.135987 9.135987 312.0000 -SIMU 1976 8 31 12 0 0.000000 8.171477 8.171477 360.0000 -SIMU 1976 8 31 24 0 0.000000 7.308790 7.308790 360.0000 -SIMU 1976 9 1 12 0 0.000000 6.537181 6.537181 336.0000 -SIMU 1976 9 1 24 0 0.000000 5.847033 5.847033 336.0000 -SIMU 1976 9 2 12 0 0.000000 5.229745 5.229745 360.0000 -SIMU 1976 9 2 24 0 0.000000 4.677627 4.677627 360.0000 -SIMU 1976 9 3 12 0 0.000000 4.183796 4.183796 336.0000 -SIMU 1976 9 3 24 0 0.000000 3.742100 3.742100 336.0000 -SIMU 1976 9 4 12 0 0.000000 3.347037 3.347037 336.0000 -SIMU 1976 9 4 24 0 0.000000 2.993680 2.993680 336.0000 -SIMU 1976 9 5 12 0 0.000000 2.677629 2.677629 312.0000 -SIMU 1976 9 5 24 0 0.000000 2.394944 2.394944 312.0000 -SIMU 1976 9 6 12 0 0.000000 2.142103 2.142103 312.0000 -SIMU 1976 9 6 24 0 0.000000 1.915955 1.915955 312.0000 -SIMU 1976 9 7 12 0 0.000000 1.713682 1.713682 288.0000 -SIMU 1976 9 7 24 0 0.000000 1.532764 1.532764 288.0000 -SIMU 1976 9 8 12 0 0.000000 1.370945 1.370945 288.0000 -SIMU 1976 9 8 24 0 0.000000 1.226211 1.226211 288.0000 -SIMU 1976 9 9 12 0 0.000000 1.096756 1.096756 288.0000 -SIMU 1976 9 9 24 0 0.000000 0.9809685 0.9809685 288.0000 -SIMU 1976 9 10 12 0 0.000000 0.8774048 0.8774048 312.0000 -SIMU 1976 9 10 24 0 0.000000 0.7847747 0.7847747 312.0000 -SIMU 1976 9 11 12 0 0.000000 0.7019238 0.7019238 336.0000 -SIMU 1976 9 11 24 0 0.000000 0.6278196 0.6278196 336.0000 -SIMU 1976 9 12 12 0 0.000000 0.5615390 0.5615390 312.0000 -SIMU 1976 9 12 24 0 0.000000 0.5022559 0.5022559 312.0000 -SIMU 1976 9 13 12 0 0.000000 0.4492313 0.4492313 288.0000 -SIMU 1976 9 13 24 0 0.000000 0.4018047 0.4018047 288.0000 -SIMU 1976 9 14 12 0 0.000000 0.3593851 0.3593851 288.0000 -SIMU 1976 9 14 24 0 0.000000 0.3214438 0.3214438 288.0000 -SIMU 1976 9 15 12 0 0.000000 0.2875081 0.2875081 288.0000 -SIMU 1976 9 15 24 0 0.000000 0.2571551 0.2571551 288.0000 -SIMU 1976 9 16 12 0 0.000000 0.2300065 0.2300065 288.0000 -SIMU 1976 9 16 24 0 0.000000 0.2057241 0.2057241 288.0000 -SIMU 1976 9 17 12 0 0.000000 0.1840052 0.1840052 288.0000 -SIMU 1976 9 17 24 0 0.000000 4.9913384E-02 4.9913384E-02 288.0000 -SIMU 1976 9 18 12 0 0.000000 0.000000 0.000000 288.0000 -SIMU 1976 9 18 24 0 0.000000 0.000000 0.000000 288.0000 -SIMU 1976 9 19 12 0 11.82189 14.95630 20.28834 336.0000 -SIMU 1976 9 19 24 0 25.88178 31.69412 31.69412 336.0000 -SIMU 1976 9 20 12 0 24.66236 29.86107 29.86107 384.0000 -SIMU 1976 9 20 24 0 19.24643 23.89630 23.89630 384.0000 -SIMU 1976 9 21 12 0 14.29944 18.45841 18.45841 408.0000 -SIMU 1976 9 21 24 0 10.10197 13.82186 13.82186 408.0000 -SIMU 1976 9 22 12 0 7.246496 10.57367 10.57367 384.0000 -SIMU 1976 9 22 24 0 4.182612 7.158529 7.158529 384.0000 -SIMU 1976 9 23 12 0 0.8932837 3.555027 3.555026 336.0000 -SIMU 1976 9 23 24 0 0.000000 2.380735 2.380735 336.0000 -SIMU 1976 9 24 12 0 0.000000 2.129394 2.129394 312.0000 -SIMU 1976 9 24 24 0 0.000000 1.904588 1.904588 312.0000 -SIMU 1976 9 25 12 0 0.000000 1.703515 1.703515 312.0000 -SIMU 1976 9 25 24 0 0.000000 1.523670 1.523670 312.0000 -SIMU 1976 9 26 12 0 0.000000 1.362812 1.362812 288.0000 -SIMU 1976 9 26 24 0 0.000000 1.218936 1.218936 288.0000 -SIMU 1976 9 27 12 0 0.1548235 1.245073 1.393924 288.0000 -SIMU 1976 9 27 24 0 0.4264256 1.401574 1.401574 288.0000 -SIMU 1976 9 28 12 0 0.4221386 1.294338 1.294338 288.0000 -SIMU 1976 9 28 24 0 0.4178956 1.198015 1.198015 288.0000 -SIMU 1976 9 29 12 0 0.4136944 1.111454 1.111454 312.0000 -SIMU 1976 9 29 24 0 0.2518055 0.8759007 0.8759007 312.0000 -SIMU 1976 9 30 12 0 0.000000 0.5582076 0.5582076 288.0000 -SIMU 1976 9 30 24 0 0.000000 0.4992760 0.4992760 288.0000 -SIMU 1976 10 1 12 0 0.000000 0.4465660 0.4465660 288.0000 -SIMU 1976 10 1 24 0 0.000000 0.3994207 0.3994207 288.0000 -SIMU 1976 10 2 12 0 0.000000 0.3572528 0.3572528 0.000000 -SIMU 1976 10 2 24 0 0.000000 0.3195366 0.3195366 0.000000 -SIMU 1976 10 3 12 0 0.000000 0.2858022 0.2858022 0.000000 -SIMU 1976 10 3 24 0 0.000000 0.2556292 0.2556292 0.000000 -SIMU 1976 10 4 12 0 1.616946 1.943475 5.741490 0.000000 -SIMU 1976 10 4 24 0 8.951859 9.516360 16.73438 0.000000 -SIMU 1976 10 5 12 0 13.37803 13.92399 15.55124 0.000000 -SIMU 1976 10 5 24 0 12.00275 12.49107 12.49107 0.000000 -SIMU 1976 10 6 12 0 10.52446 10.96123 10.96123 0.000000 -SIMU 1976 10 6 24 0 10.28052 10.67118 10.67118 0.000000 -SIMU 1976 10 7 12 0 9.744522 10.09394 10.09394 0.000000 -SIMU 1976 10 7 24 0 2.493862 2.806388 2.806388 0.000000 -SIMU 1976 10 8 12 0 0.000000 0.2795316 0.2795316 0.000000 -SIMU 1976 10 8 24 0 0.000000 0.2500207 0.2500207 0.000000 -SIMU 1976 10 9 12 0 0.000000 0.2236253 0.2236253 0.000000 -SIMU 1976 10 9 24 0 0.000000 0.2000165 0.2000165 0.000000 -SIMU 1976 10 10 12 0 0.000000 0.1789002 0.1789002 0.000000 -SIMU 1976 10 10 24 0 0.000000 7.0297145E-03 7.0297145E-03 0.000000 -SIMU 1976 10 11 12 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 11 24 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 12 12 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 12 24 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 13 12 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 13 24 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 14 12 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 14 24 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 15 12 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 15 24 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 16 12 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 16 24 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 17 12 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 17 24 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 18 12 0 0.000000 0.000000 0.000000 0.000000 -SIMU 1976 10 18 24 0 0.1295344 0.1295344 0.3030436 0.000000 -SIMU 1976 10 19 12 0 1.904068 1.904068 6.377760 0.000000 -SIMU 1976 10 19 24 0 5.304407 5.304407 5.304407 0.000000 -SIMU 1976 10 20 12 0 5.250734 5.250734 5.250734 0.000000 -SIMU 1976 10 20 24 0 5.197873 5.197873 5.197873 0.000000 -SIMU 1976 10 21 12 0 5.145288 5.145288 5.145288 0.000000 -SIMU 1976 10 21 24 0 4.193458 4.193458 4.193458 0.000000 -SIMU 1976 10 22 12 0 3.716582 3.716582 3.716582 0.000000 -SIMU 1976 10 22 24 0 2.110835 2.110835 2.110835 0.000000 -SIMU 1976 10 23 12 0 1.469405 1.469405 1.469405 0.000000 -SIMU 1976 10 23 24 0 7.433715 7.835683 40.46391 0.000000 -SIMU 1976 10 24 12 0 26.29626 27.88728 32.70226 0.000000 -SIMU 1976 10 24 24 0 27.61778 29.14638 29.14638 0.000000 -SIMU 1976 10 25 12 0 27.32807 28.69529 28.69533 0.000000 -SIMU 1976 10 25 24 0 27.04974 28.27263 28.27262 0.000000 -SIMU 1976 10 26 12 0 26.76316 27.85693 27.85693 0.000000 -SIMU 1976 10 26 24 0 26.49056 27.46886 27.46886 0.000000 -SIMU 1976 10 27 12 0 26.21033 27.08535 27.08535 0.000000 -SIMU 1976 10 27 24 0 25.94347 26.72611 26.72611 0.000000 -SIMU 1976 10 28 12 0 25.66943 26.36945 26.36945 0.000000 -SIMU 1976 10 28 24 0 24.99927 25.62538 25.62538 0.000000 -SIMU 1976 10 29 12 0 23.76388 24.32389 24.32389 0.000000 -SIMU 1976 10 29 24 0 22.16269 22.66358 22.66358 0.000000 -SIMU 1976 10 30 12 0 23.46229 23.94492 29.29656 0.000000 -SIMU 1976 10 30 24 0 33.60037 34.24939 39.01993 0.000000 -SIMU 1976 10 31 12 0 34.18276 34.77349 34.77349 0.000000 -SIMU 1976 10 31 24 0 33.83573 34.36410 34.36410 0.000000 -SIMU 1976 11 1 12 0 33.48219 33.95477 33.95477 0.000000 -SIMU 1976 11 1 24 0 33.14237 33.56507 33.56507 0.000000 -SIMU 1976 11 2 12 0 32.79008 33.16815 33.16815 0.000000 -SIMU 1976 11 2 24 0 31.39140 31.72956 31.72956 0.000000 -SIMU 1976 11 3 12 0 30.21948 30.52194 30.52194 0.000000 -SIMU 1976 11 3 24 0 29.01873 29.28926 29.28926 0.000000 -SIMU 1976 11 4 12 0 28.42418 28.66615 28.66615 0.000000 -SIMU 1976 11 4 24 0 27.26430 27.48071 27.48071 0.000000 -SIMU 1976 11 5 12 0 26.70259 26.89616 26.89616 0.000000 -SIMU 1976 11 5 24 0 25.22231 25.35395 25.35396 0.000000 -SIMU 1976 11 6 12 0 24.41317 24.41317 24.41317 0.000000 -SIMU 1976 11 6 24 0 23.63493 23.63493 23.63493 0.000000 -SIMU 1976 11 7 12 0 23.32906 23.32906 23.32906 0.000000 -SIMU 1976 11 7 24 0 22.76479 22.76479 22.76479 0.000000 -SIMU 1976 11 8 12 0 22.43890 22.43890 22.43890 0.000000 -SIMU 1976 11 8 24 0 21.68569 21.68569 21.68569 0.000000 -SIMU 1976 11 9 12 0 20.83400 20.83400 20.83400 0.000000 -SIMU 1976 11 9 24 0 20.29675 20.29675 20.29675 0.000000 -SIMU 1976 11 10 12 0 20.06202 20.06202 20.06202 0.000000 -SIMU 1976 11 10 24 0 19.63494 19.63494 19.63494 0.000000 -SIMU 1976 11 11 12 0 19.37324 19.37324 19.37324 0.000000 -SIMU 1976 11 11 24 0 19.17737 19.17737 19.17737 0.000000 -SIMU 1976 11 12 12 0 18.98011 18.98011 18.98011 0.000000 -SIMU 1976 11 12 24 0 18.78824 18.78824 18.78824 0.000000 -SIMU 1976 11 13 12 0 18.59512 18.59512 18.59512 0.000000 -SIMU 1976 11 13 24 0 18.29562 18.29562 18.29562 0.000000 -SIMU 1976 11 14 12 0 18.08212 18.08212 18.08212 0.000000 -SIMU 1976 11 14 24 0 17.33713 17.33713 17.33713 0.000000 -SIMU 1976 11 15 12 0 16.93672 16.93672 16.93672 0.000000 -SIMU 1976 11 15 24 0 15.58869 15.58869 15.58869 0.000000 -SIMU 1976 11 16 12 0 15.04656 15.04656 15.04656 0.000000 -SIMU 1976 11 16 24 0 13.40035 13.40035 13.40035 0.000000 -SIMU 1976 11 17 12 0 12.55171 12.55171 12.55171 0.000000 -SIMU 1976 11 17 24 0 10.70698 10.70698 10.70698 0.000000 -SIMU 1976 11 18 12 0 10.10353 10.10353 10.10353 0.000000 -SIMU 1976 11 18 24 0 9.495403 9.495403 9.495403 0.000000 -SIMU 1976 11 19 12 0 9.222705 9.222705 9.222705 0.000000 -SIMU 1976 11 19 24 0 8.624109 8.624109 8.624109 0.000000 -SIMU 1976 11 20 12 0 8.384901 8.384901 8.384901 0.000000 -SIMU 1976 11 20 24 0 8.151299 8.151299 8.151299 0.000000 -SIMU 1976 11 21 12 0 8.013232 8.013232 8.013232 0.000000 -SIMU 1976 11 21 24 0 7.932450 7.932450 7.932450 0.000000 -SIMU 1976 11 22 12 0 7.851743 7.851743 7.851743 0.000000 -SIMU 1976 11 22 24 0 7.772588 7.772588 7.772588 0.000000 -SIMU 1976 11 23 12 0 7.685007 7.685007 7.685007 0.000000 -SIMU 1976 11 23 24 0 7.128718 7.128718 7.128718 0.000000 -SIMU 1976 11 24 12 0 6.824726 6.824726 6.824726 0.000000 -SIMU 1976 11 24 24 0 6.137748 6.137748 6.137748 0.000000 -SIMU 1976 11 25 12 0 5.650980 5.650980 5.650980 0.000000 -SIMU 1976 11 25 24 0 5.375116 5.375116 5.375116 0.000000 -SIMU 1976 11 26 12 0 5.265902 5.265902 5.265902 0.000000 -SIMU 1976 11 26 24 0 5.212901 5.212901 5.212901 0.000000 -SIMU 1976 11 27 12 0 5.160210 5.160210 5.160210 0.000000 -SIMU 1976 11 27 24 0 5.108275 5.108275 5.108275 0.000000 -SIMU 1976 11 28 12 0 5.056653 5.056653 5.056653 0.000000 -SIMU 1976 11 28 24 0 5.005761 5.005761 5.005761 0.000000 -SIMU 1976 11 29 12 0 4.955183 4.955183 4.955183 0.000000 -SIMU 1976 11 29 24 0 4.905315 4.905315 4.905315 0.000000 -SIMU 1976 11 30 12 0 4.855760 4.855760 4.855760 0.000000 -SIMU 1976 11 30 24 0 4.806894 4.806894 4.806894 0.000000 -SIMU 1976 12 1 12 0 4.758340 4.758340 4.758340 0.000000 -SIMU 1976 12 1 24 0 4.710457 4.710457 4.710457 0.000000 -SIMU 1976 12 2 12 0 4.662884 4.662884 4.662884 0.000000 -SIMU 1976 12 2 24 0 4.615964 4.615964 4.615964 0.000000 -SIMU 1976 12 3 12 0 4.569351 4.569351 4.569351 0.000000 -SIMU 1976 12 3 24 0 4.523374 4.523374 4.523374 0.000000 -SIMU 1976 12 4 12 0 4.477704 4.477704 4.477704 0.000000 -SIMU 1976 12 4 24 0 4.432649 4.432649 4.432649 0.000000 -SIMU 1976 12 5 12 0 4.387900 4.387900 4.387900 0.000000 -SIMU 1976 12 5 24 0 4.343751 4.343751 4.343751 0.000000 -SIMU 1976 12 6 12 0 4.299906 4.299906 4.299906 0.000000 -SIMU 1976 12 6 24 0 4.256644 4.256644 4.256644 0.000000 -SIMU 1976 12 7 12 0 4.213683 4.213683 4.213683 0.000000 -SIMU 1976 12 7 24 0 4.171290 4.171290 4.171290 0.000000 -SIMU 1976 12 8 12 0 4.129197 4.129197 4.129197 0.000000 -SIMU 1976 12 8 24 0 4.087655 4.087655 4.087655 0.000000 -SIMU 1976 12 9 12 0 4.046409 4.046409 4.046409 0.000000 -SIMU 1976 12 9 24 0 4.005703 4.005703 4.005703 0.000000 -SIMU 1976 12 10 12 0 3.965293 3.965293 3.965293 0.000000 -SIMU 1976 12 10 24 0 3.925402 3.925402 3.925402 0.000000 -SIMU 1976 12 11 12 0 3.885803 3.885803 3.885803 0.000000 -SIMU 1976 12 11 24 0 3.846713 3.846713 3.846713 0.000000 -SIMU 1976 12 12 12 0 3.807913 3.807913 3.807913 0.000000 -SIMU 1976 12 12 24 0 3.769608 3.769608 3.769608 0.000000 -SIMU 1976 12 13 12 0 3.731589 3.731589 3.731589 0.000000 -SIMU 1976 12 13 24 0 3.686623 3.686623 3.686623 0.000000 -SIMU 1976 12 14 12 0 3.646369 3.646369 3.646369 0.000000 -SIMU 1976 12 14 24 0 3.591136 3.591136 3.591136 0.000000 -SIMU 1976 12 15 12 0 3.549513 3.549513 3.549513 0.000000 -SIMU 1976 12 15 24 0 3.498237 3.498237 3.498237 0.000000 -SIMU 1976 12 16 12 0 3.455036 3.455036 3.455036 0.000000 -SIMU 1976 12 16 24 0 3.384976 3.384976 3.384976 0.000000 -SIMU 1976 12 17 12 0 3.311943 3.311943 3.311943 0.000000 -SIMU 1976 12 17 24 0 3.252935 3.252935 3.252935 0.000000 -SIMU 1976 12 18 12 0 3.257537 3.257537 3.485761 0.000000 -SIMU 1976 12 18 24 0 7.765163 7.765163 10.72768 0.000000 -SIMU 1976 12 19 12 0 8.991038 8.991038 10.32934 0.000000 -SIMU 1976 12 19 24 0 12.84119 12.84119 14.44906 0.000000 -SIMU 1976 12 20 12 0 12.99357 12.99357 12.99357 0.000000 -SIMU 1976 12 20 24 0 12.86289 12.86289 12.86289 0.000000 -SIMU 1976 12 21 12 0 12.73894 12.73894 12.73908 0.000000 -SIMU 1976 12 21 24 0 12.61096 12.61096 12.61096 0.000000 -SIMU 1976 12 22 12 0 12.48959 12.48959 12.48972 0.000000 -SIMU 1976 12 22 24 0 12.36413 12.36413 12.36413 0.000000 -SIMU 1976 12 23 12 0 12.24528 12.24528 12.24541 0.000000 -SIMU 1976 12 23 24 0 12.12229 12.12229 12.12229 0.000000 -SIMU 1976 12 24 12 0 12.00591 12.00591 12.00600 0.000000 -SIMU 1976 12 24 24 0 11.88532 11.88532 11.88532 0.000000 -SIMU 1976 12 25 12 0 11.76515 11.76515 11.76515 0.000000 -SIMU 1976 12 25 24 0 11.64672 11.64672 11.64672 0.000000 -SIMU 1976 12 26 12 0 11.52898 11.52898 11.52898 0.000000 -SIMU 1976 12 26 24 0 11.41294 11.41294 11.41294 0.000000 -SIMU 1976 12 27 12 0 11.30274 11.30274 11.30286 0.000000 -SIMU 1976 12 27 24 0 13.30873 13.30873 15.44544 0.000000 -SIMU 1976 12 28 12 0 13.87782 13.87782 13.87782 0.000000 -SIMU 1976 12 28 24 0 13.73811 13.73811 13.73811 0.000000 -SIMU 1976 12 29 12 0 13.60452 13.60452 13.60468 0.000000 -SIMU 1976 12 29 24 0 13.46780 13.46780 13.46780 0.000000 -SIMU 1976 12 30 12 0 13.33780 13.33780 13.33792 0.000000 -SIMU 1976 12 30 24 0 13.20381 13.20381 13.20381 0.000000 -SIMU 1976 12 31 12 0 13.07650 13.07650 13.07667 0.000000 -SIMU 1976 12 31 24 0 12.94514 12.94514 12.94514 0.000000 +SIMU 1976 1 1 12 0 273.7137 273.7137 274.1314 360.0000 +SIMU 1976 1 1 24 0 270.9065 270.9065 270.9065 360.0000 +SIMU 1976 1 2 12 0 267.8203 267.8203 267.8203 360.0000 +SIMU 1976 1 2 24 0 265.0379 265.0379 265.0379 360.0000 +SIMU 1976 1 3 12 0 262.0291 262.0291 262.0291 360.0000 +SIMU 1976 1 3 24 0 259.3096 259.3096 259.3096 360.0000 +SIMU 1976 1 4 12 0 256.3756 256.3756 256.3756 384.0000 +SIMU 1976 1 4 24 0 253.7173 253.7173 253.7173 384.0000 +SIMU 1976 1 5 12 0 250.8562 250.8562 250.8562 384.0000 +SIMU 1976 1 5 24 0 248.2574 248.2574 248.2574 384.0000 +SIMU 1976 1 6 12 0 245.4668 245.4668 245.4668 408.0000 +SIMU 1976 1 6 24 0 242.9262 242.9262 242.9262 408.0000 +SIMU 1976 1 7 12 0 240.2040 240.2040 240.2040 432.0000 +SIMU 1976 1 7 24 0 237.7201 237.7201 237.7201 432.0000 +SIMU 1976 1 8 12 0 235.0643 235.0643 235.0643 432.0000 +SIMU 1976 1 8 24 0 232.6355 232.6355 232.6355 432.0000 +SIMU 1976 1 9 12 0 230.0442 230.0442 230.0442 456.0000 +SIMU 1976 1 9 24 0 227.6693 227.6693 227.6693 456.0000 +SIMU 1976 1 10 12 0 225.1406 225.1406 225.1406 456.0000 +SIMU 1976 1 10 24 0 222.8182 222.8182 222.8182 456.0000 +SIMU 1976 1 11 12 0 220.3504 220.3504 220.3504 480.0000 +SIMU 1976 1 11 24 0 220.3348 220.3348 220.6296 480.0000 +SIMU 1976 1 12 12 0 218.7653 218.7653 218.7653 480.0000 +SIMU 1976 1 12 24 0 223.9155 223.9155 227.5199 480.0000 +SIMU 1976 1 13 12 0 224.2073 224.2073 229.0978 480.0000 +SIMU 1976 1 13 24 0 250.5231 250.5231 259.6499 480.0000 +SIMU 1976 1 14 12 0 250.1501 250.1501 251.4268 504.0000 +SIMU 1976 1 14 24 0 282.6879 283.4876 301.6508 504.0000 +SIMU 1976 1 15 12 0 285.4275 286.2410 286.2409 504.0000 +SIMU 1976 1 15 24 0 303.7103 304.4379 323.1508 504.0000 +SIMU 1976 1 16 12 0 305.7707 306.4214 306.4214 504.0000 +SIMU 1976 1 16 24 0 302.5865 303.1686 303.1686 504.0000 +SIMU 1976 1 17 12 0 299.1237 299.6443 299.6443 504.0000 +SIMU 1976 1 17 24 0 296.0120 296.4777 296.4777 504.0000 +SIMU 1976 1 18 12 0 292.6365 293.0529 293.0529 504.0000 +SIMU 1976 1 18 24 0 293.6567 294.1086 294.9831 504.0000 +SIMU 1976 1 19 12 0 291.2049 291.6229 291.6229 504.0000 +SIMU 1976 1 19 24 0 288.1777 288.5516 288.5516 504.0000 +SIMU 1976 1 20 12 0 284.8995 285.2339 285.2339 480.0000 +SIMU 1976 1 20 24 0 287.3622 287.6613 291.0746 480.0000 +SIMU 1976 1 21 12 0 285.6196 285.8871 285.8871 480.0000 +SIMU 1976 1 21 24 0 282.6551 282.8944 282.8944 480.0000 +SIMU 1976 1 22 12 0 279.8778 280.1126 285.2809 480.0000 +SIMU 1976 1 22 24 0 323.7802 324.8535 344.2205 480.0000 +SIMU 1976 1 23 12 0 326.0203 327.0487 340.6180 480.0000 +SIMU 1976 1 23 24 0 395.8738 397.3109 443.0800 480.0000 +SIMU 1976 1 24 12 0 401.3105 402.6367 402.6367 480.0000 +SIMU 1976 1 24 24 0 418.1101 419.2964 433.0610 480.0000 +SIMU 1976 1 25 12 0 416.4763 417.5373 417.5374 480.0000 +SIMU 1976 1 25 24 0 413.9085 414.8574 415.4517 480.0000 +SIMU 1976 1 26 12 0 410.0617 410.9106 426.1584 480.0000 +SIMU 1976 1 26 24 0 458.6590 459.5100 486.1920 480.0000 +SIMU 1976 1 27 12 0 458.6625 459.4549 463.1353 480.0000 +SIMU 1976 1 27 24 0 492.3941 494.8919 509.0454 480.0000 +SIMU 1976 1 28 12 0 492.6601 495.1029 497.4737 480.0000 +SIMU 1976 1 28 24 0 579.1383 589.1035 671.5825 480.0000 +SIMU 1976 1 29 12 0 594.1650 603.9413 634.2453 480.0000 +SIMU 1976 1 29 24 0 713.1340 729.8587 779.6940 480.0000 +SIMU 1976 1 30 12 0 716.6623 730.6788 730.6788 480.0000 +SIMU 1976 1 30 24 0 708.8400 720.0978 720.0978 480.0000 +SIMU 1976 1 31 12 0 699.4521 708.5308 708.5308 456.0000 +SIMU 1976 1 31 24 0 691.8361 699.1887 699.1887 456.0000 +SIMU 1976 2 1 12 0 682.7362 688.7186 688.7186 456.0000 +SIMU 1976 2 1 24 0 682.3723 687.6998 691.6342 456.0000 +SIMU 1976 2 2 12 0 674.7304 679.1472 679.1481 456.0000 +SIMU 1976 2 2 24 0 667.4161 671.0426 671.0426 456.0000 +SIMU 1976 2 3 12 0 658.8010 661.4517 661.4517 432.0000 +SIMU 1976 2 3 24 0 651.6752 652.9003 652.9003 432.0000 +SIMU 1976 2 4 12 0 643.2598 644.3555 644.3555 432.0000 +SIMU 1976 2 4 24 0 636.3148 637.2950 637.2950 432.0000 +SIMU 1976 2 5 12 0 628.1501 629.0268 629.0268 432.0000 +SIMU 1976 2 5 24 0 621.3827 622.1666 622.1666 432.0000 +SIMU 1976 2 6 12 0 613.5100 614.2114 614.2122 432.0000 +SIMU 1976 2 6 24 0 606.9158 607.5430 607.5430 432.0000 +SIMU 1976 2 7 12 0 599.2827 599.8436 599.8453 432.0000 +SIMU 1976 2 7 24 0 621.5203 622.4725 642.5262 432.0000 +SIMU 1976 2 8 12 0 625.0670 626.0715 629.5871 456.0000 +SIMU 1976 2 8 24 0 701.7318 707.7177 755.4160 456.0000 +SIMU 1976 2 9 12 0 707.7151 713.3344 723.4707 480.0000 +SIMU 1976 2 9 24 0 763.7617 770.9675 783.5859 480.0000 +SIMU 1976 2 10 12 0 763.2811 769.2648 771.3387 480.0000 +SIMU 1976 2 10 24 0 777.2682 782.5706 784.9334 480.0000 +SIMU 1976 2 11 12 0 769.1977 773.4739 773.4739 504.0000 +SIMU 1976 2 11 24 0 760.8099 764.2403 764.2402 504.0000 +SIMU 1976 2 12 12 0 751.8317 754.6130 755.4594 528.0000 +SIMU 1976 2 12 24 0 754.6191 757.0453 757.6956 528.0000 +SIMU 1976 2 13 12 0 745.3438 746.0004 746.0004 576.0000 +SIMU 1976 2 13 24 0 737.2469 737.8109 737.8109 576.0000 +SIMU 1976 2 14 12 0 727.6096 728.1143 728.1143 600.0000 +SIMU 1976 2 14 24 0 722.0472 722.6774 743.1882 600.0000 +SIMU 1976 2 15 12 0 788.0955 794.2668 858.8982 648.0000 +SIMU 1976 2 15 24 0 885.9044 897.9026 907.8766 648.0000 +SIMU 1976 2 16 12 0 890.0539 900.4751 934.2605 696.0000 +SIMU 1976 2 16 24 0 1147.188 1252.002 1393.779 696.0000 +SIMU 1976 2 17 12 0 1160.643 1247.780 1247.780 744.0000 +SIMU 1976 2 17 24 0 1147.576 1215.721 1215.721 744.0000 +SIMU 1976 2 18 12 0 1130.966 1184.332 1184.332 840.0000 +SIMU 1976 2 18 24 0 1118.276 1160.133 1160.133 840.0000 +SIMU 1976 2 19 12 0 1102.644 1135.538 1135.871 768.0000 +SIMU 1976 2 19 24 0 1098.210 1124.220 1124.789 768.0000 +SIMU 1976 2 20 12 0 1083.811 1104.346 1104.346 744.0000 +SIMU 1976 2 20 24 0 1159.870 1188.142 1446.803 744.0000 +SIMU 1976 2 21 12 0 1393.915 1445.009 1445.009 672.0000 +SIMU 1976 2 21 24 0 1378.056 1417.898 1417.898 672.0000 +SIMU 1976 2 22 12 0 1357.451 1388.551 1388.552 600.0000 +SIMU 1976 2 22 24 0 1342.063 1366.365 1366.365 600.0000 +SIMU 1976 2 23 12 0 1322.182 1341.198 1341.199 768.0000 +SIMU 1976 2 23 24 0 1344.435 1360.949 1373.761 768.0000 +SIMU 1976 2 24 12 0 1352.014 1366.486 1420.828 840.0000 +SIMU 1976 2 24 24 0 1631.467 1664.786 1760.583 840.0000 +SIMU 1976 2 25 12 0 1645.186 1673.444 1679.449 672.0000 +SIMU 1976 2 25 24 0 1719.133 1743.396 1751.933 672.0000 +SIMU 1976 2 26 12 0 1729.574 1751.620 1863.471 576.0000 +SIMU 1976 2 26 24 0 2145.076 2203.090 2354.557 576.0000 +SIMU 1976 2 27 12 0 2196.134 2248.779 2387.094 624.0000 +SIMU 1976 2 27 24 0 2647.731 2741.445 2875.384 624.0000 +SIMU 1976 2 28 12 0 2666.097 2744.970 2776.679 648.0000 +SIMU 1976 2 28 24 0 2796.178 2866.075 2885.736 648.0000 +SIMU 1976 2 29 12 0 2757.730 2812.425 2812.425 696.0000 +SIMU 1976 2 29 24 0 2724.651 2767.139 2767.139 696.0000 +SIMU 1976 3 1 12 0 2674.779 2707.797 2707.797 600.0000 +SIMU 1976 3 1 24 0 2642.787 2668.460 2668.460 600.0000 +SIMU 1976 3 2 12 0 2594.898 2614.871 2614.871 576.0000 +SIMU 1976 3 2 24 0 2563.970 2579.518 2579.518 576.0000 +SIMU 1976 3 3 12 0 2517.981 2530.094 2530.094 696.0000 +SIMU 1976 3 3 24 0 2488.078 2497.523 2497.523 696.0000 +SIMU 1976 3 4 12 0 2443.906 2451.277 2451.277 840.0000 +SIMU 1976 3 4 24 0 2414.992 2420.751 2420.751 840.0000 +SIMU 1976 3 5 12 0 2372.557 2377.063 2377.063 840.0000 +SIMU 1976 3 5 24 0 2344.595 2348.125 2348.125 840.0000 +SIMU 1976 3 6 12 0 2304.067 2306.842 2307.754 816.0000 +SIMU 1976 3 6 24 0 2312.121 2314.444 2319.128 816.0000 +SIMU 1976 3 7 12 0 2282.915 2284.728 2290.749 768.0000 +SIMU 1976 3 7 24 0 2389.728 2393.710 2416.441 768.0000 +SIMU 1976 3 8 12 0 2375.829 2379.557 2379.557 744.0000 +SIMU 1976 3 8 24 0 2356.251 2359.478 2361.091 744.0000 +SIMU 1976 3 9 12 0 2324.133 2326.993 2343.137 720.0000 +SIMU 1976 3 9 24 0 2533.496 2546.324 2598.988 720.0000 +SIMU 1976 3 10 12 0 2527.951 2539.621 2544.238 720.0000 +SIMU 1976 3 10 24 0 2575.119 2585.723 2589.015 720.0000 +SIMU 1976 3 11 12 0 2542.523 2551.394 2573.140 744.0000 +SIMU 1976 3 11 24 0 3130.838 3325.532 3639.246 744.0000 +SIMU 1976 3 12 12 0 3977.998 4697.345 4755.904 2400.000 +SIMU 1976 3 12 24 0 4568.944 6110.023 6294.532 2400.000 +SIMU 1976 3 13 12 0 4675.457 5991.283 6018.238 9600.000 +SIMU 1976 3 13 24 0 5412.477 6752.256 6779.295 9600.000 +SIMU 1976 3 14 12 0 5441.626 6522.768 6578.951 11520.00 +SIMU 1976 3 14 24 0 6084.311 7198.646 7206.401 11520.00 +SIMU 1976 3 15 12 0 6067.787 6967.828 7024.758 7200.000 +SIMU 1976 3 15 24 0 6255.849 6990.056 7098.378 7200.000 +SIMU 1976 3 16 12 0 6220.770 6828.191 6856.617 5520.000 +SIMU 1976 3 16 24 0 7004.281 7778.937 7943.517 5520.000 +SIMU 1976 3 17 12 0 6931.859 7551.336 7641.298 4512.000 +SIMU 1976 3 17 24 0 7275.872 7853.927 8075.415 4512.000 +SIMU 1976 3 18 12 0 7215.516 7689.605 7997.244 4464.000 +SIMU 1976 3 18 24 0 7592.294 8056.001 8200.375 4464.000 +SIMU 1976 3 19 12 0 7459.372 7824.978 7833.936 4920.000 +SIMU 1976 3 19 24 0 7421.499 7710.471 7721.106 4920.000 +SIMU 1976 3 20 12 0 7246.257 7471.947 7471.947 5472.000 +SIMU 1976 3 20 24 0 7149.289 7325.435 7325.435 5472.000 +SIMU 1976 3 21 12 0 6973.513 7111.144 7111.143 5016.000 +SIMU 1976 3 21 24 0 6878.085 6985.757 6985.757 5016.000 +SIMU 1976 3 22 12 0 6709.121 6793.473 6793.473 3768.000 +SIMU 1976 3 22 24 0 6614.783 6680.972 6680.972 3768.000 +SIMU 1976 3 23 12 0 6451.173 6503.203 6503.203 3000.000 +SIMU 1976 3 23 24 0 6358.853 6399.835 6399.835 3000.000 +SIMU 1976 3 24 12 0 6200.556 6232.910 6232.910 2592.000 +SIMU 1976 3 24 24 0 6108.588 6134.192 6134.193 2592.000 +SIMU 1976 3 25 12 0 5955.584 5975.905 5975.905 2496.000 +SIMU 1976 3 25 24 0 5865.451 5881.626 5881.626 2496.000 +SIMU 1976 3 26 12 0 5724.800 5737.979 5741.190 2280.000 +SIMU 1976 3 26 24 0 5715.033 5728.673 5749.997 2280.000 +SIMU 1976 3 27 12 0 5612.880 5625.292 5625.292 4008.000 +SIMU 1976 3 27 24 0 5530.031 5540.180 5540.180 4008.000 +SIMU 1976 3 28 12 0 5394.651 5402.991 5402.991 4152.000 +SIMU 1976 3 28 24 0 5317.143 5324.122 5327.223 4152.000 +SIMU 1976 3 29 12 0 5324.132 5335.811 5367.000 3336.000 +SIMU 1976 3 29 24 0 5782.515 6035.415 6549.230 3336.000 +SIMU 1976 3 30 12 0 7224.028 9555.914 9767.674 5976.000 +SIMU 1976 3 30 24 0 7472.900 9480.323 9480.323 5976.000 +SIMU 1976 3 31 12 0 7316.518 8884.538 8884.539 15264.00 +SIMU 1976 3 31 24 0 7238.360 8464.639 8464.639 15264.00 +SIMU 1976 4 1 12 0 7075.693 8036.026 8036.025 19440.00 +SIMU 1976 4 1 24 0 6987.918 7741.145 7741.146 19440.00 +SIMU 1976 4 2 12 0 6814.303 7406.119 7406.119 15384.00 +SIMU 1976 4 2 24 0 6706.199 7172.103 7172.103 15384.00 +SIMU 1976 4 3 12 0 6523.954 6891.536 6891.536 9432.000 +SIMU 1976 4 3 24 0 6412.716 6703.433 6703.432 9432.000 +SIMU 1976 4 4 12 0 6241.489 6472.034 6472.034 7104.000 +SIMU 1976 4 4 24 0 6134.128 6317.496 6317.497 7104.000 +SIMU 1976 4 5 12 0 5965.509 6111.832 6111.831 5928.000 +SIMU 1976 4 5 24 0 5856.542 5973.715 5973.715 5928.000 +SIMU 1976 4 6 12 0 5690.369 5784.559 5784.559 5280.000 +SIMU 1976 4 6 24 0 5581.546 5657.571 5657.572 5280.000 +SIMU 1976 4 7 12 0 5417.036 5478.667 5478.667 4680.000 +SIMU 1976 4 7 24 0 5307.307 5357.499 5357.499 4680.000 +SIMU 1976 4 8 12 0 5159.871 5200.943 5200.944 4152.000 +SIMU 1976 4 8 24 0 5050.623 5084.400 5084.399 4152.000 +SIMU 1976 4 9 12 0 4908.787 4936.705 4936.705 3816.000 +SIMU 1976 4 9 24 0 4812.399 4835.593 4835.593 3816.000 +SIMU 1976 4 10 12 0 4655.151 4674.522 4674.522 3528.000 +SIMU 1976 4 10 24 0 4527.910 4544.170 4544.170 3528.000 +SIMU 1976 4 11 12 0 4396.500 4410.582 4413.267 3408.000 +SIMU 1976 4 11 24 0 4302.192 4314.207 4314.207 3408.000 +SIMU 1976 4 12 12 0 4188.302 4198.553 4198.553 3072.000 +SIMU 1976 4 12 24 0 4096.929 4105.714 4105.714 3072.000 +SIMU 1976 4 13 12 0 3968.454 3975.816 3975.816 2832.000 +SIMU 1976 4 13 24 0 3858.228 3864.146 3864.147 2832.000 +SIMU 1976 4 14 12 0 3732.158 3736.671 3736.671 2760.000 +SIMU 1976 4 14 24 0 3713.524 3763.240 3847.532 2760.000 +SIMU 1976 4 15 12 0 4213.024 4442.344 4496.130 2736.000 +SIMU 1976 4 15 24 0 4250.309 4440.435 4440.435 2736.000 +SIMU 1976 4 16 12 0 4128.880 4279.158 4279.159 2640.000 +SIMU 1976 4 16 24 0 4015.025 4134.121 4134.122 2640.000 +SIMU 1976 4 17 12 0 4162.041 4388.927 4478.631 2712.000 +SIMU 1976 4 17 24 0 5332.612 6024.311 6146.051 2712.000 +SIMU 1976 4 18 12 0 7164.555 10746.90 11595.92 3960.000 +SIMU 1976 4 18 24 0 7628.225 11163.71 11163.71 3960.000 +SIMU 1976 4 19 12 0 7486.661 10410.07 10410.07 5832.000 +SIMU 1976 4 19 24 0 7403.147 9832.930 9832.930 5832.000 +SIMU 1976 4 20 12 0 7221.528 9252.327 9256.658 6192.000 +SIMU 1976 4 20 24 0 8600.985 11659.31 11828.30 6192.000 +SIMU 1976 4 21 12 0 9639.791 13331.55 13402.07 6000.000 +SIMU 1976 4 21 24 0 9924.361 13559.89 13559.89 6000.000 +SIMU 1976 4 22 12 0 9659.603 12586.00 12586.00 6192.000 +SIMU 1976 4 22 24 0 9506.230 11871.69 11871.69 6192.000 +SIMU 1976 4 23 12 0 9431.766 12162.72 13825.13 6120.000 +SIMU 1976 4 23 24 0 10365.31 15744.01 16081.51 6120.000 +SIMU 1976 4 24 12 0 10826.79 16290.42 16611.88 6768.000 +SIMU 1976 4 24 24 0 11493.72 16030.07 16058.38 6768.000 +SIMU 1976 4 25 12 0 11736.68 15501.91 15801.95 8952.000 +SIMU 1976 4 25 24 0 12024.70 15226.28 15226.28 8952.000 +SIMU 1976 4 26 12 0 11697.15 14233.31 14233.31 11664.00 +SIMU 1976 4 26 24 0 11519.66 13534.45 13534.45 11664.00 +SIMU 1976 4 27 12 0 11173.10 12778.73 12778.73 10896.00 +SIMU 1976 4 27 24 0 10975.75 12259.70 12259.70 10896.00 +SIMU 1976 4 28 12 0 10633.20 11663.72 11663.72 8832.000 +SIMU 1976 4 28 24 0 10444.50 11274.92 11274.92 8832.000 +SIMU 1976 4 29 12 0 10113.05 10785.08 10785.08 7512.000 +SIMU 1976 4 29 24 0 9910.364 10456.66 10456.66 7512.000 +SIMU 1976 4 30 12 0 9582.726 10028.91 10028.91 6864.000 +SIMU 1976 4 30 24 0 9389.166 9755.379 9755.379 6864.000 +SIMU 1976 5 1 12 0 9082.641 9384.731 9384.731 6432.000 +SIMU 1976 5 1 24 0 8901.657 9152.135 9152.135 6432.000 +SIMU 1976 5 2 12 0 9503.853 9853.097 9976.797 5928.000 +SIMU 1976 5 2 24 0 9716.493 10048.33 10048.33 5928.000 +SIMU 1976 5 3 12 0 9411.116 9680.611 9680.612 5400.000 +SIMU 1976 5 3 24 0 9216.255 9436.145 9436.145 5400.000 +SIMU 1976 5 4 12 0 8910.540 9090.828 9090.829 4944.000 +SIMU 1976 5 4 24 0 8723.168 8871.730 8871.730 4944.000 +SIMU 1976 5 5 12 0 8424.436 8547.482 8547.482 4536.000 +SIMU 1976 5 5 24 0 8232.727 8335.167 8335.166 4536.000 +SIMU 1976 5 6 12 0 7944.313 8030.040 8030.040 4344.000 +SIMU 1976 5 6 24 0 7758.746 7830.853 7830.853 4344.000 +SIMU 1976 5 7 12 0 7502.618 7563.573 7563.572 3912.000 +SIMU 1976 5 7 24 0 7343.863 7395.641 7395.641 3912.000 +SIMU 1976 5 8 12 0 7109.180 7153.368 7153.368 3720.000 +SIMU 1976 5 8 24 0 6952.368 6990.245 6990.245 3720.000 +SIMU 1976 5 9 12 0 6709.893 6742.497 6742.497 3576.000 +SIMU 1976 5 9 24 0 6544.151 6572.327 6572.327 3576.000 +SIMU 1976 5 10 12 0 6313.746 6338.182 6338.182 3456.000 +SIMU 1976 5 10 24 0 6163.176 6184.440 6184.440 3456.000 +SIMU 1976 5 11 12 0 5949.690 5968.250 5968.250 3360.000 +SIMU 1976 5 11 24 0 5805.403 5821.648 5821.648 3360.000 +SIMU 1976 5 12 12 0 5606.486 5620.741 5620.741 3192.000 +SIMU 1976 5 12 24 0 5475.732 5487.095 5488.084 3192.000 +SIMU 1976 5 13 12 0 5921.376 5965.900 6166.316 3312.000 +SIMU 1976 5 13 24 0 6240.886 6296.999 6297.000 3312.000 +SIMU 1976 5 14 12 0 6074.830 6120.905 6120.905 3336.000 +SIMU 1976 5 14 24 0 5974.801 6012.826 6012.826 3336.000 +SIMU 1976 5 15 12 0 5821.232 5853.288 5861.953 3192.000 +SIMU 1976 5 15 24 0 5841.707 5870.807 5874.759 3192.000 +SIMU 1976 5 16 12 0 6133.264 6211.042 6540.570 3888.000 +SIMU 1976 5 16 24 0 7443.866 7770.854 7841.980 3888.000 +SIMU 1976 5 17 12 0 7393.988 7657.070 7657.070 6312.000 +SIMU 1976 5 17 24 0 7248.306 7455.735 7455.735 6312.000 +SIMU 1976 5 18 12 0 7016.071 7180.006 7180.006 8064.000 +SIMU 1976 5 18 24 0 6864.927 6994.829 6994.828 8064.000 +SIMU 1976 5 19 12 0 6632.440 6735.670 6735.670 7296.000 +SIMU 1976 5 19 24 0 6473.555 6555.850 6555.850 7296.000 +SIMU 1976 5 20 12 0 6242.143 6307.977 6307.977 6264.000 +SIMU 1976 5 20 24 0 6078.955 6131.816 6131.816 6264.000 +SIMU 1976 5 21 12 0 5863.405 5906.022 5906.022 5592.000 +SIMU 1976 5 21 24 0 5725.353 5759.856 5759.856 5592.000 +SIMU 1976 5 22 12 0 5548.791 5578.020 5627.149 5208.000 +SIMU 1976 5 22 24 0 6055.835 6113.732 6209.580 5208.000 +SIMU 1976 5 23 12 0 6378.099 6441.832 6473.352 5976.000 +SIMU 1976 5 23 24 0 6387.691 6444.794 6459.470 5976.000 +SIMU 1976 5 24 12 0 6229.678 6278.872 6278.872 6672.000 +SIMU 1976 5 24 24 0 6120.713 6162.870 6162.870 6672.000 +SIMU 1976 5 25 12 0 5929.489 5965.768 5965.768 6312.000 +SIMU 1976 5 25 24 0 5796.314 5827.657 5827.657 6312.000 +SIMU 1976 5 26 12 0 5602.609 5629.787 5629.786 5640.000 +SIMU 1976 5 26 24 0 5469.314 5492.957 5492.957 5640.000 +SIMU 1976 5 27 12 0 5284.036 5304.670 5304.670 5088.000 +SIMU 1976 5 27 24 0 5158.005 5176.063 5176.063 5088.000 +SIMU 1976 5 28 12 0 4983.002 4998.846 4998.846 4728.000 +SIMU 1976 5 28 24 0 4909.798 4945.371 5005.282 4728.000 +SIMU 1976 5 29 12 0 5589.246 5941.422 6028.131 4704.000 +SIMU 1976 5 29 24 0 5797.516 6205.313 6205.313 4704.000 +SIMU 1976 5 30 12 0 5633.561 5950.626 5950.626 6552.000 +SIMU 1976 5 30 24 0 5528.438 5775.097 5775.097 6552.000 +SIMU 1976 5 31 12 0 5369.578 5561.591 5561.591 7776.000 +SIMU 1976 5 31 24 0 5268.968 5418.550 5418.550 7776.000 +SIMU 1976 6 1 12 0 5117.311 5233.938 5233.937 6648.000 +SIMU 1976 6 1 24 0 5018.680 5109.698 5109.698 6648.000 +SIMU 1976 6 2 12 0 4868.513 4939.623 4939.624 5496.000 +SIMU 1976 6 2 24 0 4762.963 4818.588 4818.588 5496.000 +SIMU 1976 6 3 12 0 4608.494 4652.067 4652.067 4728.000 +SIMU 1976 6 3 24 0 4493.570 4527.758 4527.758 4728.000 +SIMU 1976 6 4 12 0 4338.532 4365.403 4365.403 4200.000 +SIMU 1976 6 4 24 0 4224.821 4245.983 4245.983 4200.000 +SIMU 1976 6 5 12 0 4074.822 4091.525 4091.525 3864.000 +SIMU 1976 6 5 24 0 3962.500 3975.717 3975.717 3864.000 +SIMU 1976 6 6 12 0 3821.470 3831.957 3831.957 3600.000 +SIMU 1976 6 6 24 0 3719.002 3727.348 3727.348 3600.000 +SIMU 1976 6 7 12 0 3589.172 3595.836 3595.836 3408.000 +SIMU 1976 6 7 24 0 3492.674 3498.013 3498.013 3408.000 +SIMU 1976 6 8 12 0 3369.697 3373.993 3373.993 3216.000 +SIMU 1976 6 8 24 0 3274.981 3278.451 3278.451 3216.000 +SIMU 1976 6 9 12 0 3150.390 3153.204 3153.204 3048.000 +SIMU 1976 6 9 24 0 3044.716 3046.042 3046.042 3048.000 +SIMU 1976 6 10 12 0 3291.709 3459.219 3513.617 3024.000 +SIMU 1976 6 10 24 0 3518.919 3747.066 3747.066 3024.000 +SIMU 1976 6 11 12 0 3413.929 3595.808 3595.808 3048.000 +SIMU 1976 6 11 24 0 3344.455 3489.951 3489.951 3048.000 +SIMU 1976 6 12 12 0 3228.865 3345.692 3345.692 3024.000 +SIMU 1976 6 12 24 0 3221.686 3381.008 3396.237 3024.000 +SIMU 1976 6 13 12 0 3343.770 3607.325 3607.325 2808.000 +SIMU 1976 6 13 24 0 3731.925 4195.831 4273.231 2808.000 +SIMU 1976 6 14 12 0 4313.558 4992.616 4992.689 3264.000 +SIMU 1976 6 14 24 0 4236.824 4773.909 4773.984 3264.000 +SIMU 1976 6 15 12 0 4153.155 4580.737 4592.651 3120.000 +SIMU 1976 6 15 24 0 4062.318 4402.652 4402.652 3120.000 +SIMU 1976 6 16 12 0 3938.319 4210.056 4210.056 3408.000 +SIMU 1976 6 16 24 0 3855.712 4073.456 4073.456 3408.000 +SIMU 1976 6 17 12 0 3734.820 3909.976 3909.976 3192.000 +SIMU 1976 6 17 24 0 3637.509 3778.990 3778.990 3192.000 +SIMU 1976 6 18 12 0 3526.016 3640.807 3640.861 2664.000 +SIMU 1976 6 18 24 0 3452.074 3545.638 3545.638 2664.000 +SIMU 1976 6 19 12 0 3343.906 3420.537 3420.537 2424.000 +SIMU 1976 6 19 24 0 3263.694 3326.768 3326.768 2424.000 +SIMU 1976 6 20 12 0 3155.298 3207.479 3207.478 2208.000 +SIMU 1976 6 20 24 0 3066.159 3109.553 3109.553 2208.000 +SIMU 1976 6 21 12 0 2960.541 2996.813 2996.812 2040.000 +SIMU 1976 6 21 24 0 2882.089 2912.564 2912.564 2040.000 +SIMU 1976 6 22 12 0 2782.793 2808.525 2808.525 1896.000 +SIMU 1976 6 22 24 0 2701.439 2723.275 2723.275 1896.000 +SIMU 1976 6 23 12 0 2603.720 2622.335 2622.335 1752.000 +SIMU 1976 6 23 24 0 2524.560 2540.502 2540.502 1752.000 +SIMU 1976 6 24 12 0 2506.310 2572.711 2636.606 1704.000 +SIMU 1976 6 24 24 0 2803.375 3035.986 3079.804 1704.000 +SIMU 1976 6 25 12 0 2754.266 2936.758 2936.758 1632.000 +SIMU 1976 6 25 24 0 2686.124 2828.623 2828.623 1632.000 +SIMU 1976 6 26 12 0 2606.177 2717.578 2717.578 1560.000 +SIMU 1976 6 26 24 0 2561.369 2656.339 2677.624 1560.000 +SIMU 1976 6 27 12 0 2647.217 2752.256 2752.709 1512.000 +SIMU 1976 6 27 24 0 2713.907 2819.464 2860.134 1512.000 +SIMU 1976 6 28 12 0 3036.492 3202.362 3233.577 1416.000 +SIMU 1976 6 28 24 0 3110.139 3268.096 3268.096 1416.000 +SIMU 1976 6 29 12 0 3023.118 3145.993 3145.993 1368.000 +SIMU 1976 6 29 24 0 2956.332 3051.979 3051.979 1368.000 +SIMU 1976 6 30 12 0 2866.452 2940.957 2940.958 1416.000 +SIMU 1976 6 30 24 0 2798.310 2856.396 2856.396 1416.000 +SIMU 1976 7 1 12 0 2712.273 2757.601 2757.601 1368.000 +SIMU 1976 7 1 24 0 2644.846 2680.256 2680.256 1368.000 +SIMU 1976 7 2 12 0 2569.992 2597.689 2597.689 1248.000 +SIMU 1976 7 2 24 0 2521.579 2543.271 2543.271 1248.000 +SIMU 1976 7 3 12 0 2442.126 2459.143 2459.143 1200.000 +SIMU 1976 7 3 24 0 2360.918 2374.291 2374.291 1200.000 +SIMU 1976 7 4 12 0 2276.082 2286.612 2286.612 1128.000 +SIMU 1976 7 4 24 0 2215.493 2223.803 2223.803 1128.000 +SIMU 1976 7 5 12 0 2142.424 2148.998 2148.998 1056.000 +SIMU 1976 7 5 24 0 2081.151 2086.365 2086.365 1056.000 +SIMU 1976 7 6 12 0 2003.279 2007.428 2007.429 1008.000 +SIMU 1976 7 6 24 0 1930.496 1933.807 1933.807 1008.000 +SIMU 1976 7 7 12 0 1860.211 1862.865 1862.865 1008.000 +SIMU 1976 7 7 24 0 1801.562 1803.067 1803.067 1008.000 +SIMU 1976 7 8 12 0 1727.611 1728.135 1728.135 1008.000 +SIMU 1976 7 8 24 0 1654.591 1655.059 1655.059 1008.000 +SIMU 1976 7 9 12 0 1580.965 1581.384 1581.384 960.0000 +SIMU 1976 7 9 24 0 1521.349 1521.723 1521.723 960.0000 +SIMU 1976 7 10 12 0 1448.820 1449.155 1449.155 912.0000 +SIMU 1976 7 10 24 0 1375.131 1375.431 1375.431 912.0000 +SIMU 1976 7 11 12 0 1304.743 1305.011 1305.011 888.0000 +SIMU 1976 7 11 24 0 1248.129 1248.368 1248.368 888.0000 +SIMU 1976 7 12 12 0 1185.909 1186.123 1186.123 816.0000 +SIMU 1976 7 12 24 0 1126.353 1126.545 1126.545 816.0000 +SIMU 1976 7 13 12 0 1064.962 1065.078 1065.078 792.0000 +SIMU 1976 7 13 24 0 1008.634 1008.634 1008.634 792.0000 +SIMU 1976 7 14 12 0 947.6622 947.6622 947.6622 768.0000 +SIMU 1976 7 14 24 0 887.4125 887.4125 887.4125 768.0000 +SIMU 1976 7 15 12 0 835.6957 835.6957 835.6957 792.0000 +SIMU 1976 7 15 24 0 817.9781 823.5078 823.8835 792.0000 +SIMU 1976 7 16 12 0 788.2032 796.4568 796.4568 816.0000 +SIMU 1976 7 16 24 0 740.7318 748.1143 748.1143 816.0000 +SIMU 1976 7 17 12 0 692.7055 699.3084 699.3083 840.0000 +SIMU 1976 7 17 24 0 647.5076 653.4134 653.4134 840.0000 +SIMU 1976 7 18 12 0 602.0175 607.2998 607.2998 816.0000 +SIMU 1976 7 18 24 0 558.3641 563.0889 563.0889 816.0000 +SIMU 1976 7 19 12 0 524.3542 528.5801 528.5801 792.0000 +SIMU 1976 7 19 24 0 504.0474 507.8271 507.8271 792.0000 +SIMU 1976 7 20 12 0 479.9358 483.4558 488.4977 816.0000 +SIMU 1976 7 20 24 0 480.9326 484.4180 503.8568 816.0000 +SIMU 1976 7 21 12 0 486.5504 489.6679 489.6679 792.0000 +SIMU 1976 7 21 24 0 479.3178 482.1062 482.1063 792.0000 +SIMU 1976 7 22 12 0 471.2202 473.7142 473.7142 792.0000 +SIMU 1976 7 22 24 0 459.2761 461.5067 461.5067 792.0000 +SIMU 1976 7 23 12 0 436.4136 438.4089 438.4089 816.0000 +SIMU 1976 7 23 24 0 408.7779 410.5625 410.5625 816.0000 +SIMU 1976 7 24 12 0 372.2911 373.8872 373.8872 768.0000 +SIMU 1976 7 24 24 0 327.2109 328.6385 328.6385 768.0000 +SIMU 1976 7 25 12 0 286.3557 287.6327 287.6327 720.0000 +SIMU 1976 7 25 24 0 250.3043 251.4465 251.4465 720.0000 +SIMU 1976 7 26 12 0 229.2224 231.0525 237.9428 720.0000 +SIMU 1976 7 26 24 0 230.0116 232.8386 232.8386 720.0000 +SIMU 1976 7 27 12 0 210.4846 213.0132 213.0132 648.0000 +SIMU 1976 7 27 24 0 185.2401 189.8054 199.3956 648.0000 +SIMU 1976 7 28 12 0 355.7942 502.2871 564.0080 1272.000 +SIMU 1976 7 28 24 0 389.4540 525.8757 525.8757 1272.000 +SIMU 1976 7 29 12 0 379.2825 492.8959 492.8959 1896.000 +SIMU 1976 7 29 24 0 359.0034 454.1112 454.1112 1896.000 +SIMU 1976 7 30 12 0 331.6174 411.6410 411.6410 1296.000 +SIMU 1976 7 30 24 0 304.1752 371.9807 375.6659 1296.000 +SIMU 1976 7 31 12 0 299.1547 356.9792 356.9792 984.0000 +SIMU 1976 7 31 24 0 294.6993 344.0361 344.0361 984.0000 +SIMU 1976 8 1 12 0 284.0786 326.3608 326.3608 864.0000 +SIMU 1976 8 1 24 0 257.2543 293.6428 293.6428 864.0000 +SIMU 1976 8 2 12 0 229.6317 261.0710 261.0710 744.0000 +SIMU 1976 8 2 24 0 203.5243 230.7866 230.7866 744.0000 +SIMU 1976 8 3 12 0 177.7175 201.4372 201.4372 672.0000 +SIMU 1976 8 3 24 0 152.2990 172.9997 172.9998 672.0000 +SIMU 1976 8 4 12 0 125.5375 143.6541 143.6541 624.0000 +SIMU 1976 8 4 24 0 96.83620 112.7313 112.7313 624.0000 +SIMU 1976 8 5 12 0 70.62148 83.98846 83.98846 552.0000 +SIMU 1976 8 5 24 0 48.83453 59.95349 59.95348 552.0000 +SIMU 1976 8 6 12 0 33.63858 43.58369 43.58369 552.0000 +SIMU 1976 8 6 24 0 17.44626 26.34144 26.34144 552.0000 +SIMU 1976 8 7 12 0 9.618545 17.57463 17.57463 528.0000 +SIMU 1976 8 7 24 0 5.715816 12.83196 12.83196 528.0000 +SIMU 1976 8 8 12 0 1.375276 7.740143 7.740143 504.0000 +SIMU 1976 8 8 24 0 0.000000 5.692911 5.692911 504.0000 +SIMU 1976 8 9 12 0 0.000000 5.091894 5.091894 480.0000 +SIMU 1976 8 9 24 0 0.000000 4.554329 4.554329 480.0000 +SIMU 1976 8 10 12 0 0.000000 4.073516 4.073516 456.0000 +SIMU 1976 8 10 24 0 0.000000 3.643464 3.643464 456.0000 +SIMU 1976 8 11 12 0 0.000000 3.258813 3.258813 504.0000 +SIMU 1976 8 11 24 0 0.000000 2.914772 2.914772 504.0000 +SIMU 1976 8 12 12 0 0.000000 2.607051 2.607051 528.0000 +SIMU 1976 8 12 24 0 0.000000 2.331817 2.331817 528.0000 +SIMU 1976 8 13 12 0 0.000000 2.085641 2.085641 480.0000 +SIMU 1976 8 13 24 0 0.000000 1.865454 1.865454 480.0000 +SIMU 1976 8 14 12 0 3.306299 5.189642 8.569720 504.0000 +SIMU 1976 8 14 24 0 4.317553 6.061530 6.061530 504.0000 +SIMU 1976 8 15 12 0 2.381328 3.941188 3.941188 528.0000 +SIMU 1976 8 15 24 0 0.000000 1.395181 1.395181 528.0000 +SIMU 1976 8 16 12 0 0.000000 1.247888 1.247888 504.0000 +SIMU 1976 8 16 24 0 0.000000 1.116145 1.116145 504.0000 +SIMU 1976 8 17 12 0 27.85040 45.21229 46.50558 480.0000 +SIMU 1976 8 17 24 0 29.45068 45.73265 45.73265 480.0000 +SIMU 1976 8 18 12 0 27.14911 41.71215 41.71215 456.0000 +SIMU 1976 8 18 24 0 21.66637 34.69194 34.69194 456.0000 +SIMU 1976 8 19 12 0 16.10777 27.75819 27.75819 432.0000 +SIMU 1976 8 19 24 0 10.52678 20.94723 20.94723 432.0000 +SIMU 1976 8 20 12 0 5.192156 14.51250 14.51250 408.0000 +SIMU 1976 8 20 24 0 0.6898000 9.026163 9.026163 408.0000 +SIMU 1976 8 21 12 0 0.000000 7.456270 7.456270 408.0000 +SIMU 1976 8 21 24 0 0.000000 6.669090 6.669090 408.0000 +SIMU 1976 8 22 12 0 0.000000 5.965015 5.965015 384.0000 +SIMU 1976 8 22 24 0 0.000000 5.335272 5.335272 384.0000 +SIMU 1976 8 23 12 0 0.000000 4.772013 4.772013 360.0000 +SIMU 1976 8 23 24 0 0.000000 4.268219 4.268219 360.0000 +SIMU 1976 8 24 12 0 0.000000 3.817610 3.817610 336.0000 +SIMU 1976 8 24 24 0 0.000000 3.414574 3.414574 336.0000 +SIMU 1976 8 25 12 0 0.000000 3.054089 3.054089 360.0000 +SIMU 1976 8 25 24 0 30.53471 54.81184 62.28218 360.0000 +SIMU 1976 8 26 12 0 37.82723 62.75433 62.99365 408.0000 +SIMU 1976 8 26 24 0 37.40852 59.71318 59.71318 408.0000 +SIMU 1976 8 27 12 0 32.02015 51.97005 51.97005 360.0000 +SIMU 1976 8 27 24 0 25.22998 43.07370 43.07370 360.0000 +SIMU 1976 8 28 12 0 18.50882 34.46874 34.46874 336.0000 +SIMU 1976 8 28 24 0 11.87564 26.15062 26.15062 336.0000 +SIMU 1976 8 29 12 0 6.554318 19.32225 19.32225 336.0000 +SIMU 1976 8 29 24 0 2.632745 14.05273 14.05273 336.0000 +SIMU 1976 8 30 12 0 4.2170662E-02 10.25652 10.25652 312.0000 +SIMU 1976 8 30 24 0 0.000000 9.135987 9.135987 312.0000 +SIMU 1976 8 31 12 0 0.000000 8.171477 8.171477 360.0000 +SIMU 1976 8 31 24 0 0.000000 7.308790 7.308790 360.0000 +SIMU 1976 9 1 12 0 0.000000 6.537181 6.537181 336.0000 +SIMU 1976 9 1 24 0 0.000000 5.847033 5.847033 336.0000 +SIMU 1976 9 2 12 0 0.000000 5.229745 5.229745 360.0000 +SIMU 1976 9 2 24 0 0.000000 4.677627 4.677627 360.0000 +SIMU 1976 9 3 12 0 0.000000 4.183796 4.183796 336.0000 +SIMU 1976 9 3 24 0 0.000000 3.742100 3.742100 336.0000 +SIMU 1976 9 4 12 0 0.000000 3.347037 3.347037 336.0000 +SIMU 1976 9 4 24 0 0.000000 2.993680 2.993680 336.0000 +SIMU 1976 9 5 12 0 0.000000 2.677629 2.677629 312.0000 +SIMU 1976 9 5 24 0 0.000000 2.394944 2.394944 312.0000 +SIMU 1976 9 6 12 0 0.000000 2.142103 2.142103 312.0000 +SIMU 1976 9 6 24 0 0.000000 1.915955 1.915955 312.0000 +SIMU 1976 9 7 12 0 0.000000 1.713682 1.713682 288.0000 +SIMU 1976 9 7 24 0 0.000000 1.532764 1.532764 288.0000 +SIMU 1976 9 8 12 0 0.000000 1.370945 1.370945 288.0000 +SIMU 1976 9 8 24 0 0.000000 1.226211 1.226211 288.0000 +SIMU 1976 9 9 12 0 0.000000 1.096756 1.096756 288.0000 +SIMU 1976 9 9 24 0 0.000000 0.9809685 0.9809685 288.0000 +SIMU 1976 9 10 12 0 0.000000 0.8774048 0.8774048 312.0000 +SIMU 1976 9 10 24 0 0.000000 0.7847747 0.7847747 312.0000 +SIMU 1976 9 11 12 0 0.000000 0.7019238 0.7019238 336.0000 +SIMU 1976 9 11 24 0 0.000000 0.6278196 0.6278196 336.0000 +SIMU 1976 9 12 12 0 0.000000 0.5615390 0.5615390 312.0000 +SIMU 1976 9 12 24 0 0.000000 0.5022559 0.5022559 312.0000 +SIMU 1976 9 13 12 0 0.000000 0.4492313 0.4492313 288.0000 +SIMU 1976 9 13 24 0 0.000000 0.4018047 0.4018047 288.0000 +SIMU 1976 9 14 12 0 0.000000 0.3593851 0.3593851 288.0000 +SIMU 1976 9 14 24 0 0.000000 0.3214438 0.3214438 288.0000 +SIMU 1976 9 15 12 0 0.000000 0.2875081 0.2875081 288.0000 +SIMU 1976 9 15 24 0 0.000000 0.2571551 0.2571551 288.0000 +SIMU 1976 9 16 12 0 0.000000 0.2300065 0.2300065 288.0000 +SIMU 1976 9 16 24 0 0.000000 0.2057241 0.2057241 288.0000 +SIMU 1976 9 17 12 0 0.000000 0.1840052 0.1840052 288.0000 +SIMU 1976 9 17 24 0 0.000000 4.9913384E-02 4.9913384E-02 288.0000 +SIMU 1976 9 18 12 0 0.000000 0.000000 0.000000 288.0000 +SIMU 1976 9 18 24 0 0.000000 0.000000 0.000000 288.0000 +SIMU 1976 9 19 12 0 11.82189 14.95630 20.28834 336.0000 +SIMU 1976 9 19 24 0 25.88178 31.69412 31.69412 336.0000 +SIMU 1976 9 20 12 0 24.66236 29.86107 29.86107 384.0000 +SIMU 1976 9 20 24 0 19.24643 23.89630 23.89630 384.0000 +SIMU 1976 9 21 12 0 14.29944 18.45841 18.45841 408.0000 +SIMU 1976 9 21 24 0 10.10197 13.82186 13.82186 408.0000 +SIMU 1976 9 22 12 0 7.246496 10.57367 10.57367 384.0000 +SIMU 1976 9 22 24 0 4.182612 7.158529 7.158529 384.0000 +SIMU 1976 9 23 12 0 0.8932837 3.555027 3.555026 336.0000 +SIMU 1976 9 23 24 0 0.000000 2.380735 2.380735 336.0000 +SIMU 1976 9 24 12 0 0.000000 2.129394 2.129394 312.0000 +SIMU 1976 9 24 24 0 0.000000 1.904588 1.904588 312.0000 +SIMU 1976 9 25 12 0 0.000000 1.703515 1.703515 312.0000 +SIMU 1976 9 25 24 0 0.000000 1.523670 1.523670 312.0000 +SIMU 1976 9 26 12 0 0.000000 1.362812 1.362812 288.0000 +SIMU 1976 9 26 24 0 0.000000 1.218936 1.218936 288.0000 +SIMU 1976 9 27 12 0 0.1548235 1.245073 1.393924 288.0000 +SIMU 1976 9 27 24 0 0.4264256 1.401574 1.401574 288.0000 +SIMU 1976 9 28 12 0 0.4221386 1.294338 1.294338 288.0000 +SIMU 1976 9 28 24 0 0.4178956 1.198015 1.198015 288.0000 +SIMU 1976 9 29 12 0 0.4136944 1.111454 1.111454 312.0000 +SIMU 1976 9 29 24 0 0.2518055 0.8759007 0.8759007 312.0000 +SIMU 1976 9 30 12 0 0.000000 0.5582076 0.5582076 288.0000 +SIMU 1976 9 30 24 0 0.000000 0.4992760 0.4992760 288.0000 +SIMU 1976 10 1 12 0 0.000000 0.4465660 0.4465660 288.0000 +SIMU 1976 10 1 24 0 0.000000 0.3994207 0.3994207 288.0000 +SIMU 1976 10 2 12 0 0.000000 0.3572528 0.3572528 0.000000 +SIMU 1976 10 2 24 0 0.000000 0.3195366 0.3195366 0.000000 +SIMU 1976 10 3 12 0 0.000000 0.2858022 0.2858022 0.000000 +SIMU 1976 10 3 24 0 0.000000 0.2556292 0.2556292 0.000000 +SIMU 1976 10 4 12 0 1.616946 1.943475 5.741490 0.000000 +SIMU 1976 10 4 24 0 8.951859 9.516360 16.73438 0.000000 +SIMU 1976 10 5 12 0 13.37803 13.92399 15.55124 0.000000 +SIMU 1976 10 5 24 0 12.00275 12.49107 12.49107 0.000000 +SIMU 1976 10 6 12 0 10.52446 10.96123 10.96123 0.000000 +SIMU 1976 10 6 24 0 10.28052 10.67118 10.67118 0.000000 +SIMU 1976 10 7 12 0 9.744522 10.09394 10.09394 0.000000 +SIMU 1976 10 7 24 0 2.493862 2.806388 2.806388 0.000000 +SIMU 1976 10 8 12 0 0.000000 0.2795316 0.2795316 0.000000 +SIMU 1976 10 8 24 0 0.000000 0.2500207 0.2500207 0.000000 +SIMU 1976 10 9 12 0 0.000000 0.2236253 0.2236253 0.000000 +SIMU 1976 10 9 24 0 0.000000 0.2000165 0.2000165 0.000000 +SIMU 1976 10 10 12 0 0.000000 0.1789002 0.1789002 0.000000 +SIMU 1976 10 10 24 0 0.000000 7.0297145E-03 7.0297145E-03 0.000000 +SIMU 1976 10 11 12 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 11 24 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 12 12 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 12 24 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 13 12 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 13 24 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 14 12 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 14 24 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 15 12 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 15 24 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 16 12 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 16 24 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 17 12 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 17 24 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 18 12 0 0.000000 0.000000 0.000000 0.000000 +SIMU 1976 10 18 24 0 0.1295344 0.1295344 0.3030436 0.000000 +SIMU 1976 10 19 12 0 1.904068 1.904068 6.377760 0.000000 +SIMU 1976 10 19 24 0 5.304407 5.304407 5.304407 0.000000 +SIMU 1976 10 20 12 0 5.250734 5.250734 5.250734 0.000000 +SIMU 1976 10 20 24 0 5.197873 5.197873 5.197873 0.000000 +SIMU 1976 10 21 12 0 5.145288 5.145288 5.145288 0.000000 +SIMU 1976 10 21 24 0 4.193458 4.193458 4.193458 0.000000 +SIMU 1976 10 22 12 0 3.716582 3.716582 3.716582 0.000000 +SIMU 1976 10 22 24 0 2.110835 2.110835 2.110835 0.000000 +SIMU 1976 10 23 12 0 1.469405 1.469405 1.469405 0.000000 +SIMU 1976 10 23 24 0 7.433715 7.835683 40.46391 0.000000 +SIMU 1976 10 24 12 0 26.29626 27.88728 32.70226 0.000000 +SIMU 1976 10 24 24 0 27.61778 29.14638 29.14638 0.000000 +SIMU 1976 10 25 12 0 27.32807 28.69529 28.69533 0.000000 +SIMU 1976 10 25 24 0 27.04974 28.27263 28.27262 0.000000 +SIMU 1976 10 26 12 0 26.76316 27.85693 27.85693 0.000000 +SIMU 1976 10 26 24 0 26.49056 27.46886 27.46886 0.000000 +SIMU 1976 10 27 12 0 26.21033 27.08535 27.08535 0.000000 +SIMU 1976 10 27 24 0 25.94347 26.72611 26.72611 0.000000 +SIMU 1976 10 28 12 0 25.66943 26.36945 26.36945 0.000000 +SIMU 1976 10 28 24 0 24.99927 25.62538 25.62538 0.000000 +SIMU 1976 10 29 12 0 23.76388 24.32389 24.32389 0.000000 +SIMU 1976 10 29 24 0 22.16269 22.66358 22.66358 0.000000 +SIMU 1976 10 30 12 0 23.46229 23.94492 29.29656 0.000000 +SIMU 1976 10 30 24 0 33.60037 34.24939 39.01993 0.000000 +SIMU 1976 10 31 12 0 34.18276 34.77349 34.77349 0.000000 +SIMU 1976 10 31 24 0 33.83573 34.36410 34.36410 0.000000 +SIMU 1976 11 1 12 0 33.48219 33.95477 33.95477 0.000000 +SIMU 1976 11 1 24 0 33.14237 33.56507 33.56507 0.000000 +SIMU 1976 11 2 12 0 32.79008 33.16815 33.16815 0.000000 +SIMU 1976 11 2 24 0 31.39140 31.72956 31.72956 0.000000 +SIMU 1976 11 3 12 0 30.21948 30.52194 30.52194 0.000000 +SIMU 1976 11 3 24 0 29.01873 29.28926 29.28926 0.000000 +SIMU 1976 11 4 12 0 28.42418 28.66615 28.66615 0.000000 +SIMU 1976 11 4 24 0 27.26430 27.48071 27.48071 0.000000 +SIMU 1976 11 5 12 0 26.70259 26.89616 26.89616 0.000000 +SIMU 1976 11 5 24 0 25.22231 25.35395 25.35396 0.000000 +SIMU 1976 11 6 12 0 24.41317 24.41317 24.41317 0.000000 +SIMU 1976 11 6 24 0 23.63493 23.63493 23.63493 0.000000 +SIMU 1976 11 7 12 0 23.32906 23.32906 23.32906 0.000000 +SIMU 1976 11 7 24 0 22.76479 22.76479 22.76479 0.000000 +SIMU 1976 11 8 12 0 22.43890 22.43890 22.43890 0.000000 +SIMU 1976 11 8 24 0 21.68569 21.68569 21.68569 0.000000 +SIMU 1976 11 9 12 0 20.83400 20.83400 20.83400 0.000000 +SIMU 1976 11 9 24 0 20.29675 20.29675 20.29675 0.000000 +SIMU 1976 11 10 12 0 20.06202 20.06202 20.06202 0.000000 +SIMU 1976 11 10 24 0 19.63494 19.63494 19.63494 0.000000 +SIMU 1976 11 11 12 0 19.37324 19.37324 19.37324 0.000000 +SIMU 1976 11 11 24 0 19.17737 19.17737 19.17737 0.000000 +SIMU 1976 11 12 12 0 18.98011 18.98011 18.98011 0.000000 +SIMU 1976 11 12 24 0 18.78824 18.78824 18.78824 0.000000 +SIMU 1976 11 13 12 0 18.59512 18.59512 18.59512 0.000000 +SIMU 1976 11 13 24 0 18.29562 18.29562 18.29562 0.000000 +SIMU 1976 11 14 12 0 18.08212 18.08212 18.08212 0.000000 +SIMU 1976 11 14 24 0 17.33713 17.33713 17.33713 0.000000 +SIMU 1976 11 15 12 0 16.93672 16.93672 16.93672 0.000000 +SIMU 1976 11 15 24 0 15.58869 15.58869 15.58869 0.000000 +SIMU 1976 11 16 12 0 15.04656 15.04656 15.04656 0.000000 +SIMU 1976 11 16 24 0 13.40035 13.40035 13.40035 0.000000 +SIMU 1976 11 17 12 0 12.55171 12.55171 12.55171 0.000000 +SIMU 1976 11 17 24 0 10.70698 10.70698 10.70698 0.000000 +SIMU 1976 11 18 12 0 10.10353 10.10353 10.10353 0.000000 +SIMU 1976 11 18 24 0 9.495403 9.495403 9.495403 0.000000 +SIMU 1976 11 19 12 0 9.222705 9.222705 9.222705 0.000000 +SIMU 1976 11 19 24 0 8.624109 8.624109 8.624109 0.000000 +SIMU 1976 11 20 12 0 8.384901 8.384901 8.384901 0.000000 +SIMU 1976 11 20 24 0 8.151299 8.151299 8.151299 0.000000 +SIMU 1976 11 21 12 0 8.013232 8.013232 8.013232 0.000000 +SIMU 1976 11 21 24 0 7.932450 7.932450 7.932450 0.000000 +SIMU 1976 11 22 12 0 7.851743 7.851743 7.851743 0.000000 +SIMU 1976 11 22 24 0 7.772588 7.772588 7.772588 0.000000 +SIMU 1976 11 23 12 0 7.685007 7.685007 7.685007 0.000000 +SIMU 1976 11 23 24 0 7.128718 7.128718 7.128718 0.000000 +SIMU 1976 11 24 12 0 6.824726 6.824726 6.824726 0.000000 +SIMU 1976 11 24 24 0 6.137748 6.137748 6.137748 0.000000 +SIMU 1976 11 25 12 0 5.650980 5.650980 5.650980 0.000000 +SIMU 1976 11 25 24 0 5.375116 5.375116 5.375116 0.000000 +SIMU 1976 11 26 12 0 5.265902 5.265902 5.265902 0.000000 +SIMU 1976 11 26 24 0 5.212901 5.212901 5.212901 0.000000 +SIMU 1976 11 27 12 0 5.160210 5.160210 5.160210 0.000000 +SIMU 1976 11 27 24 0 5.108275 5.108275 5.108275 0.000000 +SIMU 1976 11 28 12 0 5.056653 5.056653 5.056653 0.000000 +SIMU 1976 11 28 24 0 5.005761 5.005761 5.005761 0.000000 +SIMU 1976 11 29 12 0 4.955183 4.955183 4.955183 0.000000 +SIMU 1976 11 29 24 0 4.905315 4.905315 4.905315 0.000000 +SIMU 1976 11 30 12 0 4.855760 4.855760 4.855760 0.000000 +SIMU 1976 11 30 24 0 4.806894 4.806894 4.806894 0.000000 +SIMU 1976 12 1 12 0 4.758340 4.758340 4.758340 0.000000 +SIMU 1976 12 1 24 0 4.710457 4.710457 4.710457 0.000000 +SIMU 1976 12 2 12 0 4.662884 4.662884 4.662884 0.000000 +SIMU 1976 12 2 24 0 4.615964 4.615964 4.615964 0.000000 +SIMU 1976 12 3 12 0 4.569351 4.569351 4.569351 0.000000 +SIMU 1976 12 3 24 0 4.523374 4.523374 4.523374 0.000000 +SIMU 1976 12 4 12 0 4.477704 4.477704 4.477704 0.000000 +SIMU 1976 12 4 24 0 4.432649 4.432649 4.432649 0.000000 +SIMU 1976 12 5 12 0 4.387900 4.387900 4.387900 0.000000 +SIMU 1976 12 5 24 0 4.343751 4.343751 4.343751 0.000000 +SIMU 1976 12 6 12 0 4.299906 4.299906 4.299906 0.000000 +SIMU 1976 12 6 24 0 4.256644 4.256644 4.256644 0.000000 +SIMU 1976 12 7 12 0 4.213683 4.213683 4.213683 0.000000 +SIMU 1976 12 7 24 0 4.171290 4.171290 4.171290 0.000000 +SIMU 1976 12 8 12 0 4.129197 4.129197 4.129197 0.000000 +SIMU 1976 12 8 24 0 4.087655 4.087655 4.087655 0.000000 +SIMU 1976 12 9 12 0 4.046409 4.046409 4.046409 0.000000 +SIMU 1976 12 9 24 0 4.005703 4.005703 4.005703 0.000000 +SIMU 1976 12 10 12 0 3.965293 3.965293 3.965293 0.000000 +SIMU 1976 12 10 24 0 3.925402 3.925402 3.925402 0.000000 +SIMU 1976 12 11 12 0 3.885803 3.885803 3.885803 0.000000 +SIMU 1976 12 11 24 0 3.846713 3.846713 3.846713 0.000000 +SIMU 1976 12 12 12 0 3.807913 3.807913 3.807913 0.000000 +SIMU 1976 12 12 24 0 3.769608 3.769608 3.769608 0.000000 +SIMU 1976 12 13 12 0 3.731589 3.731589 3.731589 0.000000 +SIMU 1976 12 13 24 0 3.686623 3.686623 3.686623 0.000000 +SIMU 1976 12 14 12 0 3.646369 3.646369 3.646369 0.000000 +SIMU 1976 12 14 24 0 3.591136 3.591136 3.591136 0.000000 +SIMU 1976 12 15 12 0 3.549513 3.549513 3.549513 0.000000 +SIMU 1976 12 15 24 0 3.498237 3.498237 3.498237 0.000000 +SIMU 1976 12 16 12 0 3.455036 3.455036 3.455036 0.000000 +SIMU 1976 12 16 24 0 3.384976 3.384976 3.384976 0.000000 +SIMU 1976 12 17 12 0 3.311943 3.311943 3.311943 0.000000 +SIMU 1976 12 17 24 0 3.252935 3.252935 3.252935 0.000000 +SIMU 1976 12 18 12 0 3.257537 3.257537 3.485761 0.000000 +SIMU 1976 12 18 24 0 7.765163 7.765163 10.72768 0.000000 +SIMU 1976 12 19 12 0 8.991038 8.991038 10.32934 0.000000 +SIMU 1976 12 19 24 0 12.84119 12.84119 14.44906 0.000000 +SIMU 1976 12 20 12 0 12.99357 12.99357 12.99357 0.000000 +SIMU 1976 12 20 24 0 12.86289 12.86289 12.86289 0.000000 +SIMU 1976 12 21 12 0 12.73894 12.73894 12.73908 0.000000 +SIMU 1976 12 21 24 0 12.61096 12.61096 12.61096 0.000000 +SIMU 1976 12 22 12 0 12.48959 12.48959 12.48972 0.000000 +SIMU 1976 12 22 24 0 12.36413 12.36413 12.36413 0.000000 +SIMU 1976 12 23 12 0 12.24528 12.24528 12.24541 0.000000 +SIMU 1976 12 23 24 0 12.12229 12.12229 12.12229 0.000000 +SIMU 1976 12 24 12 0 12.00591 12.00591 12.00600 0.000000 +SIMU 1976 12 24 24 0 11.88532 11.88532 11.88532 0.000000 +SIMU 1976 12 25 12 0 11.76515 11.76515 11.76515 0.000000 +SIMU 1976 12 25 24 0 11.64672 11.64672 11.64672 0.000000 +SIMU 1976 12 26 12 0 11.52898 11.52898 11.52898 0.000000 +SIMU 1976 12 26 24 0 11.41294 11.41294 11.41294 0.000000 +SIMU 1976 12 27 12 0 11.30274 11.30274 11.30286 0.000000 +SIMU 1976 12 27 24 0 13.30873 13.30873 15.44544 0.000000 +SIMU 1976 12 28 12 0 13.87782 13.87782 13.87782 0.000000 +SIMU 1976 12 28 24 0 13.73811 13.73811 13.73811 0.000000 +SIMU 1976 12 29 12 0 13.60452 13.60452 13.60468 0.000000 +SIMU 1976 12 29 24 0 13.46780 13.46780 13.46780 0.000000 +SIMU 1976 12 30 12 0 13.33780 13.33780 13.33792 0.000000 +SIMU 1976 12 30 24 0 13.20381 13.20381 13.20381 0.000000 +SIMU 1976 12 31 12 0 13.07650 13.07650 13.07667 0.000000 +SIMU 1976 12 31 24 0 12.94514 12.94514 12.94514 0.000000 diff --git a/tests/test09/HSP2compare/TEST09.UCI b/tests/test09/HSP2compare/TEST09.UCI index 84a16e97..b088cdd8 100644 --- a/tests/test09/HSP2compare/TEST09.UCI +++ b/tests/test09/HSP2compare/TEST09.UCI @@ -7,7 +7,7 @@ GLOBAL RESUME 0 RUN 1 UNIT SYSTEM 1 END GLOBAL -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 TEST.WDM MESSU 22 test09.ech @@ -358,4 +358,3 @@ RCHRES 4 HYDR ROVOL 12.1 PLTGEN 1 INPUT MEAN 3 END NETWORK END RUN - diff --git a/tests/test09/HSP2compare/TEST09bin.UCI b/tests/test09/HSP2compare/TEST09bin.UCI index a879f1f1..d59f8f28 100644 --- a/tests/test09/HSP2compare/TEST09bin.UCI +++ b/tests/test09/HSP2compare/TEST09bin.UCI @@ -7,7 +7,7 @@ GLOBAL RESUME 0 RUN 1 UNIT SYSTEM 1 END GLOBAL -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 TEST.WDM MESSU 22 test09.ech @@ -43,7 +43,7 @@ PERLND # - # ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC *** 1 4 4 12 END PRINT-INFO - + BINARY-INFO Print-flags *** PIVL PYR # - # ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC *** @@ -371,4 +371,3 @@ RCHRES 4 HYDR ROVOL 12.1 PLTGEN 1 INPUT MEAN 3 END NETWORK END RUN - diff --git a/tests/test09/HSPFresults/TEST09.UCI b/tests/test09/HSPFresults/TEST09.UCI index 68fcc5a4..3d26a9db 100644 --- a/tests/test09/HSPFresults/TEST09.UCI +++ b/tests/test09/HSPFresults/TEST09.UCI @@ -7,7 +7,7 @@ GLOBAL RESUME 0 RUN 1 UNIT SYSTEM 1 END GLOBAL -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 test.wdm MESSU 22 test09.ech @@ -358,4 +358,3 @@ RCHRES 4 HYDR ROVOL 12.1 PLTGEN 1 INPUT MEAN 3 END NETWORK END RUN - diff --git a/tests/test09/HSPFresults/TEST09bin.UCI b/tests/test09/HSPFresults/TEST09bin.UCI index 4400d604..f7471913 100644 --- a/tests/test09/HSPFresults/TEST09bin.UCI +++ b/tests/test09/HSPFresults/TEST09bin.UCI @@ -7,7 +7,7 @@ GLOBAL RESUME 0 RUN 1 UNIT SYSTEM 1 END GLOBAL -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 test.wdm MESSU 22 test09.ech @@ -43,7 +43,7 @@ PERLND # - # ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC *** 1 4 4 12 END PRINT-INFO - + BINARY-INFO Print-flags *** PIVL PYR # - # ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC *** @@ -371,4 +371,3 @@ RCHRES 4 HYDR ROVOL 12.1 PLTGEN 1 INPUT MEAN 3 END NETWORK END RUN - diff --git a/tests/test09/HSPFresults/test09.d65 b/tests/test09/HSPFresults/test09.d65 index e8a158b7..85bf181a 100644 --- a/tests/test09/HSPFresults/test09.d65 +++ b/tests/test09/HSPFresults/test09.d65 @@ -3,42 +3,42 @@ - OUTLET INFLOW (CFS) + OUTLET INFLOW (CFS) Annual data display: Summary for period ending 1976/12 Day JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC - + 1 0.01 0.76 4.24 9.57 10.05 7.01 5.83 0.79 0.00 0.00 0.00 0.00 2 0.12 0.76 4.22 9.65 10.07 7.01 5.77 0.72 0.00 0.00 0.00 0.00 3 0.19 0.75 4.12 9.66 10.06 7.00 5.68 0.64 0.00 0.00 0.00 0.00 4 0.22 0.73 4.14 9.61 10.05 7.00 5.58 0.56 0.00 0.00 0.00 0.00 5 0.23 0.72 4.02 9.52 10.04 6.97 5.47 0.47 0.00 0.00 0.00 0.00 - + 6 0.23 0.70 3.83 9.40 10.03 6.91 5.34 0.39 0.00 0.00 0.00 0.00 7 0.23 0.69 3.69 9.24 10.02 6.83 5.20 0.30 0.00 0.00 0.00 0.00 8 0.23 0.71 3.63 9.05 10.01 6.73 5.03 0.22 0.00 0.00 0.00 0.00 9 0.22 0.76 3.61 8.85 10.00 6.60 4.86 0.14 0.00 0.00 0.00 0.00 10 0.22 0.82 3.76 8.61 9.98 6.52 4.68 0.06 0.00 0.00 0.00 0.00 - + 11 0.21 0.86 3.94 8.34 9.91 6.48 4.50 0.02 0.00 0.00 0.00 0.00 12 0.21 0.87 4.95 8.07 9.79 6.41 4.30 0.01 0.00 0.00 0.00 0.00 13 0.22 0.87 5.51 7.79 9.72 6.39 4.08 0.00 0.00 0.00 0.00 0.00 14 0.24 0.86 6.05 7.51 9.70 6.54 3.87 0.00 0.00 0.00 0.00 0.00 15 0.27 0.91 6.59 7.38 9.64 6.65 3.66 0.00 0.00 0.00 0.00 0.00 - + 16 0.29 1.08 7.07 7.26 6.93 6.70 3.28 0.00 0.00 0.00 0.00 0.00 17 0.30 1.36 7.59 7.22 7.04 6.71 2.59 0.00 0.00 0.00 0.00 0.00 18 0.31 1.45 8.04 7.69 7.03 6.68 2.10 0.00 0.00 0.00 0.00 0.00 19 0.30 1.46 8.46 8.19 7.03 6.62 1.77 0.00 0.00 0.00 0.00 0.00 20 0.30 1.48 8.77 8.57 7.02 6.54 1.54 0.00 0.00 0.00 0.00 0.00 - + 21 0.30 1.91 8.98 9.24 7.02 6.44 1.41 0.00 0.00 0.00 0.00 0.00 22 0.30 1.98 9.11 9.88 7.02 6.33 1.31 0.00 0.00 0.00 0.00 0.00 23 0.33 1.95 9.19 10.11 7.02 6.20 1.22 0.00 0.00 0.00 0.00 0.00 24 0.39 2.01 9.21 10.14 7.02 6.09 1.11 0.00 0.00 0.00 0.00 0.00 25 0.43 2.25 9.19 10.14 7.01 6.03 1.00 0.00 0.00 0.00 0.00 0.00 - + 26 0.46 2.51 9.14 10.12 7.01 5.95 0.89 0.00 0.00 0.00 0.00 0.00 27 0.50 3.08 9.07 10.10 7.00 5.88 0.80 0.00 0.00 0.00 0.00 0.00 28 0.53 3.75 8.99 10.09 7.00 5.88 0.90 0.00 0.00 0.00 0.00 0.00 @@ -54,42 +54,42 @@ - SPILLWAY INFLOW (CFS) + SPILLWAY INFLOW (CFS) Annual data display: Summary for period ending 1976/12 Day JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC - + 1 0.00 0.00 0.00 0.00 3.96 1.38 0.00 0.00 0.00 0.00 0.00 0.00 2 0.00 0.00 0.00 0.00 5.41 0.86 0.00 0.00 0.00 0.00 0.00 0.00 3 0.00 0.00 0.00 0.00 4.87 0.34 0.00 0.00 0.00 0.00 0.00 0.00 4 0.00 0.00 0.00 0.00 3.98 0.01 0.00 0.00 0.00 0.00 0.00 0.00 5 0.00 0.00 0.00 0.00 3.11 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 6 0.00 0.00 0.00 0.00 2.30 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 0.00 0.00 0.00 0.00 1.61 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 0.00 0.00 0.00 0.00 0.95 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 0.00 0.00 0.00 0.00 0.28 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 11 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 16 0.00 0.00 0.00 0.00 0.37 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 0.00 0.00 0.00 0.00 4.52 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 0.00 0.00 0.00 0.00 3.90 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 0.00 0.00 0.00 0.00 3.16 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 0.00 0.00 0.00 0.00 2.46 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 21 0.00 0.00 0.00 0.00 1.88 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 0.00 0.00 0.00 1.06 1.76 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 0.00 0.00 0.00 8.50 2.20 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 0.00 0.00 0.00 11.04 1.79 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 0.00 0.00 0.00 11.06 1.28 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 26 0.00 0.00 0.00 9.68 0.79 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 0.00 0.00 0.00 8.15 0.33 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 0.00 0.00 0.00 6.93 0.07 0.00 0.00 0.00 0.00 0.00 0.00 0.00 @@ -105,42 +105,42 @@ - KITTLE CREEK FLOW (CFS) + KITTLE CREEK FLOW (CFS) Annual data display: Summary for period ending 1976/12 Day JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC - + 1 0.01 0.76 4.23 9.57 14.03 8.41 5.83 0.79 0.00 0.00 0.00 0.00 2 0.11 0.76 4.22 9.65 15.41 7.89 5.77 0.73 0.00 0.00 0.00 0.00 3 0.19 0.75 4.13 9.66 14.97 7.37 5.69 0.65 0.00 0.00 0.00 0.00 4 0.22 0.74 4.13 9.61 14.06 7.01 5.59 0.57 0.00 0.00 0.00 0.00 5 0.23 0.72 4.04 9.53 13.18 6.97 5.47 0.48 0.00 0.00 0.00 0.00 - + 6 0.23 0.71 3.84 9.40 12.36 6.91 5.35 0.40 0.00 0.00 0.00 0.00 7 0.23 0.69 3.69 9.24 11.65 6.83 5.21 0.31 0.00 0.00 0.00 0.00 8 0.23 0.70 3.63 9.06 10.99 6.73 5.04 0.23 0.00 0.00 0.00 0.00 9 0.22 0.75 3.61 8.86 10.31 6.61 4.87 0.15 0.00 0.00 0.00 0.00 10 0.22 0.82 3.76 8.62 9.99 6.52 4.69 0.07 0.00 0.00 0.00 0.00 - + 11 0.22 0.86 3.92 8.35 9.92 6.48 4.50 0.02 0.00 0.00 0.00 0.00 12 0.21 0.87 4.91 8.08 9.80 6.41 4.31 0.01 0.00 0.00 0.00 0.00 13 0.22 0.87 5.49 7.80 9.72 6.39 4.09 0.00 0.00 0.00 0.00 0.00 14 0.24 0.87 6.03 7.52 9.70 6.53 3.88 0.00 0.00 0.00 0.00 0.00 15 0.26 0.90 6.57 7.38 9.65 6.65 3.67 0.00 0.00 0.00 0.00 0.00 - + 16 0.29 1.06 7.05 7.26 7.27 6.70 3.31 0.00 0.00 0.00 0.00 0.00 17 0.30 1.35 7.57 7.21 11.52 6.71 2.63 0.00 0.00 0.00 0.00 0.00 18 0.31 1.45 8.02 7.66 10.96 6.68 2.13 0.00 0.00 0.00 0.00 0.00 19 0.30 1.46 8.44 8.17 10.21 6.63 1.78 0.00 0.00 0.00 0.00 0.00 20 0.30 1.47 8.76 8.55 9.50 6.55 1.55 0.00 0.00 0.00 0.00 0.00 - + 21 0.30 1.88 8.97 9.21 8.92 6.45 1.42 0.00 0.00 0.00 0.00 0.00 22 0.30 1.99 9.11 10.77 8.76 6.33 1.31 0.00 0.00 0.00 0.00 0.00 23 0.32 1.95 9.19 18.39 9.22 6.20 1.22 0.00 0.00 0.00 0.00 0.00 24 0.38 2.00 9.21 21.18 8.82 6.09 1.12 0.00 0.00 0.00 0.00 0.00 25 0.43 2.23 9.19 21.21 8.31 6.03 1.00 0.00 0.00 0.00 0.00 0.00 - + 26 0.46 2.49 9.14 19.86 7.82 5.95 0.90 0.00 0.00 0.00 0.00 0.00 27 0.50 3.05 9.08 18.29 7.35 5.88 0.81 0.00 0.00 0.00 0.00 0.00 28 0.53 3.72 8.99 17.05 7.04 5.88 0.88 0.00 0.00 0.00 0.00 0.00 diff --git a/tests/test09/HSPFresults/test09.ech b/tests/test09/HSPFresults/test09.ech index c321d056..ff748e5e 100644 --- a/tests/test09/HSPFresults/test09.ech +++ b/tests/test09/HSPFresults/test09.ech @@ -1,13 +1,13 @@ - FOUND RUN - FOUND END RUN + FOUND RUN + FOUND END RUN ************************************************************ * * * Hydrological Simulation Program - FORTRAN * * * ************************************************************ - + Developed for: Modified and Maintained by - + U.S. Environmental RESPEC, Inc. Protection Agency (605)394-6512 Office of Research email: hspf@respec.com @@ -17,49 +17,49 @@ Athens, Georgia (706)355-8400 email: ceam@epamail.epa.gov - + In cooperation with: - + U.S. Geological Survey Release 12.5 Water Resources Discipline September 2018 Office of Surface Water Reston, Virginia email: h2osoft@usgs.gov - - + + Start of Job - + PREPROCESSING USERS CONTROL INPUT. - + SEARCHING FOR BOUNDARIES OF NEXT DATA SET IN USERS CONTROL INPUT. - - FOUND RUN - FOUND END RUN - + + FOUND RUN + FOUND END RUN + INTERPRETING RUN DATA SET IN USERS CONTROL INPUT - - FOUND GLOBAL - FOUND END GLOBAL - FOUND FILES - FOUND END FILES + + FOUND GLOBAL + FOUND END GLOBAL + FOUND FILES + FOUND END FILES FOUND OPN SEQUENCE FOUND END OPN SEQUENCE - FOUND PERLND - FOUND END PERLND - FOUND RCHRES - FOUND END RCHRES - FOUND FTABLES - FOUND END FTABLES - FOUND DISPLY - FOUND END DISPLY - FOUND PLTGEN - FOUND END PLTGEN - FOUND EXT SOURCES - FOUND END EXT SOURCES - FOUND NETWORK - FOUND END NETWORK - - + FOUND PERLND + FOUND END PERLND + FOUND RCHRES + FOUND END RCHRES + FOUND FTABLES + FOUND END FTABLES + FOUND DISPLY + FOUND END DISPLY + FOUND PLTGEN + FOUND END PLTGEN + FOUND EXT SOURCES + FOUND END EXT SOURCES + FOUND NETWORK + FOUND END NETWORK + + ==================================================================================================================================== PROCESSING GLOBAL BLOCK @@ -71,130 +71,130 @@ RUN INTERPRETER OUTPUT LEVEL HAS BEEN SET TO: 3 RUNTIME SPECIAL ACTION OUTPUT LEVEL HAS BEEN SET TO: 2 - + SYSTEM HAS BEEN ASKED TO INTERPRET AND EXECUTE THE RUN. RUNFG = 1 THE UNIT SYSTEM OF THE RUN WILL BE ENGLISH. EMFG = 1 - + FINISHED PROCESSING GLOBAL BLOCK ==================================================================================================================================== - + ==================================================================================================================================== CATEGORY BLOCK NOT FOUND - + FINISHED PROCESSING CATEGORY BLOCK ==================================================================================================================================== - + ==================================================================================================================================== PROCESSING OPN SEQUENCE BLOCK - - + + USERS CONTROL INPUT IS: - OPN SEQUENCE - INGRP INDELT 01:00 - PERLND 1 - RCHRES 1 - RCHRES 2 - RCHRES 3 - RCHRES 4 - DISPLY 1 - DISPLY 2 - DISPLY 3 - PLTGEN 1 - END INGRP - END OPN SEQUENCE + OPN SEQUENCE + INGRP INDELT 01:00 + PERLND 1 + RCHRES 1 + RCHRES 2 + RCHRES 3 + RCHRES 4 + DISPLY 1 + DISPLY 2 + DISPLY 3 + PLTGEN 1 + END INGRP + END OPN SEQUENCE FINISHED PROCESSING OPN SEQUENCE BLOCK ==================================================================================================================================== ==================================================================================================================================== PROCESSING FTABLES BLOCK - + USERS CONTROL INPUT IS: - FTABLES - FTABLE 1 - ROWS COLS *** - 14 6 - WINTER SUMMER SPLWAY *** - DEPTH AREA VOLUME OUTLET OUTLET DISCH *** - (FT) (ACRES) (AC-FT) DISCH DISCH (CFS) *** - (CFS) (CFS) *** - .000 .000 .0000 .0000 .0000 .0000 - 2.000 1.212 1.2120 0.0000 .0000 .0000 - 4.000 2.424 4.8480 0.0000 .0000 .0000 - 6.000 3.636 10.9080 0.0000 .0000 .0000 - 8.000 4.848 19.3920 0.0000 .0000 .0000 - 10.000 6.061 30.3050 0.0000 .0000 .0000 - 12.000 7.273 43.6380 5.0000 3.5000 .0000 - 14.000 8.485 59.3950 6.2500 4.3750 .0000 - 16.000 9.697 77.5760 7.5000 5.2500 .0000 - 18.000 10.909 98.1810 8.7500 6.1250 .0000 - 20.000 12.121 121.2100 10.0000 7.0000 .0000 - 21.000 12.727 133.6360 10.6250 7.4375 50.0000 - 22.000 13.333 146.6630 11.2500 7.8750 100.0000 - 23.000 13.939 160.3030 11.8750 8.3125 500.0000 - END FTABLE 1 - - FTABLE 2 - ROWS COLS *** - 13 4 - DEPTH AREA VOLUME DISCH FLO-THRU *** - (FT) (ACRES) (AC-FT) (CFS) (MIN) *** - .000 .000 .0000 .000 0.0 - .167 .071 .0109 1.2241 6.5 - .333 .081 .0236 3.9148 4.4 - .500 .091 .0379 7.8193 3.5 - .667 .101 .0539 12.9032 3.0 - .833 .111 .0715 19.1853 2.7 - 1.000 .121 .0909 26.7046 2.5 - 1.333 .141 .1347 45.6529 2.1 - 1.667 .162 .1852 70.1757 1.9 - 2.000 .182 .2424 100.7192 1.7 - 2.667 .586 .4983 201.9005 1.8 - 3.333 .990 1.0236 344.6344 2.2 - 4.000 1.394 1.8182 537.0775 2.5 - END FTABLE 2 - - FTABLE 3 - ROWS COLS *** - 13 4 - DEPTH AREA VOLUME DISCH FLO-THRU *** - (FT) (ACRES) (AC-FT) (CFS) (MIN) *** - .000 .000 .0000 .000 0.0 - .167 .071 .0109 1.4992 5.3 - .333 .081 .0236 4.7947 3.6 - .500 .091 .0379 9.5766 2.9 - .667 .101 .0539 15.8032 2.5 - .833 .111 .0715 23.4971 2.2 - 1.000 .121 .0909 32.7063 2.0 - 1.333 .141 .1347 55.9132 1.7 - 1.667 .162 .1852 85.9474 1.6 - 2.000 .182 .2424 123.3553 1.4 - 2.667 .586 .4983 247.2766 1.5 - 3.333 .990 1.0236 422.0892 1.8 - 4.000 1.394 1.8182 657.7828 2.0 - END FTABLE 3 - - FTABLE 4 - ROWS COLS *** - 13 4 - DEPTH AREA VOLUME DISCH FLO-THRU *** - (FT) (ACRES) (AC-FT) (CFS) (MIN) *** - .000 .000 .0000 .000 0.0 - .250 .848 .1970 .9024 158.5 - .500 .970 .4242 2.8860 106.7 - .750 1.091 .6818 5.7642 85.9 - 1.000 1.212 .9697 9.5120 74.0 - 1.250 1.333 1.2879 14.1431 66.1 - 1.500 1.455 1.6364 19.6862 60.3 - 2.000 1.697 2.4242 33.6545 52.3 - 2.500 1.939 3.3333 51.7323 46.8 - 3.000 2.182 4.3636 74.2486 42.7 - 4.000 11.879 11.3939 155.5774 53.2 - 5.000 21.576 28.1212 296.8633 68.8 - 6.000 31.273 54.5454 522.1440 75.8 - END FTABLE 4 - - END FTABLES + FTABLES + FTABLE 1 + ROWS COLS *** + 14 6 + WINTER SUMMER SPLWAY *** + DEPTH AREA VOLUME OUTLET OUTLET DISCH *** + (FT) (ACRES) (AC-FT) DISCH DISCH (CFS) *** + (CFS) (CFS) *** + .000 .000 .0000 .0000 .0000 .0000 + 2.000 1.212 1.2120 0.0000 .0000 .0000 + 4.000 2.424 4.8480 0.0000 .0000 .0000 + 6.000 3.636 10.9080 0.0000 .0000 .0000 + 8.000 4.848 19.3920 0.0000 .0000 .0000 + 10.000 6.061 30.3050 0.0000 .0000 .0000 + 12.000 7.273 43.6380 5.0000 3.5000 .0000 + 14.000 8.485 59.3950 6.2500 4.3750 .0000 + 16.000 9.697 77.5760 7.5000 5.2500 .0000 + 18.000 10.909 98.1810 8.7500 6.1250 .0000 + 20.000 12.121 121.2100 10.0000 7.0000 .0000 + 21.000 12.727 133.6360 10.6250 7.4375 50.0000 + 22.000 13.333 146.6630 11.2500 7.8750 100.0000 + 23.000 13.939 160.3030 11.8750 8.3125 500.0000 + END FTABLE 1 + + FTABLE 2 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .167 .071 .0109 1.2241 6.5 + .333 .081 .0236 3.9148 4.4 + .500 .091 .0379 7.8193 3.5 + .667 .101 .0539 12.9032 3.0 + .833 .111 .0715 19.1853 2.7 + 1.000 .121 .0909 26.7046 2.5 + 1.333 .141 .1347 45.6529 2.1 + 1.667 .162 .1852 70.1757 1.9 + 2.000 .182 .2424 100.7192 1.7 + 2.667 .586 .4983 201.9005 1.8 + 3.333 .990 1.0236 344.6344 2.2 + 4.000 1.394 1.8182 537.0775 2.5 + END FTABLE 2 + + FTABLE 3 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .167 .071 .0109 1.4992 5.3 + .333 .081 .0236 4.7947 3.6 + .500 .091 .0379 9.5766 2.9 + .667 .101 .0539 15.8032 2.5 + .833 .111 .0715 23.4971 2.2 + 1.000 .121 .0909 32.7063 2.0 + 1.333 .141 .1347 55.9132 1.7 + 1.667 .162 .1852 85.9474 1.6 + 2.000 .182 .2424 123.3553 1.4 + 2.667 .586 .4983 247.2766 1.5 + 3.333 .990 1.0236 422.0892 1.8 + 4.000 1.394 1.8182 657.7828 2.0 + END FTABLE 3 + + FTABLE 4 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .250 .848 .1970 .9024 158.5 + .500 .970 .4242 2.8860 106.7 + .750 1.091 .6818 5.7642 85.9 + 1.000 1.212 .9697 9.5120 74.0 + 1.250 1.333 1.2879 14.1431 66.1 + 1.500 1.455 1.6364 19.6862 60.3 + 2.000 1.697 2.4242 33.6545 52.3 + 2.500 1.939 3.3333 51.7323 46.8 + 3.000 2.182 4.3636 74.2486 42.7 + 4.000 11.879 11.3939 155.5774 53.2 + 5.000 21.576 28.1212 296.8633 68.8 + 6.000 31.273 54.5454 522.1440 75.8 + END FTABLE 4 + + END FTABLES FINISHED PROCESSING FTABLES BLOCK ==================================================================================================================================== @@ -206,18 +206,18 @@ PROCESSING PERVIOUS LAND-SEGMENT NO: 1 TIME STEP(DELT): 60 MINS PROCESSING GENERAL INPUT - + AIRTFG SNOWFG PWATFG SEDFG PSTFG PWGFG PQALFG MSTLFG PESTFG NITRFG PHOSFG TRACFG 0 1 1 0 0 0 0 0 0 0 0 0 - + Printout level flags Print-ivl Print-yrend ATEMP SNOW PWAT SED PSTMP PWTG RQAL MSTL PEST NITR PHOS TRAC PIVL PYREND 4 4 4 4 4 4 4 4 4 4 4 4 1 12 - + Binary Output level flags Print-ivl Print-yrend ATEMP SNOW PWAT SED PSTMP PWTG RQAL MSTL PEST NITR PHOS TRAC PIVL PYREND 4 4 4 4 4 4 4 4 4 4 4 4 1 12 - + Perv Land-segment id Unit systems Print-file nos BinaryOutfileNos IUNITS OUNITS English Metric English Metric BICKNELL FARM 1 1 1 0 92 0 @@ -226,25 +226,25 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION SNOW - + ICEFG 1 - + SNOPFG VMKFG 0 0 - + LAT MELEV SHADE SNOWCF COVIND KMELT TBASE degrees (ft) (in) (in/d.F) (F) 42. 520. 0.0 1.45 0.5 0.00 32.0 - + RDCSN TSNOW SNOEVP CCFACT MWATER MGMELT (deg F) (in/day) 0.12 32. 0.05 0.5 0.08 0.0001 - + Pack-snow Pack-ice Pack-watr RDENPF DULL PAKTMP (in) (in) (in) (deg F) 1.4 0.2 0.1 0.2 375. 27.5 - + COVINX XLNMLT SKYCLR (in) (in) 0.50 0.0 1.0 @@ -253,42 +253,42 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION PWATER - + CSNOFG RTOPFG UZFG VCSFG VUZFG VNNFG VIFWFG VIRCFG VLEFG IFFCFG HWTFG IRRGFG IFRDFG NCANPY 1 0 0 1 1 1 0 0 1 1 0 0 0 0 - + FOREST LZSN INFILT LSUR SLSUR KVARY AGWRC (inches) (in/hr) (feet) (1/inches) (1/day) 0.010 8.0 0.150 250. 0.050 0.5 0.98 - + PETMAX PETMIN INFEXP INFILD DEEPFR BASETP AGWETP (degF) (degF) 40. 35. 2.0 2.0 0.10 0.0 0.08 - + CEPSC UZSN NSUR INTFW IRC LZETP (inches) (inches)(nManning) (1/day) 0.00 0.01 0.1 1.0 0.60 0.00 - + FZG FZGL (/in) 1.00 0.100 - + Values of Interception Storage at start of each calendar month (inches): JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.04 0.04 0.03 0.03 0.03 0.03 0.10 0.17 0.19 0.14 0.05 0.04 - + Values of Upper Zone Storage at start of each calendar month (inches): JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.4 0.4 0.4 0.4 1.6 1.1 1.1 1.3 1.3 1.3 1.1 0.9 - + Values of Manning's N at start of each calendar month: JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.30 0.30 0.30 0.30 0.27 0.25 0.25 0.25 0.25 0.25 0.35 0.33 - + Values of Lower Zone ET at start of each calendar month: JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC 0.20 0.20 0.20 0.23 0.23 0.25 0.60 0.80 0.75 0.50 0.30 0.20 - + Segment-wide storages (inches): CEPS SURS UZS IFWS LZS AGWS GWVS 0.05 0.0 0.15 0.0 4.0 0.05 0.05 @@ -309,18 +309,18 @@ PROCESSING RCHRES NO: 1 TIME STEP(DELT): 60 MINS PROCESSING GENERAL INPUT - + HYDRFG ADFG CONSFG HTFG SEDFG GQUALFG OXFG NUTFG PLKFG PHFG 1 0 0 0 0 0 0 0 0 0 - + Printout level flags Print-ivl Print-yrend HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYREND 4 4 4 4 4 4 4 4 4 4 1 12 - + Binary Output level flags Print-ivl Print-yrend HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYREND 4 4 4 4 4 4 4 4 4 4 1 12 - + Reach/reservoir-id NEXITS Unit systems Print-file nos Lake- BinaryOutfileNos IUNITS OUNITS English Metric flag English Metric MEIER POND 2 1 1 1 0 1 92 0 @@ -329,19 +329,19 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION HYDR - + VCONFG AUX1FG AUX2FG AUX3FG ODFV-flags for ODGT-flags for FUNCT-flags for each poss. exit poss. exit each poss. exit 0 1 1 0 -1 6 0 0 0 0 0 0 0 0 1 1 1 1 1 - + MILES FT FT IN DSN FTBN LEN DELTH STCOR KS DB50 0.00 1 0.5 1. 0.00 .5 1.000E-02 - + Values of irrigation withdrawal parameters IREXIT IRMINV (ac.ft) 0.00 0.00 - + (acre-ft) CAT Init value of COLIND for each poss exit Init value of OUTDGT for each poss exit (ft3/s) VOL 1 2 3 4 5 1 2 3 4 5 @@ -373,18 +373,18 @@ PROCESSING RCHRES NO: 2 TIME STEP(DELT): 60 MINS PROCESSING GENERAL INPUT - + HYDRFG ADFG CONSFG HTFG SEDFG GQUALFG OXFG NUTFG PLKFG PHFG 1 0 0 0 0 0 0 0 0 0 - + Printout level flags Print-ivl Print-yrend HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYREND 4 4 4 4 4 4 4 4 4 4 1 12 - + Binary Output level flags Print-ivl Print-yrend HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYREND 4 4 4 4 4 4 4 4 4 4 1 12 - + Reach/reservoir-id NEXITS Unit systems Print-file nos Lake- BinaryOutfileNos IUNITS OUNITS English Metric flag English Metric OUTLET 1 1 1 1 0 0 92 0 @@ -393,19 +393,19 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION HYDR - + VCONFG AUX1FG AUX2FG AUX3FG ODFV-flags for ODGT-flags for FUNCT-flags for each poss. exit poss. exit each poss. exit 0 1 1 0 4 0 0 0 0 0 0 0 0 0 1 1 1 1 1 - + MILES FT FT IN DSN FTBN LEN DELTH STCOR KS DB50 00 2 0.25 20. 0.00 .5 1.000E-02 - + Values of irrigation withdrawal parameters IREXIT IRMINV (ac.ft) 0.00 0.00 - + (acre-ft) CAT Init value of COLIND for each poss exit Init value of OUTDGT for each poss exit (ft3/s) VOL 1 2 3 4 5 1 2 3 4 5 @@ -433,18 +433,18 @@ PROCESSING RCHRES NO: 3 TIME STEP(DELT): 60 MINS PROCESSING GENERAL INPUT - + HYDRFG ADFG CONSFG HTFG SEDFG GQUALFG OXFG NUTFG PLKFG PHFG 1 0 0 0 0 0 0 0 0 0 - + Printout level flags Print-ivl Print-yrend HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYREND 4 4 4 4 4 4 4 4 4 4 1 12 - + Binary Output level flags Print-ivl Print-yrend HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYREND 4 4 4 4 4 4 4 4 4 4 1 12 - + Reach/reservoir-id NEXITS Unit systems Print-file nos Lake- BinaryOutfileNos IUNITS OUNITS English Metric flag English Metric SPILLWAY 1 1 1 1 0 0 92 0 @@ -453,19 +453,19 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION HYDR - + VCONFG AUX1FG AUX2FG AUX3FG ODFV-flags for ODGT-flags for FUNCT-flags for each poss. exit poss. exit each poss. exit 0 1 1 0 4 0 0 0 0 0 0 0 0 0 1 1 1 1 1 - + MILES FT FT IN DSN FTBN LEN DELTH STCOR KS DB50 00 3 0.25 30. 0.00 .5 1.000E-02 - + Values of irrigation withdrawal parameters IREXIT IRMINV (ac.ft) 0.00 0.00 - + (acre-ft) CAT Init value of COLIND for each poss exit Init value of OUTDGT for each poss exit (ft3/s) VOL 1 2 3 4 5 1 2 3 4 5 @@ -493,18 +493,18 @@ PROCESSING RCHRES NO: 4 TIME STEP(DELT): 60 MINS PROCESSING GENERAL INPUT - + HYDRFG ADFG CONSFG HTFG SEDFG GQUALFG OXFG NUTFG PLKFG PHFG 1 0 0 0 0 0 0 0 0 0 - + Printout level flags Print-ivl Print-yrend HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYREND 4 4 4 4 4 4 4 4 4 4 1 12 - + Binary Output level flags Print-ivl Print-yrend HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYREND 4 4 4 4 4 4 4 4 4 4 1 12 - + Reach/reservoir-id NEXITS Unit systems Print-file nos Lake- BinaryOutfileNos IUNITS OUNITS English Metric flag English Metric KITTLE CREEK 1 1 1 1 0 0 92 0 @@ -513,19 +513,19 @@ ------------------------------------------------------------------------------------------------------------------------------------ PROCESSING INPUT FOR SECTION HYDR - + VCONFG AUX1FG AUX2FG AUX3FG ODFV-flags for ODGT-flags for FUNCT-flags for each poss. exit poss. exit each poss. exit 0 1 1 0 4 0 0 0 0 0 0 0 0 0 1 1 1 1 1 - + MILES FT FT IN DSN FTBN LEN DELTH STCOR KS DB50 00 4 2.0 40. 0.00 .5 1.000E-02 - + Values of irrigation withdrawal parameters IREXIT IRMINV (ac.ft) 0.00 0.00 - + (acre-ft) CAT Init value of COLIND for each poss exit Init value of OUTDGT for each poss exit (ft3/s) VOL 1 2 3 4 5 1 2 3 4 5 @@ -557,11 +557,11 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PROCESSING DISPLY OPERATION NO. 1 TIME INTERVAL 60 MINS - + Title of display Transform Data for short-span display Data for long-span display code PIVL Digits File-no. PYRFG Digits File-no. PYREND OUTLET INFLOW (CFS) AVER 0 4 1 2 65 12 - + Convert DegC to F Display negative data A B THRSH1 THRSH2 1.00 0.00 0.00 0.00 @@ -571,11 +571,11 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PROCESSING DISPLY OPERATION NO. 2 TIME INTERVAL 60 MINS - + Title of display Transform Data for short-span display Data for long-span display code PIVL Digits File-no. PYRFG Digits File-no. PYREND SPILLWAY INFLOW (CFS) AVER 0 4 1 2 65 12 - + Convert DegC to F Display negative data A B THRSH1 THRSH2 1.00 0.00 0.00 0.00 @@ -585,11 +585,11 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PROCESSING DISPLY OPERATION NO. 3 TIME INTERVAL 60 MINS - + Title of display Transform Data for short-span display Data for long-span display code PIVL Digits File-no. PYRFG Digits File-no. PYREND KITTLE CREEK FLOW (CFS) AVER 0 4 1 2 65 12 - + Convert DegC to F Display negative data A B THRSH1 THRSH2 1.00 0.00 0.00 0.00 @@ -605,23 +605,23 @@ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PROCESSING PLTGEN OPERATION NO. 1 - + PLOTFL NPT NMN LABLFG PYREND PIVL TYPEFG 93 0 3 0 9 24 1 - + General plot title: Y-axis label: - SIMULATED FLOWS (CFS) CFS - + SIMULATED FLOWS (CFS) CFS + YMIN YMAX IVLIN THRESH (ivl/in) 0. 25. 20.-1.000E+30 - + Curve label: LINTYP INTEQ COLCOD TRAN SPILLWAY INFLOW 0 1 1 AVER - + Curve label: LINTYP INTEQ COLCOD TRAN OUTLET INFLOW 1 3 1 AVER - + Curve label: LINTYP INTEQ COLCOD TRAN KITTLE CREEK 2 8 2 AVER @@ -650,7 +650,7 @@ INPUT TIMESERIES FROM EXTERNAL SOURCES - TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 + TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 WDM1 39 60 SAME 1.000E+00 EXTNL PREC 1 1 WDM1 123 120 SAME 1.000E+00 ATEMP AIRTMP 1 1 @@ -662,7 +662,7 @@ OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 PWATER PERO 1 1 5.000E+02 RCHRES 1 EXTNL IVOL 1 1 @@ -674,21 +674,21 @@ INPUT TIMESERIES FROM EXTERNAL SOURCES - TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 + TYPE # INTERVAL TRN STR MFACT GROUP MEMBER S1 S2 WDM1 39 60 SAME 1.000E+00 EXTNL PREC 1 1 WDM1 41 1440 DIV 7.000E-01 EXTNL POTEV 1 1 WDM1 140 1440 SAME 1.000E+00 EXTNL COLIND 1 1 FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 PERLND 1 PWATER PERO 1 1 5.000E+02 EXTNL IVOL 1 1 OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 HYDR OVOL 1 1 1.000E+00 RCHRES 2 EXTNL IVOL 1 1 HYDR OVOL 1 1 1.210E+01 DISPLY 1 INPUT TIMSER 1 1 @@ -705,14 +705,14 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 RCHRES 1 HYDR OVOL 1 1 1.000E+00 EXTNL IVOL 1 1 OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 HYDR ROVOL 1 1 1.000E+00 RCHRES 4 EXTNL IVOL 1 1 @@ -724,14 +724,14 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 RCHRES 1 HYDR OVOL 2 1 1.000E+00 EXTNL IVOL 1 1 OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 HYDR ROVOL 1 1 1.000E+00 RCHRES 4 EXTNL IVOL 1 1 @@ -743,7 +743,7 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 RCHRES 2 HYDR ROVOL 1 1 1.000E+00 EXTNL IVOL 1 1 RCHRES 3 HYDR ROVOL 1 1 1.000E+00 EXTNL IVOL 1 1 @@ -751,7 +751,7 @@ OUTPUT TIMESERIES TO OTHER OPERATIONS(NETWORK) - GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 + GROUP MEMBER S1 S2 MFACT TYPE # GROUP MEMBER S1 S2 HYDR ROVOL 1 1 1.210E+01 DISPLY 3 INPUT TIMSER 1 1 HYDR ROVOL 1 1 1.210E+01 PLTGEN 1 INPUT MEAN 3 1 @@ -764,7 +764,7 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 RCHRES 1 HYDR OVOL 1 1 1.210E+01 INPUT TIMSER 1 1 @@ -776,7 +776,7 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 RCHRES 1 HYDR OVOL 2 1 1.210E+01 INPUT TIMSER 1 1 @@ -788,7 +788,7 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 RCHRES 4 HYDR ROVOL 1 1 1.210E+01 INPUT TIMSER 1 1 @@ -800,7 +800,7 @@ INPUT TIMESERIES FROM OTHER OPERATIONS(NETWORK) - TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 + TYPE # GROUP MEMBER S1 S2 MFACT GROUP MEMBER S1 S2 RCHRES 1 HYDR OVOL 1 1 1.210E+01 INPUT MEAN 2 1 RCHRES 1 HYDR OVOL 2 1 1.210E+01 INPUT MEAN 1 1 @@ -808,10 +808,10 @@ FINISHED PROCESSING BLOCKS CONTAINING TIME SERIES LINKAGES ==================================================================================================================================== - + INTERPRETATION OF RUN DATA SET COMPLETE - + COMMENCING EXECUTION - + End of Job diff --git a/tests/test09/HSPFresults/test09.p93 b/tests/test09/HSPFresults/test09.p93 index c813bdfa..1acea649 100644 --- a/tests/test09/HSPFresults/test09.p93 +++ b/tests/test09/HSPFresults/test09.p93 @@ -2,10 +2,10 @@ SIMU HSPF FILE FOR DRIVING SEPARATE PLOT PROGRAM SIMU Time interval: 1440 mins Last month in printout year: 9 SIMU No. of curves plotted: Point-valued: 0 Mean-valued: 3 Total 3 SIMU Label flag: 0 Pivl: 24 Idelt: 60 -SIMU Plot title: SIMULATED FLOWS (CFS) -SIMU Y-axis label: CFS +SIMU Plot title: SIMULATED FLOWS (CFS) +SIMU Y-axis label: CFS SIMU Scale info: Ymin: 0.0000 Threshold:-0.10000E+31 -SIMU Ymax: 25.000 +SIMU Ymax: 25.000 SIMU Time: 20.000 intervals/inch SIMU Data for each curve (Point-valued first, then mean-valued): SIMU Label LINTYP INTEQ COLCOD TRAN TRANCOD @@ -25,368 +25,368 @@ SIMU Date/time Values SIMU SIMU 1975 12 31 24 0-1.0000000E+30-1.0000000E+30-1.0000000E+30 SIMU 1976 1 1 24 0 0.000000 1.4474314E-02 8.6380793E-03 -SIMU 1976 1 2 24 0 0.000000 0.1248720 0.1125099 -SIMU 1976 1 3 24 0 0.000000 0.1905476 0.1851986 -SIMU 1976 1 4 24 0 0.000000 0.2189076 0.2166849 -SIMU 1976 1 5 24 0 0.000000 0.2296369 0.2288925 -SIMU 1976 1 6 24 0 0.000000 0.2335850 0.2330104 -SIMU 1976 1 7 24 0 0.000000 0.2338135 0.2343417 -SIMU 1976 1 8 24 0 0.000000 0.2288434 0.2294084 -SIMU 1976 1 9 24 0 0.000000 0.2239729 0.2245262 -SIMU 1976 1 10 24 0 0.000000 0.2192056 0.2197471 -SIMU 1976 1 11 24 0 0.000000 0.2145421 0.2150717 -SIMU 1976 1 12 24 0 0.000000 0.2119149 0.2117690 -SIMU 1976 1 13 24 0 0.000000 0.2217572 0.2198658 -SIMU 1976 1 14 24 0 0.000000 0.2424261 0.2399701 -SIMU 1976 1 15 24 0 0.000000 0.2671344 0.2637548 -SIMU 1976 1 16 24 0 0.000000 0.2947665 0.2925780 -SIMU 1976 1 17 24 0 0.000000 0.3046337 0.3040124 -SIMU 1976 1 18 24 0 0.000000 0.3057772 0.3058844 -SIMU 1976 1 19 24 0 0.000000 0.3028567 0.3033009 -SIMU 1976 1 20 24 0 0.000000 0.2990208 0.2992778 -SIMU 1976 1 21 24 0 0.000000 0.2986757 0.2987883 -SIMU 1976 1 22 24 0 0.000000 0.3007911 0.2997144 -SIMU 1976 1 23 24 0 0.000000 0.3295574 0.3238677 -SIMU 1976 1 24 24 0 0.000000 0.3869472 0.3812667 -SIMU 1976 1 25 24 0 0.000000 0.4336508 0.4285055 -SIMU 1976 1 26 24 0 0.000000 0.4649239 0.4612200 -SIMU 1976 1 27 24 0 0.000000 0.5011643 0.4983417 -SIMU 1976 1 28 24 0 0.000000 0.5325606 0.5258945 -SIMU 1976 1 29 24 0 0.000000 0.6205746 0.6085952 -SIMU 1976 1 30 24 0 0.000000 0.7192406 0.7113194 -SIMU 1976 1 31 24 0 0.000000 0.7556167 0.7532462 -SIMU 1976 2 1 24 0 0.000000 0.7623713 0.7621542 -SIMU 1976 2 2 24 0 0.000000 0.7600473 0.7607731 -SIMU 1976 2 3 24 0 0.000000 0.7489523 0.7504413 -SIMU 1976 2 4 24 0 0.000000 0.7345909 0.7363094 -SIMU 1976 2 5 24 0 0.000000 0.7190740 0.7208760 -SIMU 1976 2 6 24 0 0.000000 0.7032824 0.7050893 -SIMU 1976 2 7 24 0 0.000000 0.6916801 0.6920239 -SIMU 1976 2 8 24 0 0.000000 0.7083429 0.7042727 -SIMU 1976 2 9 24 0 0.000000 0.7615871 0.7546917 -SIMU 1976 2 10 24 0 0.000000 0.8247172 0.8184053 -SIMU 1976 2 11 24 0 0.000000 0.8625719 0.8598288 -SIMU 1976 2 12 24 0 0.000000 0.8718647 0.8712609 -SIMU 1976 2 13 24 0 0.000000 0.8734022 0.8737460 -SIMU 1976 2 14 24 0 0.000000 0.8642851 0.8656677 -SIMU 1976 2 15 24 0 0.000000 0.9129595 0.9049062 -SIMU 1976 2 16 24 0 0.000000 1.078044 1.059682 -SIMU 1976 2 17 24 0 0.000000 1.359820 1.349433 -SIMU 1976 2 18 24 0 0.000000 1.452251 1.449551 -SIMU 1976 2 19 24 0 0.000000 1.464540 1.464820 -SIMU 1976 2 20 24 0 0.000000 1.481434 1.471503 -SIMU 1976 2 21 24 0 0.000000 1.906745 1.884500 -SIMU 1976 2 22 24 0 0.000000 1.984607 1.986099 -SIMU 1976 2 23 24 0 0.000000 1.953152 1.954437 -SIMU 1976 2 24 24 0 0.000000 2.010689 1.999853 -SIMU 1976 2 25 24 0 0.000000 2.245111 2.232913 -SIMU 1976 2 26 24 0 0.000000 2.511892 2.486479 -SIMU 1976 2 27 24 0 0.000000 3.084428 3.050205 -SIMU 1976 2 28 24 0 0.000000 3.745470 3.720134 -SIMU 1976 2 29 24 0 0.000000 4.127980 4.116868 -SIMU 1976 3 1 24 0 0.000000 4.235329 4.234165 -SIMU 1976 3 2 24 0 0.000000 4.215328 4.217963 -SIMU 1976 3 3 24 0 0.000000 4.121662 4.126784 -SIMU 1976 3 4 24 0 0.000000 4.138225 4.134162 -SIMU 1976 3 5 24 0 0.000000 4.024909 4.035726 -SIMU 1976 3 6 24 0 0.000000 3.829541 3.837712 -SIMU 1976 3 7 24 0 0.000000 3.687015 3.691668 -SIMU 1976 3 8 24 0 0.000000 3.629119 3.631645 -SIMU 1976 3 9 24 0 0.000000 3.611779 3.607877 -SIMU 1976 3 10 24 0 0.000000 3.763959 3.757464 -SIMU 1976 3 11 24 0 0.000000 3.943267 3.921299 -SIMU 1976 3 12 24 0 0.000000 4.953779 4.908589 -SIMU 1976 3 13 24 0 0.000000 5.509392 5.485821 -SIMU 1976 3 14 24 0 0.000000 6.053998 6.030756 -SIMU 1976 3 15 24 0 0.000000 6.591527 6.571682 -SIMU 1976 3 16 24 0 0.000000 7.068567 7.047995 -SIMU 1976 3 17 24 0 0.000000 7.586174 7.566631 -SIMU 1976 3 18 24 0 0.000000 8.037082 8.019219 -SIMU 1976 3 19 24 0 0.000000 8.455155 8.440041 -SIMU 1976 3 20 24 0 0.000000 8.771515 8.760997 -SIMU 1976 3 21 24 0 0.000000 8.978786 8.971905 -SIMU 1976 3 22 24 0 0.000000 9.113884 9.109606 -SIMU 1976 3 23 24 0 0.000000 9.189359 9.187323 -SIMU 1976 3 24 24 0 0.000000 9.213420 9.213323 -SIMU 1976 3 25 24 0 0.000000 9.193388 9.194930 -SIMU 1976 3 26 24 0 0.000000 9.138386 9.140846 -SIMU 1976 3 27 24 0 0.000000 9.074394 9.077370 -SIMU 1976 3 28 24 0 0.000000 8.985065 8.989177 -SIMU 1976 3 29 24 0 0.000000 8.907846 8.907939 -SIMU 1976 3 30 24 0 0.000000 9.129716 9.115706 -SIMU 1976 3 31 24 0 0.000000 9.409184 9.400278 -SIMU 1976 4 1 24 0 0.000000 9.573208 9.568831 -SIMU 1976 4 2 24 0 0.000000 9.649462 9.647945 -SIMU 1976 4 3 24 0 0.000000 9.657434 9.658134 -SIMU 1976 4 4 24 0 0.000000 9.611531 9.613969 -SIMU 1976 4 5 24 0 0.000000 9.521956 9.526024 -SIMU 1976 4 6 24 0 0.000000 9.395257 9.400982 -SIMU 1976 4 7 24 0 0.000000 9.237177 9.244081 -SIMU 1976 4 8 24 0 0.000000 9.052279 9.060176 -SIMU 1976 4 9 24 0 0.000000 8.847823 8.856330 -SIMU 1976 4 10 24 0 0.000000 8.610672 8.621189 -SIMU 1976 4 11 24 0 0.000000 8.342372 8.353351 -SIMU 1976 4 12 24 0 0.000000 8.068358 8.079432 -SIMU 1976 4 13 24 0 0.000000 7.788944 7.800454 -SIMU 1976 4 14 24 0 0.000000 7.506726 7.516598 -SIMU 1976 4 15 24 0 0.000000 7.377091 7.380398 -SIMU 1976 4 16 24 0 0.000000 7.255644 7.261735 -SIMU 1976 4 17 24 0 0.000000 7.220002 7.214374 -SIMU 1976 4 18 24 0 0.000000 7.688132 7.662509 -SIMU 1976 4 19 24 0 0.000000 8.188305 8.171724 -SIMU 1976 4 20 24 0 0.000000 8.572078 8.552597 -SIMU 1976 4 21 24 0 0.000000 9.236757 9.207616 -SIMU 1976 4 22 24 0 1.064394 9.884415 10.76901 -SIMU 1976 4 23 24 0 8.498691 10.10623 18.38935 -SIMU 1976 4 24 24 0 11.04347 10.13804 21.17851 -SIMU 1976 4 25 24 0 11.05965 10.13825 21.20769 -SIMU 1976 4 26 24 0 9.681353 10.12102 19.85613 -SIMU 1976 4 27 24 0 8.145959 10.10183 18.29488 -SIMU 1976 4 28 24 0 6.926775 10.08658 17.05055 -SIMU 1976 4 29 24 0 5.795807 10.07245 15.90559 -SIMU 1976 4 30 24 0 4.818775 10.06023 14.91012 -SIMU 1976 5 1 24 0 3.955667 10.04945 14.03450 -SIMU 1976 5 2 24 0 5.405225 10.06756 15.40930 -SIMU 1976 5 3 24 0 4.873699 10.06092 14.96735 -SIMU 1976 5 4 24 0 3.979357 10.04974 14.05960 -SIMU 1976 5 5 24 0 3.111852 10.03890 13.18273 -SIMU 1976 5 6 24 0 2.299815 10.02875 12.35783 -SIMU 1976 5 7 24 0 1.608672 10.02011 11.65280 -SIMU 1976 5 8 24 0 0.9515235 10.01189 10.98877 -SIMU 1976 5 9 24 0 0.2810584 10.00351 10.31089 -SIMU 1976 5 10 24 0 1.1198178E-05 9.982972 9.985147 -SIMU 1976 5 11 24 0 0.000000 9.912993 9.916433 -SIMU 1976 5 12 24 0 0.000000 9.793891 9.798832 -SIMU 1976 5 13 24 0 0.000000 9.716702 9.717129 -SIMU 1976 5 14 24 0 0.000000 9.698365 9.699844 -SIMU 1976 5 15 24 0 0.000000 9.643738 9.645794 -SIMU 1976 5 16 24 0 0.3679665 6.930306 7.272403 -SIMU 1976 5 17 24 0 4.521122 7.039560 11.51796 -SIMU 1976 5 18 24 0 3.897263 7.034101 10.95958 -SIMU 1976 5 19 24 0 3.155860 7.027614 10.21031 -SIMU 1976 5 20 24 0 2.456451 7.021493 9.504502 -SIMU 1976 5 21 24 0 1.877169 7.016425 8.915241 -SIMU 1976 5 22 24 0 1.756312 7.015368 8.755388 -SIMU 1976 5 23 24 0 2.202089 7.019268 9.220018 -SIMU 1976 5 24 24 0 1.787248 7.015639 8.822639 -SIMU 1976 5 25 24 0 1.280952 7.011209 8.314347 -SIMU 1976 5 26 24 0 0.7877756 7.006894 7.815502 -SIMU 1976 5 27 24 0 0.3316932 7.002902 7.353515 -SIMU 1976 5 28 24 0 6.7844316E-02 6.998137 7.041820 -SIMU 1976 5 29 24 0 3.333377 7.029168 10.26768 -SIMU 1976 5 30 24 0 2.597399 7.022727 9.648638 -SIMU 1976 5 31 24 0 1.938582 7.016963 8.980260 -SIMU 1976 6 1 24 0 1.380618 7.012081 8.414832 -SIMU 1976 6 2 24 0 0.8569149 7.007498 7.886508 -SIMU 1976 6 3 24 0 0.3449340 7.003019 7.369867 -SIMU 1976 6 4 24 0 1.1105535E-02 6.995922 7.013830 -SIMU 1976 6 5 24 0 0.000000 6.966249 6.968029 -SIMU 1976 6 6 24 0 0.000000 6.908278 6.911087 -SIMU 1976 6 7 24 0 0.000000 6.827023 6.830715 -SIMU 1976 6 8 24 0 0.000000 6.725461 6.729936 -SIMU 1976 6 9 24 0 0.000000 6.604326 6.609624 -SIMU 1976 6 10 24 0 0.000000 6.522068 6.523443 -SIMU 1976 6 11 24 0 0.000000 6.480482 6.482765 -SIMU 1976 6 12 24 0 0.000000 6.409979 6.412432 -SIMU 1976 6 13 24 0 0.000000 6.394574 6.392076 -SIMU 1976 6 14 24 0 0.000000 6.540310 6.534281 -SIMU 1976 6 15 24 0 0.000000 6.649074 6.645895 -SIMU 1976 6 16 24 0 0.000000 6.700322 6.699082 -SIMU 1976 6 17 24 0 0.000000 6.707293 6.707804 -SIMU 1976 6 18 24 0 0.000000 6.678737 6.680389 -SIMU 1976 6 19 24 0 0.000000 6.623828 6.626516 -SIMU 1976 6 20 24 0 0.000000 6.544623 6.548285 -SIMU 1976 6 21 24 0 0.000000 6.444735 6.449089 -SIMU 1976 6 22 24 0 0.000000 6.328608 6.333622 -SIMU 1976 6 23 24 0 0.000000 6.197574 6.203137 -SIMU 1976 6 24 24 0 0.000000 6.086979 6.089646 -SIMU 1976 6 25 24 0 0.000000 6.030831 6.033754 -SIMU 1976 6 26 24 0 0.000000 5.945920 5.949395 -SIMU 1976 6 27 24 0 0.000000 5.878276 5.880149 -SIMU 1976 6 28 24 0 0.000000 5.878632 5.877500 -SIMU 1976 6 29 24 0 0.000000 5.893168 5.893247 -SIMU 1976 6 30 24 0 0.000000 5.875127 5.876381 -SIMU 1976 7 1 24 0 0.000000 5.830767 5.833010 -SIMU 1976 7 2 24 0 0.000000 5.766719 5.769744 -SIMU 1976 7 3 24 0 0.000000 5.684404 5.688806 -SIMU 1976 7 4 24 0 0.000000 5.582630 5.587656 -SIMU 1976 7 5 24 0 0.000000 5.468915 5.474516 -SIMU 1976 7 6 24 0 0.000000 5.342124 5.348369 -SIMU 1976 7 7 24 0 0.000000 5.198686 5.205951 -SIMU 1976 7 8 24 0 0.000000 5.034304 5.042291 -SIMU 1976 7 9 24 0 0.000000 4.861050 4.869270 -SIMU 1976 7 10 24 0 0.000000 4.681617 4.690247 -SIMU 1976 7 11 24 0 0.000000 4.496208 4.504934 -SIMU 1976 7 12 24 0 0.000000 4.298974 4.308869 -SIMU 1976 7 13 24 0 0.000000 4.083657 4.093746 -SIMU 1976 7 14 24 0 0.000000 3.869218 3.879362 -SIMU 1976 7 15 24 0 0.000000 3.658866 3.668646 -SIMU 1976 7 16 24 0 0.000000 3.282700 3.312535 -SIMU 1976 7 17 24 0 0.000000 2.593732 2.628525 -SIMU 1976 7 18 24 0 0.000000 2.104317 2.129354 -SIMU 1976 7 19 24 0 0.000000 1.765723 1.782676 -SIMU 1976 7 20 24 0 0.000000 1.541887 1.551700 -SIMU 1976 7 21 24 0 0.000000 1.412265 1.419812 -SIMU 1976 7 22 24 0 0.000000 1.308958 1.314430 -SIMU 1976 7 23 24 0 0.000000 1.218832 1.224497 -SIMU 1976 7 24 24 0 0.000000 1.114509 1.121729 -SIMU 1976 7 25 24 0 0.000000 0.9957278 1.003061 -SIMU 1976 7 26 24 0 0.000000 0.8912926 0.8990182 -SIMU 1976 7 27 24 0 0.000000 0.8027412 0.8130304 -SIMU 1976 7 28 24 0 0.000000 0.8977730 0.8814639 -SIMU 1976 7 29 24 0 0.000000 0.9119665 0.9128415 -SIMU 1976 7 30 24 0 0.000000 0.8776549 0.8812769 -SIMU 1976 7 31 24 0 0.000000 0.8408716 0.8465602 -SIMU 1976 8 1 24 0 0.000000 0.7861381 0.7930158 -SIMU 1976 8 2 24 0 0.000000 0.7172629 0.7256063 -SIMU 1976 8 3 24 0 0.000000 0.6406082 0.6496004 -SIMU 1976 8 4 24 0 0.000000 0.5580251 0.5678375 -SIMU 1976 8 5 24 0 0.000000 0.4727765 0.4823331 -SIMU 1976 8 6 24 0 0.000000 0.3866437 0.3968916 -SIMU 1976 8 7 24 0 0.000000 0.3015579 0.3106800 -SIMU 1976 8 8 24 0 0.000000 0.2223694 0.2316677 -SIMU 1976 8 9 24 0 0.000000 0.1386606 0.1484068 +SIMU 1976 1 2 24 0 0.000000 0.1248720 0.1125099 +SIMU 1976 1 3 24 0 0.000000 0.1905476 0.1851986 +SIMU 1976 1 4 24 0 0.000000 0.2189076 0.2166849 +SIMU 1976 1 5 24 0 0.000000 0.2296369 0.2288925 +SIMU 1976 1 6 24 0 0.000000 0.2335850 0.2330104 +SIMU 1976 1 7 24 0 0.000000 0.2338135 0.2343417 +SIMU 1976 1 8 24 0 0.000000 0.2288434 0.2294084 +SIMU 1976 1 9 24 0 0.000000 0.2239729 0.2245262 +SIMU 1976 1 10 24 0 0.000000 0.2192056 0.2197471 +SIMU 1976 1 11 24 0 0.000000 0.2145421 0.2150717 +SIMU 1976 1 12 24 0 0.000000 0.2119149 0.2117690 +SIMU 1976 1 13 24 0 0.000000 0.2217572 0.2198658 +SIMU 1976 1 14 24 0 0.000000 0.2424261 0.2399701 +SIMU 1976 1 15 24 0 0.000000 0.2671344 0.2637548 +SIMU 1976 1 16 24 0 0.000000 0.2947665 0.2925780 +SIMU 1976 1 17 24 0 0.000000 0.3046337 0.3040124 +SIMU 1976 1 18 24 0 0.000000 0.3057772 0.3058844 +SIMU 1976 1 19 24 0 0.000000 0.3028567 0.3033009 +SIMU 1976 1 20 24 0 0.000000 0.2990208 0.2992778 +SIMU 1976 1 21 24 0 0.000000 0.2986757 0.2987883 +SIMU 1976 1 22 24 0 0.000000 0.3007911 0.2997144 +SIMU 1976 1 23 24 0 0.000000 0.3295574 0.3238677 +SIMU 1976 1 24 24 0 0.000000 0.3869472 0.3812667 +SIMU 1976 1 25 24 0 0.000000 0.4336508 0.4285055 +SIMU 1976 1 26 24 0 0.000000 0.4649239 0.4612200 +SIMU 1976 1 27 24 0 0.000000 0.5011643 0.4983417 +SIMU 1976 1 28 24 0 0.000000 0.5325606 0.5258945 +SIMU 1976 1 29 24 0 0.000000 0.6205746 0.6085952 +SIMU 1976 1 30 24 0 0.000000 0.7192406 0.7113194 +SIMU 1976 1 31 24 0 0.000000 0.7556167 0.7532462 +SIMU 1976 2 1 24 0 0.000000 0.7623713 0.7621542 +SIMU 1976 2 2 24 0 0.000000 0.7600473 0.7607731 +SIMU 1976 2 3 24 0 0.000000 0.7489523 0.7504413 +SIMU 1976 2 4 24 0 0.000000 0.7345909 0.7363094 +SIMU 1976 2 5 24 0 0.000000 0.7190740 0.7208760 +SIMU 1976 2 6 24 0 0.000000 0.7032824 0.7050893 +SIMU 1976 2 7 24 0 0.000000 0.6916801 0.6920239 +SIMU 1976 2 8 24 0 0.000000 0.7083429 0.7042727 +SIMU 1976 2 9 24 0 0.000000 0.7615871 0.7546917 +SIMU 1976 2 10 24 0 0.000000 0.8247172 0.8184053 +SIMU 1976 2 11 24 0 0.000000 0.8625719 0.8598288 +SIMU 1976 2 12 24 0 0.000000 0.8718647 0.8712609 +SIMU 1976 2 13 24 0 0.000000 0.8734022 0.8737460 +SIMU 1976 2 14 24 0 0.000000 0.8642851 0.8656677 +SIMU 1976 2 15 24 0 0.000000 0.9129595 0.9049062 +SIMU 1976 2 16 24 0 0.000000 1.078044 1.059682 +SIMU 1976 2 17 24 0 0.000000 1.359820 1.349433 +SIMU 1976 2 18 24 0 0.000000 1.452251 1.449551 +SIMU 1976 2 19 24 0 0.000000 1.464540 1.464820 +SIMU 1976 2 20 24 0 0.000000 1.481434 1.471503 +SIMU 1976 2 21 24 0 0.000000 1.906745 1.884500 +SIMU 1976 2 22 24 0 0.000000 1.984607 1.986099 +SIMU 1976 2 23 24 0 0.000000 1.953152 1.954437 +SIMU 1976 2 24 24 0 0.000000 2.010689 1.999853 +SIMU 1976 2 25 24 0 0.000000 2.245111 2.232913 +SIMU 1976 2 26 24 0 0.000000 2.511892 2.486479 +SIMU 1976 2 27 24 0 0.000000 3.084428 3.050205 +SIMU 1976 2 28 24 0 0.000000 3.745470 3.720134 +SIMU 1976 2 29 24 0 0.000000 4.127980 4.116868 +SIMU 1976 3 1 24 0 0.000000 4.235329 4.234165 +SIMU 1976 3 2 24 0 0.000000 4.215328 4.217963 +SIMU 1976 3 3 24 0 0.000000 4.121662 4.126784 +SIMU 1976 3 4 24 0 0.000000 4.138225 4.134162 +SIMU 1976 3 5 24 0 0.000000 4.024909 4.035726 +SIMU 1976 3 6 24 0 0.000000 3.829541 3.837712 +SIMU 1976 3 7 24 0 0.000000 3.687015 3.691668 +SIMU 1976 3 8 24 0 0.000000 3.629119 3.631645 +SIMU 1976 3 9 24 0 0.000000 3.611779 3.607877 +SIMU 1976 3 10 24 0 0.000000 3.763959 3.757464 +SIMU 1976 3 11 24 0 0.000000 3.943267 3.921299 +SIMU 1976 3 12 24 0 0.000000 4.953779 4.908589 +SIMU 1976 3 13 24 0 0.000000 5.509392 5.485821 +SIMU 1976 3 14 24 0 0.000000 6.053998 6.030756 +SIMU 1976 3 15 24 0 0.000000 6.591527 6.571682 +SIMU 1976 3 16 24 0 0.000000 7.068567 7.047995 +SIMU 1976 3 17 24 0 0.000000 7.586174 7.566631 +SIMU 1976 3 18 24 0 0.000000 8.037082 8.019219 +SIMU 1976 3 19 24 0 0.000000 8.455155 8.440041 +SIMU 1976 3 20 24 0 0.000000 8.771515 8.760997 +SIMU 1976 3 21 24 0 0.000000 8.978786 8.971905 +SIMU 1976 3 22 24 0 0.000000 9.113884 9.109606 +SIMU 1976 3 23 24 0 0.000000 9.189359 9.187323 +SIMU 1976 3 24 24 0 0.000000 9.213420 9.213323 +SIMU 1976 3 25 24 0 0.000000 9.193388 9.194930 +SIMU 1976 3 26 24 0 0.000000 9.138386 9.140846 +SIMU 1976 3 27 24 0 0.000000 9.074394 9.077370 +SIMU 1976 3 28 24 0 0.000000 8.985065 8.989177 +SIMU 1976 3 29 24 0 0.000000 8.907846 8.907939 +SIMU 1976 3 30 24 0 0.000000 9.129716 9.115706 +SIMU 1976 3 31 24 0 0.000000 9.409184 9.400278 +SIMU 1976 4 1 24 0 0.000000 9.573208 9.568831 +SIMU 1976 4 2 24 0 0.000000 9.649462 9.647945 +SIMU 1976 4 3 24 0 0.000000 9.657434 9.658134 +SIMU 1976 4 4 24 0 0.000000 9.611531 9.613969 +SIMU 1976 4 5 24 0 0.000000 9.521956 9.526024 +SIMU 1976 4 6 24 0 0.000000 9.395257 9.400982 +SIMU 1976 4 7 24 0 0.000000 9.237177 9.244081 +SIMU 1976 4 8 24 0 0.000000 9.052279 9.060176 +SIMU 1976 4 9 24 0 0.000000 8.847823 8.856330 +SIMU 1976 4 10 24 0 0.000000 8.610672 8.621189 +SIMU 1976 4 11 24 0 0.000000 8.342372 8.353351 +SIMU 1976 4 12 24 0 0.000000 8.068358 8.079432 +SIMU 1976 4 13 24 0 0.000000 7.788944 7.800454 +SIMU 1976 4 14 24 0 0.000000 7.506726 7.516598 +SIMU 1976 4 15 24 0 0.000000 7.377091 7.380398 +SIMU 1976 4 16 24 0 0.000000 7.255644 7.261735 +SIMU 1976 4 17 24 0 0.000000 7.220002 7.214374 +SIMU 1976 4 18 24 0 0.000000 7.688132 7.662509 +SIMU 1976 4 19 24 0 0.000000 8.188305 8.171724 +SIMU 1976 4 20 24 0 0.000000 8.572078 8.552597 +SIMU 1976 4 21 24 0 0.000000 9.236757 9.207616 +SIMU 1976 4 22 24 0 1.064394 9.884415 10.76901 +SIMU 1976 4 23 24 0 8.498691 10.10623 18.38935 +SIMU 1976 4 24 24 0 11.04347 10.13804 21.17851 +SIMU 1976 4 25 24 0 11.05965 10.13825 21.20769 +SIMU 1976 4 26 24 0 9.681353 10.12102 19.85613 +SIMU 1976 4 27 24 0 8.145959 10.10183 18.29488 +SIMU 1976 4 28 24 0 6.926775 10.08658 17.05055 +SIMU 1976 4 29 24 0 5.795807 10.07245 15.90559 +SIMU 1976 4 30 24 0 4.818775 10.06023 14.91012 +SIMU 1976 5 1 24 0 3.955667 10.04945 14.03450 +SIMU 1976 5 2 24 0 5.405225 10.06756 15.40930 +SIMU 1976 5 3 24 0 4.873699 10.06092 14.96735 +SIMU 1976 5 4 24 0 3.979357 10.04974 14.05960 +SIMU 1976 5 5 24 0 3.111852 10.03890 13.18273 +SIMU 1976 5 6 24 0 2.299815 10.02875 12.35783 +SIMU 1976 5 7 24 0 1.608672 10.02011 11.65280 +SIMU 1976 5 8 24 0 0.9515235 10.01189 10.98877 +SIMU 1976 5 9 24 0 0.2810584 10.00351 10.31089 +SIMU 1976 5 10 24 0 1.1198178E-05 9.982972 9.985147 +SIMU 1976 5 11 24 0 0.000000 9.912993 9.916433 +SIMU 1976 5 12 24 0 0.000000 9.793891 9.798832 +SIMU 1976 5 13 24 0 0.000000 9.716702 9.717129 +SIMU 1976 5 14 24 0 0.000000 9.698365 9.699844 +SIMU 1976 5 15 24 0 0.000000 9.643738 9.645794 +SIMU 1976 5 16 24 0 0.3679665 6.930306 7.272403 +SIMU 1976 5 17 24 0 4.521122 7.039560 11.51796 +SIMU 1976 5 18 24 0 3.897263 7.034101 10.95958 +SIMU 1976 5 19 24 0 3.155860 7.027614 10.21031 +SIMU 1976 5 20 24 0 2.456451 7.021493 9.504502 +SIMU 1976 5 21 24 0 1.877169 7.016425 8.915241 +SIMU 1976 5 22 24 0 1.756312 7.015368 8.755388 +SIMU 1976 5 23 24 0 2.202089 7.019268 9.220018 +SIMU 1976 5 24 24 0 1.787248 7.015639 8.822639 +SIMU 1976 5 25 24 0 1.280952 7.011209 8.314347 +SIMU 1976 5 26 24 0 0.7877756 7.006894 7.815502 +SIMU 1976 5 27 24 0 0.3316932 7.002902 7.353515 +SIMU 1976 5 28 24 0 6.7844316E-02 6.998137 7.041820 +SIMU 1976 5 29 24 0 3.333377 7.029168 10.26768 +SIMU 1976 5 30 24 0 2.597399 7.022727 9.648638 +SIMU 1976 5 31 24 0 1.938582 7.016963 8.980260 +SIMU 1976 6 1 24 0 1.380618 7.012081 8.414832 +SIMU 1976 6 2 24 0 0.8569149 7.007498 7.886508 +SIMU 1976 6 3 24 0 0.3449340 7.003019 7.369867 +SIMU 1976 6 4 24 0 1.1105535E-02 6.995922 7.013830 +SIMU 1976 6 5 24 0 0.000000 6.966249 6.968029 +SIMU 1976 6 6 24 0 0.000000 6.908278 6.911087 +SIMU 1976 6 7 24 0 0.000000 6.827023 6.830715 +SIMU 1976 6 8 24 0 0.000000 6.725461 6.729936 +SIMU 1976 6 9 24 0 0.000000 6.604326 6.609624 +SIMU 1976 6 10 24 0 0.000000 6.522068 6.523443 +SIMU 1976 6 11 24 0 0.000000 6.480482 6.482765 +SIMU 1976 6 12 24 0 0.000000 6.409979 6.412432 +SIMU 1976 6 13 24 0 0.000000 6.394574 6.392076 +SIMU 1976 6 14 24 0 0.000000 6.540310 6.534281 +SIMU 1976 6 15 24 0 0.000000 6.649074 6.645895 +SIMU 1976 6 16 24 0 0.000000 6.700322 6.699082 +SIMU 1976 6 17 24 0 0.000000 6.707293 6.707804 +SIMU 1976 6 18 24 0 0.000000 6.678737 6.680389 +SIMU 1976 6 19 24 0 0.000000 6.623828 6.626516 +SIMU 1976 6 20 24 0 0.000000 6.544623 6.548285 +SIMU 1976 6 21 24 0 0.000000 6.444735 6.449089 +SIMU 1976 6 22 24 0 0.000000 6.328608 6.333622 +SIMU 1976 6 23 24 0 0.000000 6.197574 6.203137 +SIMU 1976 6 24 24 0 0.000000 6.086979 6.089646 +SIMU 1976 6 25 24 0 0.000000 6.030831 6.033754 +SIMU 1976 6 26 24 0 0.000000 5.945920 5.949395 +SIMU 1976 6 27 24 0 0.000000 5.878276 5.880149 +SIMU 1976 6 28 24 0 0.000000 5.878632 5.877500 +SIMU 1976 6 29 24 0 0.000000 5.893168 5.893247 +SIMU 1976 6 30 24 0 0.000000 5.875127 5.876381 +SIMU 1976 7 1 24 0 0.000000 5.830767 5.833010 +SIMU 1976 7 2 24 0 0.000000 5.766719 5.769744 +SIMU 1976 7 3 24 0 0.000000 5.684404 5.688806 +SIMU 1976 7 4 24 0 0.000000 5.582630 5.587656 +SIMU 1976 7 5 24 0 0.000000 5.468915 5.474516 +SIMU 1976 7 6 24 0 0.000000 5.342124 5.348369 +SIMU 1976 7 7 24 0 0.000000 5.198686 5.205951 +SIMU 1976 7 8 24 0 0.000000 5.034304 5.042291 +SIMU 1976 7 9 24 0 0.000000 4.861050 4.869270 +SIMU 1976 7 10 24 0 0.000000 4.681617 4.690247 +SIMU 1976 7 11 24 0 0.000000 4.496208 4.504934 +SIMU 1976 7 12 24 0 0.000000 4.298974 4.308869 +SIMU 1976 7 13 24 0 0.000000 4.083657 4.093746 +SIMU 1976 7 14 24 0 0.000000 3.869218 3.879362 +SIMU 1976 7 15 24 0 0.000000 3.658866 3.668646 +SIMU 1976 7 16 24 0 0.000000 3.282700 3.312535 +SIMU 1976 7 17 24 0 0.000000 2.593732 2.628525 +SIMU 1976 7 18 24 0 0.000000 2.104317 2.129354 +SIMU 1976 7 19 24 0 0.000000 1.765723 1.782676 +SIMU 1976 7 20 24 0 0.000000 1.541887 1.551700 +SIMU 1976 7 21 24 0 0.000000 1.412265 1.419812 +SIMU 1976 7 22 24 0 0.000000 1.308958 1.314430 +SIMU 1976 7 23 24 0 0.000000 1.218832 1.224497 +SIMU 1976 7 24 24 0 0.000000 1.114509 1.121729 +SIMU 1976 7 25 24 0 0.000000 0.9957278 1.003061 +SIMU 1976 7 26 24 0 0.000000 0.8912926 0.8990182 +SIMU 1976 7 27 24 0 0.000000 0.8027412 0.8130304 +SIMU 1976 7 28 24 0 0.000000 0.8977730 0.8814639 +SIMU 1976 7 29 24 0 0.000000 0.9119665 0.9128415 +SIMU 1976 7 30 24 0 0.000000 0.8776549 0.8812769 +SIMU 1976 7 31 24 0 0.000000 0.8408716 0.8465602 +SIMU 1976 8 1 24 0 0.000000 0.7861381 0.7930158 +SIMU 1976 8 2 24 0 0.000000 0.7172629 0.7256063 +SIMU 1976 8 3 24 0 0.000000 0.6406082 0.6496004 +SIMU 1976 8 4 24 0 0.000000 0.5580251 0.5678375 +SIMU 1976 8 5 24 0 0.000000 0.4727765 0.4823331 +SIMU 1976 8 6 24 0 0.000000 0.3866437 0.3968916 +SIMU 1976 8 7 24 0 0.000000 0.3015579 0.3106800 +SIMU 1976 8 8 24 0 0.000000 0.2223694 0.2316677 +SIMU 1976 8 9 24 0 0.000000 0.1386606 0.1484068 SIMU 1976 8 10 24 0 0.000000 6.3085847E-02 7.0483334E-02 SIMU 1976 8 11 24 0 0.000000 1.9602083E-02 2.2475494E-02 SIMU 1976 8 12 24 0 0.000000 7.1524684E-03 8.6102784E-03 SIMU 1976 8 13 24 0 0.000000 1.6763480E-04 5.0232006E-04 SIMU 1976 8 14 24 0 0.000000 0.000000 6.5963420E-08 -SIMU 1976 8 15 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 16 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 17 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 18 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 19 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 20 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 21 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 22 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 23 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 24 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 25 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 26 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 27 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 28 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 29 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 30 24 0 0.000000 0.000000 0.000000 -SIMU 1976 8 31 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 1 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 2 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 3 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 4 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 5 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 6 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 7 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 8 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 9 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 10 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 11 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 12 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 13 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 14 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 15 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 16 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 17 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 18 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 19 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 20 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 21 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 22 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 23 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 24 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 25 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 26 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 27 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 28 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 29 24 0 0.000000 0.000000 0.000000 -SIMU 1976 9 30 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 1 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 2 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 3 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 4 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 5 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 6 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 7 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 8 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 9 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 10 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 11 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 12 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 13 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 14 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 15 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 16 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 17 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 18 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 19 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 20 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 21 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 22 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 23 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 24 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 25 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 26 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 27 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 28 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 29 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 30 24 0 0.000000 0.000000 0.000000 -SIMU 1976 10 31 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 1 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 2 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 3 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 4 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 5 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 6 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 7 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 8 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 9 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 10 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 11 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 12 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 13 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 14 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 15 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 16 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 17 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 18 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 19 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 20 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 21 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 22 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 23 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 24 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 25 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 26 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 27 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 28 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 29 24 0 0.000000 0.000000 0.000000 -SIMU 1976 11 30 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 1 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 2 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 3 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 4 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 5 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 6 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 7 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 8 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 9 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 10 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 11 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 12 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 13 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 14 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 15 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 16 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 17 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 18 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 19 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 20 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 21 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 22 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 23 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 24 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 25 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 26 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 27 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 28 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 29 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 30 24 0 0.000000 0.000000 0.000000 -SIMU 1976 12 31 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 15 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 16 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 17 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 18 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 19 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 20 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 21 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 22 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 23 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 24 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 25 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 26 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 27 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 28 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 29 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 30 24 0 0.000000 0.000000 0.000000 +SIMU 1976 8 31 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 1 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 2 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 3 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 4 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 5 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 6 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 7 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 8 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 9 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 10 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 11 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 12 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 13 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 14 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 15 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 16 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 17 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 18 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 19 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 20 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 21 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 22 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 23 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 24 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 25 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 26 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 27 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 28 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 29 24 0 0.000000 0.000000 0.000000 +SIMU 1976 9 30 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 1 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 2 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 3 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 4 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 5 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 6 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 7 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 8 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 9 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 10 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 11 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 12 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 13 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 14 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 15 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 16 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 17 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 18 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 19 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 20 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 21 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 22 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 23 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 24 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 25 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 26 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 27 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 28 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 29 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 30 24 0 0.000000 0.000000 0.000000 +SIMU 1976 10 31 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 1 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 2 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 3 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 4 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 5 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 6 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 7 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 8 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 9 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 10 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 11 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 12 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 13 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 14 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 15 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 16 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 17 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 18 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 19 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 20 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 21 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 22 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 23 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 24 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 25 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 26 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 27 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 28 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 29 24 0 0.000000 0.000000 0.000000 +SIMU 1976 11 30 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 1 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 2 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 3 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 4 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 5 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 6 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 7 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 8 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 9 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 10 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 11 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 12 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 13 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 14 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 15 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 16 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 17 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 18 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 19 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 20 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 21 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 22 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 23 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 24 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 25 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 26 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 27 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 28 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 29 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 30 24 0 0.000000 0.000000 0.000000 +SIMU 1976 12 31 24 0 0.000000 0.000000 0.000000 diff --git a/tests/test10/HSP2results/test10.example.py b/tests/test10/HSP2results/test10.example.py index 47d10924..6c0ebb90 100644 --- a/tests/test10/HSP2results/test10.example.py +++ b/tests/test10/HSP2results/test10.example.py @@ -1,25 +1,28 @@ import sys -from numba import int8, float32, njit, types, typed # import the types + +from numba import float32, int8, njit, typed, types # import the types print("Loaded a set of HSP2 code!") + @njit def state_step_hydr(state_info, state_paths, state_ix, dict_ix, ts_ix, hydr_ix, step): - if (step <= 1): - print("Custom state_step_hydr() called for ", state_info['segment']) - print("operation", state_info['operation']) + if step <= 1: + print("Custom state_step_hydr() called for ", state_info["segment"]) + print("operation", state_info["operation"]) print("state at start", state_ix) print("domain info", state_info) print("state_paths", state_paths) # Do a simple withdrawal of 10 MGGD from R001 - if (state_info['segment'] == 'R001') and (state_info['activity'] == 'HYDR'): - state_ix[hydr_ix['O1']] = 10.0 * 1.547 + if (state_info["segment"] == "R001") and (state_info["activity"] == "HYDR"): + state_ix[hydr_ix["O1"]] = 10.0 * 1.547 # Route point source return from segment R001 demand to R005 inflow (IVOL) # For demo purposes this will only use the last state_ix value for R001 demand # Realistic approach would run all segments simultaneously or use value from ts_ix (ts_ix loading TBD) - if (state_info['segment'] == 'R005') and (state_info['activity'] == 'HYDR'): - state_ix[hydr_ix['IVOL']] += 0.85 * state_ix[state_paths['/STATE/RCHRES_R001/HYDR/O1']] - if (step <= 1): - print("IVOL after", state_ix[hydr_ix['IVOL']]) + if (state_info["segment"] == "R005") and (state_info["activity"] == "HYDR"): + state_ix[hydr_ix["IVOL"]] += ( + 0.85 * state_ix[state_paths["/STATE/RCHRES_R001/HYDR/O1"]] + ) + if step <= 1: + print("IVOL after", state_ix[hydr_ix["IVOL"]]) return - diff --git a/tests/test10/HSP2results/test10.uci b/tests/test10/HSP2results/test10.uci index 5ec4f0f2..624b8e0f 100644 --- a/tests/test10/HSP2results/test10.uci +++ b/tests/test10/HSP2results/test10.uci @@ -9,7 +9,7 @@ END GLOBAL *** This test run uses MASS-LINK and SCHEMATIC blocks *** -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 test10.wdm MESSU 22 test10.ech @@ -294,7 +294,7 @@ RCHRES ACTIVITY RCHRES Active Sections (1=Active, 0=Inactive) *** # - # HYFG ADFG CNFG HTFG SDFG GQFG OXFG NUFG PKFG PHFG *** - 1 5 1 1 1 1 1 1 1 1 1 1 + 1 5 1 1 1 1 1 1 1 1 1 1 END ACTIVITY PRINT-INFO @@ -597,8 +597,8 @@ RCHRES OX-BENPARM RCHRES BENOD TCBEN EXPOD BRBOD(1) BRBOD(2) EXPREL *** - # - # mg/m2.hr mg/m2.hr mg/m2.hr *** - 1 5 10. 1.1 1.2 20. 25. 1.3 + # - # mg/m2.hr mg/m2.hr mg/m2.hr *** + 1 5 10. 1.1 1.2 20. 25. 1.3 END OX-BENPARM OX-CFOREA @@ -628,46 +628,46 @@ RCHRES END NUT-FLAGS NUT-BENPARM - RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** - # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** + RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** + # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** 1 5 11.0 33.0 1.1 2.2 0.0005 - END NUT-BENPARM - + END NUT-BENPARM + NUT-NITDENIT - RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** - # - # /hr /hr /hr mg/l *** + RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** + # - # /hr /hr /hr mg/l *** 1 5 .002 .004 1.07 .001 1.04 0.2 END NUT-NITDENIT - + NUT-NH3VOLAT - RCHRES EXPNVG EXPNVL *** - # - # *** + RCHRES EXPNVG EXPNVL *** + # - # *** 1 5 .50 0.6667 - END NUT-NH3VOLAT - - NUT-BEDCONC + END NUT-NH3VOLAT + + NUT-BEDCONC RCHRES Bed concentrations of NH4 & PO4 (mg/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0.00001 0.00001 0.00001 0.00001 0.00001 0.00001 - END NUT-BEDCONC - - NUT-ADSPARM + END NUT-BEDCONC + + NUT-ADSPARM RCHRES Partition coefficients for NH4 AND PO4 (l/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0.0001 0.0001 0.0001 10. 10. 10. END NUT-ADSPARM - - NUT-DINIT + + NUT-DINIT RCHRES NO3 TAM NO2 PO4 PHVAL *** - # - # mg/l mg/l mg/l mg/l ph units *** + # - # mg/l mg/l mg/l mg/l ph units *** 1 5 40. 10. 1. 50. 7.0 END NUT-DINIT - - NUT-ADSINIT + + NUT-ADSINIT RCHRES Initial suspended NH4 and PO4 concentrations (mg/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0. 0. 0. 0. 0. 0. - END NUT-ADSINIT + END NUT-ADSINIT *** Section PLANK *** @@ -920,11 +920,11 @@ SCHEMATIC # <-factor-> # # *** PERLND 1 6000. RCHRES 1 1 IMPLND 1 3000. RCHRES 5 2 -RCHRES 1 RCHRES 2 3 -RCHRES 1 RCHRES 3 4 -RCHRES 2 RCHRES 4 5 -RCHRES 3 RCHRES 4 5 -RCHRES 4 RCHRES 5 5 +RCHRES 1 RCHRES 2 3 +RCHRES 1 RCHRES 3 4 +RCHRES 2 RCHRES 4 5 +RCHRES 3 RCHRES 4 5 +RCHRES 4 RCHRES 5 5 END SCHEMATIC MASS-LINK diff --git a/tests/test10/HSPFresults/HSPF.log b/tests/test10/HSPFresults/HSPF.log index 369c42ed..1b359a51 100644 --- a/tests/test10/HSPFresults/HSPF.log +++ b/tests/test10/HSPFresults/HSPF.log @@ -62,7 +62,7 @@ 00:00:01.366 WriteStatus:(MSG7 unit 99 file ERROR.FIL is open, access:SEQUENTIAL form:FORMATTED r/w:YES recl: 80) 00:00:01.366 Main:Token:MSG7 unit 100 file c:\basins45\models\winhspf31\bin\hspfmsg.wdm is open, access:DIRECT form:UNFORMATTED r/w:NO recl: 2048 00:00:01.366 WriteStatus:(MSG7 unit 100 file c:\basins45\models\winhspf31\bin\hspfmsg.wdm is open, access:DIRECT form:UNFORMATTED r/w:NO recl: 2048) -00:00:01.366 Main:Token:MSG99 +00:00:01.366 Main:Token:MSG99 00:00:01.366 WriteStatus:(MSG99 ) 00:00:01.367 Main:Token:MSG7 File Status at before WDM closing in M_ACTSCN 00:00:01.367 WriteStatus:(MSG7 File Status at before WDM closing in M_ACTSCN) @@ -147,9 +147,9 @@ 00:00:03.480 WriteStatus:(MSG2 FTABLES) 00:00:03.480 Main:Token:MSG2 MASS-LINK 00:00:03.480 WriteStatus:(MSG2 MASS-LINK) -00:00:03.480 Main:Token:MSG3 +00:00:03.480 Main:Token:MSG3 00:00:03.480 WriteStatus:(MSG3 ) -00:00:03.480 Main:Token:MSG4 +00:00:03.480 Main:Token:MSG4 00:00:03.480 WriteStatus:(MSG4 ) 00:00:03.480 Main:Token:MSG2 PERLND 00:00:03.481 WriteStatus:(MSG2 PERLND) @@ -211,9 +211,9 @@ 00:00:03.489 WriteStatus:(MSG4 PWT-TEMPS) 00:00:03.489 Main:Token:MSG4 PWT-GASES 00:00:03.490 WriteStatus:(MSG4 PWT-GASES) -00:00:03.490 Main:Token:MSG3 +00:00:03.490 Main:Token:MSG3 00:00:03.490 WriteStatus:(MSG3 ) -00:00:03.490 Main:Token:MSG4 +00:00:03.490 Main:Token:MSG4 00:00:03.490 WriteStatus:(MSG4 ) 00:00:03.490 Main:Token:MSG2 IMPLND 00:00:03.490 WriteStatus:(MSG2 IMPLND) @@ -269,9 +269,9 @@ 00:00:03.498 WriteStatus:(MSG4 QUAL-PROPS) 00:00:03.498 Main:Token:MSG4 QUAL-INPUT 00:00:03.498 WriteStatus:(MSG4 QUAL-INPUT) -00:00:03.498 Main:Token:MSG3 +00:00:03.498 Main:Token:MSG3 00:00:03.498 WriteStatus:(MSG3 ) -00:00:03.499 Main:Token:MSG4 +00:00:03.499 Main:Token:MSG4 00:00:03.499 WriteStatus:(MSG4 ) 00:00:03.499 Main:Token:MSG2 RCHRES 00:00:03.499 WriteStatus:(MSG2 RCHRES) @@ -1021,9 +1021,9 @@ 00:00:03.624 WriteStatus:(MSG4 PH-PARM2) 00:00:03.624 Main:Token:MSG4 PH-INIT 00:00:03.624 WriteStatus:(MSG4 PH-INIT) -00:00:03.624 Main:Token:MSG3 +00:00:03.624 Main:Token:MSG3 00:00:03.624 WriteStatus:(MSG3 ) -00:00:03.624 Main:Token:MSG4 +00:00:03.624 Main:Token:MSG4 00:00:03.624 WriteStatus:(MSG4 ) 00:00:03.625 Main:Token:MSG2 DISPLY 00:00:03.625 WriteStatus:(MSG2 DISPLY) @@ -1057,9 +1057,9 @@ 00:00:03.629 WriteStatus:(MSG4 DISPLY-INFO1) 00:00:03.629 Main:Token:MSG4 DISPLY-INFO2 00:00:03.629 WriteStatus:(MSG4 DISPLY-INFO2) -00:00:03.629 Main:Token:MSG3 +00:00:03.629 Main:Token:MSG3 00:00:03.629 WriteStatus:(MSG3 ) -00:00:03.629 Main:Token:MSG4 +00:00:03.629 Main:Token:MSG4 00:00:03.630 WriteStatus:(MSG4 ) 00:00:03.630 Main:Token:MSG2 GENER 00:00:03.630 WriteStatus:(MSG2 GENER) @@ -1071,9 +1071,9 @@ 00:00:03.631 WriteStatus:(MSG3 2) 00:00:03.631 Main:Token:MSG4 OPCODE 00:00:03.631 WriteStatus:(MSG4 OPCODE) -00:00:03.631 Main:Token:MSG3 +00:00:03.631 Main:Token:MSG3 00:00:03.631 WriteStatus:(MSG3 ) -00:00:03.631 Main:Token:MSG4 +00:00:03.631 Main:Token:MSG4 00:00:03.631 WriteStatus:(MSG4 ) 00:00:03.632 Main:Token:MSG2 PLTGEN 00:00:03.632 WriteStatus:(MSG2 PLTGEN) @@ -1105,15 +1105,15 @@ 00:00:03.635 WriteStatus:(MSG4 CURV-DATA) 00:00:03.635 Main:Token:MSG4 CURV-DATA 00:00:03.635 WriteStatus:(MSG4 CURV-DATA) -00:00:03.635 Main:Token:MSG3 +00:00:03.635 Main:Token:MSG3 00:00:03.635 WriteStatus:(MSG3 ) -00:00:03.636 Main:Token:MSG4 +00:00:03.636 Main:Token:MSG4 00:00:03.636 WriteStatus:(MSG4 ) -00:00:03.636 Main:Token:MSG3 +00:00:03.636 Main:Token:MSG3 00:00:03.636 WriteStatus:(MSG3 ) -00:00:03.636 Main:Token:MSG3 +00:00:03.636 Main:Token:MSG3 00:00:03.636 WriteStatus:(MSG3 ) -00:00:03.636 Main:Token:MSG4 +00:00:03.636 Main:Token:MSG4 00:00:03.636 WriteStatus:(MSG4 ) 00:00:03.637 Main:Token:MSG2 EXT SOURCES 00:00:03.637 WriteStatus:(MSG2 EXT SOURCES) diff --git a/tests/test10/HSPFresults/test10.d66 b/tests/test10/HSPFresults/test10.d66 index da8b30be..f7be4e8c 100644 --- a/tests/test10/HSPFresults/test10.d66 +++ b/tests/test10/HSPFresults/test10.d66 @@ -8,37 +8,37 @@ Annual data display: Summary for period ending 1976/12 Day JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC - + 1 52.53 32.21 38.94 46.64 56.64 68.84 76.16 82.48 77.61 62.65 40.97 32.07 2 40.78 32.07 35.58 48.59 54.84 68.61 76.59 83.37 76.43 64.77 41.81 32.07 3 32.49 32.28 32.89 49.93 52.23 67.47 77.79 82.51 75.67 66.03 40.57 32.08 4 32.08 32.07 32.07 49.36 52.73 66.62 78.40 79.58 75.01 66.46 37.47 32.07 5 32.10 32.07 32.41 50.83 55.15 67.65 79.90 78.59 74.71 64.44 34.87 32.12 - + 6 32.07 32.19 32.99 53.18 56.59 69.06 81.09 78.26 73.39 61.87 34.11 32.07 7 32.07 32.43 33.25 54.33 56.90 69.61 81.73 78.10 73.04 60.61 33.05 32.07 8 32.07 33.06 32.97 54.07 57.25 71.48 81.80 79.03 73.21 58.42 32.35 32.07 9 32.08 33.34 33.84 53.82 58.36 73.89 82.47 78.81 71.94 56.58 32.93 32.07 10 32.07 34.75 36.13 54.77 60.92 74.46 84.17 78.07 70.29 56.73 32.36 32.07 - + 11 32.12 35.27 36.31 54.15 63.11 74.32 85.27 78.08 70.95 56.83 32.11 32.08 12 32.50 35.95 37.14 52.13 63.23 75.73 85.61 79.46 70.80 56.92 32.10 32.07 13 32.44 36.75 36.49 52.70 61.75 75.41 86.68 80.29 70.65 57.76 32.15 32.09 14 32.36 35.11 35.80 55.39 61.04 74.65 87.37 79.22 72.04 57.30 32.27 32.14 15 32.26 35.86 36.25 60.32 60.75 73.88 86.54 79.02 71.79 55.54 32.39 32.22 - + 16 32.07 36.49 35.80 65.52 59.20 71.50 82.67 76.22 72.01 51.68 32.44 32.24 17 32.12 35.17 35.39 65.42 58.58 70.22 81.09 73.95 73.64 49.57 32.82 32.36 18 32.10 35.05 37.89 64.71 59.49 69.79 82.41 75.71 75.14 47.05 33.49 33.01 19 32.07 36.08 43.83 63.35 61.48 67.60 80.37 77.67 75.17 43.66 34.62 33.74 20 32.13 36.15 48.77 60.43 64.78 66.39 79.17 79.01 73.65 42.20 34.61 32.11 - + 21 32.07 34.11 47.13 57.85 68.04 66.56 79.59 80.08 72.07 41.33 33.31 32.07 22 32.36 32.44 44.49 58.48 67.05 67.00 78.87 81.91 70.93 40.49 32.15 32.07 23 32.70 33.36 44.45 58.38 63.56 67.67 80.96 83.60 69.79 39.67 32.17 32.07 24 32.49 35.07 46.87 55.63 62.41 69.08 82.87 84.68 68.20 39.39 32.82 32.20 25 32.08 37.01 47.81 52.29 63.58 70.45 82.98 85.74 66.33 39.62 33.76 32.39 - + 26 32.09 38.36 48.94 51.45 64.95 73.10 82.80 85.13 64.29 39.59 34.77 32.17 27 32.26 40.84 48.75 52.46 66.43 74.58 82.62 83.20 62.36 39.58 32.18 32.61 28 32.41 42.14 48.80 53.68 67.49 74.63 82.57 81.04 60.49 39.22 32.07 32.07 @@ -54,42 +54,42 @@ - O2 CONC, MEIER POND (mg/l) + O2 CONC, MEIER POND (mg/l) Annual data display: Summary for period ending 1976/12 Day JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC - + 1 8.28 13.96 11.61 10.38 9.00 8.07 7.50 7.01 7.35 9.13 12.30 14.12 2 10.68 13.98 12.18 10.31 8.97 8.07 7.49 6.99 7.45 8.88 12.23 14.11 3 13.10 13.95 12.76 10.13 9.18 8.13 7.42 6.98 7.57 8.67 12.23 14.11 4 13.91 13.95 13.05 10.14 9.33 8.24 7.36 7.17 7.63 8.52 12.69 14.11 5 13.99 13.97 13.18 10.09 9.28 8.28 7.29 7.38 7.69 8.60 13.27 14.08 - + 6 13.99 13.97 13.17 9.93 9.16 8.22 7.18 7.43 7.75 8.94 13.62 14.07 7 14.04 13.95 12.96 9.72 9.11 8.16 7.10 7.48 7.88 9.16 13.79 14.10 8 14.02 13.88 12.83 9.69 9.09 8.08 7.06 7.43 7.85 9.38 14.04 14.10 9 13.97 13.78 12.77 9.69 9.05 7.91 7.04 7.39 7.91 9.69 14.05 14.10 10 13.96 13.58 12.26 9.68 8.95 7.74 6.95 7.44 8.09 9.79 14.02 14.10 - + 11 13.95 13.39 11.98 9.66 8.76 7.67 6.83 7.45 8.13 9.77 14.12 14.09 12 13.89 13.29 11.76 9.83 8.63 7.62 6.78 7.39 8.09 9.76 14.15 14.09 13 13.80 13.06 11.55 9.94 8.62 7.53 6.71 7.24 8.12 9.69 14.15 14.09 14 13.77 13.23 11.54 9.80 8.70 7.49 6.63 7.25 8.03 9.66 14.13 14.08 15 13.78 13.27 11.59 9.34 8.73 7.53 6.63 7.33 7.95 9.79 14.10 14.06 - + 16 13.82 13.00 11.69 8.81 8.78 7.66 6.82 7.42 7.98 10.22 14.08 14.05 17 13.85 13.05 11.83 8.44 8.85 7.84 7.11 7.74 7.84 10.68 14.04 14.03 18 13.87 13.20 11.81 8.23 8.86 7.95 7.10 7.74 7.68 10.99 13.93 13.96 19 13.88 13.12 11.34 8.23 8.79 8.09 7.14 7.54 7.54 11.53 13.67 13.74 20 13.89 12.98 10.72 8.39 8.62 8.27 7.32 7.37 7.66 12.00 13.59 14.01 - + 21 13.91 13.20 10.43 8.54 8.36 8.37 7.33 7.23 7.83 12.15 13.69 14.10 22 13.89 13.62 10.57 8.64 8.21 8.40 7.35 7.08 7.98 12.39 13.99 14.07 23 13.85 13.56 10.95 8.67 8.32 8.38 7.33 6.85 8.10 12.46 14.10 14.06 24 13.82 13.18 10.88 8.67 8.51 8.28 7.11 6.73 8.27 12.63 14.06 14.04 25 13.87 12.61 10.62 8.85 8.57 8.14 7.05 6.59 8.44 12.61 13.88 14.01 - + 26 13.93 12.30 10.40 9.05 8.52 7.97 7.00 6.56 8.71 12.60 13.59 14.01 27 13.93 11.81 10.34 9.13 8.44 7.76 7.05 6.70 8.91 12.60 13.86 13.99 28 13.92 11.45 10.31 9.13 8.34 7.63 6.98 6.92 9.19 12.64 14.09 13.99 @@ -105,42 +105,42 @@ - PEST SED CONC, POND (mg/kg) + PEST SED CONC, POND (mg/kg) Annual data display: Summary for period ending 1976/12 Day JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC - + 1 0.10 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 0.09 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 0.09 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 0.09 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 0.08 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 6 0.08 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 0.08 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 0.07 0.02 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 0.07 0.02 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 0.07 0.02 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 11 0.07 0.02 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 0.06 0.02 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 0.06 0.02 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 0.06 0.02 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 0.06 0.02 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 16 0.06 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 21 0.05 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 26 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 @@ -161,37 +161,37 @@ Annual data display: Summary for period ending 1976/12 Day JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC - + 1 12.34 14.37 14.07 11.29 10.15 8.95 8.10 7.75******************************** 2 10.05 14.12 14.38 11.17 10.54 8.97 7.74 7.17******************************** 3 12.63 14.31 14.38 11.40 10.70 9.18 7.80 8.19******************************** 4 12.23 14.37 14.38 11.00 10.61 9.18 7.85 8.43******************************** 5 12.97 14.37 14.07 10.83 10.01 8.98 7.41 7.76******** 10.70**************** - + 6 12.61 13.75 14.08 10.51 10.13 8.81 7.63 7.65******** 6.80**************** 7 12.80 13.75 14.05 10.89 9.94 8.73 7.60 7.69******************************** 8 14.01 13.82 14.05 10.36 9.97 8.42 7.62 7.74******************************** 9 14.14 13.38 13.98 10.62 9.79 8.29 7.45 7.81******************************** 10 14.33 13.25 14.14 10.38 9.61 8.83 7.31 7.86******************************** - + 11 14.18 12.80 14.17 10.71 9.16 8.31 7.51 7.84******************************** 12 14.28 12.67 13.69 10.77 9.73 8.12 7.20 7.85******************************** 13 14.25 13.66 13.97 10.49 9.81 8.54 7.16 8.22******************************** 14 13.91 13.10 14.09 9.93 9.63 8.85 7.41 8.75 8.99************************ 15 14.36 11.82 13.98 9.46 9.99 8.77 7.98******************************** 10.67 - + 16 14.36 13.40 13.98 8.73 9.96 8.95 8.33******************************** 10.08 17 13.99 14.31 13.64 9.40 9.93 8.69 7.21 8.35************************ 13.68 18 14.22 13.37 12.51 9.59 9.56 9.04 7.66******************************** 13.35 19 14.37 13.14 11.83 9.43 9.42 9.27 8.71**************** 13.20******** 10.35 20 14.28 14.04 12.14 9.99 8.98 9.12 8.39******** 9.22 9.60******** 5.46 - + 21 14.23 14.34 12.10 10.11 8.78 9.06 8.03**************************************** 22 13.73 13.90 12.09 9.84 9.61 8.98 7.90**************************************** 23 13.81 13.83 11.88 10.30 9.62 9.01 6.37**************************************** 24 14.09 14.09 10.87 10.34 9.29 8.68 7.75**************** 10.98**************** 25 14.37 13.61 11.59 10.73 9.08 8.39 7.56**************** 6.22**************** - + 26 14.32 13.20 11.15 10.76 9.00 8.35 8.86 8.81******************************** 27 13.35 12.68 11.13 10.64 8.99 8.45 7.56**************************************** 28 13.99 12.82 11.29 10.41 8.92 8.26 8.94**************************************** @@ -212,37 +212,37 @@ Annual data display: Summary for period ending 1976/12 Day JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC - + 1 0.10 0.06 0.03 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 2 0.10 0.06 0.03 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 3 0.10 0.06 0.03 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 4 0.10 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 5 0.10 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 6 0.09 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 7 0.09 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 8 0.09 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 9 0.09 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 10 0.09 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 11 0.08 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 12 0.08 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 13 0.08 0.05 0.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 14 0.08 0.05 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 15 0.07 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 16 0.07 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 17 0.07 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 18 0.07 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 19 0.07 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 20 0.07 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 21 0.07 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 22 0.07 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 23 0.07 0.04 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 24 0.06 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 25 0.06 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 - + 26 0.06 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 27 0.06 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 28 0.06 0.03 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 diff --git a/tests/test10/HSPFresults/test10.mwprj b/tests/test10/HSPFresults/test10.mwprj index 0651a35b..35c3921b 100644 --- a/tests/test10/HSPFresults/test10.mwprj +++ b/tests/test10/HSPFresults/test10.mwprj @@ -64,4 +64,4 @@ - \ No newline at end of file + diff --git a/tests/test10/HSPFresults/test10.p94 b/tests/test10/HSPFresults/test10.p94 index cec91099..8cb01406 100644 --- a/tests/test10/HSPFresults/test10.p94 +++ b/tests/test10/HSPFresults/test10.p94 @@ -2,10 +2,10 @@ SIMU HSPF FILE FOR DRIVING SEPARATE PLOT PROGRAM SIMU Time interval: 1440 mins Last month in printout year: 9 SIMU No. of curves plotted: Point-valued: 0 Mean-valued: 2 Total 2 SIMU Label flag: 0 Pivl: 24 Idelt: 60 -SIMU Plot title: SIMULATED FLOWS (CFS) -SIMU Y-axis label: CFS +SIMU Plot title: SIMULATED FLOWS (CFS) +SIMU Y-axis label: CFS SIMU Scale info: Ymin: 0.0000 Threshold:-0.10000E+31 -SIMU Ymax: 150.00 +SIMU Ymax: 150.00 SIMU Time: 20.000 intervals/inch SIMU Data for each curve (Point-valued first, then mean-valued): SIMU Label LINTYP INTEQ COLCOD TRAN TRANCOD @@ -24,369 +24,369 @@ SIMU SIMU Date/time Values SIMU SIMU 1975 12 31 24 0-1.0000000E+30-1.0000000E+30 -SIMU 1976 1 1 24 0 1.4474289E-02 1.260718 +SIMU 1976 1 1 24 0 1.4474289E-02 1.260718 SIMU 1976 1 2 24 0 0.1248719 9.5694907E-02 -SIMU 1976 1 3 24 0 0.1909118 1.438969 -SIMU 1976 1 4 24 0 0.2214593 0.3149185 -SIMU 1976 1 5 24 0 0.2445364 26.38584 -SIMU 1976 1 6 24 0 0.2830130 0.4501142 -SIMU 1976 1 7 24 0 0.3058431 17.70815 -SIMU 1976 1 8 24 0 0.3417993 23.47737 -SIMU 1976 1 9 24 0 0.3868528 20.78489 -SIMU 1976 1 10 24 0 0.4243174 9.438145 -SIMU 1976 1 11 24 0 0.4571089 36.51984 -SIMU 1976 1 12 24 0 0.5390512 31.99113 -SIMU 1976 1 13 24 0 0.6745985 11.18829 -SIMU 1976 1 14 24 0 0.7997810 5.255074 -SIMU 1976 1 15 24 0 0.8668398 0.9759123 -SIMU 1976 1 16 24 0 0.8930736 0.8872543 -SIMU 1976 1 17 24 0 0.8937428 0.8937156 -SIMU 1976 1 18 24 0 0.8816622 0.8843302 -SIMU 1976 1 19 24 0 0.8650545 0.8686689 -SIMU 1976 1 20 24 0 0.8467069 0.8506928 -SIMU 1976 1 21 24 0 0.8278188 0.8319094 -SIMU 1976 1 22 24 0 0.8089502 0.8130208 -SIMU 1976 1 23 24 0 0.7940420 1.102890 -SIMU 1976 1 24 24 0 0.7959095 0.8527839 -SIMU 1976 1 25 24 0 0.7976615 0.7947715 -SIMU 1976 1 26 24 0 0.7891020 0.7936022 -SIMU 1976 1 27 24 0 0.7674562 0.7721074 -SIMU 1976 1 28 24 0 0.7492455 0.9383754 -SIMU 1976 1 29 24 0 0.7572476 4.939040 -SIMU 1976 1 30 24 0 0.8015971 0.9141596 -SIMU 1976 1 31 24 0 0.8147146 0.8119590 -SIMU 1976 2 1 24 0 0.8136443 0.8118444 -SIMU 1976 2 2 24 0 0.8198046 0.8167373 -SIMU 1976 2 3 24 0 0.8151059 0.8153910 -SIMU 1976 2 4 24 0 0.8031108 0.8050318 -SIMU 1976 2 5 24 0 0.7878329 0.7904783 -SIMU 1976 2 6 24 0 0.7712485 0.7741784 -SIMU 1976 2 7 24 0 0.7542881 0.7572957 -SIMU 1976 2 8 24 0 0.7379165 11.98187 -SIMU 1976 2 9 24 0 0.7289269 2.172925 -SIMU 1976 2 10 24 0 0.7348322 0.8702201 -SIMU 1976 2 11 24 0 0.7378606 1.010215 -SIMU 1976 2 12 24 0 0.7313829 0.7404312 -SIMU 1976 2 13 24 0 0.7196591 0.7215089 -SIMU 1976 2 14 24 0 0.7056407 10.74174 -SIMU 1976 2 15 24 0 0.7427791 27.17800 -SIMU 1976 2 16 24 0 0.8933365 24.57355 -SIMU 1976 2 17 24 0 1.170159 1.243186 -SIMU 1976 2 18 24 0 1.265975 1.249576 -SIMU 1976 2 19 24 0 1.290379 1.285805 -SIMU 1976 2 20 24 0 1.315735 1.297269 -SIMU 1976 2 21 24 0 1.744743 1.680262 -SIMU 1976 2 22 24 0 1.828289 1.838541 -SIMU 1976 2 23 24 0 1.876627 21.52497 -SIMU 1976 2 24 24 0 2.222392 22.60762 -SIMU 1976 2 25 24 0 2.781559 4.881145 -SIMU 1976 2 26 24 0 3.252400 8.318310 -SIMU 1976 2 27 24 0 3.815419 4.403160 -SIMU 1976 2 28 24 0 4.162813 4.133219 -SIMU 1976 2 29 24 0 4.275207 4.266679 -SIMU 1976 3 1 24 0 4.249340 4.252468 -SIMU 1976 3 2 24 0 4.171464 4.178832 -SIMU 1976 3 3 24 0 4.054302 4.065627 -SIMU 1976 3 4 24 0 4.062371 4.110520 -SIMU 1976 3 5 24 0 3.950461 25.12659 -SIMU 1976 3 6 24 0 3.883912 22.85689 -SIMU 1976 3 7 24 0 4.228174 17.44470 -SIMU 1976 3 8 24 0 4.652520 4.648649 -SIMU 1976 3 9 24 0 4.921869 16.56644 -SIMU 1976 3 10 24 0 5.185582 17.49589 -SIMU 1976 3 11 24 0 5.481184 92.66568 -SIMU 1976 3 12 24 0 6.213936 39.19748 -SIMU 1976 3 13 24 0 7.056890 42.41711 -SIMU 1976 3 14 24 0 7.707804 33.54050 -SIMU 1976 3 15 24 0 8.199834 18.62578 -SIMU 1976 3 16 24 0 8.588259 34.20103 -SIMU 1976 3 17 24 0 8.884975 16.20712 -SIMU 1976 3 18 24 0 9.087730 9.808556 -SIMU 1976 3 19 24 0 9.234199 9.216591 -SIMU 1976 3 20 24 0 9.320614 9.307731 -SIMU 1976 3 21 24 0 9.353298 9.345859 -SIMU 1976 3 22 24 0 9.340808 9.337936 -SIMU 1976 3 23 24 0 9.289924 9.290966 -SIMU 1976 3 24 24 0 9.206184 9.210584 -SIMU 1976 3 25 24 0 9.094670 9.101867 -SIMU 1976 3 26 24 0 8.962339 31.67052 -SIMU 1976 3 27 24 0 8.832859 8.855320 -SIMU 1976 3 28 24 0 8.681973 18.34608 -SIMU 1976 3 29 24 0 8.545852 80.87876 -SIMU 1976 3 30 24 0 8.726319 124.2728 -SIMU 1976 3 31 24 0 8.954383 8.929785 -SIMU 1976 4 1 24 0 9.077915 9.055797 -SIMU 1976 4 2 24 0 9.125760 9.110368 -SIMU 1976 4 3 24 0 9.114639 9.105069 -SIMU 1976 4 4 24 0 9.056883 9.050970 -SIMU 1976 4 5 24 0 8.961176 8.955414 -SIMU 1976 4 6 24 0 8.832960 8.828364 -SIMU 1976 4 7 24 0 8.668804 8.666864 -SIMU 1976 4 8 24 0 8.470273 8.464606 -SIMU 1976 4 9 24 0 8.254838 8.257338 -SIMU 1976 4 10 24 0 8.023149 8.011706 -SIMU 1976 4 11 24 0 7.773345 19.12269 -SIMU 1976 4 12 24 0 7.515244 7.518793 -SIMU 1976 4 13 24 0 7.228179 7.223881 -SIMU 1976 4 14 24 0 6.940435 6.952693 -SIMU 1976 4 15 24 0 6.831132 55.63663 -SIMU 1976 4 16 24 0 6.734480 6.711138 -SIMU 1976 4 17 24 0 6.720130 325.9186 -SIMU 1976 4 18 24 0 7.225083 180.9549 -SIMU 1976 4 19 24 0 7.760850 7.699038 -SIMU 1976 4 20 24 0 8.150599 81.69958 -SIMU 1976 4 21 24 0 8.849834 18.02646 -SIMU 1976 4 22 24 0 9.515776 9.436546 -SIMU 1976 4 23 24 0 15.74128 74.15636 -SIMU 1976 4 24 24 0 20.78117 42.95824 -SIMU 1976 4 25 24 0 20.80364 21.50803 -SIMU 1976 4 26 24 0 19.42171 19.54881 -SIMU 1976 4 27 24 0 17.89425 17.99521 -SIMU 1976 4 28 24 0 16.68517 16.77532 -SIMU 1976 4 29 24 0 15.56366 15.63566 -SIMU 1976 4 30 24 0 14.59663 14.65335 -SIMU 1976 5 1 24 0 13.74321 13.79692 -SIMU 1976 5 2 24 0 15.23163 49.63367 -SIMU 1976 5 3 24 0 14.71212 14.76457 -SIMU 1976 5 4 24 0 13.82337 13.86915 -SIMU 1976 5 5 24 0 12.96066 13.00000 -SIMU 1976 5 6 24 0 12.15303 12.18444 -SIMU 1976 5 7 24 0 11.46644 11.49579 -SIMU 1976 5 8 24 0 10.81301 10.84046 -SIMU 1976 5 9 24 0 10.16247 10.17847 -SIMU 1976 5 10 24 0 9.972857 9.941750 -SIMU 1976 5 11 24 0 9.891415 9.866317 -SIMU 1976 5 12 24 0 9.762955 9.746064 -SIMU 1976 5 13 24 0 9.677894 70.44886 -SIMU 1976 5 14 24 0 9.652745 9.649599 -SIMU 1976 5 15 24 0 9.592699 20.91854 -SIMU 1976 5 16 24 0 6.950239 115.2386 -SIMU 1976 5 17 24 0 11.23013 10.83308 -SIMU 1976 5 18 24 0 10.84201 10.88450 -SIMU 1976 5 19 24 0 10.10124 10.13407 -SIMU 1976 5 20 24 0 9.402377 9.429980 -SIMU 1976 5 21 24 0 8.824148 8.848166 -SIMU 1976 5 22 24 0 8.706899 127.9437 -SIMU 1976 5 23 24 0 9.158713 41.48767 -SIMU 1976 5 24 24 0 8.744525 8.809204 -SIMU 1976 5 25 24 0 8.238327 8.269934 -SIMU 1976 5 26 24 0 7.745165 7.768769 -SIMU 1976 5 27 24 0 7.289109 7.308912 -SIMU 1976 5 28 24 0 7.042790 6.993178 -SIMU 1976 5 29 24 0 10.29947 9.986157 -SIMU 1976 5 30 24 0 9.576910 9.640110 -SIMU 1976 5 31 24 0 8.915795 8.963757 -SIMU 1976 6 1 24 0 8.356166 8.394520 -SIMU 1976 6 2 24 0 7.830907 7.860313 -SIMU 1976 6 3 24 0 7.317341 7.337018 -SIMU 1976 6 4 24 0 7.001420 6.979714 -SIMU 1976 6 5 24 0 6.963465 6.929173 -SIMU 1976 6 6 24 0 6.903966 6.876798 -SIMU 1976 6 7 24 0 6.821457 6.798852 -SIMU 1976 6 8 24 0 6.718878 6.697733 -SIMU 1976 6 9 24 0 6.596936 6.569315 -SIMU 1976 6 10 24 0 6.514006 104.2585 -SIMU 1976 6 11 24 0 6.471813 6.460088 -SIMU 1976 6 12 24 0 6.400855 29.84579 -SIMU 1976 6 13 24 0 6.385061 160.3763 -SIMU 1976 6 14 24 0 6.530354 26.87983 -SIMU 1976 6 15 24 0 6.638758 26.39072 -SIMU 1976 6 16 24 0 6.689775 6.659705 -SIMU 1976 6 17 24 0 6.696630 6.659134 -SIMU 1976 6 18 24 0 6.668063 17.99355 -SIMU 1976 6 19 24 0 6.613228 6.591832 -SIMU 1976 6 20 24 0 6.534174 6.507708 -SIMU 1976 6 21 24 0 6.434502 6.415373 -SIMU 1976 6 22 24 0 6.318646 6.298468 -SIMU 1976 6 23 24 0 6.187909 6.169038 -SIMU 1976 6 24 24 0 6.076590 29.41311 -SIMU 1976 6 25 24 0 6.020736 13.44458 -SIMU 1976 6 26 24 0 5.936152 20.28425 -SIMU 1976 6 27 24 0 5.868853 6.753101 -SIMU 1976 6 28 24 0 5.869579 5.839720 -SIMU 1976 6 29 24 0 5.884537 17.20980 -SIMU 1976 6 30 24 0 5.866933 5.845886 -SIMU 1976 7 1 24 0 5.823020 5.803921 -SIMU 1976 7 2 24 0 5.759427 5.754079 -SIMU 1976 7 3 24 0 5.677569 5.652538 -SIMU 1976 7 4 24 0 5.576257 5.563374 -SIMU 1976 7 5 24 0 5.463000 5.451096 -SIMU 1976 7 6 24 0 5.336662 5.317111 -SIMU 1976 7 7 24 0 5.193134 5.183722 -SIMU 1976 7 8 24 0 5.029192 5.014221 -SIMU 1976 7 9 24 0 4.856469 4.849349 -SIMU 1976 7 10 24 0 4.677545 4.662172 -SIMU 1976 7 11 24 0 4.492623 4.486209 -SIMU 1976 7 12 24 0 4.295463 4.290396 -SIMU 1976 7 13 24 0 4.080621 4.076970 -SIMU 1976 7 14 24 0 3.866693 3.859507 -SIMU 1976 7 15 24 0 3.656816 52.47431 -SIMU 1976 7 16 24 0 3.277588 3.677223 -SIMU 1976 7 17 24 0 2.590467 2.651126 -SIMU 1976 7 18 24 0 2.103326 2.139087 -SIMU 1976 7 19 24 0 1.766113 13.14555 -SIMU 1976 7 20 24 0 1.543120 24.25051 -SIMU 1976 7 21 24 0 1.414031 1.442276 -SIMU 1976 7 22 24 0 1.311040 1.323735 -SIMU 1976 7 23 24 0 1.221105 1.228090 -SIMU 1976 7 24 24 0 1.116907 1.118449 -SIMU 1976 7 25 24 0 0.9982151 1.003585 -SIMU 1976 7 26 24 0 0.8938456 36.33788 -SIMU 1976 7 27 24 0 0.8053325 21.40343 -SIMU 1976 7 28 24 0 0.9005256 167.9773 -SIMU 1976 7 29 24 0 0.9148608 0.9146647 -SIMU 1976 7 30 24 0 0.8806022 11.76961 -SIMU 1976 7 31 24 0 0.8438397 1.295588 -SIMU 1976 8 1 24 0 0.7890943 0.7919273 -SIMU 1976 8 2 24 0 0.7201992 0.7262144 -SIMU 1976 8 3 24 0 0.6435233 0.6522192 -SIMU 1976 8 4 24 0 0.5609179 0.5707234 -SIMU 1976 8 5 24 0 0.4756463 0.4873315 -SIMU 1976 8 6 24 0 0.3894908 0.4011723 -SIMU 1976 8 7 24 0 0.3043831 0.3180695 -SIMU 1976 8 8 24 0 0.2251702 0.2385858 -SIMU 1976 8 9 24 0 0.1414345 0.1565371 +SIMU 1976 1 3 24 0 0.1909118 1.438969 +SIMU 1976 1 4 24 0 0.2214593 0.3149185 +SIMU 1976 1 5 24 0 0.2445364 26.38584 +SIMU 1976 1 6 24 0 0.2830130 0.4501142 +SIMU 1976 1 7 24 0 0.3058431 17.70815 +SIMU 1976 1 8 24 0 0.3417993 23.47737 +SIMU 1976 1 9 24 0 0.3868528 20.78489 +SIMU 1976 1 10 24 0 0.4243174 9.438145 +SIMU 1976 1 11 24 0 0.4571089 36.51984 +SIMU 1976 1 12 24 0 0.5390512 31.99113 +SIMU 1976 1 13 24 0 0.6745985 11.18829 +SIMU 1976 1 14 24 0 0.7997810 5.255074 +SIMU 1976 1 15 24 0 0.8668398 0.9759123 +SIMU 1976 1 16 24 0 0.8930736 0.8872543 +SIMU 1976 1 17 24 0 0.8937428 0.8937156 +SIMU 1976 1 18 24 0 0.8816622 0.8843302 +SIMU 1976 1 19 24 0 0.8650545 0.8686689 +SIMU 1976 1 20 24 0 0.8467069 0.8506928 +SIMU 1976 1 21 24 0 0.8278188 0.8319094 +SIMU 1976 1 22 24 0 0.8089502 0.8130208 +SIMU 1976 1 23 24 0 0.7940420 1.102890 +SIMU 1976 1 24 24 0 0.7959095 0.8527839 +SIMU 1976 1 25 24 0 0.7976615 0.7947715 +SIMU 1976 1 26 24 0 0.7891020 0.7936022 +SIMU 1976 1 27 24 0 0.7674562 0.7721074 +SIMU 1976 1 28 24 0 0.7492455 0.9383754 +SIMU 1976 1 29 24 0 0.7572476 4.939040 +SIMU 1976 1 30 24 0 0.8015971 0.9141596 +SIMU 1976 1 31 24 0 0.8147146 0.8119590 +SIMU 1976 2 1 24 0 0.8136443 0.8118444 +SIMU 1976 2 2 24 0 0.8198046 0.8167373 +SIMU 1976 2 3 24 0 0.8151059 0.8153910 +SIMU 1976 2 4 24 0 0.8031108 0.8050318 +SIMU 1976 2 5 24 0 0.7878329 0.7904783 +SIMU 1976 2 6 24 0 0.7712485 0.7741784 +SIMU 1976 2 7 24 0 0.7542881 0.7572957 +SIMU 1976 2 8 24 0 0.7379165 11.98187 +SIMU 1976 2 9 24 0 0.7289269 2.172925 +SIMU 1976 2 10 24 0 0.7348322 0.8702201 +SIMU 1976 2 11 24 0 0.7378606 1.010215 +SIMU 1976 2 12 24 0 0.7313829 0.7404312 +SIMU 1976 2 13 24 0 0.7196591 0.7215089 +SIMU 1976 2 14 24 0 0.7056407 10.74174 +SIMU 1976 2 15 24 0 0.7427791 27.17800 +SIMU 1976 2 16 24 0 0.8933365 24.57355 +SIMU 1976 2 17 24 0 1.170159 1.243186 +SIMU 1976 2 18 24 0 1.265975 1.249576 +SIMU 1976 2 19 24 0 1.290379 1.285805 +SIMU 1976 2 20 24 0 1.315735 1.297269 +SIMU 1976 2 21 24 0 1.744743 1.680262 +SIMU 1976 2 22 24 0 1.828289 1.838541 +SIMU 1976 2 23 24 0 1.876627 21.52497 +SIMU 1976 2 24 24 0 2.222392 22.60762 +SIMU 1976 2 25 24 0 2.781559 4.881145 +SIMU 1976 2 26 24 0 3.252400 8.318310 +SIMU 1976 2 27 24 0 3.815419 4.403160 +SIMU 1976 2 28 24 0 4.162813 4.133219 +SIMU 1976 2 29 24 0 4.275207 4.266679 +SIMU 1976 3 1 24 0 4.249340 4.252468 +SIMU 1976 3 2 24 0 4.171464 4.178832 +SIMU 1976 3 3 24 0 4.054302 4.065627 +SIMU 1976 3 4 24 0 4.062371 4.110520 +SIMU 1976 3 5 24 0 3.950461 25.12659 +SIMU 1976 3 6 24 0 3.883912 22.85689 +SIMU 1976 3 7 24 0 4.228174 17.44470 +SIMU 1976 3 8 24 0 4.652520 4.648649 +SIMU 1976 3 9 24 0 4.921869 16.56644 +SIMU 1976 3 10 24 0 5.185582 17.49589 +SIMU 1976 3 11 24 0 5.481184 92.66568 +SIMU 1976 3 12 24 0 6.213936 39.19748 +SIMU 1976 3 13 24 0 7.056890 42.41711 +SIMU 1976 3 14 24 0 7.707804 33.54050 +SIMU 1976 3 15 24 0 8.199834 18.62578 +SIMU 1976 3 16 24 0 8.588259 34.20103 +SIMU 1976 3 17 24 0 8.884975 16.20712 +SIMU 1976 3 18 24 0 9.087730 9.808556 +SIMU 1976 3 19 24 0 9.234199 9.216591 +SIMU 1976 3 20 24 0 9.320614 9.307731 +SIMU 1976 3 21 24 0 9.353298 9.345859 +SIMU 1976 3 22 24 0 9.340808 9.337936 +SIMU 1976 3 23 24 0 9.289924 9.290966 +SIMU 1976 3 24 24 0 9.206184 9.210584 +SIMU 1976 3 25 24 0 9.094670 9.101867 +SIMU 1976 3 26 24 0 8.962339 31.67052 +SIMU 1976 3 27 24 0 8.832859 8.855320 +SIMU 1976 3 28 24 0 8.681973 18.34608 +SIMU 1976 3 29 24 0 8.545852 80.87876 +SIMU 1976 3 30 24 0 8.726319 124.2728 +SIMU 1976 3 31 24 0 8.954383 8.929785 +SIMU 1976 4 1 24 0 9.077915 9.055797 +SIMU 1976 4 2 24 0 9.125760 9.110368 +SIMU 1976 4 3 24 0 9.114639 9.105069 +SIMU 1976 4 4 24 0 9.056883 9.050970 +SIMU 1976 4 5 24 0 8.961176 8.955414 +SIMU 1976 4 6 24 0 8.832960 8.828364 +SIMU 1976 4 7 24 0 8.668804 8.666864 +SIMU 1976 4 8 24 0 8.470273 8.464606 +SIMU 1976 4 9 24 0 8.254838 8.257338 +SIMU 1976 4 10 24 0 8.023149 8.011706 +SIMU 1976 4 11 24 0 7.773345 19.12269 +SIMU 1976 4 12 24 0 7.515244 7.518793 +SIMU 1976 4 13 24 0 7.228179 7.223881 +SIMU 1976 4 14 24 0 6.940435 6.952693 +SIMU 1976 4 15 24 0 6.831132 55.63663 +SIMU 1976 4 16 24 0 6.734480 6.711138 +SIMU 1976 4 17 24 0 6.720130 325.9186 +SIMU 1976 4 18 24 0 7.225083 180.9549 +SIMU 1976 4 19 24 0 7.760850 7.699038 +SIMU 1976 4 20 24 0 8.150599 81.69958 +SIMU 1976 4 21 24 0 8.849834 18.02646 +SIMU 1976 4 22 24 0 9.515776 9.436546 +SIMU 1976 4 23 24 0 15.74128 74.15636 +SIMU 1976 4 24 24 0 20.78117 42.95824 +SIMU 1976 4 25 24 0 20.80364 21.50803 +SIMU 1976 4 26 24 0 19.42171 19.54881 +SIMU 1976 4 27 24 0 17.89425 17.99521 +SIMU 1976 4 28 24 0 16.68517 16.77532 +SIMU 1976 4 29 24 0 15.56366 15.63566 +SIMU 1976 4 30 24 0 14.59663 14.65335 +SIMU 1976 5 1 24 0 13.74321 13.79692 +SIMU 1976 5 2 24 0 15.23163 49.63367 +SIMU 1976 5 3 24 0 14.71212 14.76457 +SIMU 1976 5 4 24 0 13.82337 13.86915 +SIMU 1976 5 5 24 0 12.96066 13.00000 +SIMU 1976 5 6 24 0 12.15303 12.18444 +SIMU 1976 5 7 24 0 11.46644 11.49579 +SIMU 1976 5 8 24 0 10.81301 10.84046 +SIMU 1976 5 9 24 0 10.16247 10.17847 +SIMU 1976 5 10 24 0 9.972857 9.941750 +SIMU 1976 5 11 24 0 9.891415 9.866317 +SIMU 1976 5 12 24 0 9.762955 9.746064 +SIMU 1976 5 13 24 0 9.677894 70.44886 +SIMU 1976 5 14 24 0 9.652745 9.649599 +SIMU 1976 5 15 24 0 9.592699 20.91854 +SIMU 1976 5 16 24 0 6.950239 115.2386 +SIMU 1976 5 17 24 0 11.23013 10.83308 +SIMU 1976 5 18 24 0 10.84201 10.88450 +SIMU 1976 5 19 24 0 10.10124 10.13407 +SIMU 1976 5 20 24 0 9.402377 9.429980 +SIMU 1976 5 21 24 0 8.824148 8.848166 +SIMU 1976 5 22 24 0 8.706899 127.9437 +SIMU 1976 5 23 24 0 9.158713 41.48767 +SIMU 1976 5 24 24 0 8.744525 8.809204 +SIMU 1976 5 25 24 0 8.238327 8.269934 +SIMU 1976 5 26 24 0 7.745165 7.768769 +SIMU 1976 5 27 24 0 7.289109 7.308912 +SIMU 1976 5 28 24 0 7.042790 6.993178 +SIMU 1976 5 29 24 0 10.29947 9.986157 +SIMU 1976 5 30 24 0 9.576910 9.640110 +SIMU 1976 5 31 24 0 8.915795 8.963757 +SIMU 1976 6 1 24 0 8.356166 8.394520 +SIMU 1976 6 2 24 0 7.830907 7.860313 +SIMU 1976 6 3 24 0 7.317341 7.337018 +SIMU 1976 6 4 24 0 7.001420 6.979714 +SIMU 1976 6 5 24 0 6.963465 6.929173 +SIMU 1976 6 6 24 0 6.903966 6.876798 +SIMU 1976 6 7 24 0 6.821457 6.798852 +SIMU 1976 6 8 24 0 6.718878 6.697733 +SIMU 1976 6 9 24 0 6.596936 6.569315 +SIMU 1976 6 10 24 0 6.514006 104.2585 +SIMU 1976 6 11 24 0 6.471813 6.460088 +SIMU 1976 6 12 24 0 6.400855 29.84579 +SIMU 1976 6 13 24 0 6.385061 160.3763 +SIMU 1976 6 14 24 0 6.530354 26.87983 +SIMU 1976 6 15 24 0 6.638758 26.39072 +SIMU 1976 6 16 24 0 6.689775 6.659705 +SIMU 1976 6 17 24 0 6.696630 6.659134 +SIMU 1976 6 18 24 0 6.668063 17.99355 +SIMU 1976 6 19 24 0 6.613228 6.591832 +SIMU 1976 6 20 24 0 6.534174 6.507708 +SIMU 1976 6 21 24 0 6.434502 6.415373 +SIMU 1976 6 22 24 0 6.318646 6.298468 +SIMU 1976 6 23 24 0 6.187909 6.169038 +SIMU 1976 6 24 24 0 6.076590 29.41311 +SIMU 1976 6 25 24 0 6.020736 13.44458 +SIMU 1976 6 26 24 0 5.936152 20.28425 +SIMU 1976 6 27 24 0 5.868853 6.753101 +SIMU 1976 6 28 24 0 5.869579 5.839720 +SIMU 1976 6 29 24 0 5.884537 17.20980 +SIMU 1976 6 30 24 0 5.866933 5.845886 +SIMU 1976 7 1 24 0 5.823020 5.803921 +SIMU 1976 7 2 24 0 5.759427 5.754079 +SIMU 1976 7 3 24 0 5.677569 5.652538 +SIMU 1976 7 4 24 0 5.576257 5.563374 +SIMU 1976 7 5 24 0 5.463000 5.451096 +SIMU 1976 7 6 24 0 5.336662 5.317111 +SIMU 1976 7 7 24 0 5.193134 5.183722 +SIMU 1976 7 8 24 0 5.029192 5.014221 +SIMU 1976 7 9 24 0 4.856469 4.849349 +SIMU 1976 7 10 24 0 4.677545 4.662172 +SIMU 1976 7 11 24 0 4.492623 4.486209 +SIMU 1976 7 12 24 0 4.295463 4.290396 +SIMU 1976 7 13 24 0 4.080621 4.076970 +SIMU 1976 7 14 24 0 3.866693 3.859507 +SIMU 1976 7 15 24 0 3.656816 52.47431 +SIMU 1976 7 16 24 0 3.277588 3.677223 +SIMU 1976 7 17 24 0 2.590467 2.651126 +SIMU 1976 7 18 24 0 2.103326 2.139087 +SIMU 1976 7 19 24 0 1.766113 13.14555 +SIMU 1976 7 20 24 0 1.543120 24.25051 +SIMU 1976 7 21 24 0 1.414031 1.442276 +SIMU 1976 7 22 24 0 1.311040 1.323735 +SIMU 1976 7 23 24 0 1.221105 1.228090 +SIMU 1976 7 24 24 0 1.116907 1.118449 +SIMU 1976 7 25 24 0 0.9982151 1.003585 +SIMU 1976 7 26 24 0 0.8938456 36.33788 +SIMU 1976 7 27 24 0 0.8053325 21.40343 +SIMU 1976 7 28 24 0 0.9005256 167.9773 +SIMU 1976 7 29 24 0 0.9148608 0.9146647 +SIMU 1976 7 30 24 0 0.8806022 11.76961 +SIMU 1976 7 31 24 0 0.8438397 1.295588 +SIMU 1976 8 1 24 0 0.7890943 0.7919273 +SIMU 1976 8 2 24 0 0.7201992 0.7262144 +SIMU 1976 8 3 24 0 0.6435233 0.6522192 +SIMU 1976 8 4 24 0 0.5609179 0.5707234 +SIMU 1976 8 5 24 0 0.4756463 0.4873315 +SIMU 1976 8 6 24 0 0.3894908 0.4011723 +SIMU 1976 8 7 24 0 0.3043831 0.3180695 +SIMU 1976 8 8 24 0 0.2251702 0.2385858 +SIMU 1976 8 9 24 0 0.1414345 0.1565371 SIMU 1976 8 10 24 0 6.5113761E-02 7.8283310E-02 SIMU 1976 8 11 24 0 2.0805009E-02 2.5694320E-02 SIMU 1976 8 12 24 0 7.8668827E-03 1.0234714E-02 -SIMU 1976 8 13 24 0 2.5993612E-04 10.95018 -SIMU 1976 8 14 24 0 0.000000 11.72483 +SIMU 1976 8 13 24 0 2.5993612E-04 10.95018 +SIMU 1976 8 14 24 0 0.000000 11.72483 SIMU 1976 8 15 24 0 0.000000 7.8889243E-03 -SIMU 1976 8 16 24 0 0.000000 11.22915 -SIMU 1976 8 17 24 0 0.000000 74.45544 +SIMU 1976 8 16 24 0 0.000000 11.22915 +SIMU 1976 8 17 24 0 0.000000 74.45544 SIMU 1976 8 18 24 0 0.000000 9.3556540E-03 -SIMU 1976 8 19 24 0 0.000000 0.000000 -SIMU 1976 8 20 24 0 0.000000 0.000000 -SIMU 1976 8 21 24 0 0.000000 0.000000 -SIMU 1976 8 22 24 0 0.000000 0.000000 -SIMU 1976 8 23 24 0 0.000000 0.000000 -SIMU 1976 8 24 24 0 0.000000 0.000000 -SIMU 1976 8 25 24 0 0.000000 110.5957 -SIMU 1976 8 26 24 0 0.000000 11.77875 +SIMU 1976 8 19 24 0 0.000000 0.000000 +SIMU 1976 8 20 24 0 0.000000 0.000000 +SIMU 1976 8 21 24 0 0.000000 0.000000 +SIMU 1976 8 22 24 0 0.000000 0.000000 +SIMU 1976 8 23 24 0 0.000000 0.000000 +SIMU 1976 8 24 24 0 0.000000 0.000000 +SIMU 1976 8 25 24 0 0.000000 110.5957 +SIMU 1976 8 26 24 0 0.000000 11.77875 SIMU 1976 8 27 24 0 0.000000 1.6596535E-02 -SIMU 1976 8 28 24 0 0.000000 0.000000 -SIMU 1976 8 29 24 0 0.000000 0.000000 -SIMU 1976 8 30 24 0 0.000000 0.000000 -SIMU 1976 8 31 24 0 0.000000 0.000000 -SIMU 1976 9 1 24 0 0.000000 0.000000 -SIMU 1976 9 2 24 0 0.000000 0.000000 -SIMU 1976 9 3 24 0 0.000000 0.000000 -SIMU 1976 9 4 24 0 0.000000 0.000000 -SIMU 1976 9 5 24 0 0.000000 0.000000 -SIMU 1976 9 6 24 0 0.000000 0.000000 -SIMU 1976 9 7 24 0 0.000000 0.000000 -SIMU 1976 9 8 24 0 0.000000 0.000000 -SIMU 1976 9 9 24 0 0.000000 0.000000 -SIMU 1976 9 10 24 0 0.000000 0.000000 -SIMU 1976 9 11 24 0 0.000000 0.000000 -SIMU 1976 9 12 24 0 0.000000 0.000000 -SIMU 1976 9 13 24 0 0.000000 10.56202 -SIMU 1976 9 14 24 0 0.000000 0.7687209 +SIMU 1976 8 28 24 0 0.000000 0.000000 +SIMU 1976 8 29 24 0 0.000000 0.000000 +SIMU 1976 8 30 24 0 0.000000 0.000000 +SIMU 1976 8 31 24 0 0.000000 0.000000 +SIMU 1976 9 1 24 0 0.000000 0.000000 +SIMU 1976 9 2 24 0 0.000000 0.000000 +SIMU 1976 9 3 24 0 0.000000 0.000000 +SIMU 1976 9 4 24 0 0.000000 0.000000 +SIMU 1976 9 5 24 0 0.000000 0.000000 +SIMU 1976 9 6 24 0 0.000000 0.000000 +SIMU 1976 9 7 24 0 0.000000 0.000000 +SIMU 1976 9 8 24 0 0.000000 0.000000 +SIMU 1976 9 9 24 0 0.000000 0.000000 +SIMU 1976 9 10 24 0 0.000000 0.000000 +SIMU 1976 9 11 24 0 0.000000 0.000000 +SIMU 1976 9 12 24 0 0.000000 0.000000 +SIMU 1976 9 13 24 0 0.000000 10.56202 +SIMU 1976 9 14 24 0 0.000000 0.7687209 SIMU 1976 9 15 24 0 0.000000 1.1696724E-03 -SIMU 1976 9 16 24 0 0.000000 0.000000 -SIMU 1976 9 17 24 0 0.000000 0.000000 -SIMU 1976 9 18 24 0 0.000000 0.000000 -SIMU 1976 9 19 24 0 0.000000 112.1296 +SIMU 1976 9 16 24 0 0.000000 0.000000 +SIMU 1976 9 17 24 0 0.000000 0.000000 +SIMU 1976 9 18 24 0 0.000000 0.000000 +SIMU 1976 9 19 24 0 0.000000 112.1296 SIMU 1976 9 20 24 0 0.000000 5.3940173E-02 SIMU 1976 9 21 24 0 0.000000 3.0998995E-05 -SIMU 1976 9 22 24 0 0.000000 0.000000 -SIMU 1976 9 23 24 0 0.000000 0.000000 -SIMU 1976 9 24 24 0 0.000000 0.000000 -SIMU 1976 9 25 24 0 0.000000 0.000000 -SIMU 1976 9 26 24 0 0.000000 0.000000 -SIMU 1976 9 27 24 0 0.000000 0.000000 -SIMU 1976 9 28 24 0 0.000000 0.000000 -SIMU 1976 9 29 24 0 0.000000 0.000000 -SIMU 1976 9 30 24 0 0.000000 0.000000 -SIMU 1976 10 1 24 0 0.000000 0.000000 -SIMU 1976 10 2 24 0 0.000000 0.000000 -SIMU 1976 10 3 24 0 0.000000 0.000000 -SIMU 1976 10 4 24 0 0.000000 35.75327 -SIMU 1976 10 5 24 0 0.000000 0.1814079 +SIMU 1976 9 22 24 0 0.000000 0.000000 +SIMU 1976 9 23 24 0 0.000000 0.000000 +SIMU 1976 9 24 24 0 0.000000 0.000000 +SIMU 1976 9 25 24 0 0.000000 0.000000 +SIMU 1976 9 26 24 0 0.000000 0.000000 +SIMU 1976 9 27 24 0 0.000000 0.000000 +SIMU 1976 9 28 24 0 0.000000 0.000000 +SIMU 1976 9 29 24 0 0.000000 0.000000 +SIMU 1976 9 30 24 0 0.000000 0.000000 +SIMU 1976 10 1 24 0 0.000000 0.000000 +SIMU 1976 10 2 24 0 0.000000 0.000000 +SIMU 1976 10 3 24 0 0.000000 0.000000 +SIMU 1976 10 4 24 0 0.000000 35.75327 +SIMU 1976 10 5 24 0 0.000000 0.1814079 SIMU 1976 10 6 24 0 0.000000 2.9523854E-04 -SIMU 1976 10 7 24 0 0.000000 0.000000 -SIMU 1976 10 8 24 0 0.000000 0.000000 -SIMU 1976 10 9 24 0 0.000000 0.000000 -SIMU 1976 10 10 24 0 0.000000 0.000000 -SIMU 1976 10 11 24 0 0.000000 0.000000 -SIMU 1976 10 12 24 0 0.000000 0.000000 -SIMU 1976 10 13 24 0 0.000000 0.000000 -SIMU 1976 10 14 24 0 0.000000 0.000000 -SIMU 1976 10 15 24 0 0.000000 0.000000 -SIMU 1976 10 16 24 0 0.000000 0.000000 -SIMU 1976 10 17 24 0 0.000000 0.000000 -SIMU 1976 10 18 24 0 0.000000 10.13720 -SIMU 1976 10 19 24 0 0.000000 13.77539 +SIMU 1976 10 7 24 0 0.000000 0.000000 +SIMU 1976 10 8 24 0 0.000000 0.000000 +SIMU 1976 10 9 24 0 0.000000 0.000000 +SIMU 1976 10 10 24 0 0.000000 0.000000 +SIMU 1976 10 11 24 0 0.000000 0.000000 +SIMU 1976 10 12 24 0 0.000000 0.000000 +SIMU 1976 10 13 24 0 0.000000 0.000000 +SIMU 1976 10 14 24 0 0.000000 0.000000 +SIMU 1976 10 15 24 0 0.000000 0.000000 +SIMU 1976 10 16 24 0 0.000000 0.000000 +SIMU 1976 10 17 24 0 0.000000 0.000000 +SIMU 1976 10 18 24 0 0.000000 10.13720 +SIMU 1976 10 19 24 0 0.000000 13.77539 SIMU 1976 10 20 24 0 0.000000 3.0880500E-02 SIMU 1976 10 21 24 0 0.000000 2.7460439E-05 -SIMU 1976 10 22 24 0 0.000000 0.000000 -SIMU 1976 10 23 24 0 0.000000 69.60589 -SIMU 1976 10 24 24 0 0.000000 29.86705 +SIMU 1976 10 22 24 0 0.000000 0.000000 +SIMU 1976 10 23 24 0 0.000000 69.60589 +SIMU 1976 10 24 24 0 0.000000 29.86705 SIMU 1976 10 25 24 0 0.000000 1.5093456E-02 SIMU 1976 10 26 24 0 0.000000 2.0583424E-05 -SIMU 1976 10 27 24 0 0.000000 0.000000 -SIMU 1976 10 28 24 0 0.000000 0.000000 -SIMU 1976 10 29 24 0 0.000000 0.000000 -SIMU 1976 10 30 24 0 0.000000 22.57912 -SIMU 1976 10 31 24 0 0.000000 0.1091672 +SIMU 1976 10 27 24 0 0.000000 0.000000 +SIMU 1976 10 28 24 0 0.000000 0.000000 +SIMU 1976 10 29 24 0 0.000000 0.000000 +SIMU 1976 10 30 24 0 0.000000 22.57912 +SIMU 1976 10 31 24 0 0.000000 0.1091672 SIMU 1976 11 1 24 0 0.000000 2.2634648E-04 -SIMU 1976 11 2 24 0 0.000000 0.000000 -SIMU 1976 11 3 24 0 0.000000 0.000000 -SIMU 1976 11 4 24 0 0.000000 0.000000 -SIMU 1976 11 5 24 0 0.000000 0.000000 -SIMU 1976 11 6 24 0 0.000000 0.000000 -SIMU 1976 11 7 24 0 0.000000 0.000000 -SIMU 1976 11 8 24 0 0.000000 0.000000 -SIMU 1976 11 9 24 0 0.000000 0.000000 -SIMU 1976 11 10 24 0 0.000000 0.000000 -SIMU 1976 11 11 24 0 0.000000 0.000000 -SIMU 1976 11 12 24 0 0.000000 0.000000 -SIMU 1976 11 13 24 0 0.000000 0.000000 -SIMU 1976 11 14 24 0 0.000000 0.000000 -SIMU 1976 11 15 24 0 0.000000 0.000000 -SIMU 1976 11 16 24 0 0.000000 0.000000 -SIMU 1976 11 17 24 0 0.000000 0.000000 -SIMU 1976 11 18 24 0 0.000000 0.000000 -SIMU 1976 11 19 24 0 0.000000 0.000000 -SIMU 1976 11 20 24 0 0.000000 0.000000 -SIMU 1976 11 21 24 0 0.000000 0.000000 -SIMU 1976 11 22 24 0 0.000000 0.000000 -SIMU 1976 11 23 24 0 0.000000 0.000000 -SIMU 1976 11 24 24 0 0.000000 0.000000 -SIMU 1976 11 25 24 0 0.000000 0.000000 -SIMU 1976 11 26 24 0 0.000000 0.000000 -SIMU 1976 11 27 24 0 0.000000 0.000000 -SIMU 1976 11 28 24 0 0.000000 0.000000 -SIMU 1976 11 29 24 0 0.000000 0.000000 -SIMU 1976 11 30 24 0 0.000000 0.000000 -SIMU 1976 12 1 24 0 0.000000 0.000000 -SIMU 1976 12 2 24 0 0.000000 0.000000 -SIMU 1976 12 3 24 0 0.000000 0.000000 -SIMU 1976 12 4 24 0 0.000000 0.000000 -SIMU 1976 12 5 24 0 0.000000 0.000000 -SIMU 1976 12 6 24 0 0.000000 0.000000 -SIMU 1976 12 7 24 0 0.000000 0.000000 -SIMU 1976 12 8 24 0 0.000000 0.000000 -SIMU 1976 12 9 24 0 0.000000 0.000000 -SIMU 1976 12 10 24 0 0.000000 0.000000 -SIMU 1976 12 11 24 0 0.000000 0.000000 -SIMU 1976 12 12 24 0 0.000000 0.000000 -SIMU 1976 12 13 24 0 0.000000 0.000000 -SIMU 1976 12 14 24 0 0.000000 8.038989 -SIMU 1976 12 15 24 0 0.000000 0.1836836 -SIMU 1976 12 16 24 0 0.000000 15.20456 -SIMU 1976 12 17 24 0 0.000000 11.50979 -SIMU 1976 12 18 24 0 0.000000 4.362786 -SIMU 1976 12 19 24 0 0.000000 0.1516617 +SIMU 1976 11 2 24 0 0.000000 0.000000 +SIMU 1976 11 3 24 0 0.000000 0.000000 +SIMU 1976 11 4 24 0 0.000000 0.000000 +SIMU 1976 11 5 24 0 0.000000 0.000000 +SIMU 1976 11 6 24 0 0.000000 0.000000 +SIMU 1976 11 7 24 0 0.000000 0.000000 +SIMU 1976 11 8 24 0 0.000000 0.000000 +SIMU 1976 11 9 24 0 0.000000 0.000000 +SIMU 1976 11 10 24 0 0.000000 0.000000 +SIMU 1976 11 11 24 0 0.000000 0.000000 +SIMU 1976 11 12 24 0 0.000000 0.000000 +SIMU 1976 11 13 24 0 0.000000 0.000000 +SIMU 1976 11 14 24 0 0.000000 0.000000 +SIMU 1976 11 15 24 0 0.000000 0.000000 +SIMU 1976 11 16 24 0 0.000000 0.000000 +SIMU 1976 11 17 24 0 0.000000 0.000000 +SIMU 1976 11 18 24 0 0.000000 0.000000 +SIMU 1976 11 19 24 0 0.000000 0.000000 +SIMU 1976 11 20 24 0 0.000000 0.000000 +SIMU 1976 11 21 24 0 0.000000 0.000000 +SIMU 1976 11 22 24 0 0.000000 0.000000 +SIMU 1976 11 23 24 0 0.000000 0.000000 +SIMU 1976 11 24 24 0 0.000000 0.000000 +SIMU 1976 11 25 24 0 0.000000 0.000000 +SIMU 1976 11 26 24 0 0.000000 0.000000 +SIMU 1976 11 27 24 0 0.000000 0.000000 +SIMU 1976 11 28 24 0 0.000000 0.000000 +SIMU 1976 11 29 24 0 0.000000 0.000000 +SIMU 1976 11 30 24 0 0.000000 0.000000 +SIMU 1976 12 1 24 0 0.000000 0.000000 +SIMU 1976 12 2 24 0 0.000000 0.000000 +SIMU 1976 12 3 24 0 0.000000 0.000000 +SIMU 1976 12 4 24 0 0.000000 0.000000 +SIMU 1976 12 5 24 0 0.000000 0.000000 +SIMU 1976 12 6 24 0 0.000000 0.000000 +SIMU 1976 12 7 24 0 0.000000 0.000000 +SIMU 1976 12 8 24 0 0.000000 0.000000 +SIMU 1976 12 9 24 0 0.000000 0.000000 +SIMU 1976 12 10 24 0 0.000000 0.000000 +SIMU 1976 12 11 24 0 0.000000 0.000000 +SIMU 1976 12 12 24 0 0.000000 0.000000 +SIMU 1976 12 13 24 0 0.000000 0.000000 +SIMU 1976 12 14 24 0 0.000000 8.038989 +SIMU 1976 12 15 24 0 0.000000 0.1836836 +SIMU 1976 12 16 24 0 0.000000 15.20456 +SIMU 1976 12 17 24 0 0.000000 11.50979 +SIMU 1976 12 18 24 0 0.000000 4.362786 +SIMU 1976 12 19 24 0 0.000000 0.1516617 SIMU 1976 12 20 24 0 0.000000 3.4400655E-04 SIMU 1976 12 21 24 0 0.000000 1.4007871E-07 -SIMU 1976 12 22 24 0 0.000000 0.000000 -SIMU 1976 12 23 24 0 0.000000 0.000000 -SIMU 1976 12 24 24 0 0.000000 0.000000 -SIMU 1976 12 25 24 0 0.000000 0.000000 -SIMU 1976 12 26 24 0 0.000000 0.000000 -SIMU 1976 12 27 24 0 0.000000 0.000000 -SIMU 1976 12 28 24 0 0.000000 0.000000 -SIMU 1976 12 29 24 0 0.000000 0.000000 -SIMU 1976 12 30 24 0 0.000000 0.000000 -SIMU 1976 12 31 24 0 0.000000 0.000000 +SIMU 1976 12 22 24 0 0.000000 0.000000 +SIMU 1976 12 23 24 0 0.000000 0.000000 +SIMU 1976 12 24 24 0 0.000000 0.000000 +SIMU 1976 12 25 24 0 0.000000 0.000000 +SIMU 1976 12 26 24 0 0.000000 0.000000 +SIMU 1976 12 27 24 0 0.000000 0.000000 +SIMU 1976 12 28 24 0 0.000000 0.000000 +SIMU 1976 12 29 24 0 0.000000 0.000000 +SIMU 1976 12 30 24 0 0.000000 0.000000 +SIMU 1976 12 31 24 0 0.000000 0.000000 diff --git a/tests/test10/HSPFresults/test10.p95 b/tests/test10/HSPFresults/test10.p95 index 937eaf10..b1381e41 100644 --- a/tests/test10/HSPFresults/test10.p95 +++ b/tests/test10/HSPFresults/test10.p95 @@ -2,10 +2,10 @@ SIMU HSPF FILE FOR DRIVING SEPARATE PLOT PROGRAM SIMU Time interval: 360 mins Last month in printout year: 9 SIMU No. of curves plotted: Point-valued: 3 Mean-valued: 1 Total 4 SIMU Label flag: 0 Pivl: 6 Idelt: 60 -SIMU Plot title: SIMULATED VALS RELATED TO TEMP&PH,RCH 4 -SIMU Y-axis label: +SIMU Plot title: SIMULATED VALS RELATED TO TEMP&PH,RCH 4 +SIMU Y-axis label: SIMU Scale info: Ymin: 0.0000 Threshold:-0.10000E+31 -SIMU Ymax: 150.00 +SIMU Ymax: 150.00 SIMU Time: 20.000 intervals/inch SIMU Data for each curve (Point-valued first, then mean-valued): SIMU Label LINTYP INTEQ COLCOD TRAN TRANCOD @@ -24,245 +24,245 @@ SIMU SIMU Date/time Values SIMU SIMU 1975 12 31 24 0 0.000000 60.00000 8.500000 -1.0000000E+30 -SIMU 1976 1 1 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 1 1 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 1 1 18 0 2.7871249E-02 32.07207 13.12421 -168542.4 -SIMU 1976 1 1 24 0 5.4797929E-02 32.07207 13.14930 -866463.3 -SIMU 1976 1 2 6 0 7.2372779E-02 32.07207 13.14771 -1298815. -SIMU 1976 1 2 12 0 8.3345100E-02 32.07207 13.14380 -1348846. -SIMU 1976 1 2 18 0 9.1288775E-02 32.07207 13.14029 -1273172. -SIMU 1976 1 2 24 0 9.7315378E-02 32.07207 13.13692 -978386.6 -SIMU 1976 1 3 6 0 0.1019777 32.07207 13.13352 -406549.0 -SIMU 1976 1 3 12 0 0.1056267 32.07207 13.13008 -50.58556 -SIMU 1976 1 3 18 0 0.1086149 32.07207 13.12659 -44.74771 -SIMU 1976 1 3 24 0 0.1110907 32.07207 13.12318 -43.72315 -SIMU 1976 1 4 6 0 0.1130495 32.07207 13.11980 -41.17428 -SIMU 1976 1 4 12 0 0.1145906 32.07207 13.11646 -164.0769 -SIMU 1976 1 4 18 0 0.1157974 32.07207 13.11312 218310.1 -SIMU 1976 1 4 24 0 0.1167338 32.07207 13.10978 -34.20255 -SIMU 1976 1 5 6 0 0.1174458 32.07207 13.10645 -32.68895 -SIMU 1976 1 5 12 0 0.1180093 32.07207 13.10286 -512.9301 -SIMU 1976 1 5 18 0 0.1226091 32.07207 13.09929 -94580.67 -SIMU 1976 1 5 24 0 0.1256065 32.07207 13.09536 -4049.124 -SIMU 1976 1 6 6 0 0.1276617 32.07207 13.09135 -48.71730 -SIMU 1976 1 6 12 0 0.1292443 32.07207 13.08745 -43.89406 -SIMU 1976 1 6 18 0 0.1309368 32.07207 13.08241 -4313.043 -SIMU 1976 1 6 24 0 0.1324759 32.07207 13.07966 -65.71773 -SIMU 1976 1 7 6 0 0.1330767 32.07207 13.07556 -38.41756 -SIMU 1976 1 7 12 0 0.1334491 32.07207 13.07152 -34.44584 -SIMU 1976 1 7 18 0 0.1362029 32.07207 13.06711 -18.58733 -SIMU 1976 1 7 24 0 0.1381927 32.07207 13.06270 -55.87582 -SIMU 1976 1 8 6 0 0.1395876 32.07207 13.05830 -46.68633 -SIMU 1976 1 8 12 0 0.1406472 32.07207 13.05400 -42.13677 -SIMU 1976 1 8 18 0 0.1444847 32.07207 13.04926 -24.82368 -SIMU 1976 1 8 24 0 0.1471318 32.07207 13.04446 -69.31850 -SIMU 1976 1 9 6 0 0.1490162 32.07207 13.03963 -55.33128 -SIMU 1976 1 9 12 0 0.1504642 32.07207 13.03486 -50.43088 -SIMU 1976 1 9 18 0 0.1532875 32.07207 13.02972 -6713.310 -SIMU 1976 1 9 24 0 0.1556391 32.07207 13.02467 -64.31012 -SIMU 1976 1 10 6 0 0.1574081 32.07207 13.01952 -56.37457 -SIMU 1976 1 10 12 0 0.1587713 32.07207 13.01439 -51.93793 -SIMU 1976 1 10 18 0 0.1599186 32.07207 13.00919 -45.04348 -SIMU 1976 1 10 24 0 0.1609593 32.07207 13.00405 -48.42181 -SIMU 1976 1 11 6 0 0.1617409 32.07207 12.99886 -46.07314 -SIMU 1976 1 11 12 0 0.1628120 36.08153 12.89848 1445355. -SIMU 1976 1 11 18 0 0.1669627 38.73153 12.83231 5886758. -SIMU 1976 1 11 24 0 0.1698543 32.07207 12.98162 -1047912. -SIMU 1976 1 12 6 0 0.1720083 32.07207 12.96951 -66.62341 -SIMU 1976 1 12 12 0 0.1747179 36.53827 12.85713 1896662. -SIMU 1976 1 12 18 0 0.1829739 32.07207 12.95561 36683.13 -SIMU 1976 1 12 24 0 0.1886343 32.07207 12.94796 -823506.1 -SIMU 1976 1 13 6 0 0.1927597 32.07207 12.94042 -79006.93 -SIMU 1976 1 13 12 0 0.1969348 36.48017 12.82878 2593923. -SIMU 1976 1 13 18 0 0.2041864 32.07207 12.92422 186116.2 -SIMU 1976 1 13 24 0 0.2097269 32.07207 12.91546 -355832.4 -SIMU 1976 1 14 6 0 0.2139658 32.07207 12.90677 -115.5082 -SIMU 1976 1 14 12 0 0.2172513 39.38366 12.72847 5287844. -SIMU 1976 1 14 18 0 0.2203937 32.07207 12.88952 2920086. -SIMU 1976 1 14 24 0 0.2232637 32.07207 12.88039 -288367.6 -SIMU 1976 1 15 6 0 0.2254567 32.07207 12.87142 -89.16023 -SIMU 1976 1 15 12 0 0.2271104 32.07207 12.86245 -126683.8 -SIMU 1976 1 15 18 0 0.2284456 32.07207 12.85343 -1664198. -SIMU 1976 1 15 24 0 0.2296095 32.07207 12.84438 -487631.0 -SIMU 1976 1 16 6 0 0.2304322 32.07207 12.83529 -68.80440 -SIMU 1976 1 16 12 0 0.2309750 32.07207 12.82617 -63.18703 -SIMU 1976 1 16 18 0 0.2313024 32.07207 12.81703 -59.65810 -SIMU 1976 1 16 24 0 0.2314551 32.07207 12.80786 -56.80843 -SIMU 1976 1 17 6 0 0.2314396 32.07207 12.79866 -54.78199 -SIMU 1976 1 17 12 0 0.2312956 36.13836 12.69435 3158352. -SIMU 1976 1 17 18 0 0.2310240 32.07207 12.78038 2022261. -SIMU 1976 1 17 24 0 0.2306781 32.07207 12.77090 -48.12863 -SIMU 1976 1 18 6 0 0.2302599 32.07207 12.76156 -47.74211 -SIMU 1976 1 18 12 0 0.2297932 33.92912 12.70849 1226811. -SIMU 1976 1 18 18 0 0.2292996 32.07207 12.74285 811783.7 -SIMU 1976 1 18 24 0 0.2287853 32.07207 12.73329 -45.35953 -SIMU 1976 1 19 6 0 0.2282310 32.07207 12.72377 -45.37050 -SIMU 1976 1 19 12 0 0.2276534 32.07207 12.71419 -43.59500 -SIMU 1976 1 19 18 0 0.2270690 32.07207 12.70455 -329113.2 -SIMU 1976 1 19 24 0 0.2264805 32.07207 12.69486 -44.02403 -SIMU 1976 1 20 6 0 0.2258669 32.07207 12.68510 -44.22742 -SIMU 1976 1 20 12 0 0.2252418 32.85717 12.65678 490087.2 -SIMU 1976 1 20 18 0 0.2246194 32.07207 12.66546 282703.3 -SIMU 1976 1 20 24 0 0.2240007 32.07207 12.65544 -42.21475 -SIMU 1976 1 21 6 0 0.2233642 32.07207 12.64540 -42.72580 -SIMU 1976 1 21 12 0 0.2227219 34.02740 12.58944 1458747. -SIMU 1976 1 21 18 0 0.2220865 32.07207 12.62516 439675.1 -SIMU 1976 1 21 24 0 0.2214584 32.07207 12.61481 -41.47422 -SIMU 1976 1 22 6 0 0.2208163 32.07207 12.60444 -42.27903 -SIMU 1976 1 22 12 0 0.2201712 39.51364 12.42243 5757780. -SIMU 1976 1 22 18 0 0.2195348 32.07207 12.58398 2397629. -SIMU 1976 1 22 24 0 0.2189073 32.07207 12.57282 -238416.0 -SIMU 1976 1 23 6 0 0.2182677 32.07207 12.56203 -41.71608 -SIMU 1976 1 23 12 0 0.2176265 38.66016 12.39909 4659965. -SIMU 1976 1 23 18 0 0.2176039 32.07207 12.54058 872292.1 -SIMU 1976 1 23 24 0 0.2179499 32.07207 12.52875 -1382043. -SIMU 1976 1 24 6 0 0.2181354 32.07207 12.51719 -138291.3 -SIMU 1976 1 24 12 0 0.2181784 35.62005 12.42304 2422957. -SIMU 1976 1 24 18 0 0.2181131 32.07207 12.49404 186504.8 -SIMU 1976 1 24 24 0 0.2179593 32.07207 12.48181 -750856.4 -SIMU 1976 1 25 6 0 0.2177125 32.07207 12.46969 -39238.22 -SIMU 1976 1 25 12 0 0.2178078 32.07207 12.45734 -31.30094 -SIMU 1976 1 25 18 0 0.2189079 32.07207 12.44379 65.19908 -SIMU 1976 1 25 24 0 0.2191160 32.07207 12.43171 -101.9599 -SIMU 1976 1 26 6 0 0.2183461 32.07207 12.41873 -44.22515 -SIMU 1976 1 26 12 0 0.2175145 32.96391 12.38487 523991.5 -SIMU 1976 1 26 18 0 0.2167164 32.07207 12.39252 240245.0 -SIMU 1976 1 26 24 0 0.2159552 32.07207 12.37903 -38.06538 -SIMU 1976 1 27 6 0 0.2152075 32.07207 12.36536 -39.18702 -SIMU 1976 1 27 12 0 0.2144789 42.41420 12.11780 7584524. -SIMU 1976 1 27 18 0 0.2137764 33.09472 12.31527 5716212. -SIMU 1976 1 27 24 0 0.2130969 32.07207 12.32302 -347743.6 -SIMU 1976 1 28 6 0 0.2124194 32.07207 12.30821 -39.51871 -SIMU 1976 1 28 12 0 0.2117509 36.80027 12.18505 3034941. -SIMU 1976 1 28 18 0 0.2111823 32.07207 12.27864 526633.1 -SIMU 1976 1 28 24 0 0.2110445 32.07207 12.26224 -836923.7 -SIMU 1976 1 29 6 0 0.2108856 32.07207 12.24608 -46.83461 -SIMU 1976 1 29 12 0 0.2107723 39.45267 12.06288 5128743. -SIMU 1976 1 29 18 0 0.2136457 32.07207 12.21344 1625268. -SIMU 1976 1 29 24 0 0.2158277 32.07207 12.19417 -980804.1 -SIMU 1976 1 30 6 0 0.2174203 32.07207 12.17550 -40169.84 -SIMU 1976 1 30 12 0 0.2186069 32.75619 12.14079 410363.7 -SIMU 1976 1 30 18 0 0.2194803 32.07207 12.13709 887871.6 -SIMU 1976 1 30 24 0 0.2200985 32.07207 12.11667 -60.85453 -SIMU 1976 1 31 6 0 0.2204858 32.07207 12.09592 -58.12335 -SIMU 1976 1 31 12 0 0.2206918 34.79879 12.01346 1574497. -SIMU 1976 1 31 18 0 0.2207596 32.07207 12.05349 279186.7 -SIMU 1976 1 31 24 0 0.2207145 32.07207 12.02994 -884878.3 -SIMU 1976 2 1 6 0 0.2204997 32.07207 12.00572 -27682.40 -SIMU 1976 2 1 12 0 0.2202164 32.07207 11.97993 -80468.14 -SIMU 1976 2 1 18 0 0.2204060 32.07207 11.95304 -362490.6 -SIMU 1976 2 1 24 0 0.2208953 32.07207 11.92501 -81.96701 -SIMU 1976 2 2 6 0 0.2212104 32.07207 11.89670 -81.21722 -SIMU 1976 2 2 12 0 0.2213626 34.33297 11.81999 1372341. -SIMU 1976 2 2 18 0 0.2213862 32.07207 11.83941 1860878. -SIMU 1976 2 2 24 0 0.2213043 32.07207 11.80733 -74.82951 -SIMU 1976 2 3 6 0 0.2211185 32.07207 11.77509 -73.58753 -SIMU 1976 2 3 12 0 0.2208547 32.79903 11.72706 422251.6 -SIMU 1976 2 3 18 0 0.2205347 32.07207 11.70737 -797257.6 -SIMU 1976 2 3 24 0 0.2201690 32.07207 11.67122 -248466.2 -SIMU 1976 2 4 6 0 0.2197463 32.07207 11.63404 -69.44428 -SIMU 1976 2 4 12 0 0.2192844 32.07207 11.59572 -68.34030 -SIMU 1976 2 4 18 0 0.2188009 32.07207 11.55636 -67.63618 -SIMU 1976 2 4 24 0 0.2183005 32.07207 11.51609 -67.33067 -SIMU 1976 2 5 6 0 0.2177679 32.07207 11.47510 -67.21605 -SIMU 1976 2 5 12 0 0.2172165 32.07207 11.43361 -66.27481 -SIMU 1976 2 5 18 0 0.2166597 32.07207 11.39185 -65.93702 -SIMU 1976 2 5 24 0 0.2160998 32.07207 11.35006 -65.59772 -SIMU 1976 2 6 6 0 0.2155196 32.07207 11.30845 -66.44243 -SIMU 1976 2 6 12 0 0.2149303 39.42032 11.17035 5221518. -SIMU 1976 2 6 18 0 0.2143433 32.07207 11.23109 3387926. -SIMU 1976 2 6 24 0 0.2137594 32.07207 11.18698 -64.19181 -SIMU 1976 2 7 6 0 0.2131614 32.07207 11.14757 -65.00223 -SIMU 1976 2 7 12 0 0.2125588 39.36724 11.02642 5056998. -SIMU 1976 2 7 18 0 0.2119620 32.07207 11.07650 2668830. -SIMU 1976 2 7 24 0 0.2113712 32.07207 11.03579 -467643.1 -SIMU 1976 2 8 6 0 0.2107693 32.07207 10.99985 -63.93411 +SIMU 1976 1 1 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 1 1 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 1 1 18 0 2.7871249E-02 32.07207 13.12421 -168542.4 +SIMU 1976 1 1 24 0 5.4797929E-02 32.07207 13.14930 -866463.3 +SIMU 1976 1 2 6 0 7.2372779E-02 32.07207 13.14771 -1298815. +SIMU 1976 1 2 12 0 8.3345100E-02 32.07207 13.14380 -1348846. +SIMU 1976 1 2 18 0 9.1288775E-02 32.07207 13.14029 -1273172. +SIMU 1976 1 2 24 0 9.7315378E-02 32.07207 13.13692 -978386.6 +SIMU 1976 1 3 6 0 0.1019777 32.07207 13.13352 -406549.0 +SIMU 1976 1 3 12 0 0.1056267 32.07207 13.13008 -50.58556 +SIMU 1976 1 3 18 0 0.1086149 32.07207 13.12659 -44.74771 +SIMU 1976 1 3 24 0 0.1110907 32.07207 13.12318 -43.72315 +SIMU 1976 1 4 6 0 0.1130495 32.07207 13.11980 -41.17428 +SIMU 1976 1 4 12 0 0.1145906 32.07207 13.11646 -164.0769 +SIMU 1976 1 4 18 0 0.1157974 32.07207 13.11312 218310.1 +SIMU 1976 1 4 24 0 0.1167338 32.07207 13.10978 -34.20255 +SIMU 1976 1 5 6 0 0.1174458 32.07207 13.10645 -32.68895 +SIMU 1976 1 5 12 0 0.1180093 32.07207 13.10286 -512.9301 +SIMU 1976 1 5 18 0 0.1226091 32.07207 13.09929 -94580.67 +SIMU 1976 1 5 24 0 0.1256065 32.07207 13.09536 -4049.124 +SIMU 1976 1 6 6 0 0.1276617 32.07207 13.09135 -48.71730 +SIMU 1976 1 6 12 0 0.1292443 32.07207 13.08745 -43.89406 +SIMU 1976 1 6 18 0 0.1309368 32.07207 13.08241 -4313.043 +SIMU 1976 1 6 24 0 0.1324759 32.07207 13.07966 -65.71773 +SIMU 1976 1 7 6 0 0.1330767 32.07207 13.07556 -38.41756 +SIMU 1976 1 7 12 0 0.1334491 32.07207 13.07152 -34.44584 +SIMU 1976 1 7 18 0 0.1362029 32.07207 13.06711 -18.58733 +SIMU 1976 1 7 24 0 0.1381927 32.07207 13.06270 -55.87582 +SIMU 1976 1 8 6 0 0.1395876 32.07207 13.05830 -46.68633 +SIMU 1976 1 8 12 0 0.1406472 32.07207 13.05400 -42.13677 +SIMU 1976 1 8 18 0 0.1444847 32.07207 13.04926 -24.82368 +SIMU 1976 1 8 24 0 0.1471318 32.07207 13.04446 -69.31850 +SIMU 1976 1 9 6 0 0.1490162 32.07207 13.03963 -55.33128 +SIMU 1976 1 9 12 0 0.1504642 32.07207 13.03486 -50.43088 +SIMU 1976 1 9 18 0 0.1532875 32.07207 13.02972 -6713.310 +SIMU 1976 1 9 24 0 0.1556391 32.07207 13.02467 -64.31012 +SIMU 1976 1 10 6 0 0.1574081 32.07207 13.01952 -56.37457 +SIMU 1976 1 10 12 0 0.1587713 32.07207 13.01439 -51.93793 +SIMU 1976 1 10 18 0 0.1599186 32.07207 13.00919 -45.04348 +SIMU 1976 1 10 24 0 0.1609593 32.07207 13.00405 -48.42181 +SIMU 1976 1 11 6 0 0.1617409 32.07207 12.99886 -46.07314 +SIMU 1976 1 11 12 0 0.1628120 36.08153 12.89848 1445355. +SIMU 1976 1 11 18 0 0.1669627 38.73153 12.83231 5886758. +SIMU 1976 1 11 24 0 0.1698543 32.07207 12.98162 -1047912. +SIMU 1976 1 12 6 0 0.1720083 32.07207 12.96951 -66.62341 +SIMU 1976 1 12 12 0 0.1747179 36.53827 12.85713 1896662. +SIMU 1976 1 12 18 0 0.1829739 32.07207 12.95561 36683.13 +SIMU 1976 1 12 24 0 0.1886343 32.07207 12.94796 -823506.1 +SIMU 1976 1 13 6 0 0.1927597 32.07207 12.94042 -79006.93 +SIMU 1976 1 13 12 0 0.1969348 36.48017 12.82878 2593923. +SIMU 1976 1 13 18 0 0.2041864 32.07207 12.92422 186116.2 +SIMU 1976 1 13 24 0 0.2097269 32.07207 12.91546 -355832.4 +SIMU 1976 1 14 6 0 0.2139658 32.07207 12.90677 -115.5082 +SIMU 1976 1 14 12 0 0.2172513 39.38366 12.72847 5287844. +SIMU 1976 1 14 18 0 0.2203937 32.07207 12.88952 2920086. +SIMU 1976 1 14 24 0 0.2232637 32.07207 12.88039 -288367.6 +SIMU 1976 1 15 6 0 0.2254567 32.07207 12.87142 -89.16023 +SIMU 1976 1 15 12 0 0.2271104 32.07207 12.86245 -126683.8 +SIMU 1976 1 15 18 0 0.2284456 32.07207 12.85343 -1664198. +SIMU 1976 1 15 24 0 0.2296095 32.07207 12.84438 -487631.0 +SIMU 1976 1 16 6 0 0.2304322 32.07207 12.83529 -68.80440 +SIMU 1976 1 16 12 0 0.2309750 32.07207 12.82617 -63.18703 +SIMU 1976 1 16 18 0 0.2313024 32.07207 12.81703 -59.65810 +SIMU 1976 1 16 24 0 0.2314551 32.07207 12.80786 -56.80843 +SIMU 1976 1 17 6 0 0.2314396 32.07207 12.79866 -54.78199 +SIMU 1976 1 17 12 0 0.2312956 36.13836 12.69435 3158352. +SIMU 1976 1 17 18 0 0.2310240 32.07207 12.78038 2022261. +SIMU 1976 1 17 24 0 0.2306781 32.07207 12.77090 -48.12863 +SIMU 1976 1 18 6 0 0.2302599 32.07207 12.76156 -47.74211 +SIMU 1976 1 18 12 0 0.2297932 33.92912 12.70849 1226811. +SIMU 1976 1 18 18 0 0.2292996 32.07207 12.74285 811783.7 +SIMU 1976 1 18 24 0 0.2287853 32.07207 12.73329 -45.35953 +SIMU 1976 1 19 6 0 0.2282310 32.07207 12.72377 -45.37050 +SIMU 1976 1 19 12 0 0.2276534 32.07207 12.71419 -43.59500 +SIMU 1976 1 19 18 0 0.2270690 32.07207 12.70455 -329113.2 +SIMU 1976 1 19 24 0 0.2264805 32.07207 12.69486 -44.02403 +SIMU 1976 1 20 6 0 0.2258669 32.07207 12.68510 -44.22742 +SIMU 1976 1 20 12 0 0.2252418 32.85717 12.65678 490087.2 +SIMU 1976 1 20 18 0 0.2246194 32.07207 12.66546 282703.3 +SIMU 1976 1 20 24 0 0.2240007 32.07207 12.65544 -42.21475 +SIMU 1976 1 21 6 0 0.2233642 32.07207 12.64540 -42.72580 +SIMU 1976 1 21 12 0 0.2227219 34.02740 12.58944 1458747. +SIMU 1976 1 21 18 0 0.2220865 32.07207 12.62516 439675.1 +SIMU 1976 1 21 24 0 0.2214584 32.07207 12.61481 -41.47422 +SIMU 1976 1 22 6 0 0.2208163 32.07207 12.60444 -42.27903 +SIMU 1976 1 22 12 0 0.2201712 39.51364 12.42243 5757780. +SIMU 1976 1 22 18 0 0.2195348 32.07207 12.58398 2397629. +SIMU 1976 1 22 24 0 0.2189073 32.07207 12.57282 -238416.0 +SIMU 1976 1 23 6 0 0.2182677 32.07207 12.56203 -41.71608 +SIMU 1976 1 23 12 0 0.2176265 38.66016 12.39909 4659965. +SIMU 1976 1 23 18 0 0.2176039 32.07207 12.54058 872292.1 +SIMU 1976 1 23 24 0 0.2179499 32.07207 12.52875 -1382043. +SIMU 1976 1 24 6 0 0.2181354 32.07207 12.51719 -138291.3 +SIMU 1976 1 24 12 0 0.2181784 35.62005 12.42304 2422957. +SIMU 1976 1 24 18 0 0.2181131 32.07207 12.49404 186504.8 +SIMU 1976 1 24 24 0 0.2179593 32.07207 12.48181 -750856.4 +SIMU 1976 1 25 6 0 0.2177125 32.07207 12.46969 -39238.22 +SIMU 1976 1 25 12 0 0.2178078 32.07207 12.45734 -31.30094 +SIMU 1976 1 25 18 0 0.2189079 32.07207 12.44379 65.19908 +SIMU 1976 1 25 24 0 0.2191160 32.07207 12.43171 -101.9599 +SIMU 1976 1 26 6 0 0.2183461 32.07207 12.41873 -44.22515 +SIMU 1976 1 26 12 0 0.2175145 32.96391 12.38487 523991.5 +SIMU 1976 1 26 18 0 0.2167164 32.07207 12.39252 240245.0 +SIMU 1976 1 26 24 0 0.2159552 32.07207 12.37903 -38.06538 +SIMU 1976 1 27 6 0 0.2152075 32.07207 12.36536 -39.18702 +SIMU 1976 1 27 12 0 0.2144789 42.41420 12.11780 7584524. +SIMU 1976 1 27 18 0 0.2137764 33.09472 12.31527 5716212. +SIMU 1976 1 27 24 0 0.2130969 32.07207 12.32302 -347743.6 +SIMU 1976 1 28 6 0 0.2124194 32.07207 12.30821 -39.51871 +SIMU 1976 1 28 12 0 0.2117509 36.80027 12.18505 3034941. +SIMU 1976 1 28 18 0 0.2111823 32.07207 12.27864 526633.1 +SIMU 1976 1 28 24 0 0.2110445 32.07207 12.26224 -836923.7 +SIMU 1976 1 29 6 0 0.2108856 32.07207 12.24608 -46.83461 +SIMU 1976 1 29 12 0 0.2107723 39.45267 12.06288 5128743. +SIMU 1976 1 29 18 0 0.2136457 32.07207 12.21344 1625268. +SIMU 1976 1 29 24 0 0.2158277 32.07207 12.19417 -980804.1 +SIMU 1976 1 30 6 0 0.2174203 32.07207 12.17550 -40169.84 +SIMU 1976 1 30 12 0 0.2186069 32.75619 12.14079 410363.7 +SIMU 1976 1 30 18 0 0.2194803 32.07207 12.13709 887871.6 +SIMU 1976 1 30 24 0 0.2200985 32.07207 12.11667 -60.85453 +SIMU 1976 1 31 6 0 0.2204858 32.07207 12.09592 -58.12335 +SIMU 1976 1 31 12 0 0.2206918 34.79879 12.01346 1574497. +SIMU 1976 1 31 18 0 0.2207596 32.07207 12.05349 279186.7 +SIMU 1976 1 31 24 0 0.2207145 32.07207 12.02994 -884878.3 +SIMU 1976 2 1 6 0 0.2204997 32.07207 12.00572 -27682.40 +SIMU 1976 2 1 12 0 0.2202164 32.07207 11.97993 -80468.14 +SIMU 1976 2 1 18 0 0.2204060 32.07207 11.95304 -362490.6 +SIMU 1976 2 1 24 0 0.2208953 32.07207 11.92501 -81.96701 +SIMU 1976 2 2 6 0 0.2212104 32.07207 11.89670 -81.21722 +SIMU 1976 2 2 12 0 0.2213626 34.33297 11.81999 1372341. +SIMU 1976 2 2 18 0 0.2213862 32.07207 11.83941 1860878. +SIMU 1976 2 2 24 0 0.2213043 32.07207 11.80733 -74.82951 +SIMU 1976 2 3 6 0 0.2211185 32.07207 11.77509 -73.58753 +SIMU 1976 2 3 12 0 0.2208547 32.79903 11.72706 422251.6 +SIMU 1976 2 3 18 0 0.2205347 32.07207 11.70737 -797257.6 +SIMU 1976 2 3 24 0 0.2201690 32.07207 11.67122 -248466.2 +SIMU 1976 2 4 6 0 0.2197463 32.07207 11.63404 -69.44428 +SIMU 1976 2 4 12 0 0.2192844 32.07207 11.59572 -68.34030 +SIMU 1976 2 4 18 0 0.2188009 32.07207 11.55636 -67.63618 +SIMU 1976 2 4 24 0 0.2183005 32.07207 11.51609 -67.33067 +SIMU 1976 2 5 6 0 0.2177679 32.07207 11.47510 -67.21605 +SIMU 1976 2 5 12 0 0.2172165 32.07207 11.43361 -66.27481 +SIMU 1976 2 5 18 0 0.2166597 32.07207 11.39185 -65.93702 +SIMU 1976 2 5 24 0 0.2160998 32.07207 11.35006 -65.59772 +SIMU 1976 2 6 6 0 0.2155196 32.07207 11.30845 -66.44243 +SIMU 1976 2 6 12 0 0.2149303 39.42032 11.17035 5221518. +SIMU 1976 2 6 18 0 0.2143433 32.07207 11.23109 3387926. +SIMU 1976 2 6 24 0 0.2137594 32.07207 11.18698 -64.19181 +SIMU 1976 2 7 6 0 0.2131614 32.07207 11.14757 -65.00223 +SIMU 1976 2 7 12 0 0.2125588 39.36724 11.02642 5056998. +SIMU 1976 2 7 18 0 0.2119620 32.07207 11.07650 2668830. +SIMU 1976 2 7 24 0 0.2113712 32.07207 11.03579 -467643.1 +SIMU 1976 2 8 6 0 0.2107693 32.07207 10.99985 -63.93411 SIMU 1976 2 8 12 0 0.2101651 46.87627 10.81555 1.0954785E+07 -SIMU 1976 2 8 18 0 0.2096280 38.44360 10.87403 8288330. -SIMU 1976 2 8 24 0 0.2092517 32.07207 10.89960 -2332270. -SIMU 1976 2 9 6 0 0.2088523 32.07207 10.86599 -646623.4 -SIMU 1976 2 9 12 0 0.2084345 42.33037 10.73812 6769364. -SIMU 1976 2 9 18 0 0.2085466 37.16319 10.76024 4051294. -SIMU 1976 2 9 24 0 0.2089582 32.07207 10.77360 -3627167. -SIMU 1976 2 10 6 0 0.2092344 32.07207 10.74258 -1806130. -SIMU 1976 2 10 12 0 0.2093845 44.01875 10.60772 7170272. -SIMU 1976 2 10 18 0 0.2096327 37.28570 10.64219 3960276. -SIMU 1976 2 10 24 0 0.2099025 32.07207 10.65586 -4350830. -SIMU 1976 2 11 6 0 0.2100368 32.07207 10.62652 -2453620. +SIMU 1976 2 8 18 0 0.2096280 38.44360 10.87403 8288330. +SIMU 1976 2 8 24 0 0.2092517 32.07207 10.89960 -2332270. +SIMU 1976 2 9 6 0 0.2088523 32.07207 10.86599 -646623.4 +SIMU 1976 2 9 12 0 0.2084345 42.33037 10.73812 6769364. +SIMU 1976 2 9 18 0 0.2085466 37.16319 10.76024 4051294. +SIMU 1976 2 9 24 0 0.2089582 32.07207 10.77360 -3627167. +SIMU 1976 2 10 6 0 0.2092344 32.07207 10.74258 -1806130. +SIMU 1976 2 10 12 0 0.2093845 44.01875 10.60772 7170272. +SIMU 1976 2 10 18 0 0.2096327 37.28570 10.64219 3960276. +SIMU 1976 2 10 24 0 0.2099025 32.07207 10.65586 -4350830. +SIMU 1976 2 11 6 0 0.2100368 32.07207 10.62652 -2453620. SIMU 1976 2 11 12 0 0.2100444 48.16666 10.46241 1.0019872E+07 -SIMU 1976 2 11 18 0 0.2099543 40.59977 10.50277 8118231. -SIMU 1976 2 11 24 0 0.2097845 32.70205 10.53878 -3130689. -SIMU 1976 2 12 6 0 0.2095322 32.07207 10.51429 -2270578. +SIMU 1976 2 11 18 0 0.2099543 40.59977 10.50277 8118231. +SIMU 1976 2 11 24 0 0.2097845 32.70205 10.53878 -3130689. +SIMU 1976 2 12 6 0 0.2095322 32.07207 10.51429 -2270578. SIMU 1976 2 12 12 0 0.2092186 50.12237 10.34031 1.2878506E+07 -SIMU 1976 2 12 18 0 0.2088632 41.19772 10.38834 6405704. -SIMU 1976 2 12 24 0 0.2084743 33.80486 10.41830 -4300553. -SIMU 1976 2 13 6 0 0.2080420 32.07207 10.40249 -4983673. -SIMU 1976 2 13 12 0 0.2075804 40.06659 10.30964 2075624. -SIMU 1976 2 13 18 0 0.2071033 36.24183 10.31531 1613412. -SIMU 1976 2 13 24 0 0.2066143 32.07207 10.31768 -4338753. -SIMU 1976 2 14 6 0 0.2061006 32.07207 10.28791 -2725556. -SIMU 1976 2 14 12 0 0.2055729 42.39481 10.17666 5236389. -SIMU 1976 2 14 18 0 0.2050417 38.05507 10.18507 4191280. -SIMU 1976 2 14 24 0 0.2103604 33.34616 10.18576 -2299581. -SIMU 1976 2 15 6 0 0.2091928 35.85183 10.13653 2183619. +SIMU 1976 2 12 18 0 0.2088632 41.19772 10.38834 6405704. +SIMU 1976 2 12 24 0 0.2084743 33.80486 10.41830 -4300553. +SIMU 1976 2 13 6 0 0.2080420 32.07207 10.40249 -4983673. +SIMU 1976 2 13 12 0 0.2075804 40.06659 10.30964 2075624. +SIMU 1976 2 13 18 0 0.2071033 36.24183 10.31531 1613412. +SIMU 1976 2 13 24 0 0.2066143 32.07207 10.31768 -4338753. +SIMU 1976 2 14 6 0 0.2061006 32.07207 10.28791 -2725556. +SIMU 1976 2 14 12 0 0.2055729 42.39481 10.17666 5236389. +SIMU 1976 2 14 18 0 0.2050417 38.05507 10.18507 4191280. +SIMU 1976 2 14 24 0 0.2103604 33.34616 10.18576 -2299581. +SIMU 1976 2 15 6 0 0.2091928 35.85183 10.13653 2183619. SIMU 1976 2 15 12 0 0.2089722 50.39380 9.998320 1.3899595E+07 -SIMU 1976 2 15 18 0 0.2117340 40.29866 10.04488 5944207. -SIMU 1976 2 15 24 0 0.2143464 35.73599 10.04247 -2436472. -SIMU 1976 2 16 6 0 0.2164830 32.31719 10.03201 -4864539. -SIMU 1976 2 16 12 0 0.2200372 34.35915 9.979403 -2477170. -SIMU 1976 2 16 18 0 0.2409212 33.80207 9.948843 -2638328. -SIMU 1976 2 16 24 0 0.2502449 32.31387 9.922947 -4825992. -SIMU 1976 2 17 6 0 0.2572343 32.07207 9.883525 -4818313. -SIMU 1976 2 17 12 0 0.2626019 33.98175 9.825178 -2313448. -SIMU 1976 2 17 18 0 0.2666907 32.92642 9.786402 -2553175. -SIMU 1976 2 17 24 0 0.2697741 32.07207 9.738860 -4649499. -SIMU 1976 2 18 6 0 0.2719623 32.07207 9.680928 -3659140. -SIMU 1976 2 18 12 0 0.2735655 41.37241 9.555961 8389743. -SIMU 1976 2 18 18 0 0.2748697 36.90797 9.521747 6349274. -SIMU 1976 2 18 24 0 0.2757961 32.10673 9.465677 -5079268. -SIMU 1976 2 19 6 0 0.2762872 32.07207 9.367689 -4603966. +SIMU 1976 2 15 18 0 0.2117340 40.29866 10.04488 5944207. +SIMU 1976 2 15 24 0 0.2143464 35.73599 10.04247 -2436472. +SIMU 1976 2 16 6 0 0.2164830 32.31719 10.03201 -4864539. +SIMU 1976 2 16 12 0 0.2200372 34.35915 9.979403 -2477170. +SIMU 1976 2 16 18 0 0.2409212 33.80207 9.948843 -2638328. +SIMU 1976 2 16 24 0 0.2502449 32.31387 9.922947 -4825992. +SIMU 1976 2 17 6 0 0.2572343 32.07207 9.883525 -4818313. +SIMU 1976 2 17 12 0 0.2626019 33.98175 9.825178 -2313448. +SIMU 1976 2 17 18 0 0.2666907 32.92642 9.786402 -2553175. +SIMU 1976 2 17 24 0 0.2697741 32.07207 9.738860 -4649499. +SIMU 1976 2 18 6 0 0.2719623 32.07207 9.680928 -3659140. +SIMU 1976 2 18 12 0 0.2735655 41.37241 9.555961 8389743. +SIMU 1976 2 18 18 0 0.2748697 36.90797 9.521747 6349274. +SIMU 1976 2 18 24 0 0.2757961 32.10673 9.465677 -5079268. +SIMU 1976 2 19 6 0 0.2762872 32.07207 9.367689 -4603966. SIMU 1976 2 19 12 0 0.2764649 45.38754 9.189213 1.2301272E+07 -SIMU 1976 2 19 18 0 0.2765108 37.04338 9.117183 6252197. -SIMU 1976 2 19 24 0 0.2764716 32.07207 8.952880 -8949882. -SIMU 1976 2 20 6 0 0.2762046 32.07207 8.763246 -6734484. -SIMU 1976 2 20 12 0 0.2757882 37.17998 8.587992 31352.06 -SIMU 1976 2 20 18 0 0.2761855 33.97680 8.471845 -2593049. -SIMU 1976 2 20 24 0 0.2962097 32.07207 8.398589 -8793852. -SIMU 1976 2 21 6 0 0.3142229 32.07207 8.361709 -6400457. -SIMU 1976 2 21 12 0 0.3274650 33.43695 8.336599 -2807963. -SIMU 1976 2 21 18 0 0.3344572 32.07207 8.321568 -3349036. -SIMU 1976 2 21 24 0 0.3347758 32.07207 8.306821 -2086247. -SIMU 1976 2 22 6 0 0.3345499 32.07207 8.290276 -4241.379 -SIMU 1976 2 22 12 0 0.3351886 36.44737 8.265258 6105793. -SIMU 1976 2 22 18 0 0.3337077 32.07207 8.263033 4028345. -SIMU 1976 2 22 24 0 0.3334940 32.07207 8.249536 -991909.1 -SIMU 1976 2 23 6 0 0.3330114 32.07207 8.237956 -81.09390 +SIMU 1976 2 19 18 0 0.2765108 37.04338 9.117183 6252197. +SIMU 1976 2 19 24 0 0.2764716 32.07207 8.952880 -8949882. +SIMU 1976 2 20 6 0 0.2762046 32.07207 8.763246 -6734484. +SIMU 1976 2 20 12 0 0.2757882 37.17998 8.587992 31352.06 +SIMU 1976 2 20 18 0 0.2761855 33.97680 8.471845 -2593049. +SIMU 1976 2 20 24 0 0.2962097 32.07207 8.398589 -8793852. +SIMU 1976 2 21 6 0 0.3142229 32.07207 8.361709 -6400457. +SIMU 1976 2 21 12 0 0.3274650 33.43695 8.336599 -2807963. +SIMU 1976 2 21 18 0 0.3344572 32.07207 8.321568 -3349036. +SIMU 1976 2 21 24 0 0.3347758 32.07207 8.306821 -2086247. +SIMU 1976 2 22 6 0 0.3345499 32.07207 8.290276 -4241.379 +SIMU 1976 2 22 12 0 0.3351886 36.44737 8.265258 6105793. +SIMU 1976 2 22 18 0 0.3337077 32.07207 8.263033 4028345. +SIMU 1976 2 22 24 0 0.3334940 32.07207 8.249536 -991909.1 +SIMU 1976 2 23 6 0 0.3330114 32.07207 8.237956 -81.09390 SIMU 1976 2 23 12 0 0.3335750 41.74127 8.211655 1.4134156E+07 SIMU 1976 2 23 18 0 0.3434458 34.86575 8.213209 1.1000747E+07 -SIMU 1976 2 23 24 0 0.3508878 32.07207 8.202178 -6638734. -SIMU 1976 2 24 6 0 0.3564769 32.07207 8.189588 -3840848. +SIMU 1976 2 23 24 0 0.3508878 32.07207 8.202178 -6638734. +SIMU 1976 2 24 6 0 0.3564769 32.07207 8.189588 -3840848. SIMU 1976 2 24 12 0 0.3647994 43.56174 8.161217 1.9013062E+07 SIMU 1976 2 24 18 0 0.3857886 37.13430 8.157070 1.3301175E+07 -SIMU 1976 2 24 24 0 0.4018544 34.18435 8.142818 -8225145. +SIMU 1976 2 24 24 0 0.4018544 34.18435 8.142818 -8225145. SIMU 1976 2 25 6 0 0.4144150 33.16384 8.127437 -1.0726974E+07 -SIMU 1976 2 25 12 0 0.4246872 40.10310 8.103894 7287192. -SIMU 1976 2 25 18 0 0.4359689 37.15875 8.090714 5897259. -SIMU 1976 2 25 24 0 0.4443449 34.76394 8.074371 -9063324. +SIMU 1976 2 25 12 0 0.4246872 40.10310 8.103894 7287192. +SIMU 1976 2 25 18 0 0.4359689 37.15875 8.090714 5897259. +SIMU 1976 2 25 24 0 0.4443449 34.76394 8.074371 -9063324. SIMU 1976 2 26 6 0 0.4501042 33.47823 8.057149 -1.1446275E+07 SIMU 1976 2 26 12 0 0.4588588 45.20944 8.028823 2.2433202E+07 SIMU 1976 2 26 18 0 0.4727022 41.14432 8.012241 1.9870178E+07 -SIMU 1976 2 26 24 0 0.4839956 38.16505 7.992144 -7784013. +SIMU 1976 2 26 24 0 0.4839956 38.16505 7.992144 -7784013. SIMU 1976 2 27 6 0 0.4925610 36.35349 7.971609 -1.2485239E+07 SIMU 1976 2 27 12 0 0.5002555 44.81229 7.945271 1.6489419E+07 SIMU 1976 2 27 18 0 0.5086975 42.23417 7.925373 1.2666438E+07 SIMU 1976 2 27 24 0 0.5158166 39.84422 7.903874 -1.2583510E+07 SIMU 1976 2 28 6 0 0.5209914 37.61700 7.882366 -1.8929180E+07 -SIMU 1976 2 28 12 0 0.5248883 44.67606 7.857496 9656575. -SIMU 1976 2 28 18 0 0.5280542 41.54293 7.836951 5137571. +SIMU 1976 2 28 12 0 0.5248883 44.67606 7.857496 9656575. +SIMU 1976 2 28 18 0 0.5280542 41.54293 7.836951 5137571. SIMU 1976 2 28 24 0 0.5304815 39.12517 7.815287 -1.8693700E+07 SIMU 1976 2 29 6 0 0.5318709 39.81722 7.792977 -1.1289198E+07 -SIMU 1976 2 29 12 0 0.5326132 44.82871 7.769802 9777442. -SIMU 1976 2 29 18 0 0.5328862 41.44191 7.749051 5736009. +SIMU 1976 2 29 12 0 0.5326132 44.82871 7.769802 9777442. +SIMU 1976 2 29 18 0 0.5328862 41.44191 7.749051 5736009. SIMU 1976 2 29 24 0 0.5327758 39.60921 7.727418 -1.0832879E+07 SIMU 1976 3 1 6 0 0.5319649 35.50149 7.706499 -2.5365518E+07 SIMU 1976 3 1 12 0 0.5309512 37.45776 7.684379 -1.1554476E+07 @@ -272,41 +272,41 @@ SIMU 1976 3 2 6 0 0.5275885 33.61880 7.620162 -1.4729609E+07 SIMU 1976 3 2 12 0 0.5261047 33.38949 7.598791 -1.2538904E+07 SIMU 1976 3 2 18 0 0.5242208 32.81159 7.577714 -1.1743373E+07 SIMU 1976 3 2 24 0 0.5223529 32.07207 7.556701 -1.3251609E+07 -SIMU 1976 3 3 6 0 0.5202616 32.07207 7.535759 -8814622. -SIMU 1976 3 3 12 0 0.5181792 32.50168 7.514884 -3298728. -SIMU 1976 3 3 18 0 0.5161582 32.07207 7.494278 -2382421. -SIMU 1976 3 3 24 0 0.5141906 32.07207 7.473728 -775056.4 -SIMU 1976 3 4 6 0 0.5122597 32.07207 7.453179 -102.4910 -SIMU 1976 3 4 12 0 0.5226405 32.07207 7.424417 7103.603 -SIMU 1976 3 4 18 0 0.5233483 32.07207 7.406805 2190.109 -SIMU 1976 3 4 24 0 0.5196164 32.07207 7.386524 -83.57268 -SIMU 1976 3 5 6 0 0.5151673 32.07207 7.366695 -109.9247 +SIMU 1976 3 3 6 0 0.5202616 32.07207 7.535759 -8814622. +SIMU 1976 3 3 12 0 0.5181792 32.50168 7.514884 -3298728. +SIMU 1976 3 3 18 0 0.5161582 32.07207 7.494278 -2382421. +SIMU 1976 3 3 24 0 0.5141906 32.07207 7.473728 -775056.4 +SIMU 1976 3 4 6 0 0.5122597 32.07207 7.453179 -102.4910 +SIMU 1976 3 4 12 0 0.5226405 32.07207 7.424417 7103.603 +SIMU 1976 3 4 18 0 0.5233483 32.07207 7.406805 2190.109 +SIMU 1976 3 4 24 0 0.5196164 32.07207 7.386524 -83.57268 +SIMU 1976 3 5 6 0 0.5151673 32.07207 7.366695 -109.9247 SIMU 1976 3 5 12 0 0.5111483 36.20940 7.346437 1.1862827E+07 -SIMU 1976 3 5 18 0 0.5078666 32.07207 7.327579 8570639. -SIMU 1976 3 5 24 0 0.5053058 32.07207 7.307754 -1082994. -SIMU 1976 3 6 6 0 0.5026944 32.07207 7.288142 -145.1788 +SIMU 1976 3 5 18 0 0.5078666 32.07207 7.327579 8570639. +SIMU 1976 3 5 24 0 0.5053058 32.07207 7.307754 -1082994. +SIMU 1976 3 6 6 0 0.5026944 32.07207 7.288142 -145.1788 SIMU 1976 3 6 12 0 0.5014628 36.90552 7.267545 1.2822030E+07 -SIMU 1976 3 6 18 0 0.5096776 32.70774 7.245605 8462882. -SIMU 1976 3 6 24 0 0.5161158 32.07207 7.222585 -8228211. -SIMU 1976 3 7 6 0 0.5207718 32.07207 7.199605 -1693351. +SIMU 1976 3 6 18 0 0.5096776 32.70774 7.245605 8462882. +SIMU 1976 3 6 24 0 0.5161158 32.07207 7.222585 -8228211. +SIMU 1976 3 7 6 0 0.5207718 32.07207 7.199605 -1693351. SIMU 1976 3 7 12 0 0.5251031 38.22975 7.175890 1.9904244E+07 SIMU 1976 3 7 18 0 0.5354815 33.50332 7.151482 1.2612916E+07 SIMU 1976 3 7 24 0 0.5445520 32.07207 7.125658 -1.1644709E+07 -SIMU 1976 3 8 6 0 0.5512207 32.07207 7.100150 -4407397. -SIMU 1976 3 8 12 0 0.5562255 34.63431 7.074668 7408639. -SIMU 1976 3 8 18 0 0.5604930 32.76693 7.049715 5476698. -SIMU 1976 3 8 24 0 0.5642508 32.07207 7.024395 -8607397. -SIMU 1976 3 9 6 0 0.5666265 32.07207 6.999362 -3368590. +SIMU 1976 3 8 6 0 0.5512207 32.07207 7.100150 -4407397. +SIMU 1976 3 8 12 0 0.5562255 34.63431 7.074668 7408639. +SIMU 1976 3 8 18 0 0.5604930 32.76693 7.049715 5476698. +SIMU 1976 3 8 24 0 0.5642508 32.07207 7.024395 -8607397. +SIMU 1976 3 9 6 0 0.5666265 32.07207 6.999362 -3368590. SIMU 1976 3 9 12 0 0.5705411 36.38352 6.973592 1.6083196E+07 SIMU 1976 3 9 18 0 0.5796779 35.01041 6.945069 1.1178901E+07 -SIMU 1976 3 9 24 0 0.5828460 34.29165 6.914813 -8566895. +SIMU 1976 3 9 24 0 0.5828460 34.29165 6.914813 -8566895. SIMU 1976 3 10 6 0 0.5855899 33.61038 6.885360 -1.2362942E+07 -SIMU 1976 3 10 12 0 0.5885710 37.53434 6.855735 5893139. -SIMU 1976 3 10 18 0 0.5928271 36.04980 6.824169 4036707. +SIMU 1976 3 10 12 0 0.5885710 37.53434 6.855735 5893139. +SIMU 1976 3 10 18 0 0.5928271 36.04980 6.824169 4036707. SIMU 1976 3 10 24 0 0.5971430 34.23497 6.792311 -1.3016329E+07 SIMU 1976 3 11 6 0 0.6010177 32.11636 6.761280 -2.1054970E+07 -SIMU 1976 3 11 12 0 0.6052453 36.95206 6.730188 3563172. -SIMU 1976 3 11 18 0 0.6123173 36.72479 6.695086 5681555. +SIMU 1976 3 11 12 0 0.6052453 36.95206 6.730188 3563172. +SIMU 1976 3 11 18 0 0.6123173 36.72479 6.695086 5681555. SIMU 1976 3 11 24 0 0.6292620 35.43702 6.648464 -1.3188663E+07 SIMU 1976 3 12 6 0 0.6353333 33.76544 6.612983 -2.0640210E+07 SIMU 1976 3 12 12 0 0.6485788 34.46986 6.573839 -1.5982963E+07 @@ -322,7 +322,7 @@ SIMU 1976 3 14 18 0 0.7247114 35.83909 6.240804 1.0248002E+07 SIMU 1976 3 14 24 0 0.7307206 34.30053 6.211236 -1.9538420E+07 SIMU 1976 3 15 6 0 0.7361367 33.99430 6.183646 -1.6842700E+07 SIMU 1976 3 15 12 0 0.7411379 37.74323 6.157748 1.0608117E+07 -SIMU 1976 3 15 18 0 0.7461157 35.96395 6.131981 6028013. +SIMU 1976 3 15 18 0 0.7461157 35.96395 6.131981 6028013. SIMU 1976 3 15 24 0 0.7507403 34.61610 6.107511 -1.6662134E+07 SIMU 1976 3 16 6 0 0.7548830 32.54399 6.084393 -2.7821076E+07 SIMU 1976 3 16 12 0 0.7587151 39.18489 6.062830 2.3323548E+07 @@ -331,22 +331,22 @@ SIMU 1976 3 16 24 0 0.7664981 33.18064 6.020073 -2.1241776E+07 SIMU 1976 3 17 6 0 0.7695327 32.27652 6.000479 -2.2427204E+07 SIMU 1976 3 17 12 0 0.7723013 38.37402 5.981895 2.3561984E+07 SIMU 1976 3 17 18 0 0.7748684 37.38544 5.963665 2.9845928E+07 -SIMU 1976 3 17 24 0 0.7772442 35.40250 5.946412 -4567353. -SIMU 1976 3 18 6 0 0.7793149 35.22361 5.930238 -2643025. +SIMU 1976 3 17 24 0 0.7772442 35.40250 5.946412 -4567353. +SIMU 1976 3 18 6 0 0.7793149 35.22361 5.930238 -2643025. SIMU 1976 3 18 12 0 0.7812493 41.76333 5.914763 4.1540804E+07 SIMU 1976 3 18 18 0 0.7831664 41.82815 5.899279 4.2137468E+07 -SIMU 1976 3 18 24 0 0.7849525 40.72164 5.884746 1653480. +SIMU 1976 3 18 24 0 0.7849525 40.72164 5.884746 1653480. SIMU 1976 3 19 6 0 0.7864670 40.00698 5.871230 -1.0294846E+07 SIMU 1976 3 19 12 0 0.7878175 47.32368 5.858557 3.6582808E+07 SIMU 1976 3 19 18 0 0.7890334 47.04634 5.845696 3.3987552E+07 SIMU 1976 3 19 24 0 0.7901185 44.97976 5.833654 -1.8227538E+07 SIMU 1976 3 20 6 0 0.7909642 42.28366 5.824393 -5.3539456E+07 -SIMU 1976 3 20 12 0 0.7916692 49.43140 5.816275 -3664713. -SIMU 1976 3 20 18 0 0.7922592 47.57625 5.807091 -5294365. +SIMU 1976 3 20 12 0 0.7916692 49.43140 5.816275 -3664713. +SIMU 1976 3 20 18 0 0.7922592 47.57625 5.807091 -5294365. SIMU 1976 3 20 24 0 0.7927378 44.35085 5.798018 -5.2213004E+07 SIMU 1976 3 21 6 0 0.7930068 42.81991 5.787798 -5.1516704E+07 -SIMU 1976 3 21 12 0 0.7931603 49.03122 5.778574 7187051. -SIMU 1976 3 21 18 0 0.7932222 45.80598 5.768614 9883458. +SIMU 1976 3 21 12 0 0.7931603 49.03122 5.778574 7187051. +SIMU 1976 3 21 18 0 0.7932222 45.80598 5.768614 9883458. SIMU 1976 3 21 24 0 0.7931955 41.97038 5.759464 -3.5493124E+07 SIMU 1976 3 22 6 0 0.7929860 41.18497 5.751154 -3.0465614E+07 SIMU 1976 3 22 12 0 0.7926807 46.73924 5.743453 1.7047364E+07 @@ -355,18 +355,18 @@ SIMU 1976 3 22 24 0 0.7918422 42.95885 5.728131 -1.4853230E+07 SIMU 1976 3 23 6 0 0.7912228 40.58896 5.724424 -2.5537290E+07 SIMU 1976 3 23 12 0 0.7905225 47.25793 5.721269 2.8668960E+07 SIMU 1976 3 23 18 0 0.7897589 46.42865 5.716682 2.8338244E+07 -SIMU 1976 3 23 24 0 0.7889336 44.92815 5.712003 -9747096. -SIMU 1976 3 24 6 0 0.7879614 46.01321 5.705715 6820741. +SIMU 1976 3 23 24 0 0.7889336 44.92815 5.712003 -9747096. +SIMU 1976 3 24 6 0 0.7879614 46.01321 5.705715 6820741. SIMU 1976 3 24 12 0 0.7869193 52.53497 5.700133 5.5909400E+07 SIMU 1976 3 24 18 0 0.7858253 50.68077 5.693494 5.0280552E+07 -SIMU 1976 3 24 24 0 0.7846809 47.08441 5.687445 -3315738. +SIMU 1976 3 24 24 0 0.7846809 47.08441 5.687445 -3315738. SIMU 1976 3 25 6 0 0.7834077 44.12849 5.681393 -2.7348052E+07 -SIMU 1976 3 25 12 0 0.7820784 48.75908 5.676113 9584211. +SIMU 1976 3 25 12 0 0.7820784 48.75908 5.676113 9584211. SIMU 1976 3 25 18 0 0.7807078 48.63884 5.670557 1.2696018E+07 SIMU 1976 3 25 24 0 0.7792971 47.46568 5.665522 -1.5880412E+07 SIMU 1976 3 26 6 0 0.7814740 47.56243 5.661014 -1.4647850E+07 -SIMU 1976 3 26 12 0 0.7761917 48.35303 5.656819 -7751081. -SIMU 1976 3 26 18 0 0.7748151 47.92815 5.652716 -6784824. +SIMU 1976 3 26 12 0 0.7761917 48.35303 5.656819 -7751081. +SIMU 1976 3 26 18 0 0.7748151 47.92815 5.652716 -6784824. SIMU 1976 3 26 24 0 0.7734550 46.65198 5.648812 -1.8016930E+07 SIMU 1976 3 27 6 0 0.7720282 45.42798 5.645170 -2.3694500E+07 SIMU 1976 3 27 12 0 0.7705547 52.93659 5.641841 3.4148188E+07 @@ -374,15 +374,15 @@ SIMU 1976 3 27 18 0 0.7690504 50.72863 5.638113 3.2991048E+07 SIMU 1976 3 27 24 0 0.7675132 47.47163 5.634801 -1.5712502E+07 SIMU 1976 3 28 6 0 0.7657845 45.20079 5.631865 -2.6802896E+07 SIMU 1976 3 28 12 0 0.7639116 49.88422 5.628957 1.1473984E+07 -SIMU 1976 3 28 18 0 0.7620121 48.97796 5.625787 7406810. +SIMU 1976 3 28 18 0 0.7620121 48.97796 5.625787 7406810. SIMU 1976 3 28 24 0 0.7604238 47.49491 5.623000 -2.0615648E+07 SIMU 1976 3 29 6 0 0.7587393 47.51015 5.620539 -1.0259896E+07 -SIMU 1976 3 29 12 0 0.7572042 47.16862 5.618056 -6762335. -SIMU 1976 3 29 18 0 0.7605649 46.80320 5.615767 -4887181. +SIMU 1976 3 29 12 0 0.7572042 47.16862 5.618056 -6762335. +SIMU 1976 3 29 18 0 0.7605649 46.80320 5.615767 -4887181. SIMU 1976 3 29 24 0 0.7670414 45.64550 5.613661 -1.1601967E+07 SIMU 1976 3 30 6 0 0.7631183 42.82633 5.610643 -2.8972162E+07 -SIMU 1976 3 30 12 0 0.7655277 47.14031 5.608181 6218639. -SIMU 1976 3 30 18 0 0.7685419 45.63046 5.605515 4351788. +SIMU 1976 3 30 12 0 0.7655277 47.14031 5.608181 6218639. +SIMU 1976 3 30 18 0 0.7685419 45.63046 5.605515 4351788. SIMU 1976 3 30 24 0 0.7712246 43.53838 5.603056 -2.5440546E+07 SIMU 1976 3 31 6 0 0.7735100 43.39014 5.600821 -2.1478078E+07 SIMU 1976 3 31 12 0 0.7755176 48.21188 5.598784 1.6549398E+07 @@ -397,8 +397,8 @@ SIMU 1976 4 2 12 0 0.7831374 51.85329 5.584793 3.2974238E+07 SIMU 1976 4 2 18 0 0.7832654 51.30020 5.583063 3.2635470E+07 SIMU 1976 4 2 24 0 0.7832673 48.78926 5.581633 -1.7139088E+07 SIMU 1976 4 3 6 0 0.7830568 46.88587 5.580532 -3.1565966E+07 -SIMU 1976 4 3 12 0 0.7827227 51.25857 5.579642 7403646. -SIMU 1976 4 3 18 0 0.7822867 49.46279 5.578411 7303251. +SIMU 1976 4 3 12 0 0.7827227 51.25857 5.579642 7403646. +SIMU 1976 4 3 18 0 0.7822867 49.46279 5.578411 7303251. SIMU 1976 4 3 24 0 0.7817546 46.43712 5.577346 -2.7885886E+07 SIMU 1976 4 4 6 0 0.7810297 46.03103 5.576464 -2.3455352E+07 SIMU 1976 4 4 12 0 0.7802300 53.66370 5.575768 3.7984632E+07 @@ -413,8 +413,8 @@ SIMU 1976 4 6 12 0 0.7703534 56.76424 5.569218 3.3368230E+07 SIMU 1976 4 6 18 0 0.7687535 55.49616 5.568240 3.0022072E+07 SIMU 1976 4 6 24 0 0.7671001 53.03038 5.567496 -1.7090310E+07 SIMU 1976 4 7 6 0 0.7651578 51.54382 5.566976 -2.6972580E+07 -SIMU 1976 4 7 12 0 0.7630987 53.87653 5.566539 -7122782. -SIMU 1976 4 7 18 0 0.7609931 53.63435 5.565902 -3373325. +SIMU 1976 4 7 12 0 0.7630987 53.87653 5.566539 -7122782. +SIMU 1976 4 7 18 0 0.7609931 53.63435 5.565902 -3373325. SIMU 1976 4 7 24 0 0.7588431 51.34180 5.565342 -2.5201774E+07 SIMU 1976 4 8 6 0 0.7564426 50.70215 5.564920 -2.3961338E+07 SIMU 1976 4 8 12 0 0.7541230 58.35337 5.564703 3.5715668E+07 @@ -439,26 +439,26 @@ SIMU 1976 4 12 24 0 0.7039658 49.91594 5.556997 -1.9427582E+07 SIMU 1976 4 13 6 0 0.7002482 48.69578 5.556784 -2.1393460E+07 SIMU 1976 4 13 12 0 0.6967469 56.77123 5.556432 3.2731292E+07 SIMU 1976 4 13 18 0 0.6932292 56.31489 5.555770 3.5519984E+07 -SIMU 1976 4 13 24 0 0.6896931 53.02139 5.555402 -9700104. -SIMU 1976 4 14 6 0 0.6866010 53.42394 5.555341 -3111273. +SIMU 1976 4 13 24 0 0.6896931 53.02139 5.555402 -9700104. +SIMU 1976 4 14 6 0 0.6866010 53.42394 5.555341 -3111273. SIMU 1976 4 14 12 0 0.6831267 59.33836 5.555136 3.2929436E+07 SIMU 1976 4 14 18 0 0.6796775 59.22460 5.554647 3.3426392E+07 -SIMU 1976 4 14 24 0 0.6789448 56.87212 5.554926 -421275.2 -SIMU 1976 4 15 6 0 0.6822549 57.52593 5.556242 439774.0 +SIMU 1976 4 14 24 0 0.6789448 56.87212 5.554926 -421275.2 +SIMU 1976 4 15 6 0 0.6822549 57.52593 5.556242 439774.0 SIMU 1976 4 15 12 0 0.6778098 63.90020 5.555517 2.8981788E+07 SIMU 1976 4 15 18 0 0.6769684 64.13007 5.555364 2.6612574E+07 -SIMU 1976 4 15 24 0 0.6759933 62.67886 5.555246 -2689431. -SIMU 1976 4 16 6 0 0.6742433 64.46558 5.555977 8622426. +SIMU 1976 4 15 24 0 0.6759933 62.67886 5.555246 -2689431. +SIMU 1976 4 16 6 0 0.6742433 64.46558 5.555977 8622426. SIMU 1976 4 16 12 0 0.6727788 70.76259 5.557030 4.3421368E+07 SIMU 1976 4 16 18 0 0.6711766 69.35081 5.557050 3.1223146E+07 -SIMU 1976 4 16 24 0 0.6694479 66.09668 5.557009 -9094623. +SIMU 1976 4 16 24 0 0.6694479 66.09668 5.557009 -9094623. SIMU 1976 4 17 6 0 0.6682080 62.76033 5.556440 -2.6221836E+07 SIMU 1976 4 17 12 0 0.6791754 63.18653 5.558922 -1.0111928E+07 -SIMU 1976 4 17 18 0 0.6828505 62.89878 5.559621 -4338544. +SIMU 1976 4 17 18 0 0.6828505 62.89878 5.559621 -4338544. SIMU 1976 4 17 24 0 0.6870024 62.35497 5.559551 -1.3619106E+07 -SIMU 1976 4 18 6 0 0.6873006 61.79854 5.559105 -9545677. +SIMU 1976 4 18 6 0 0.6873006 61.79854 5.559105 -9545677. SIMU 1976 4 18 12 0 0.6954516 67.10356 5.560534 1.9261120E+07 -SIMU 1976 4 18 18 0 0.7033113 65.22858 5.560676 9894324. +SIMU 1976 4 18 18 0 0.7033113 65.22858 5.560676 9894324. SIMU 1976 4 18 24 0 0.7102587 61.24307 5.560524 -3.0891156E+07 SIMU 1976 4 19 6 0 0.7160481 60.23217 5.560700 -2.6796902E+07 SIMU 1976 4 19 12 0 0.7210870 66.20204 5.561491 2.3194568E+07 @@ -513,8 +513,8 @@ SIMU 1976 5 1 12 0 0.9524922 59.56753 5.563526 3.9341084E+07 SIMU 1976 5 1 18 0 0.9470614 58.51807 5.562836 3.2861380E+07 SIMU 1976 5 1 24 0 0.9418136 54.77714 5.562046 -3.4277892E+07 SIMU 1976 5 2 6 0 1.001964 53.10336 5.562638 -4.0345032E+07 -SIMU 1976 5 2 12 0 1.010521 55.19504 5.563679 -495944.0 -SIMU 1976 5 2 18 0 1.006356 53.83526 5.563547 2854112. +SIMU 1976 5 2 12 0 1.010521 55.19504 5.563679 -495944.0 +SIMU 1976 5 2 18 0 1.006356 53.83526 5.563547 2854112. SIMU 1976 5 2 24 0 1.000937 50.69932 5.563179 -3.4910796E+07 SIMU 1976 5 3 6 0 0.9893308 49.04585 5.562936 -4.1360212E+07 SIMU 1976 5 3 12 0 0.9830669 55.43445 5.563736 4.1949616E+07 @@ -527,7 +527,7 @@ SIMU 1976 5 4 24 0 0.9437851 53.19838 5.561618 -1.5035075E+07 SIMU 1976 5 5 6 0 0.9322252 54.63073 5.561630 1.2011198E+07 SIMU 1976 5 5 12 0 0.9254209 58.03807 5.561834 4.7653484E+07 SIMU 1976 5 5 18 0 0.9196413 58.08668 5.561321 3.6419664E+07 -SIMU 1976 5 5 24 0 0.9140282 55.83415 5.560778 -7916611. +SIMU 1976 5 5 24 0 0.9140282 55.83415 5.560778 -7916611. SIMU 1976 5 6 6 0 0.9036369 53.96976 5.560407 -2.5934058E+07 SIMU 1976 5 6 12 0 0.8972145 59.32893 5.560900 3.3840488E+07 SIMU 1976 5 6 18 0 0.8916543 58.34956 5.560302 2.7823440E+07 @@ -553,12 +553,12 @@ SIMU 1976 5 11 12 0 0.8143151 67.33586 5.557020 4.5182748E+07 SIMU 1976 5 11 18 0 0.8132621 66.41695 5.556553 4.1538040E+07 SIMU 1976 5 11 24 0 0.8121226 62.62136 5.555984 -1.7003264E+07 SIMU 1976 5 12 6 0 0.8108869 60.40092 5.555800 -3.2888774E+07 -SIMU 1976 5 12 12 0 0.8095080 62.56414 5.555961 -6815269. -SIMU 1976 5 12 18 0 0.8080602 62.19374 5.555703 -7091707. +SIMU 1976 5 12 12 0 0.8095080 62.56414 5.555961 -6815269. +SIMU 1976 5 12 18 0 0.8080602 62.19374 5.555703 -7091707. SIMU 1976 5 12 24 0 0.8067305 60.29037 5.555460 -3.0691622E+07 SIMU 1976 5 13 6 0 0.8064491 60.11403 5.555715 -2.2155780E+07 -SIMU 1976 5 13 12 0 0.8064509 61.49439 5.556119 -6594414. -SIMU 1976 5 13 18 0 0.8063965 60.78276 5.556213 -2177317. +SIMU 1976 5 13 12 0 0.8064509 61.49439 5.556119 -6594414. +SIMU 1976 5 13 18 0 0.8063965 60.78276 5.556213 -2177317. SIMU 1976 5 13 24 0 0.8062637 58.64697 5.556134 -2.0123418E+07 SIMU 1976 5 14 6 0 0.8059162 58.70740 5.556206 -1.8928820E+07 SIMU 1976 5 14 12 0 0.8054999 63.01476 5.556598 1.9894236E+07 @@ -569,8 +569,8 @@ SIMU 1976 5 15 12 0 0.8030831 59.11757 5.556012 -1.8401204E+07 SIMU 1976 5 15 18 0 0.8026431 59.07173 5.555992 -1.3636082E+07 SIMU 1976 5 15 24 0 0.8019890 58.13171 5.555873 -2.2665594E+07 SIMU 1976 5 16 6 0 0.6747134 56.52880 5.553444 -2.3999476E+07 -SIMU 1976 5 16 12 0 0.6824770 58.22295 5.554802 -9159020. -SIMU 1976 5 16 18 0 0.6815952 57.47319 5.554062 -8074471. +SIMU 1976 5 16 12 0 0.6824770 58.22295 5.554802 -9159020. +SIMU 1976 5 16 18 0 0.6815952 57.47319 5.554062 -8074471. SIMU 1976 5 16 24 0 0.7224519 54.67968 5.557324 -2.3608878E+07 SIMU 1976 5 17 6 0 0.8644086 55.50840 5.558327 -2.8581012E+07 SIMU 1976 5 17 12 0 0.8763982 62.01012 5.559523 3.7172252E+07 @@ -597,8 +597,8 @@ SIMU 1976 5 22 12 0 0.7683466 64.32526 5.556421 -2.6332306E+07 SIMU 1976 5 22 18 0 0.7755263 63.67011 5.556025 -2.0044834E+07 SIMU 1976 5 22 24 0 0.7816272 62.17667 5.556095 -2.6954682E+07 SIMU 1976 5 23 6 0 0.7892515 61.89210 5.555958 -2.3207778E+07 -SIMU 1976 5 23 12 0 0.7866829 64.01818 5.556340 918958.4 -SIMU 1976 5 23 18 0 0.7833583 63.08671 5.556155 4773093. +SIMU 1976 5 23 12 0 0.7866829 64.01818 5.556340 918958.4 +SIMU 1976 5 23 18 0 0.7833583 63.08671 5.556155 4773093. SIMU 1976 5 23 24 0 0.7798313 60.29329 5.555777 -2.0020424E+07 SIMU 1976 5 24 6 0 0.7711717 59.85672 5.555051 -1.9820136E+07 SIMU 1976 5 24 12 0 0.7663074 66.51103 5.555388 3.9326384E+07 @@ -681,31 +681,31 @@ SIMU 1976 6 12 12 0 0.6559227 79.17432 5.549924 2.4577934E+07 SIMU 1976 6 12 18 0 0.6547403 78.17436 5.549547 2.0633438E+07 SIMU 1976 6 12 24 0 0.6551464 73.35950 5.549522 -2.0871880E+07 SIMU 1976 6 13 6 0 0.6549066 71.28883 5.549638 -3.5896348E+07 -SIMU 1976 6 13 12 0 0.6545321 76.72098 5.550215 7912949. +SIMU 1976 6 13 12 0 0.6545321 76.72098 5.550215 7912949. SIMU 1976 6 13 18 0 0.6685426 75.73503 5.554291 1.6031168E+07 SIMU 1976 6 13 24 0 0.6582643 70.78479 5.550980 -2.7711694E+07 SIMU 1976 6 14 6 0 0.6603191 70.93432 5.551619 -3.0584748E+07 SIMU 1976 6 14 12 0 0.6624450 76.20059 5.552615 1.1782593E+07 -SIMU 1976 6 14 18 0 0.6639959 75.06334 5.552543 7601471. +SIMU 1976 6 14 18 0 0.6639959 75.06334 5.552543 7601471. SIMU 1976 6 14 24 0 0.6692956 70.89763 5.553131 -3.1256988E+07 SIMU 1976 6 15 6 0 0.6667573 70.15511 5.552403 -3.1890798E+07 -SIMU 1976 6 15 12 0 0.6677718 75.27338 5.552957 9169851. -SIMU 1976 6 15 18 0 0.6686350 73.86320 5.552619 5911406. +SIMU 1976 6 15 12 0 0.6677718 75.27338 5.552957 9169851. +SIMU 1976 6 15 18 0 0.6686350 73.86320 5.552619 5911406. SIMU 1976 6 15 24 0 0.6693462 68.64345 5.552065 -3.8486908E+07 SIMU 1976 6 16 6 0 0.6701037 66.27302 5.552003 -4.9980652E+07 -SIMU 1976 6 16 12 0 0.6705265 72.36515 5.552522 1966306. -SIMU 1976 6 16 18 0 0.6708350 71.32629 5.552179 7812066. +SIMU 1976 6 16 12 0 0.6705265 72.36515 5.552522 1966306. +SIMU 1976 6 16 18 0 0.6708350 71.32629 5.552179 7812066. SIMU 1976 6 16 24 0 0.6710367 66.41796 5.551637 -3.3720020E+07 SIMU 1976 6 17 6 0 0.6707861 67.59657 5.551633 -2.1043544E+07 SIMU 1976 6 17 12 0 0.6706750 73.11227 5.551957 2.2154544E+07 SIMU 1976 6 17 18 0 0.6704656 72.01077 5.551499 1.9730552E+07 SIMU 1976 6 17 24 0 0.6701627 67.15015 5.550919 -2.5465554E+07 SIMU 1976 6 18 6 0 0.6699793 65.95064 5.550844 -3.4136544E+07 -SIMU 1976 6 18 12 0 0.6695296 71.56123 5.551157 9476311. -SIMU 1976 6 18 18 0 0.6689845 70.04117 5.550782 9446207. +SIMU 1976 6 18 12 0 0.6695296 71.56123 5.551157 9476311. +SIMU 1976 6 18 18 0 0.6689845 70.04117 5.550782 9446207. SIMU 1976 6 18 24 0 0.6683736 64.66694 5.550305 -3.5307056E+07 SIMU 1976 6 19 6 0 0.6676772 62.86765 5.550232 -4.4124628E+07 -SIMU 1976 6 19 12 0 0.6668960 69.20610 5.550536 7414375. +SIMU 1976 6 19 12 0 0.6668960 69.20610 5.550536 7414375. SIMU 1976 6 19 18 0 0.6660573 68.07554 5.550189 1.2725847E+07 SIMU 1976 6 19 24 0 0.6651635 62.66450 5.549766 -3.2203818E+07 SIMU 1976 6 20 6 0 0.6639969 62.92485 5.549724 -2.7279914E+07 @@ -724,7 +724,7 @@ SIMU 1976 6 23 6 0 0.6476260 63.91222 5.548015 -2.6766426E+07 SIMU 1976 6 23 12 0 0.6459371 70.24121 5.548166 1.7360068E+07 SIMU 1976 6 23 18 0 0.6442152 69.56856 5.547836 1.7098036E+07 SIMU 1976 6 23 24 0 0.6424475 65.51522 5.547534 -2.1580800E+07 -SIMU 1976 6 24 6 0 0.6408063 68.00972 5.547707 -4977088. +SIMU 1976 6 24 6 0 0.6408063 68.00972 5.547707 -4977088. SIMU 1976 6 24 12 0 0.6420285 74.04981 5.549039 3.7611248E+07 SIMU 1976 6 24 18 0 0.6400416 72.75575 5.548448 3.2294482E+07 SIMU 1976 6 24 24 0 0.6394262 67.37583 5.548304 -1.3965116E+07 @@ -806,15 +806,15 @@ SIMU 1976 7 13 18 0 0.5160317 90.26653 5.542402 2.2437564E+07 SIMU 1976 7 13 24 0 0.5124956 83.41279 5.542144 -2.1427250E+07 SIMU 1976 7 14 6 0 0.5088194 82.04773 5.542037 -2.7924944E+07 SIMU 1976 7 14 12 0 0.5052453 90.66805 5.541983 1.3399472E+07 -SIMU 1976 7 14 18 0 0.5016587 88.38408 5.541710 9165788. +SIMU 1976 7 14 18 0 0.5016587 88.38408 5.541710 9165788. SIMU 1976 7 14 24 0 0.4980675 81.48021 5.541531 -2.9526940E+07 SIMU 1976 7 15 6 0 0.4948420 81.76094 5.541629 -2.4695306E+07 SIMU 1976 7 15 12 0 0.4913791 89.64969 5.541574 1.2385180E+07 SIMU 1976 7 15 18 0 0.4942828 86.78952 5.543625 1.2558482E+07 SIMU 1976 7 15 24 0 0.4844375 79.67560 5.541285 -2.9344150E+07 SIMU 1976 7 16 6 0 0.4807860 75.36061 5.541280 -4.1781824E+07 -SIMU 1976 7 16 12 0 0.4682733 85.32158 5.541031 6931759. -SIMU 1976 7 16 18 0 0.4535405 81.72481 5.540548 5624611. +SIMU 1976 7 16 12 0 0.4682733 85.32158 5.541031 6931759. +SIMU 1976 7 16 18 0 0.4535405 81.72481 5.540548 5624611. SIMU 1976 7 16 24 0 0.4400584 71.42564 5.540371 -3.4860364E+07 SIMU 1976 7 17 6 0 0.4257936 76.62756 5.539500 -1.3312731E+07 SIMU 1976 7 17 12 0 0.4112094 92.31277 5.537364 3.5068344E+07 @@ -825,28 +825,28 @@ SIMU 1976 7 18 12 0 0.3630886 89.56706 5.532371 1.8171452E+07 SIMU 1976 7 18 18 0 0.3531412 85.87677 5.531630 1.3306100E+07 SIMU 1976 7 18 24 0 0.3438720 75.27139 5.531883 -1.9959052E+07 SIMU 1976 7 19 6 0 0.3410550 75.02731 5.533341 -1.5526757E+07 -SIMU 1976 7 19 12 0 0.3285465 78.44379 5.529972 -5864442. -SIMU 1976 7 19 18 0 0.3215367 77.83275 5.529193 -3167155. +SIMU 1976 7 19 12 0 0.3285465 78.44379 5.529972 -5864442. +SIMU 1976 7 19 18 0 0.3215367 77.83275 5.529193 -3167155. SIMU 1976 7 19 24 0 0.3151200 73.82050 5.529002 -1.0866285E+07 -SIMU 1976 7 20 6 0 0.3136511 75.22862 5.530096 -7581807. +SIMU 1976 7 20 6 0 0.3136511 75.22862 5.530096 -7581807. SIMU 1976 7 20 12 0 0.3032159 85.31454 5.525273 1.3128913E+07 -SIMU 1976 7 20 18 0 0.3002526 82.51840 5.522258 8119951. +SIMU 1976 7 20 18 0 0.3002526 82.51840 5.522258 8119951. SIMU 1976 7 20 24 0 0.2973849 74.02446 5.523481 -1.1796409E+07 SIMU 1976 7 21 6 0 0.2939107 72.78670 5.523462 -1.2146674E+07 -SIMU 1976 7 21 12 0 0.2903775 84.24156 5.520190 9625373. -SIMU 1976 7 21 18 0 0.2871701 81.28770 5.520396 6181790. +SIMU 1976 7 21 12 0 0.2903775 84.24156 5.520190 9625373. +SIMU 1976 7 21 18 0 0.2871701 81.28770 5.520396 6181790. SIMU 1976 7 21 24 0 0.2842555 72.42857 5.522109 -1.2715252E+07 -SIMU 1976 7 22 6 0 0.2814678 73.59084 5.521461 -7673781. -SIMU 1976 7 22 12 0 0.2789392 83.35275 5.518492 8098461. -SIMU 1976 7 22 18 0 0.2765144 82.31496 5.518360 8836860. -SIMU 1976 7 22 24 0 0.2741598 74.04549 5.520161 -6273920. -SIMU 1976 7 23 6 0 0.2713564 76.40481 5.518964 -3235091. +SIMU 1976 7 22 6 0 0.2814678 73.59084 5.521461 -7673781. +SIMU 1976 7 22 12 0 0.2789392 83.35275 5.518492 8098461. +SIMU 1976 7 22 18 0 0.2765144 82.31496 5.518360 8836860. +SIMU 1976 7 22 24 0 0.2741598 74.04549 5.520161 -6273920. +SIMU 1976 7 23 6 0 0.2713564 76.40481 5.518964 -3235091. SIMU 1976 7 23 12 0 0.2687623 100.0706 5.509834 3.1877472E+07 SIMU 1976 7 23 18 0 0.2661704 96.21616 5.510904 2.7687080E+07 -SIMU 1976 7 23 24 0 0.2635612 78.38527 5.516870 -6799029. +SIMU 1976 7 23 24 0 0.2635612 78.38527 5.516870 -6799029. SIMU 1976 7 24 6 0 0.2600144 70.59380 5.518258 -1.8646426E+07 SIMU 1976 7 24 12 0 0.2567437 93.11257 5.510090 1.7916570E+07 -SIMU 1976 7 24 18 0 0.2533669 86.50562 5.511864 9921222. +SIMU 1976 7 24 18 0 0.2533669 86.50562 5.511864 9921222. SIMU 1976 7 24 24 0 0.2498952 69.37649 5.516726 -1.9914228E+07 SIMU 1976 7 25 6 0 0.2467015 72.09325 5.515405 -1.2179524E+07 SIMU 1976 7 25 12 0 0.2433193 95.88295 5.505455 1.9558756E+07 @@ -854,637 +854,637 @@ SIMU 1976 7 25 18 0 0.2399269 90.42314 5.507075 1.3259374E+07 SIMU 1976 7 25 24 0 0.2365287 73.76167 5.512652 -1.3943921E+07 SIMU 1976 7 26 6 0 0.2339273 72.73948 5.512640 -1.1743703E+07 SIMU 1976 7 26 12 0 0.2323063 87.95718 5.506826 1.0864084E+07 -SIMU 1976 7 26 18 0 0.2291673 84.31586 5.507048 4789379. +SIMU 1976 7 26 18 0 0.2291673 84.31586 5.507048 4789379. SIMU 1976 7 26 24 0 0.2262969 72.01053 5.510726 -1.2059526E+07 -SIMU 1976 7 27 6 0 0.2231293 72.85818 5.509269 -9364752. +SIMU 1976 7 27 6 0 0.2231293 72.85818 5.509269 -9364752. SIMU 1976 7 27 12 0 0.2200620 94.94079 5.498075 1.5248659E+07 -SIMU 1976 7 27 18 0 0.2169854 89.32647 5.499745 9731594. -SIMU 1976 7 27 24 0 0.2541680 75.59334 5.529692 -4152810. -SIMU 1976 7 28 6 0 0.2321609 72.61652 5.512686 -6277631. -SIMU 1976 7 28 12 0 0.2330156 87.72038 5.506943 7517622. -SIMU 1976 7 28 18 0 0.2333543 83.82273 5.508618 4186112. +SIMU 1976 7 27 18 0 0.2169854 89.32647 5.499745 9731594. +SIMU 1976 7 27 24 0 0.2541680 75.59334 5.529692 -4152810. +SIMU 1976 7 28 6 0 0.2321609 72.61652 5.512686 -6277631. +SIMU 1976 7 28 12 0 0.2330156 87.72038 5.506943 7517622. +SIMU 1976 7 28 18 0 0.2333543 83.82273 5.508618 4186112. SIMU 1976 7 28 24 0 0.2334413 71.60152 5.513045 -1.2925079E+07 SIMU 1976 7 29 6 0 0.2337176 71.75081 5.513131 -1.0698692E+07 SIMU 1976 7 29 12 0 0.2334927 94.11360 5.504048 1.6202200E+07 SIMU 1976 7 29 18 0 0.2329272 90.05401 5.505782 1.2901289E+07 SIMU 1976 7 29 24 0 0.2321440 74.57462 5.511726 -1.0474236E+07 -SIMU 1976 7 30 6 0 0.2306184 73.89405 5.511390 -9796140. +SIMU 1976 7 30 6 0 0.2306184 73.89405 5.511390 -9796140. SIMU 1976 7 30 12 0 0.2288487 96.93640 5.500557 1.8459814E+07 SIMU 1976 7 30 18 0 0.2268155 89.83000 5.503429 1.0533004E+07 SIMU 1976 7 30 24 0 0.2282496 73.22743 5.510817 -1.2838254E+07 SIMU 1976 7 31 6 0 0.2266619 71.02461 5.511228 -1.3489504E+07 SIMU 1976 7 31 12 0 0.2248638 91.92079 5.501945 1.2903436E+07 -SIMU 1976 7 31 18 0 0.2231397 84.14101 5.504905 5494085. +SIMU 1976 7 31 18 0 0.2231397 84.14101 5.504905 5494085. SIMU 1976 7 31 24 0 0.2215113 67.90843 5.510698 -1.6468540E+07 SIMU 1976 8 1 6 0 0.2194079 69.37971 5.509344 -1.1774388E+07 SIMU 1976 8 1 12 0 0.2174039 96.84788 5.495796 1.8623584E+07 SIMU 1976 8 1 18 0 0.2152387 88.41951 5.499516 1.0998954E+07 SIMU 1976 8 1 24 0 0.2129028 69.01788 5.507183 -1.4487018E+07 -SIMU 1976 8 2 6 0 0.2105080 70.83167 5.505612 -9831204. +SIMU 1976 8 2 6 0 0.2105080 70.83167 5.505612 -9831204. SIMU 1976 8 2 12 0 0.2079544 102.7418 5.486952 2.1691818E+07 SIMU 1976 8 2 18 0 0.2052906 94.18774 5.491586 1.5074082E+07 SIMU 1976 8 2 24 0 0.2025303 71.69342 5.502183 -1.1741261E+07 SIMU 1976 8 3 6 0 0.1996751 66.21689 5.503494 -1.4052479E+07 SIMU 1976 8 3 12 0 0.1967356 91.53456 5.489434 1.0329477E+07 -SIMU 1976 8 3 18 0 0.1937216 83.95465 5.492301 4716942. +SIMU 1976 8 3 18 0 0.1937216 83.95465 5.492301 4716942. SIMU 1976 8 3 24 0 0.1906380 67.34616 5.499314 -1.2743731E+07 -SIMU 1976 8 4 6 0 0.1872628 67.31355 5.497911 -9441671. -SIMU 1976 8 4 12 0 0.1838268 84.58102 5.487099 5192869. -SIMU 1976 8 4 18 0 0.1802697 78.55933 5.488691 1061794. -SIMU 1976 8 4 24 0 0.1766189 67.00521 5.493221 -9246339. -SIMU 1976 8 5 6 0 0.1731032 69.13235 5.490435 -5697992. -SIMU 1976 8 5 12 0 0.1694835 70.88154 5.389438 4080216. -SIMU 1976 8 5 18 0 0.1658137 71.03152 5.285555 -4773181. -SIMU 1976 8 5 24 0 0.1620956 62.43964 5.296597 -9866971. +SIMU 1976 8 4 6 0 0.1872628 67.31355 5.497911 -9441671. +SIMU 1976 8 4 12 0 0.1838268 84.58102 5.487099 5192869. +SIMU 1976 8 4 18 0 0.1802697 78.55933 5.488691 1061794. +SIMU 1976 8 4 24 0 0.1766189 67.00521 5.493221 -9246339. +SIMU 1976 8 5 6 0 0.1731032 69.13235 5.490435 -5697992. +SIMU 1976 8 5 12 0 0.1694835 70.88154 5.389438 4080216. +SIMU 1976 8 5 18 0 0.1658137 71.03152 5.285555 -4773181. +SIMU 1976 8 5 24 0 0.1620956 62.43964 5.296597 -9866971. SIMU 1976 8 6 6 0 0.1578494 58.70766 5.303165 -1.0326364E+07 -SIMU 1976 8 6 12 0 0.1535523 71.48152 5.277750 -3166715. -SIMU 1976 8 6 18 0 0.1490997 70.28153 5.279510 -3110619. +SIMU 1976 8 6 12 0 0.1535523 71.48152 5.277750 -3166715. +SIMU 1976 8 6 18 0 0.1490997 70.28153 5.279510 -3110619. SIMU 1976 8 6 24 0 0.1444768 51.78964 5.318360 -1.1948763E+07 SIMU 1976 8 7 6 0 0.1403652 43.80766 5.340560 -1.3791032E+07 -SIMU 1976 8 7 12 0 0.1360981 70.08153 5.279929 -2701610. -SIMU 1976 8 7 18 0 0.1317904 72.93153 5.275013 -944805.1 -SIMU 1976 8 7 24 0 0.1274415 53.33964 5.314708 -8944285. +SIMU 1976 8 7 12 0 0.1360981 70.08153 5.279929 -2701610. +SIMU 1976 8 7 18 0 0.1317904 72.93153 5.275013 -944805.1 +SIMU 1976 8 7 24 0 0.1274415 53.33964 5.314708 -8944285. SIMU 1976 8 8 6 0 0.1225022 44.80766 5.335962 -1.0679479E+07 -SIMU 1976 8 8 12 0 0.1174326 71.08153 5.276250 -2112798. -SIMU 1976 8 8 18 0 0.1121323 75.58154 5.268746 -584766.3 -SIMU 1976 8 8 24 0 0.1065658 61.78964 5.293362 -4617329. -SIMU 1976 8 9 6 0 0.1004819 55.75766 5.305761 -5044592. -SIMU 1976 8 9 12 0 9.3992010E-02 83.68153 5.255707 978643.4 -SIMU 1976 8 9 18 0 8.6985096E-02 87.58154 5.250594 1797106. -SIMU 1976 8 9 24 0 7.9364382E-02 70.28963 5.274197 -1340803. -SIMU 1976 8 10 6 0 7.1696661E-02 62.80766 5.287869 -1736128. -SIMU 1976 8 10 12 0 6.4173289E-02 80.73152 5.256701 246334.0 -SIMU 1976 8 10 18 0 5.6763306E-02 81.88154 5.254156 264438.2 -SIMU 1976 8 10 24 0 4.9369376E-02 65.78963 5.278628 -851358.9 -SIMU 1976 8 11 6 0 4.1590787E-02 58.80766 5.290253 -842845.9 -SIMU 1976 8 11 12 0 3.3281635E-02 80.58154 5.248286 18434.91 -SIMU 1976 8 11 18 0 2.9916262E-02 82.88154 5.261706 101349.7 -SIMU 1976 8 11 24 0 3.0534286E-02 66.78963 5.268066 -336127.8 -SIMU 1976 8 12 6 0 2.7719308E-02 59.80766 5.291016 -334808.8 -SIMU 1976 8 12 12 0 2.2797752E-02 81.58154 5.253386 26055.64 -SIMU 1976 8 12 18 0 1.7042840E-02 83.43153 5.248032 33536.88 -SIMU 1976 8 12 24 0 1.4057538E-02 65.53964 5.270841 -77433.45 -SIMU 1976 8 13 6 0 6.5504415E-03 57.80766 5.272329 -44380.07 -SIMU 1976 8 13 12 0 1.3624813E-03 77.33153 5.168148 2390.271 -SIMU 1976 8 13 18 0 0.000000 79.35045 -1.0000000E+30 -266.9664 -SIMU 1976 8 13 24 0 0.000000 64.23964 -1.0000000E+30 0.000000 -SIMU 1976 8 14 6 0 0.000000 57.80766 -1.0000000E+30 0.000000 -SIMU 1976 8 14 12 0 0.000000 72.73153 -1.0000000E+30 0.000000 -SIMU 1976 8 14 18 0 0.000000 72.58153 -1.0000000E+30 0.000000 -SIMU 1976 8 14 24 0 0.000000 55.28964 -1.0000000E+30 0.000000 -SIMU 1976 8 15 6 0 0.000000 47.80766 -1.0000000E+30 0.000000 -SIMU 1976 8 15 12 0 0.000000 65.73152 -1.0000000E+30 0.000000 -SIMU 1976 8 15 18 0 0.000000 67.38153 -1.0000000E+30 0.000000 -SIMU 1976 8 15 24 0 0.000000 53.03964 -1.0000000E+30 0.000000 -SIMU 1976 8 16 6 0 0.000000 46.80766 -1.0000000E+30 0.000000 -SIMU 1976 8 16 12 0 0.000000 73.08153 -1.0000000E+30 0.000000 -SIMU 1976 8 16 18 0 0.000000 77.73152 -1.0000000E+30 0.000000 -SIMU 1976 8 16 24 0 0.000000 64.53963 -1.0000000E+30 0.000000 -SIMU 1976 8 17 6 0 0.000000 58.75766 -1.0000000E+30 0.000000 -SIMU 1976 8 17 12 0 0.000000 81.33154 -1.0000000E+30 0.000000 -SIMU 1976 8 17 18 0 0.000000 84.58153 -1.0000000E+30 0.000000 -SIMU 1976 8 17 24 0 0.000000 70.78964 -1.0000000E+30 0.000000 -SIMU 1976 8 18 6 0 0.000000 64.75766 -1.0000000E+30 0.000000 -SIMU 1976 8 18 12 0 0.000000 81.98154 -1.0000000E+30 0.000000 -SIMU 1976 8 18 18 0 0.000000 84.23153 -1.0000000E+30 0.000000 -SIMU 1976 8 18 24 0 0.000000 72.73964 -1.0000000E+30 0.000000 -SIMU 1976 8 19 6 0 0.000000 67.75765 -1.0000000E+30 0.000000 -SIMU 1976 8 19 12 0 0.000000 80.48153 -1.0000000E+30 0.000000 -SIMU 1976 8 19 18 0 0.000000 80.23152 -1.0000000E+30 0.000000 -SIMU 1976 8 19 24 0 0.000000 65.23964 -1.0000000E+30 0.000000 -SIMU 1976 8 20 6 0 0.000000 58.80766 -1.0000000E+30 0.000000 -SIMU 1976 8 20 12 0 0.000000 80.58154 -1.0000000E+30 0.000000 -SIMU 1976 8 20 18 0 0.000000 82.58153 -1.0000000E+30 0.000000 -SIMU 1976 8 20 24 0 0.000000 65.28963 -1.0000000E+30 0.000000 -SIMU 1976 8 21 6 0 0.000000 57.80766 -1.0000000E+30 0.000000 -SIMU 1976 8 21 12 0 0.000000 82.58153 -1.0000000E+30 0.000000 -SIMU 1976 8 21 18 0 0.000000 85.73153 -1.0000000E+30 0.000000 -SIMU 1976 8 21 24 0 0.000000 69.03964 -1.0000000E+30 0.000000 -SIMU 1976 8 22 6 0 0.000000 61.80766 -1.0000000E+30 0.000000 -SIMU 1976 8 22 12 0 0.000000 80.53153 -1.0000000E+30 0.000000 -SIMU 1976 8 22 18 0 0.000000 82.73153 -1.0000000E+30 0.000000 -SIMU 1976 8 22 24 0 0.000000 69.53963 -1.0000000E+30 0.000000 -SIMU 1976 8 23 6 0 0.000000 63.75766 -1.0000000E+30 0.000000 -SIMU 1976 8 23 12 0 0.000000 77.98153 -1.0000000E+30 0.000000 -SIMU 1976 8 23 18 0 0.000000 78.93153 -1.0000000E+30 0.000000 -SIMU 1976 8 23 24 0 0.000000 66.23965 -1.0000000E+30 0.000000 -SIMU 1976 8 24 6 0 0.000000 60.75766 -1.0000000E+30 0.000000 -SIMU 1976 8 24 12 0 0.000000 76.48153 -1.0000000E+30 0.000000 -SIMU 1976 8 24 18 0 0.000000 77.73152 -1.0000000E+30 0.000000 -SIMU 1976 8 24 24 0 0.000000 64.53963 -1.0000000E+30 0.000000 -SIMU 1976 8 25 6 0 0.000000 58.75766 -1.0000000E+30 0.000000 -SIMU 1976 8 25 12 0 0.000000 80.58154 -1.0000000E+30 0.000000 -SIMU 1976 8 25 18 0 0.000000 83.08153 -1.0000000E+30 0.000000 -SIMU 1976 8 25 24 0 0.000000 67.48964 -1.0000000E+30 0.000000 -SIMU 1976 8 26 6 0 0.000000 60.80045 -1.0000000E+30 0.000000 -SIMU 1976 8 26 12 0 0.000000 78.73152 -1.0000000E+30 0.000000 -SIMU 1976 8 26 18 0 0.000000 81.38154 -1.0000000E+30 0.000000 -SIMU 1976 8 26 24 0 0.000000 70.48964 -1.0000000E+30 0.000000 -SIMU 1976 8 27 6 0 0.000000 65.75766 -1.0000000E+30 0.000000 -SIMU 1976 8 27 12 0 0.000000 74.63153 -1.0000000E+30 0.000000 -SIMU 1976 8 27 18 0 0.000000 72.58153 -1.0000000E+30 0.000000 -SIMU 1976 8 27 24 0 0.000000 55.28964 -1.0000000E+30 0.000000 -SIMU 1976 8 28 6 0 0.000000 47.80766 -1.0000000E+30 0.000000 -SIMU 1976 8 28 12 0 0.000000 70.33154 -1.0000000E+30 0.000000 -SIMU 1976 8 28 18 0 0.000000 71.43153 -1.0000000E+30 0.000000 -SIMU 1976 8 28 24 0 0.000000 50.03964 -1.0000000E+30 0.000000 -SIMU 1976 8 29 6 0 0.000000 40.85766 -1.0000000E+30 0.000000 -SIMU 1976 8 29 12 0 0.000000 77.78152 -1.0000000E+30 0.000000 -SIMU 1976 8 29 18 0 0.000000 83.23153 -1.0000000E+30 0.000000 -SIMU 1976 8 29 24 0 0.000000 61.33964 -1.0000000E+30 0.000000 -SIMU 1976 8 30 6 0 0.000000 51.85766 -1.0000000E+30 0.000000 -SIMU 1976 8 30 12 0 0.000000 77.33153 -1.0000000E+30 0.000000 -SIMU 1976 8 30 18 0 0.000000 80.43153 -1.0000000E+30 0.000000 -SIMU 1976 8 30 24 0 0.000000 62.53964 -1.0000000E+30 0.000000 -SIMU 1976 8 31 6 0 0.000000 54.80766 -1.0000000E+30 0.000000 -SIMU 1976 8 31 12 0 0.000000 73.53152 -1.0000000E+30 0.000000 -SIMU 1976 8 31 18 0 0.000000 75.73154 -1.0000000E+30 0.000000 -SIMU 1976 8 31 24 0 0.000000 62.53964 -1.0000000E+30 0.000000 -SIMU 1976 9 1 6 0 0.000000 56.75766 -1.0000000E+30 0.000000 -SIMU 1976 9 1 12 0 0.000000 74.73153 -1.0000000E+30 0.000000 -SIMU 1976 9 1 18 0 0.000000 75.28154 -1.0000000E+30 0.000000 -SIMU 1976 9 1 24 0 0.000000 56.78964 -1.0000000E+30 0.000000 -SIMU 1976 9 2 6 0 0.000000 48.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 2 12 0 0.000000 79.68152 -1.0000000E+30 0.000000 -SIMU 1976 9 2 18 0 0.000000 85.08153 -1.0000000E+30 0.000000 -SIMU 1976 9 2 24 0 0.000000 69.48965 -1.0000000E+30 0.000000 -SIMU 1976 9 3 6 0 0.000000 62.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 3 12 0 0.000000 76.98153 -1.0000000E+30 0.000000 -SIMU 1976 9 3 18 0 0.000000 75.73154 -1.0000000E+30 0.000000 -SIMU 1976 9 3 24 0 0.000000 55.53964 -1.0000000E+30 0.000000 -SIMU 1976 9 4 6 0 0.000000 46.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 4 12 0 0.000000 77.68153 -1.0000000E+30 0.000000 -SIMU 1976 9 4 18 0 0.000000 80.93153 -1.0000000E+30 0.000000 -SIMU 1976 9 4 24 0 0.000000 57.83964 -1.0000000E+30 0.000000 -SIMU 1976 9 5 6 0 0.000000 47.85766 -1.0000000E+30 0.000000 -SIMU 1976 9 5 12 0 0.000000 79.43153 -1.0000000E+30 0.000000 -SIMU 1976 9 5 18 0 0.000000 84.43152 -1.0000000E+30 0.000000 -SIMU 1976 9 5 24 0 0.000000 66.53964 -1.0000000E+30 0.000000 -SIMU 1976 9 6 6 0 0.000000 58.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 6 12 0 0.000000 82.83154 -1.0000000E+30 0.000000 -SIMU 1976 9 6 18 0 0.000000 85.28153 -1.0000000E+30 0.000000 -SIMU 1976 9 6 24 0 0.000000 66.78964 -1.0000000E+30 0.000000 -SIMU 1976 9 7 6 0 0.000000 58.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 7 12 0 0.000000 76.73154 -1.0000000E+30 0.000000 -SIMU 1976 9 7 18 0 0.000000 77.58154 -1.0000000E+30 0.000000 -SIMU 1976 9 7 24 0 0.000000 60.28964 -1.0000000E+30 0.000000 -SIMU 1976 9 8 6 0 0.000000 52.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 8 12 0 0.000000 63.13153 -1.0000000E+30 0.000000 -SIMU 1976 9 8 18 0 0.000000 62.58154 -1.0000000E+30 0.000000 -SIMU 1976 9 8 24 0 0.000000 48.78964 -1.0000000E+30 0.000000 -SIMU 1976 9 9 6 0 0.000000 42.75766 -1.0000000E+30 0.000000 -SIMU 1976 9 9 12 0 0.000000 70.68153 -1.0000000E+30 0.000000 -SIMU 1976 9 9 18 0 0.000000 71.58153 -1.0000000E+30 0.000000 -SIMU 1976 9 9 24 0 0.000000 43.88964 -1.0000000E+30 0.000000 -SIMU 1976 9 10 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 9 10 12 0 0.000000 71.78153 -1.0000000E+30 0.000000 -SIMU 1976 9 10 18 0 0.000000 77.43153 -1.0000000E+30 0.000000 -SIMU 1976 9 10 24 0 0.000000 52.63964 -1.0000000E+30 0.000000 -SIMU 1976 9 11 6 0 0.000000 41.85766 -1.0000000E+30 0.000000 -SIMU 1976 9 11 12 0 0.000000 75.68153 -1.0000000E+30 0.000000 -SIMU 1976 9 11 18 0 0.000000 80.93153 -1.0000000E+30 0.000000 -SIMU 1976 9 11 24 0 0.000000 61.33964 -1.0000000E+30 0.000000 -SIMU 1976 9 12 6 0 0.000000 52.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 12 12 0 0.000000 72.33154 -1.0000000E+30 0.000000 -SIMU 1976 9 12 18 0 0.000000 75.23153 -1.0000000E+30 0.000000 -SIMU 1976 9 12 24 0 0.000000 63.73965 -1.0000000E+30 0.000000 -SIMU 1976 9 13 6 0 0.000000 58.75766 -1.0000000E+30 0.000000 -SIMU 1976 9 13 12 0 0.000000 72.23153 -1.0000000E+30 0.000000 -SIMU 1976 9 13 18 0 0.000000 73.23153 -1.0000000E+30 0.000000 -SIMU 1976 9 13 24 0 0.000000 61.73964 -1.0000000E+30 0.000000 -SIMU 1976 9 14 6 0 0.000000 56.75766 -1.0000000E+30 0.000000 -SIMU 1976 9 14 12 0 0.000000 67.88153 -1.0000000E+30 0.000000 -SIMU 1976 9 14 18 0 0.000000 66.43153 -1.0000000E+30 0.000000 -SIMU 1976 9 14 24 0 0.000000 48.53964 -1.0000000E+30 0.000000 -SIMU 1976 9 15 6 0 0.000000 40.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 15 12 0 0.000000 64.08154 -1.0000000E+30 0.000000 -SIMU 1976 9 15 18 0 0.000000 65.23152 -1.0000000E+30 0.000000 -SIMU 1976 9 15 24 0 0.000000 43.33964 -1.0000000E+30 0.000000 -SIMU 1976 9 16 6 0 0.000000 33.85766 -1.0000000E+30 0.000000 -SIMU 1976 9 16 12 0 0.000000 64.68153 -1.0000000E+30 0.000000 -SIMU 1976 9 16 18 0 0.000000 68.08154 -1.0000000E+30 0.000000 -SIMU 1976 9 16 24 0 0.000000 45.58964 -1.0000000E+30 0.000000 -SIMU 1976 9 17 6 0 0.000000 35.85766 -1.0000000E+30 0.000000 -SIMU 1976 9 17 12 0 0.000000 69.68153 -1.0000000E+30 0.000000 -SIMU 1976 9 17 18 0 0.000000 73.93152 -1.0000000E+30 0.000000 -SIMU 1976 9 17 24 0 0.000000 50.83964 -1.0000000E+30 0.000000 -SIMU 1976 9 18 6 0 0.000000 40.85766 -1.0000000E+30 0.000000 -SIMU 1976 9 18 12 0 0.000000 64.83153 -1.0000000E+30 0.000000 -SIMU 1976 9 18 18 0 0.000000 69.53154 -1.0000000E+30 0.000000 -SIMU 1976 9 18 24 0 0.000000 59.23964 -1.0000000E+30 0.000000 -SIMU 1976 9 19 6 0 0.000000 54.75045 -1.0000000E+30 0.000000 -SIMU 1976 9 19 12 0 0.000000 62.13153 -1.0000000E+30 0.000000 -SIMU 1976 9 19 18 0 0.000000 61.88153 -1.0000000E+30 0.000000 -SIMU 1976 9 19 24 0 0.000000 52.68964 -1.0000000E+30 0.000000 -SIMU 1976 9 20 6 0 0.000000 48.75766 -1.0000000E+30 0.000000 -SIMU 1976 9 20 12 0 0.000000 61.48153 -1.0000000E+30 0.000000 -SIMU 1976 9 20 18 0 0.000000 61.58154 -1.0000000E+30 0.000000 -SIMU 1976 9 20 24 0 0.000000 47.78964 -1.0000000E+30 0.000000 -SIMU 1976 9 21 6 0 0.000000 41.75766 -1.0000000E+30 0.000000 -SIMU 1976 9 21 12 0 0.000000 73.43153 -1.0000000E+30 0.000000 -SIMU 1976 9 21 18 0 0.000000 74.78154 -1.0000000E+30 0.000000 -SIMU 1976 9 21 24 0 0.000000 44.18964 -1.0000000E+30 0.000000 -SIMU 1976 9 22 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 9 22 12 0 0.000000 63.93153 -1.0000000E+30 0.000000 -SIMU 1976 9 22 18 0 0.000000 68.23152 -1.0000000E+30 0.000000 -SIMU 1976 9 22 24 0 0.000000 46.33964 -1.0000000E+30 0.000000 -SIMU 1976 9 23 6 0 0.000000 36.85766 -1.0000000E+30 0.000000 -SIMU 1976 9 23 12 0 0.000000 61.58154 -1.0000000E+30 0.000000 -SIMU 1976 9 23 18 0 0.000000 63.43153 -1.0000000E+30 0.000000 -SIMU 1976 9 23 24 0 0.000000 42.03964 -1.0000000E+30 0.000000 -SIMU 1976 9 24 6 0 0.000000 32.85766 -1.0000000E+30 0.000000 -SIMU 1976 9 24 12 0 0.000000 58.33153 -1.0000000E+30 0.000000 -SIMU 1976 9 24 18 0 0.000000 63.23153 -1.0000000E+30 0.000000 -SIMU 1976 9 24 24 0 0.000000 51.73964 -1.0000000E+30 0.000000 -SIMU 1976 9 25 6 0 0.000000 46.75766 -1.0000000E+30 0.000000 -SIMU 1976 9 25 12 0 0.000000 62.48154 -1.0000000E+30 0.000000 -SIMU 1976 9 25 18 0 0.000000 64.38153 -1.0000000E+30 0.000000 -SIMU 1976 9 25 24 0 0.000000 53.48964 -1.0000000E+30 0.000000 -SIMU 1976 9 26 6 0 0.000000 48.75766 -1.0000000E+30 0.000000 -SIMU 1976 9 26 12 0 0.000000 55.38153 -1.0000000E+30 0.000000 -SIMU 1976 9 26 18 0 0.000000 55.73153 -1.0000000E+30 0.000000 -SIMU 1976 9 26 24 0 0.000000 49.43964 -1.0000000E+30 0.000000 -SIMU 1976 9 27 6 0 0.000000 46.70766 -1.0000000E+30 0.000000 -SIMU 1976 9 27 12 0 0.000000 59.48153 -1.0000000E+30 0.000000 -SIMU 1976 9 27 18 0 0.000000 59.23153 -1.0000000E+30 0.000000 -SIMU 1976 9 27 24 0 0.000000 44.23964 -1.0000000E+30 0.000000 -SIMU 1976 9 28 6 0 0.000000 37.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 28 12 0 0.000000 60.33153 -1.0000000E+30 0.000000 -SIMU 1976 9 28 18 0 0.000000 62.58153 -1.0000000E+30 0.000000 -SIMU 1976 9 28 24 0 0.000000 45.28964 -1.0000000E+30 0.000000 -SIMU 1976 9 29 6 0 0.000000 37.80766 -1.0000000E+30 0.000000 -SIMU 1976 9 29 12 0 0.000000 71.68153 -1.0000000E+30 0.000000 -SIMU 1976 9 29 18 0 0.000000 74.43152 -1.0000000E+30 0.000000 -SIMU 1976 9 29 24 0 0.000000 46.13964 -1.0000000E+30 0.000000 -SIMU 1976 9 30 6 0 0.000000 33.90766 -1.0000000E+30 0.000000 -SIMU 1976 9 30 12 0 0.000000 77.63153 -1.0000000E+30 0.000000 -SIMU 1976 9 30 18 0 0.000000 83.13153 -1.0000000E+30 0.000000 -SIMU 1976 9 30 24 0 0.000000 53.63964 -1.0000000E+30 0.000000 -SIMU 1976 10 1 6 0 0.000000 40.90766 -1.0000000E+30 0.000000 -SIMU 1976 10 1 12 0 0.000000 71.68153 -1.0000000E+30 0.000000 -SIMU 1976 10 1 18 0 0.000000 76.28154 -1.0000000E+30 0.000000 -SIMU 1976 10 1 24 0 0.000000 57.78964 -1.0000000E+30 0.000000 -SIMU 1976 10 2 6 0 0.000000 49.80766 -1.0000000E+30 0.000000 -SIMU 1976 10 2 12 0 0.000000 76.93153 -1.0000000E+30 0.000000 -SIMU 1976 10 2 18 0 0.000000 80.88154 -1.0000000E+30 0.000000 -SIMU 1976 10 2 24 0 0.000000 64.78963 -1.0000000E+30 0.000000 -SIMU 1976 10 3 6 0 0.000000 57.80766 -1.0000000E+30 0.000000 -SIMU 1976 10 3 12 0 0.000000 73.48152 -1.0000000E+30 0.000000 -SIMU 1976 10 3 18 0 0.000000 74.08154 -1.0000000E+30 0.000000 -SIMU 1976 10 3 24 0 0.000000 58.48964 -1.0000000E+30 0.000000 -SIMU 1976 10 4 6 0 0.000000 51.80045 -1.0000000E+30 0.000000 -SIMU 1976 10 4 12 0 0.000000 53.78153 -1.0000000E+30 0.000000 -SIMU 1976 10 4 18 0 0.000000 52.88153 -1.0000000E+30 0.000000 -SIMU 1976 10 4 24 0 0.000000 47.18964 -1.0000000E+30 0.000000 -SIMU 1976 10 5 6 0 0.000000 44.70766 -1.0000000E+30 0.000000 -SIMU 1976 10 5 12 0 0.000000 49.88153 -1.0000000E+30 0.000000 -SIMU 1976 10 5 18 0 0.000000 47.08153 -1.0000000E+30 0.000000 -SIMU 1976 10 5 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 6 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 6 12 0 0.000000 45.08154 -1.0000000E+30 0.000000 -SIMU 1976 10 6 18 0 0.000000 47.93153 -1.0000000E+30 0.000000 -SIMU 1976 10 6 24 0 0.000000 35.23964 -1.0000000E+30 0.000000 -SIMU 1976 10 7 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 7 12 0 0.000000 50.83154 -1.0000000E+30 0.000000 -SIMU 1976 10 7 18 0 0.000000 51.58153 -1.0000000E+30 0.000000 -SIMU 1976 10 7 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 8 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 8 12 0 0.000000 51.18153 -1.0000000E+30 0.000000 -SIMU 1976 10 8 18 0 0.000000 56.23153 -1.0000000E+30 0.000000 -SIMU 1976 10 8 24 0 0.000000 41.23964 -1.0000000E+30 0.000000 -SIMU 1976 10 9 6 0 0.000000 34.80766 -1.0000000E+30 0.000000 -SIMU 1976 10 9 12 0 0.000000 62.68153 -1.0000000E+30 0.000000 -SIMU 1976 10 9 18 0 0.000000 64.28152 -1.0000000E+30 0.000000 -SIMU 1976 10 9 24 0 0.000000 38.88964 -1.0000000E+30 0.000000 -SIMU 1976 10 10 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 10 12 0 0.000000 65.53153 -1.0000000E+30 0.000000 -SIMU 1976 10 10 18 0 0.000000 71.93153 -1.0000000E+30 0.000000 -SIMU 1976 10 10 24 0 0.000000 52.33964 -1.0000000E+30 0.000000 -SIMU 1976 10 11 6 0 0.000000 43.80766 -1.0000000E+30 0.000000 -SIMU 1976 10 11 12 0 0.000000 67.08154 -1.0000000E+30 0.000000 -SIMU 1976 10 11 18 0 0.000000 70.38153 -1.0000000E+30 0.000000 -SIMU 1976 10 11 24 0 0.000000 56.03964 -1.0000000E+30 0.000000 -SIMU 1976 10 12 6 0 0.000000 49.80766 -1.0000000E+30 0.000000 -SIMU 1976 10 12 12 0 0.000000 63.23153 -1.0000000E+30 0.000000 -SIMU 1976 10 12 18 0 0.000000 63.73153 -1.0000000E+30 0.000000 -SIMU 1976 10 12 24 0 0.000000 50.53964 -1.0000000E+30 0.000000 -SIMU 1976 10 13 6 0 0.000000 44.75766 -1.0000000E+30 0.000000 -SIMU 1976 10 13 12 0 0.000000 71.08153 -1.0000000E+30 0.000000 -SIMU 1976 10 13 18 0 0.000000 72.63154 -1.0000000E+30 0.000000 -SIMU 1976 10 13 24 0 0.000000 48.33964 -1.0000000E+30 0.000000 -SIMU 1976 10 14 6 0 0.000000 37.85766 -1.0000000E+30 0.000000 -SIMU 1976 10 14 12 0 0.000000 63.33153 -1.0000000E+30 0.000000 -SIMU 1976 10 14 18 0 0.000000 66.43153 -1.0000000E+30 0.000000 -SIMU 1976 10 14 24 0 0.000000 48.53964 -1.0000000E+30 0.000000 -SIMU 1976 10 15 6 0 0.000000 40.80766 -1.0000000E+30 0.000000 -SIMU 1976 10 15 12 0 0.000000 41.28153 -1.0000000E+30 0.000000 -SIMU 1976 10 15 18 0 0.000000 39.23153 -1.0000000E+30 0.000000 -SIMU 1976 10 15 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 16 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 16 12 0 0.000000 41.23153 -1.0000000E+30 0.000000 -SIMU 1976 10 16 18 0 0.000000 41.38153 -1.0000000E+30 0.000000 -SIMU 1976 10 16 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 17 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 17 12 0 0.000000 37.98153 -1.0000000E+30 0.000000 -SIMU 1976 10 17 18 0 0.000000 40.23153 -1.0000000E+30 0.000000 -SIMU 1976 10 17 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 18 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 18 12 0 0.000000 35.73153 -1.0000000E+30 0.000000 -SIMU 1976 10 18 18 0 0.000000 38.03153 -1.0000000E+30 0.000000 -SIMU 1976 10 18 24 0 0.000000 32.93964 -1.0000000E+30 0.000000 -SIMU 1976 10 19 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 19 12 0 0.000000 42.73153 -1.0000000E+30 0.000000 -SIMU 1976 10 19 18 0 0.000000 42.93153 -1.0000000E+30 0.000000 -SIMU 1976 10 19 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 20 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 20 12 0 0.000000 39.73153 -1.0000000E+30 0.000000 -SIMU 1976 10 20 18 0 0.000000 41.38153 -1.0000000E+30 0.000000 -SIMU 1976 10 20 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 21 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 21 12 0 0.000000 42.98153 -1.0000000E+30 0.000000 -SIMU 1976 10 21 18 0 0.000000 42.93153 -1.0000000E+30 0.000000 -SIMU 1976 10 21 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 22 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 22 12 0 0.000000 39.58154 -1.0000000E+30 0.000000 -SIMU 1976 10 22 18 0 0.000000 44.08154 -1.0000000E+30 0.000000 -SIMU 1976 10 22 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 23 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 23 12 0 0.000000 37.13153 -1.0000000E+30 0.000000 -SIMU 1976 10 23 18 0 0.000000 39.15045 -1.0000000E+30 0.000000 -SIMU 1976 10 23 24 0 0.000000 33.95045 -1.0000000E+30 0.000000 -SIMU 1976 10 24 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 24 12 0 0.000000 39.88153 -1.0000000E+30 0.000000 -SIMU 1976 10 24 18 0 0.000000 40.03153 -1.0000000E+30 0.000000 -SIMU 1976 10 24 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 25 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 25 12 0 0.000000 36.63153 -1.0000000E+30 0.000000 -SIMU 1976 10 25 18 0 0.000000 37.23153 -1.0000000E+30 0.000000 -SIMU 1976 10 25 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 26 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 26 12 0 0.000000 38.48153 -1.0000000E+30 0.000000 -SIMU 1976 10 26 18 0 0.000000 38.58154 -1.0000000E+30 0.000000 -SIMU 1976 10 26 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 27 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 27 12 0 0.000000 42.08153 -1.0000000E+30 0.000000 -SIMU 1976 10 27 18 0 0.000000 45.58154 -1.0000000E+30 0.000000 -SIMU 1976 10 27 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 28 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 28 12 0 0.000000 46.08154 -1.0000000E+30 0.000000 -SIMU 1976 10 28 18 0 0.000000 48.93153 -1.0000000E+30 0.000000 -SIMU 1976 10 28 24 0 0.000000 36.23964 -1.0000000E+30 0.000000 -SIMU 1976 10 29 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 29 12 0 0.000000 44.98153 -1.0000000E+30 0.000000 -SIMU 1976 10 29 18 0 0.000000 48.03153 -1.0000000E+30 0.000000 -SIMU 1976 10 29 24 0 0.000000 42.93964 -1.0000000E+30 0.000000 -SIMU 1976 10 30 6 0 0.000000 40.70766 -1.0000000E+30 0.000000 -SIMU 1976 10 30 12 0 0.000000 48.88153 -1.0000000E+30 0.000000 -SIMU 1976 10 30 18 0 0.000000 47.93153 -1.0000000E+30 0.000000 -SIMU 1976 10 30 24 0 0.000000 35.23964 -1.0000000E+30 0.000000 -SIMU 1976 10 31 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 10 31 12 0 0.000000 53.08153 -1.0000000E+30 0.000000 -SIMU 1976 10 31 18 0 0.000000 55.73153 -1.0000000E+30 0.000000 -SIMU 1976 10 31 24 0 0.000000 39.03964 -1.0000000E+30 0.000000 -SIMU 1976 11 1 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 1 12 0 0.000000 51.33153 -1.0000000E+30 0.000000 -SIMU 1976 11 1 18 0 0.000000 54.53153 -1.0000000E+30 0.000000 -SIMU 1976 11 1 24 0 0.000000 44.23964 -1.0000000E+30 0.000000 -SIMU 1976 11 2 6 0 0.000000 39.75766 -1.0000000E+30 0.000000 -SIMU 1976 11 2 12 0 0.000000 44.13153 -1.0000000E+30 0.000000 -SIMU 1976 11 2 18 0 0.000000 42.53153 -1.0000000E+30 0.000000 -SIMU 1976 11 2 24 0 0.000000 32.23964 -1.0000000E+30 0.000000 -SIMU 1976 11 3 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 3 12 0 0.000000 36.63153 -1.0000000E+30 0.000000 -SIMU 1976 11 3 18 0 0.000000 37.03153 -1.0000000E+30 0.000000 -SIMU 1976 11 3 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 4 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 4 12 0 0.000000 41.23153 -1.0000000E+30 0.000000 -SIMU 1976 11 4 18 0 0.000000 41.73153 -1.0000000E+30 0.000000 -SIMU 1976 11 4 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 5 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 5 12 0 0.000000 42.58154 -1.0000000E+30 0.000000 -SIMU 1976 11 5 18 0 0.000000 46.38153 -1.0000000E+30 0.000000 -SIMU 1976 11 5 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 6 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 6 12 0 0.000000 35.38153 -1.0000000E+30 0.000000 -SIMU 1976 11 6 18 0 0.000000 35.53153 -1.0000000E+30 0.000000 -SIMU 1976 11 6 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 7 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 7 12 0 0.000000 37.23153 -1.0000000E+30 0.000000 -SIMU 1976 11 7 18 0 0.000000 36.93153 -1.0000000E+30 0.000000 -SIMU 1976 11 7 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 8 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 8 12 0 0.000000 41.18153 -1.0000000E+30 0.000000 -SIMU 1976 11 8 18 0 0.000000 49.23153 -1.0000000E+30 0.000000 -SIMU 1976 11 8 24 0 0.000000 41.23964 -1.0000000E+30 0.000000 -SIMU 1976 11 9 6 0 0.000000 37.70766 -1.0000000E+30 0.000000 -SIMU 1976 11 9 12 0 0.000000 37.53153 -1.0000000E+30 0.000000 -SIMU 1976 11 9 18 0 0.000000 34.38153 -1.0000000E+30 0.000000 -SIMU 1976 11 9 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 10 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 10 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 10 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 10 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 11 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 11 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 11 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 11 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 12 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 12 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 12 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 12 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 13 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 13 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 13 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 13 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 14 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 14 12 0 0.000000 33.08153 -1.0000000E+30 0.000000 -SIMU 1976 11 14 18 0 0.000000 36.88153 -1.0000000E+30 0.000000 -SIMU 1976 11 14 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 15 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 15 12 0 0.000000 39.33153 -1.0000000E+30 0.000000 -SIMU 1976 11 15 18 0 0.000000 41.93153 -1.0000000E+30 0.000000 -SIMU 1976 11 15 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 16 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 16 12 0 0.000000 44.68153 -1.0000000E+30 0.000000 -SIMU 1976 11 16 18 0 0.000000 49.58154 -1.0000000E+30 0.000000 -SIMU 1976 11 16 24 0 0.000000 32.28964 -1.0000000E+30 0.000000 -SIMU 1976 11 17 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 17 12 0 0.000000 53.43153 -1.0000000E+30 0.000000 -SIMU 1976 11 17 18 0 0.000000 55.78153 -1.0000000E+30 0.000000 -SIMU 1976 11 17 24 0 0.000000 32.08964 -1.0000000E+30 0.000000 -SIMU 1976 11 18 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 18 12 0 0.000000 42.08154 -1.0000000E+30 0.000000 -SIMU 1976 11 18 18 0 0.000000 44.38153 -1.0000000E+30 0.000000 -SIMU 1976 11 18 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 19 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 19 12 0 0.000000 40.98153 -1.0000000E+30 0.000000 -SIMU 1976 11 19 18 0 0.000000 42.58154 -1.0000000E+30 0.000000 -SIMU 1976 11 19 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 20 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 20 12 0 0.000000 33.88153 -1.0000000E+30 0.000000 -SIMU 1976 11 20 18 0 0.000000 35.03153 -1.0000000E+30 0.000000 -SIMU 1976 11 20 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 21 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 21 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 21 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 21 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 22 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 22 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 22 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 22 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 23 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 23 12 0 0.000000 42.18153 -1.0000000E+30 0.000000 -SIMU 1976 11 23 18 0 0.000000 47.08153 -1.0000000E+30 0.000000 -SIMU 1976 11 23 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 24 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 24 12 0 0.000000 49.93153 -1.0000000E+30 0.000000 -SIMU 1976 11 24 18 0 0.000000 54.88153 -1.0000000E+30 0.000000 -SIMU 1976 11 24 24 0 0.000000 38.78964 -1.0000000E+30 0.000000 -SIMU 1976 11 25 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 25 12 0 0.000000 35.28153 -1.0000000E+30 0.000000 -SIMU 1976 11 25 18 0 0.000000 35.38153 -1.0000000E+30 0.000000 -SIMU 1976 11 25 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 26 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 26 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 26 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 26 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 27 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 27 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 27 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 27 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 28 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 28 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 28 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 28 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 29 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 29 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 29 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 29 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 30 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 30 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 30 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 11 30 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 1 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 1 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 1 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 1 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 2 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 2 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 2 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 2 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 3 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 3 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 3 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 3 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 4 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 4 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 4 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 4 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 5 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 5 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 5 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 5 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 6 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 6 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 6 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 6 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 7 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 7 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 7 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 7 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 8 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 8 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 8 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 8 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 9 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 9 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 9 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 9 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 10 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 10 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 10 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 10 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 11 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 11 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 11 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 11 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 12 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 12 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 12 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 12 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 13 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 13 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 13 18 0 0.000000 37.93153 -1.0000000E+30 0.000000 -SIMU 1976 12 13 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 14 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 14 12 0 0.000000 34.73153 -1.0000000E+30 0.000000 -SIMU 1976 12 14 18 0 0.000000 35.38153 -1.0000000E+30 0.000000 -SIMU 1976 12 14 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 15 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 15 12 0 0.000000 32.73153 -1.0000000E+30 0.000000 -SIMU 1976 12 15 18 0 0.000000 35.53153 -1.0000000E+30 0.000000 -SIMU 1976 12 15 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 16 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 16 12 0 0.000000 46.33153 -1.0000000E+30 0.000000 -SIMU 1976 12 16 18 0 0.000000 50.93153 -1.0000000E+30 0.000000 -SIMU 1976 12 16 24 0 0.000000 38.23964 -1.0000000E+30 0.000000 -SIMU 1976 12 17 6 0 0.000000 32.75766 -1.0000000E+30 0.000000 -SIMU 1976 12 17 12 0 0.000000 49.23153 -1.0000000E+30 0.000000 -SIMU 1976 12 17 18 0 0.000000 50.08153 -1.0000000E+30 0.000000 -SIMU 1976 12 17 24 0 0.000000 34.48964 -1.0000000E+30 0.000000 -SIMU 1976 12 18 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 18 12 0 0.000000 38.88153 -1.0000000E+30 0.000000 -SIMU 1976 12 18 18 0 0.000000 39.53153 -1.0000000E+30 0.000000 -SIMU 1976 12 18 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 19 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 19 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 19 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 19 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 20 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 20 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 20 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 20 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 21 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 21 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 21 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 21 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 22 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 22 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 22 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 22 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 23 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 23 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 23 18 0 0.000000 35.43153 -1.0000000E+30 0.000000 -SIMU 1976 12 23 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 24 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 24 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 24 18 0 0.000000 35.03153 -1.0000000E+30 0.000000 -SIMU 1976 12 24 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 25 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 25 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 25 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 25 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 26 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 26 12 0 0.000000 41.58153 -1.0000000E+30 0.000000 -SIMU 1976 12 26 18 0 0.000000 44.23153 -1.0000000E+30 0.000000 -SIMU 1976 12 26 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 27 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 27 12 0 0.000000 35.48153 -1.0000000E+30 0.000000 -SIMU 1976 12 27 18 0 0.000000 32.93153 -1.0000000E+30 0.000000 -SIMU 1976 12 27 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 28 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 28 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 28 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 28 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 29 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 29 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 29 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 29 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 30 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 30 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 30 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 30 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 31 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 31 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 31 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 -SIMU 1976 12 31 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 8 8 12 0 0.1174326 71.08153 5.276250 -2112798. +SIMU 1976 8 8 18 0 0.1121323 75.58154 5.268746 -584766.3 +SIMU 1976 8 8 24 0 0.1065658 61.78964 5.293362 -4617329. +SIMU 1976 8 9 6 0 0.1004819 55.75766 5.305761 -5044592. +SIMU 1976 8 9 12 0 9.3992010E-02 83.68153 5.255707 978643.4 +SIMU 1976 8 9 18 0 8.6985096E-02 87.58154 5.250594 1797106. +SIMU 1976 8 9 24 0 7.9364382E-02 70.28963 5.274197 -1340803. +SIMU 1976 8 10 6 0 7.1696661E-02 62.80766 5.287869 -1736128. +SIMU 1976 8 10 12 0 6.4173289E-02 80.73152 5.256701 246334.0 +SIMU 1976 8 10 18 0 5.6763306E-02 81.88154 5.254156 264438.2 +SIMU 1976 8 10 24 0 4.9369376E-02 65.78963 5.278628 -851358.9 +SIMU 1976 8 11 6 0 4.1590787E-02 58.80766 5.290253 -842845.9 +SIMU 1976 8 11 12 0 3.3281635E-02 80.58154 5.248286 18434.91 +SIMU 1976 8 11 18 0 2.9916262E-02 82.88154 5.261706 101349.7 +SIMU 1976 8 11 24 0 3.0534286E-02 66.78963 5.268066 -336127.8 +SIMU 1976 8 12 6 0 2.7719308E-02 59.80766 5.291016 -334808.8 +SIMU 1976 8 12 12 0 2.2797752E-02 81.58154 5.253386 26055.64 +SIMU 1976 8 12 18 0 1.7042840E-02 83.43153 5.248032 33536.88 +SIMU 1976 8 12 24 0 1.4057538E-02 65.53964 5.270841 -77433.45 +SIMU 1976 8 13 6 0 6.5504415E-03 57.80766 5.272329 -44380.07 +SIMU 1976 8 13 12 0 1.3624813E-03 77.33153 5.168148 2390.271 +SIMU 1976 8 13 18 0 0.000000 79.35045 -1.0000000E+30 -266.9664 +SIMU 1976 8 13 24 0 0.000000 64.23964 -1.0000000E+30 0.000000 +SIMU 1976 8 14 6 0 0.000000 57.80766 -1.0000000E+30 0.000000 +SIMU 1976 8 14 12 0 0.000000 72.73153 -1.0000000E+30 0.000000 +SIMU 1976 8 14 18 0 0.000000 72.58153 -1.0000000E+30 0.000000 +SIMU 1976 8 14 24 0 0.000000 55.28964 -1.0000000E+30 0.000000 +SIMU 1976 8 15 6 0 0.000000 47.80766 -1.0000000E+30 0.000000 +SIMU 1976 8 15 12 0 0.000000 65.73152 -1.0000000E+30 0.000000 +SIMU 1976 8 15 18 0 0.000000 67.38153 -1.0000000E+30 0.000000 +SIMU 1976 8 15 24 0 0.000000 53.03964 -1.0000000E+30 0.000000 +SIMU 1976 8 16 6 0 0.000000 46.80766 -1.0000000E+30 0.000000 +SIMU 1976 8 16 12 0 0.000000 73.08153 -1.0000000E+30 0.000000 +SIMU 1976 8 16 18 0 0.000000 77.73152 -1.0000000E+30 0.000000 +SIMU 1976 8 16 24 0 0.000000 64.53963 -1.0000000E+30 0.000000 +SIMU 1976 8 17 6 0 0.000000 58.75766 -1.0000000E+30 0.000000 +SIMU 1976 8 17 12 0 0.000000 81.33154 -1.0000000E+30 0.000000 +SIMU 1976 8 17 18 0 0.000000 84.58153 -1.0000000E+30 0.000000 +SIMU 1976 8 17 24 0 0.000000 70.78964 -1.0000000E+30 0.000000 +SIMU 1976 8 18 6 0 0.000000 64.75766 -1.0000000E+30 0.000000 +SIMU 1976 8 18 12 0 0.000000 81.98154 -1.0000000E+30 0.000000 +SIMU 1976 8 18 18 0 0.000000 84.23153 -1.0000000E+30 0.000000 +SIMU 1976 8 18 24 0 0.000000 72.73964 -1.0000000E+30 0.000000 +SIMU 1976 8 19 6 0 0.000000 67.75765 -1.0000000E+30 0.000000 +SIMU 1976 8 19 12 0 0.000000 80.48153 -1.0000000E+30 0.000000 +SIMU 1976 8 19 18 0 0.000000 80.23152 -1.0000000E+30 0.000000 +SIMU 1976 8 19 24 0 0.000000 65.23964 -1.0000000E+30 0.000000 +SIMU 1976 8 20 6 0 0.000000 58.80766 -1.0000000E+30 0.000000 +SIMU 1976 8 20 12 0 0.000000 80.58154 -1.0000000E+30 0.000000 +SIMU 1976 8 20 18 0 0.000000 82.58153 -1.0000000E+30 0.000000 +SIMU 1976 8 20 24 0 0.000000 65.28963 -1.0000000E+30 0.000000 +SIMU 1976 8 21 6 0 0.000000 57.80766 -1.0000000E+30 0.000000 +SIMU 1976 8 21 12 0 0.000000 82.58153 -1.0000000E+30 0.000000 +SIMU 1976 8 21 18 0 0.000000 85.73153 -1.0000000E+30 0.000000 +SIMU 1976 8 21 24 0 0.000000 69.03964 -1.0000000E+30 0.000000 +SIMU 1976 8 22 6 0 0.000000 61.80766 -1.0000000E+30 0.000000 +SIMU 1976 8 22 12 0 0.000000 80.53153 -1.0000000E+30 0.000000 +SIMU 1976 8 22 18 0 0.000000 82.73153 -1.0000000E+30 0.000000 +SIMU 1976 8 22 24 0 0.000000 69.53963 -1.0000000E+30 0.000000 +SIMU 1976 8 23 6 0 0.000000 63.75766 -1.0000000E+30 0.000000 +SIMU 1976 8 23 12 0 0.000000 77.98153 -1.0000000E+30 0.000000 +SIMU 1976 8 23 18 0 0.000000 78.93153 -1.0000000E+30 0.000000 +SIMU 1976 8 23 24 0 0.000000 66.23965 -1.0000000E+30 0.000000 +SIMU 1976 8 24 6 0 0.000000 60.75766 -1.0000000E+30 0.000000 +SIMU 1976 8 24 12 0 0.000000 76.48153 -1.0000000E+30 0.000000 +SIMU 1976 8 24 18 0 0.000000 77.73152 -1.0000000E+30 0.000000 +SIMU 1976 8 24 24 0 0.000000 64.53963 -1.0000000E+30 0.000000 +SIMU 1976 8 25 6 0 0.000000 58.75766 -1.0000000E+30 0.000000 +SIMU 1976 8 25 12 0 0.000000 80.58154 -1.0000000E+30 0.000000 +SIMU 1976 8 25 18 0 0.000000 83.08153 -1.0000000E+30 0.000000 +SIMU 1976 8 25 24 0 0.000000 67.48964 -1.0000000E+30 0.000000 +SIMU 1976 8 26 6 0 0.000000 60.80045 -1.0000000E+30 0.000000 +SIMU 1976 8 26 12 0 0.000000 78.73152 -1.0000000E+30 0.000000 +SIMU 1976 8 26 18 0 0.000000 81.38154 -1.0000000E+30 0.000000 +SIMU 1976 8 26 24 0 0.000000 70.48964 -1.0000000E+30 0.000000 +SIMU 1976 8 27 6 0 0.000000 65.75766 -1.0000000E+30 0.000000 +SIMU 1976 8 27 12 0 0.000000 74.63153 -1.0000000E+30 0.000000 +SIMU 1976 8 27 18 0 0.000000 72.58153 -1.0000000E+30 0.000000 +SIMU 1976 8 27 24 0 0.000000 55.28964 -1.0000000E+30 0.000000 +SIMU 1976 8 28 6 0 0.000000 47.80766 -1.0000000E+30 0.000000 +SIMU 1976 8 28 12 0 0.000000 70.33154 -1.0000000E+30 0.000000 +SIMU 1976 8 28 18 0 0.000000 71.43153 -1.0000000E+30 0.000000 +SIMU 1976 8 28 24 0 0.000000 50.03964 -1.0000000E+30 0.000000 +SIMU 1976 8 29 6 0 0.000000 40.85766 -1.0000000E+30 0.000000 +SIMU 1976 8 29 12 0 0.000000 77.78152 -1.0000000E+30 0.000000 +SIMU 1976 8 29 18 0 0.000000 83.23153 -1.0000000E+30 0.000000 +SIMU 1976 8 29 24 0 0.000000 61.33964 -1.0000000E+30 0.000000 +SIMU 1976 8 30 6 0 0.000000 51.85766 -1.0000000E+30 0.000000 +SIMU 1976 8 30 12 0 0.000000 77.33153 -1.0000000E+30 0.000000 +SIMU 1976 8 30 18 0 0.000000 80.43153 -1.0000000E+30 0.000000 +SIMU 1976 8 30 24 0 0.000000 62.53964 -1.0000000E+30 0.000000 +SIMU 1976 8 31 6 0 0.000000 54.80766 -1.0000000E+30 0.000000 +SIMU 1976 8 31 12 0 0.000000 73.53152 -1.0000000E+30 0.000000 +SIMU 1976 8 31 18 0 0.000000 75.73154 -1.0000000E+30 0.000000 +SIMU 1976 8 31 24 0 0.000000 62.53964 -1.0000000E+30 0.000000 +SIMU 1976 9 1 6 0 0.000000 56.75766 -1.0000000E+30 0.000000 +SIMU 1976 9 1 12 0 0.000000 74.73153 -1.0000000E+30 0.000000 +SIMU 1976 9 1 18 0 0.000000 75.28154 -1.0000000E+30 0.000000 +SIMU 1976 9 1 24 0 0.000000 56.78964 -1.0000000E+30 0.000000 +SIMU 1976 9 2 6 0 0.000000 48.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 2 12 0 0.000000 79.68152 -1.0000000E+30 0.000000 +SIMU 1976 9 2 18 0 0.000000 85.08153 -1.0000000E+30 0.000000 +SIMU 1976 9 2 24 0 0.000000 69.48965 -1.0000000E+30 0.000000 +SIMU 1976 9 3 6 0 0.000000 62.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 3 12 0 0.000000 76.98153 -1.0000000E+30 0.000000 +SIMU 1976 9 3 18 0 0.000000 75.73154 -1.0000000E+30 0.000000 +SIMU 1976 9 3 24 0 0.000000 55.53964 -1.0000000E+30 0.000000 +SIMU 1976 9 4 6 0 0.000000 46.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 4 12 0 0.000000 77.68153 -1.0000000E+30 0.000000 +SIMU 1976 9 4 18 0 0.000000 80.93153 -1.0000000E+30 0.000000 +SIMU 1976 9 4 24 0 0.000000 57.83964 -1.0000000E+30 0.000000 +SIMU 1976 9 5 6 0 0.000000 47.85766 -1.0000000E+30 0.000000 +SIMU 1976 9 5 12 0 0.000000 79.43153 -1.0000000E+30 0.000000 +SIMU 1976 9 5 18 0 0.000000 84.43152 -1.0000000E+30 0.000000 +SIMU 1976 9 5 24 0 0.000000 66.53964 -1.0000000E+30 0.000000 +SIMU 1976 9 6 6 0 0.000000 58.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 6 12 0 0.000000 82.83154 -1.0000000E+30 0.000000 +SIMU 1976 9 6 18 0 0.000000 85.28153 -1.0000000E+30 0.000000 +SIMU 1976 9 6 24 0 0.000000 66.78964 -1.0000000E+30 0.000000 +SIMU 1976 9 7 6 0 0.000000 58.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 7 12 0 0.000000 76.73154 -1.0000000E+30 0.000000 +SIMU 1976 9 7 18 0 0.000000 77.58154 -1.0000000E+30 0.000000 +SIMU 1976 9 7 24 0 0.000000 60.28964 -1.0000000E+30 0.000000 +SIMU 1976 9 8 6 0 0.000000 52.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 8 12 0 0.000000 63.13153 -1.0000000E+30 0.000000 +SIMU 1976 9 8 18 0 0.000000 62.58154 -1.0000000E+30 0.000000 +SIMU 1976 9 8 24 0 0.000000 48.78964 -1.0000000E+30 0.000000 +SIMU 1976 9 9 6 0 0.000000 42.75766 -1.0000000E+30 0.000000 +SIMU 1976 9 9 12 0 0.000000 70.68153 -1.0000000E+30 0.000000 +SIMU 1976 9 9 18 0 0.000000 71.58153 -1.0000000E+30 0.000000 +SIMU 1976 9 9 24 0 0.000000 43.88964 -1.0000000E+30 0.000000 +SIMU 1976 9 10 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 9 10 12 0 0.000000 71.78153 -1.0000000E+30 0.000000 +SIMU 1976 9 10 18 0 0.000000 77.43153 -1.0000000E+30 0.000000 +SIMU 1976 9 10 24 0 0.000000 52.63964 -1.0000000E+30 0.000000 +SIMU 1976 9 11 6 0 0.000000 41.85766 -1.0000000E+30 0.000000 +SIMU 1976 9 11 12 0 0.000000 75.68153 -1.0000000E+30 0.000000 +SIMU 1976 9 11 18 0 0.000000 80.93153 -1.0000000E+30 0.000000 +SIMU 1976 9 11 24 0 0.000000 61.33964 -1.0000000E+30 0.000000 +SIMU 1976 9 12 6 0 0.000000 52.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 12 12 0 0.000000 72.33154 -1.0000000E+30 0.000000 +SIMU 1976 9 12 18 0 0.000000 75.23153 -1.0000000E+30 0.000000 +SIMU 1976 9 12 24 0 0.000000 63.73965 -1.0000000E+30 0.000000 +SIMU 1976 9 13 6 0 0.000000 58.75766 -1.0000000E+30 0.000000 +SIMU 1976 9 13 12 0 0.000000 72.23153 -1.0000000E+30 0.000000 +SIMU 1976 9 13 18 0 0.000000 73.23153 -1.0000000E+30 0.000000 +SIMU 1976 9 13 24 0 0.000000 61.73964 -1.0000000E+30 0.000000 +SIMU 1976 9 14 6 0 0.000000 56.75766 -1.0000000E+30 0.000000 +SIMU 1976 9 14 12 0 0.000000 67.88153 -1.0000000E+30 0.000000 +SIMU 1976 9 14 18 0 0.000000 66.43153 -1.0000000E+30 0.000000 +SIMU 1976 9 14 24 0 0.000000 48.53964 -1.0000000E+30 0.000000 +SIMU 1976 9 15 6 0 0.000000 40.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 15 12 0 0.000000 64.08154 -1.0000000E+30 0.000000 +SIMU 1976 9 15 18 0 0.000000 65.23152 -1.0000000E+30 0.000000 +SIMU 1976 9 15 24 0 0.000000 43.33964 -1.0000000E+30 0.000000 +SIMU 1976 9 16 6 0 0.000000 33.85766 -1.0000000E+30 0.000000 +SIMU 1976 9 16 12 0 0.000000 64.68153 -1.0000000E+30 0.000000 +SIMU 1976 9 16 18 0 0.000000 68.08154 -1.0000000E+30 0.000000 +SIMU 1976 9 16 24 0 0.000000 45.58964 -1.0000000E+30 0.000000 +SIMU 1976 9 17 6 0 0.000000 35.85766 -1.0000000E+30 0.000000 +SIMU 1976 9 17 12 0 0.000000 69.68153 -1.0000000E+30 0.000000 +SIMU 1976 9 17 18 0 0.000000 73.93152 -1.0000000E+30 0.000000 +SIMU 1976 9 17 24 0 0.000000 50.83964 -1.0000000E+30 0.000000 +SIMU 1976 9 18 6 0 0.000000 40.85766 -1.0000000E+30 0.000000 +SIMU 1976 9 18 12 0 0.000000 64.83153 -1.0000000E+30 0.000000 +SIMU 1976 9 18 18 0 0.000000 69.53154 -1.0000000E+30 0.000000 +SIMU 1976 9 18 24 0 0.000000 59.23964 -1.0000000E+30 0.000000 +SIMU 1976 9 19 6 0 0.000000 54.75045 -1.0000000E+30 0.000000 +SIMU 1976 9 19 12 0 0.000000 62.13153 -1.0000000E+30 0.000000 +SIMU 1976 9 19 18 0 0.000000 61.88153 -1.0000000E+30 0.000000 +SIMU 1976 9 19 24 0 0.000000 52.68964 -1.0000000E+30 0.000000 +SIMU 1976 9 20 6 0 0.000000 48.75766 -1.0000000E+30 0.000000 +SIMU 1976 9 20 12 0 0.000000 61.48153 -1.0000000E+30 0.000000 +SIMU 1976 9 20 18 0 0.000000 61.58154 -1.0000000E+30 0.000000 +SIMU 1976 9 20 24 0 0.000000 47.78964 -1.0000000E+30 0.000000 +SIMU 1976 9 21 6 0 0.000000 41.75766 -1.0000000E+30 0.000000 +SIMU 1976 9 21 12 0 0.000000 73.43153 -1.0000000E+30 0.000000 +SIMU 1976 9 21 18 0 0.000000 74.78154 -1.0000000E+30 0.000000 +SIMU 1976 9 21 24 0 0.000000 44.18964 -1.0000000E+30 0.000000 +SIMU 1976 9 22 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 9 22 12 0 0.000000 63.93153 -1.0000000E+30 0.000000 +SIMU 1976 9 22 18 0 0.000000 68.23152 -1.0000000E+30 0.000000 +SIMU 1976 9 22 24 0 0.000000 46.33964 -1.0000000E+30 0.000000 +SIMU 1976 9 23 6 0 0.000000 36.85766 -1.0000000E+30 0.000000 +SIMU 1976 9 23 12 0 0.000000 61.58154 -1.0000000E+30 0.000000 +SIMU 1976 9 23 18 0 0.000000 63.43153 -1.0000000E+30 0.000000 +SIMU 1976 9 23 24 0 0.000000 42.03964 -1.0000000E+30 0.000000 +SIMU 1976 9 24 6 0 0.000000 32.85766 -1.0000000E+30 0.000000 +SIMU 1976 9 24 12 0 0.000000 58.33153 -1.0000000E+30 0.000000 +SIMU 1976 9 24 18 0 0.000000 63.23153 -1.0000000E+30 0.000000 +SIMU 1976 9 24 24 0 0.000000 51.73964 -1.0000000E+30 0.000000 +SIMU 1976 9 25 6 0 0.000000 46.75766 -1.0000000E+30 0.000000 +SIMU 1976 9 25 12 0 0.000000 62.48154 -1.0000000E+30 0.000000 +SIMU 1976 9 25 18 0 0.000000 64.38153 -1.0000000E+30 0.000000 +SIMU 1976 9 25 24 0 0.000000 53.48964 -1.0000000E+30 0.000000 +SIMU 1976 9 26 6 0 0.000000 48.75766 -1.0000000E+30 0.000000 +SIMU 1976 9 26 12 0 0.000000 55.38153 -1.0000000E+30 0.000000 +SIMU 1976 9 26 18 0 0.000000 55.73153 -1.0000000E+30 0.000000 +SIMU 1976 9 26 24 0 0.000000 49.43964 -1.0000000E+30 0.000000 +SIMU 1976 9 27 6 0 0.000000 46.70766 -1.0000000E+30 0.000000 +SIMU 1976 9 27 12 0 0.000000 59.48153 -1.0000000E+30 0.000000 +SIMU 1976 9 27 18 0 0.000000 59.23153 -1.0000000E+30 0.000000 +SIMU 1976 9 27 24 0 0.000000 44.23964 -1.0000000E+30 0.000000 +SIMU 1976 9 28 6 0 0.000000 37.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 28 12 0 0.000000 60.33153 -1.0000000E+30 0.000000 +SIMU 1976 9 28 18 0 0.000000 62.58153 -1.0000000E+30 0.000000 +SIMU 1976 9 28 24 0 0.000000 45.28964 -1.0000000E+30 0.000000 +SIMU 1976 9 29 6 0 0.000000 37.80766 -1.0000000E+30 0.000000 +SIMU 1976 9 29 12 0 0.000000 71.68153 -1.0000000E+30 0.000000 +SIMU 1976 9 29 18 0 0.000000 74.43152 -1.0000000E+30 0.000000 +SIMU 1976 9 29 24 0 0.000000 46.13964 -1.0000000E+30 0.000000 +SIMU 1976 9 30 6 0 0.000000 33.90766 -1.0000000E+30 0.000000 +SIMU 1976 9 30 12 0 0.000000 77.63153 -1.0000000E+30 0.000000 +SIMU 1976 9 30 18 0 0.000000 83.13153 -1.0000000E+30 0.000000 +SIMU 1976 9 30 24 0 0.000000 53.63964 -1.0000000E+30 0.000000 +SIMU 1976 10 1 6 0 0.000000 40.90766 -1.0000000E+30 0.000000 +SIMU 1976 10 1 12 0 0.000000 71.68153 -1.0000000E+30 0.000000 +SIMU 1976 10 1 18 0 0.000000 76.28154 -1.0000000E+30 0.000000 +SIMU 1976 10 1 24 0 0.000000 57.78964 -1.0000000E+30 0.000000 +SIMU 1976 10 2 6 0 0.000000 49.80766 -1.0000000E+30 0.000000 +SIMU 1976 10 2 12 0 0.000000 76.93153 -1.0000000E+30 0.000000 +SIMU 1976 10 2 18 0 0.000000 80.88154 -1.0000000E+30 0.000000 +SIMU 1976 10 2 24 0 0.000000 64.78963 -1.0000000E+30 0.000000 +SIMU 1976 10 3 6 0 0.000000 57.80766 -1.0000000E+30 0.000000 +SIMU 1976 10 3 12 0 0.000000 73.48152 -1.0000000E+30 0.000000 +SIMU 1976 10 3 18 0 0.000000 74.08154 -1.0000000E+30 0.000000 +SIMU 1976 10 3 24 0 0.000000 58.48964 -1.0000000E+30 0.000000 +SIMU 1976 10 4 6 0 0.000000 51.80045 -1.0000000E+30 0.000000 +SIMU 1976 10 4 12 0 0.000000 53.78153 -1.0000000E+30 0.000000 +SIMU 1976 10 4 18 0 0.000000 52.88153 -1.0000000E+30 0.000000 +SIMU 1976 10 4 24 0 0.000000 47.18964 -1.0000000E+30 0.000000 +SIMU 1976 10 5 6 0 0.000000 44.70766 -1.0000000E+30 0.000000 +SIMU 1976 10 5 12 0 0.000000 49.88153 -1.0000000E+30 0.000000 +SIMU 1976 10 5 18 0 0.000000 47.08153 -1.0000000E+30 0.000000 +SIMU 1976 10 5 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 6 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 6 12 0 0.000000 45.08154 -1.0000000E+30 0.000000 +SIMU 1976 10 6 18 0 0.000000 47.93153 -1.0000000E+30 0.000000 +SIMU 1976 10 6 24 0 0.000000 35.23964 -1.0000000E+30 0.000000 +SIMU 1976 10 7 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 7 12 0 0.000000 50.83154 -1.0000000E+30 0.000000 +SIMU 1976 10 7 18 0 0.000000 51.58153 -1.0000000E+30 0.000000 +SIMU 1976 10 7 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 8 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 8 12 0 0.000000 51.18153 -1.0000000E+30 0.000000 +SIMU 1976 10 8 18 0 0.000000 56.23153 -1.0000000E+30 0.000000 +SIMU 1976 10 8 24 0 0.000000 41.23964 -1.0000000E+30 0.000000 +SIMU 1976 10 9 6 0 0.000000 34.80766 -1.0000000E+30 0.000000 +SIMU 1976 10 9 12 0 0.000000 62.68153 -1.0000000E+30 0.000000 +SIMU 1976 10 9 18 0 0.000000 64.28152 -1.0000000E+30 0.000000 +SIMU 1976 10 9 24 0 0.000000 38.88964 -1.0000000E+30 0.000000 +SIMU 1976 10 10 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 10 12 0 0.000000 65.53153 -1.0000000E+30 0.000000 +SIMU 1976 10 10 18 0 0.000000 71.93153 -1.0000000E+30 0.000000 +SIMU 1976 10 10 24 0 0.000000 52.33964 -1.0000000E+30 0.000000 +SIMU 1976 10 11 6 0 0.000000 43.80766 -1.0000000E+30 0.000000 +SIMU 1976 10 11 12 0 0.000000 67.08154 -1.0000000E+30 0.000000 +SIMU 1976 10 11 18 0 0.000000 70.38153 -1.0000000E+30 0.000000 +SIMU 1976 10 11 24 0 0.000000 56.03964 -1.0000000E+30 0.000000 +SIMU 1976 10 12 6 0 0.000000 49.80766 -1.0000000E+30 0.000000 +SIMU 1976 10 12 12 0 0.000000 63.23153 -1.0000000E+30 0.000000 +SIMU 1976 10 12 18 0 0.000000 63.73153 -1.0000000E+30 0.000000 +SIMU 1976 10 12 24 0 0.000000 50.53964 -1.0000000E+30 0.000000 +SIMU 1976 10 13 6 0 0.000000 44.75766 -1.0000000E+30 0.000000 +SIMU 1976 10 13 12 0 0.000000 71.08153 -1.0000000E+30 0.000000 +SIMU 1976 10 13 18 0 0.000000 72.63154 -1.0000000E+30 0.000000 +SIMU 1976 10 13 24 0 0.000000 48.33964 -1.0000000E+30 0.000000 +SIMU 1976 10 14 6 0 0.000000 37.85766 -1.0000000E+30 0.000000 +SIMU 1976 10 14 12 0 0.000000 63.33153 -1.0000000E+30 0.000000 +SIMU 1976 10 14 18 0 0.000000 66.43153 -1.0000000E+30 0.000000 +SIMU 1976 10 14 24 0 0.000000 48.53964 -1.0000000E+30 0.000000 +SIMU 1976 10 15 6 0 0.000000 40.80766 -1.0000000E+30 0.000000 +SIMU 1976 10 15 12 0 0.000000 41.28153 -1.0000000E+30 0.000000 +SIMU 1976 10 15 18 0 0.000000 39.23153 -1.0000000E+30 0.000000 +SIMU 1976 10 15 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 16 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 16 12 0 0.000000 41.23153 -1.0000000E+30 0.000000 +SIMU 1976 10 16 18 0 0.000000 41.38153 -1.0000000E+30 0.000000 +SIMU 1976 10 16 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 17 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 17 12 0 0.000000 37.98153 -1.0000000E+30 0.000000 +SIMU 1976 10 17 18 0 0.000000 40.23153 -1.0000000E+30 0.000000 +SIMU 1976 10 17 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 18 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 18 12 0 0.000000 35.73153 -1.0000000E+30 0.000000 +SIMU 1976 10 18 18 0 0.000000 38.03153 -1.0000000E+30 0.000000 +SIMU 1976 10 18 24 0 0.000000 32.93964 -1.0000000E+30 0.000000 +SIMU 1976 10 19 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 19 12 0 0.000000 42.73153 -1.0000000E+30 0.000000 +SIMU 1976 10 19 18 0 0.000000 42.93153 -1.0000000E+30 0.000000 +SIMU 1976 10 19 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 20 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 20 12 0 0.000000 39.73153 -1.0000000E+30 0.000000 +SIMU 1976 10 20 18 0 0.000000 41.38153 -1.0000000E+30 0.000000 +SIMU 1976 10 20 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 21 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 21 12 0 0.000000 42.98153 -1.0000000E+30 0.000000 +SIMU 1976 10 21 18 0 0.000000 42.93153 -1.0000000E+30 0.000000 +SIMU 1976 10 21 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 22 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 22 12 0 0.000000 39.58154 -1.0000000E+30 0.000000 +SIMU 1976 10 22 18 0 0.000000 44.08154 -1.0000000E+30 0.000000 +SIMU 1976 10 22 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 23 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 23 12 0 0.000000 37.13153 -1.0000000E+30 0.000000 +SIMU 1976 10 23 18 0 0.000000 39.15045 -1.0000000E+30 0.000000 +SIMU 1976 10 23 24 0 0.000000 33.95045 -1.0000000E+30 0.000000 +SIMU 1976 10 24 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 24 12 0 0.000000 39.88153 -1.0000000E+30 0.000000 +SIMU 1976 10 24 18 0 0.000000 40.03153 -1.0000000E+30 0.000000 +SIMU 1976 10 24 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 25 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 25 12 0 0.000000 36.63153 -1.0000000E+30 0.000000 +SIMU 1976 10 25 18 0 0.000000 37.23153 -1.0000000E+30 0.000000 +SIMU 1976 10 25 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 26 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 26 12 0 0.000000 38.48153 -1.0000000E+30 0.000000 +SIMU 1976 10 26 18 0 0.000000 38.58154 -1.0000000E+30 0.000000 +SIMU 1976 10 26 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 27 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 27 12 0 0.000000 42.08153 -1.0000000E+30 0.000000 +SIMU 1976 10 27 18 0 0.000000 45.58154 -1.0000000E+30 0.000000 +SIMU 1976 10 27 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 28 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 28 12 0 0.000000 46.08154 -1.0000000E+30 0.000000 +SIMU 1976 10 28 18 0 0.000000 48.93153 -1.0000000E+30 0.000000 +SIMU 1976 10 28 24 0 0.000000 36.23964 -1.0000000E+30 0.000000 +SIMU 1976 10 29 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 29 12 0 0.000000 44.98153 -1.0000000E+30 0.000000 +SIMU 1976 10 29 18 0 0.000000 48.03153 -1.0000000E+30 0.000000 +SIMU 1976 10 29 24 0 0.000000 42.93964 -1.0000000E+30 0.000000 +SIMU 1976 10 30 6 0 0.000000 40.70766 -1.0000000E+30 0.000000 +SIMU 1976 10 30 12 0 0.000000 48.88153 -1.0000000E+30 0.000000 +SIMU 1976 10 30 18 0 0.000000 47.93153 -1.0000000E+30 0.000000 +SIMU 1976 10 30 24 0 0.000000 35.23964 -1.0000000E+30 0.000000 +SIMU 1976 10 31 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 10 31 12 0 0.000000 53.08153 -1.0000000E+30 0.000000 +SIMU 1976 10 31 18 0 0.000000 55.73153 -1.0000000E+30 0.000000 +SIMU 1976 10 31 24 0 0.000000 39.03964 -1.0000000E+30 0.000000 +SIMU 1976 11 1 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 1 12 0 0.000000 51.33153 -1.0000000E+30 0.000000 +SIMU 1976 11 1 18 0 0.000000 54.53153 -1.0000000E+30 0.000000 +SIMU 1976 11 1 24 0 0.000000 44.23964 -1.0000000E+30 0.000000 +SIMU 1976 11 2 6 0 0.000000 39.75766 -1.0000000E+30 0.000000 +SIMU 1976 11 2 12 0 0.000000 44.13153 -1.0000000E+30 0.000000 +SIMU 1976 11 2 18 0 0.000000 42.53153 -1.0000000E+30 0.000000 +SIMU 1976 11 2 24 0 0.000000 32.23964 -1.0000000E+30 0.000000 +SIMU 1976 11 3 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 3 12 0 0.000000 36.63153 -1.0000000E+30 0.000000 +SIMU 1976 11 3 18 0 0.000000 37.03153 -1.0000000E+30 0.000000 +SIMU 1976 11 3 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 4 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 4 12 0 0.000000 41.23153 -1.0000000E+30 0.000000 +SIMU 1976 11 4 18 0 0.000000 41.73153 -1.0000000E+30 0.000000 +SIMU 1976 11 4 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 5 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 5 12 0 0.000000 42.58154 -1.0000000E+30 0.000000 +SIMU 1976 11 5 18 0 0.000000 46.38153 -1.0000000E+30 0.000000 +SIMU 1976 11 5 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 6 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 6 12 0 0.000000 35.38153 -1.0000000E+30 0.000000 +SIMU 1976 11 6 18 0 0.000000 35.53153 -1.0000000E+30 0.000000 +SIMU 1976 11 6 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 7 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 7 12 0 0.000000 37.23153 -1.0000000E+30 0.000000 +SIMU 1976 11 7 18 0 0.000000 36.93153 -1.0000000E+30 0.000000 +SIMU 1976 11 7 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 8 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 8 12 0 0.000000 41.18153 -1.0000000E+30 0.000000 +SIMU 1976 11 8 18 0 0.000000 49.23153 -1.0000000E+30 0.000000 +SIMU 1976 11 8 24 0 0.000000 41.23964 -1.0000000E+30 0.000000 +SIMU 1976 11 9 6 0 0.000000 37.70766 -1.0000000E+30 0.000000 +SIMU 1976 11 9 12 0 0.000000 37.53153 -1.0000000E+30 0.000000 +SIMU 1976 11 9 18 0 0.000000 34.38153 -1.0000000E+30 0.000000 +SIMU 1976 11 9 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 10 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 10 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 10 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 10 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 11 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 11 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 11 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 11 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 12 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 12 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 12 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 12 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 13 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 13 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 13 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 13 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 14 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 14 12 0 0.000000 33.08153 -1.0000000E+30 0.000000 +SIMU 1976 11 14 18 0 0.000000 36.88153 -1.0000000E+30 0.000000 +SIMU 1976 11 14 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 15 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 15 12 0 0.000000 39.33153 -1.0000000E+30 0.000000 +SIMU 1976 11 15 18 0 0.000000 41.93153 -1.0000000E+30 0.000000 +SIMU 1976 11 15 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 16 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 16 12 0 0.000000 44.68153 -1.0000000E+30 0.000000 +SIMU 1976 11 16 18 0 0.000000 49.58154 -1.0000000E+30 0.000000 +SIMU 1976 11 16 24 0 0.000000 32.28964 -1.0000000E+30 0.000000 +SIMU 1976 11 17 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 17 12 0 0.000000 53.43153 -1.0000000E+30 0.000000 +SIMU 1976 11 17 18 0 0.000000 55.78153 -1.0000000E+30 0.000000 +SIMU 1976 11 17 24 0 0.000000 32.08964 -1.0000000E+30 0.000000 +SIMU 1976 11 18 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 18 12 0 0.000000 42.08154 -1.0000000E+30 0.000000 +SIMU 1976 11 18 18 0 0.000000 44.38153 -1.0000000E+30 0.000000 +SIMU 1976 11 18 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 19 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 19 12 0 0.000000 40.98153 -1.0000000E+30 0.000000 +SIMU 1976 11 19 18 0 0.000000 42.58154 -1.0000000E+30 0.000000 +SIMU 1976 11 19 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 20 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 20 12 0 0.000000 33.88153 -1.0000000E+30 0.000000 +SIMU 1976 11 20 18 0 0.000000 35.03153 -1.0000000E+30 0.000000 +SIMU 1976 11 20 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 21 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 21 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 21 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 21 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 22 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 22 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 22 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 22 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 23 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 23 12 0 0.000000 42.18153 -1.0000000E+30 0.000000 +SIMU 1976 11 23 18 0 0.000000 47.08153 -1.0000000E+30 0.000000 +SIMU 1976 11 23 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 24 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 24 12 0 0.000000 49.93153 -1.0000000E+30 0.000000 +SIMU 1976 11 24 18 0 0.000000 54.88153 -1.0000000E+30 0.000000 +SIMU 1976 11 24 24 0 0.000000 38.78964 -1.0000000E+30 0.000000 +SIMU 1976 11 25 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 25 12 0 0.000000 35.28153 -1.0000000E+30 0.000000 +SIMU 1976 11 25 18 0 0.000000 35.38153 -1.0000000E+30 0.000000 +SIMU 1976 11 25 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 26 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 26 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 26 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 26 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 27 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 27 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 27 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 27 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 28 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 28 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 28 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 28 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 29 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 29 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 29 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 29 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 30 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 30 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 30 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 11 30 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 1 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 1 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 1 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 1 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 2 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 2 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 2 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 2 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 3 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 3 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 3 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 3 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 4 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 4 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 4 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 4 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 5 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 5 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 5 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 5 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 6 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 6 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 6 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 6 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 7 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 7 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 7 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 7 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 8 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 8 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 8 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 8 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 9 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 9 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 9 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 9 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 10 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 10 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 10 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 10 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 11 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 11 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 11 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 11 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 12 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 12 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 12 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 12 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 13 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 13 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 13 18 0 0.000000 37.93153 -1.0000000E+30 0.000000 +SIMU 1976 12 13 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 14 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 14 12 0 0.000000 34.73153 -1.0000000E+30 0.000000 +SIMU 1976 12 14 18 0 0.000000 35.38153 -1.0000000E+30 0.000000 +SIMU 1976 12 14 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 15 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 15 12 0 0.000000 32.73153 -1.0000000E+30 0.000000 +SIMU 1976 12 15 18 0 0.000000 35.53153 -1.0000000E+30 0.000000 +SIMU 1976 12 15 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 16 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 16 12 0 0.000000 46.33153 -1.0000000E+30 0.000000 +SIMU 1976 12 16 18 0 0.000000 50.93153 -1.0000000E+30 0.000000 +SIMU 1976 12 16 24 0 0.000000 38.23964 -1.0000000E+30 0.000000 +SIMU 1976 12 17 6 0 0.000000 32.75766 -1.0000000E+30 0.000000 +SIMU 1976 12 17 12 0 0.000000 49.23153 -1.0000000E+30 0.000000 +SIMU 1976 12 17 18 0 0.000000 50.08153 -1.0000000E+30 0.000000 +SIMU 1976 12 17 24 0 0.000000 34.48964 -1.0000000E+30 0.000000 +SIMU 1976 12 18 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 18 12 0 0.000000 38.88153 -1.0000000E+30 0.000000 +SIMU 1976 12 18 18 0 0.000000 39.53153 -1.0000000E+30 0.000000 +SIMU 1976 12 18 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 19 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 19 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 19 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 19 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 20 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 20 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 20 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 20 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 21 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 21 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 21 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 21 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 22 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 22 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 22 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 22 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 23 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 23 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 23 18 0 0.000000 35.43153 -1.0000000E+30 0.000000 +SIMU 1976 12 23 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 24 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 24 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 24 18 0 0.000000 35.03153 -1.0000000E+30 0.000000 +SIMU 1976 12 24 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 25 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 25 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 25 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 25 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 26 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 26 12 0 0.000000 41.58153 -1.0000000E+30 0.000000 +SIMU 1976 12 26 18 0 0.000000 44.23153 -1.0000000E+30 0.000000 +SIMU 1976 12 26 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 27 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 27 12 0 0.000000 35.48153 -1.0000000E+30 0.000000 +SIMU 1976 12 27 18 0 0.000000 32.93153 -1.0000000E+30 0.000000 +SIMU 1976 12 27 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 28 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 28 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 28 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 28 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 29 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 29 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 29 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 29 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 30 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 30 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 30 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 30 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 31 6 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 31 12 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 31 18 0 0.000000 32.07207 -1.0000000E+30 0.000000 +SIMU 1976 12 31 24 0 0.000000 32.07207 -1.0000000E+30 0.000000 diff --git a/tests/test10/HSPFresults/test10.uci b/tests/test10/HSPFresults/test10.uci index 0ebba1bb..d5a54aeb 100644 --- a/tests/test10/HSPFresults/test10.uci +++ b/tests/test10/HSPFresults/test10.uci @@ -9,7 +9,7 @@ END GLOBAL *** This test run uses MASS-LINK and SCHEMATIC blocks *** -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 test10.wdm MESSU 22 test10.ech @@ -309,7 +309,7 @@ RCHRES ACTIVITY RCHRES Active Sections (1=Active, 0=Inactive) *** # - # HYFG ADFG CNFG HTFG SDFG GQFG OXFG NUFG PKFG PHFG *** - 1 5 1 1 1 1 1 1 1 1 1 1 + 1 5 1 1 1 1 1 1 1 1 1 1 END ACTIVITY PRINT-INFO @@ -618,8 +618,8 @@ RCHRES OX-BENPARM RCHRES BENOD TCBEN EXPOD BRBOD(1) BRBOD(2) EXPREL *** - # - # mg/m2.hr mg/m2.hr mg/m2.hr *** - 1 5 10. 1.1 1.2 20. 25. 1.3 + # - # mg/m2.hr mg/m2.hr mg/m2.hr *** + 1 5 10. 1.1 1.2 20. 25. 1.3 END OX-BENPARM OX-CFOREA @@ -649,46 +649,46 @@ RCHRES END NUT-FLAGS NUT-BENPARM - RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** - # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** + RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** + # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** 1 5 11.0 33.0 1.1 2.2 0.0005 - END NUT-BENPARM - + END NUT-BENPARM + NUT-NITDENIT - RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** - # - # /hr /hr /hr mg/l *** + RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** + # - # /hr /hr /hr mg/l *** 1 5 .002 .004 1.07 .001 1.04 0.2 END NUT-NITDENIT - + NUT-NH3VOLAT - RCHRES EXPNVG EXPNVL *** - # - # *** + RCHRES EXPNVG EXPNVL *** + # - # *** 1 5 .50 0.6667 - END NUT-NH3VOLAT - - NUT-BEDCONC + END NUT-NH3VOLAT + + NUT-BEDCONC RCHRES Bed concentrations of NH4 & PO4 (mg/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0.00001 0.00001 0.00001 0.00001 0.00001 0.00001 - END NUT-BEDCONC - - NUT-ADSPARM + END NUT-BEDCONC + + NUT-ADSPARM RCHRES Partition coefficients for NH4 AND PO4 (l/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0.0001 0.0001 0.0001 10. 10. 10. END NUT-ADSPARM - - NUT-DINIT + + NUT-DINIT RCHRES NO3 TAM NO2 PO4 PHVAL *** - # - # mg/l mg/l mg/l mg/l ph units *** + # - # mg/l mg/l mg/l mg/l ph units *** 1 5 40. 10. 1. 50. 7.0 END NUT-DINIT - - NUT-ADSINIT + + NUT-ADSINIT RCHRES Initial suspended NH4 and PO4 concentrations (mg/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0. 0. 0. 0. 0. 0. - END NUT-ADSINIT + END NUT-ADSINIT *** Section PLANK *** @@ -941,11 +941,11 @@ SCHEMATIC # <-factor-> # # *** PERLND 1 6000. RCHRES 1 1 IMPLND 1 3000. RCHRES 5 2 -RCHRES 1 RCHRES 2 3 -RCHRES 1 RCHRES 3 4 -RCHRES 2 RCHRES 4 5 -RCHRES 3 RCHRES 4 5 -RCHRES 4 RCHRES 5 5 +RCHRES 1 RCHRES 2 3 +RCHRES 1 RCHRES 3 4 +RCHRES 2 RCHRES 4 5 +RCHRES 3 RCHRES 4 5 +RCHRES 4 RCHRES 5 5 END SCHEMATIC MASS-LINK diff --git a/tests/test10/notebooks-py2/Build_and_Run.ipynb b/tests/test10/notebooks-py2/Build_and_Run.ipynb deleted file mode 100755 index 6894187f..00000000 --- a/tests/test10/notebooks-py2/Build_and_Run.ipynb +++ /dev/null @@ -1,612 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "# TEST10 - HSP2 BUILD and RUN SIMULATION\n", - "\n", - "Place this Jupyter Notebook in a directory with one UCI and one or more WDM files." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "## Required Python Imports" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.execute_input": "2024-04-26T02:14:20.282131Z", - "iopub.status.busy": "2024-04-26T02:14:20.281879Z", - "iopub.status.idle": "2024-04-26T02:14:20.284468Z", - "shell.execute_reply": "2024-04-26T02:14:20.284061Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.282115Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "from glob import glob\n", - "\n", - "import HSP2" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.execute_input": "2024-04-26T02:14:20.286809Z", - "iopub.status.busy": "2024-04-26T02:14:20.286671Z", - "iopub.status.idle": "2024-04-26T02:14:20.290809Z", - "shell.execute_reply": "2024-04-26T02:14:20.290565Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.286797Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
version
Python3.10.14 | packaged by conda-forge | (main, Mar...
HSP20.11.0a1
numpy1.26.4
numba0.59.1
pandas2.2.2
osLinux-5.15.0-91-generic-x86_64-with-glibc2.35
processorx86_64
Date/Time2024-04-25 22:14:20
\n", - "
" - ], - "text/plain": [ - " version\n", - "Python 3.10.14 | packaged by conda-forge | (main, Mar...\n", - "HSP2 0.11.0a1\n", - "numpy 1.26.4\n", - "numba 0.59.1\n", - "pandas 2.2.2\n", - "os Linux-5.15.0-91-generic-x86_64-with-glibc2.35\n", - "processor x86_64\n", - "Date/Time 2024-04-25 22:14:20" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import HSP2tools\n", - "\n", - "from HSP2.utilities import versions\n", - "versions()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "## BUILD HDF5 FILE From UCI and WDM files" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Get the name of the UCI file." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.execute_input": "2024-04-26T02:14:20.291927Z", - "iopub.status.busy": "2024-04-26T02:14:20.291683Z", - "iopub.status.idle": "2024-04-26T02:14:20.305323Z", - "shell.execute_reply": "2024-04-26T02:14:20.304239Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.291911Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [ - { - "ename": "IndexError", - "evalue": "list index out of range", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mIndexError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[7], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m uciname \u001b[38;5;241m=\u001b[39m \u001b[43mglob\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m*.uci\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m0\u001b[39;49m\u001b[43m]\u001b[49m\n\u001b[1;32m 2\u001b[0m uciname\n", - "\u001b[0;31mIndexError\u001b[0m: list index out of range" - ] - } - ], - "source": [ - "uciname = glob(\"*.uci\")[0]\n", - "uciname" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Create the HDF5 file filled with the UCI data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.305886Z", - "iopub.status.idle": "2024-04-26T02:14:20.306086Z", - "shell.execute_reply": "2024-04-26T02:14:20.305997Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.305988Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HDFname = uciname.split(\".\")[0] + \".h5\"\n", - "HDFname" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.306782Z", - "iopub.status.idle": "2024-04-26T02:14:20.306974Z", - "shell.execute_reply": "2024-04-26T02:14:20.306897Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.306889Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "!del {HDFname}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.307526Z", - "iopub.status.idle": "2024-04-26T02:14:20.307736Z", - "shell.execute_reply": "2024-04-26T02:14:20.307668Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.307660Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HSP2tools.readUCI(uciname, HDFname)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.308145Z", - "iopub.status.idle": "2024-04-26T02:14:20.308279Z", - "shell.execute_reply": "2024-04-26T02:14:20.308216Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.308210Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HSP2tools.cleanup(HDFname)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Add the timeseries data to the HDF5 file." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.308652Z", - "iopub.status.idle": "2024-04-26T02:14:20.308780Z", - "shell.execute_reply": "2024-04-26T02:14:20.308723Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.308717Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "wdmnames = glob(\"*.wdm\")\n", - "wdmnames" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.309124Z", - "iopub.status.idle": "2024-04-26T02:14:20.309227Z", - "shell.execute_reply": "2024-04-26T02:14:20.309177Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.309172Z" - }, - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "for name in wdmnames:\n", - " HSP2tools.ReadWDM(name, HDFname)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "deletable": true, - "editable": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.309626Z", - "iopub.status.idle": "2024-04-26T02:14:20.309790Z", - "shell.execute_reply": "2024-04-26T02:14:20.309716Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.309709Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "!rename {HDFname} temp.h5\n", - "!ptrepack temp.h5 {HDFname}\n", - "!del temp.h5" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "## RUN simulation" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Get HDF5 filename (in case you didn't need to run the cells above)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.310167Z", - "iopub.status.idle": "2024-04-26T02:14:20.310278Z", - "shell.execute_reply": "2024-04-26T02:14:20.310227Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.310222Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "hdfname = glob(\"*.h5\")[0]\n", - "hdfname" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.310609Z", - "iopub.status.idle": "2024-04-26T02:14:20.310747Z", - "shell.execute_reply": "2024-04-26T02:14:20.310677Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.310670Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HSP2.run(hdfname, saveall=True)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "deletable": true, - "editable": true - }, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.311242Z", - "iopub.status.idle": "2024-04-26T02:14:20.311484Z", - "shell.execute_reply": "2024-04-26T02:14:20.311374Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.311364Z" - }, - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "%timeit HSP2.run(hdfname, saveall=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "For Development, keep record of best run" - ] - }, - { - "cell_type": "raw", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "SAVEALL = FALSE\n", - "\n", - "2017-04-21 22:22:46.40 Run completed\n", - "1 loop, best of 3: 583 ms per loop\n", - "\n", - "SAVEALL = True\n", - "2017-06-21 10:47:49.16 Run completed\n", - "1 loop, best of 3: 602 ms per loop\n", - "\n", - "SAVEALL = True PYTHON 3.5 (Currently need to comment out final write of logfile to HDF5 file at the end of main.)\n", - "2017-06-21 10:39:56.53 Run completed\n", - "1 loop, best of 3: 609 ms per loop" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "## HSPF timing" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "execution": { - "iopub.status.busy": "2024-04-26T02:14:20.311957Z", - "iopub.status.idle": "2024-04-26T02:14:20.312130Z", - "shell.execute_reply": "2024-04-26T02:14:20.312047Z", - "shell.execute_reply.started": "2024-04-26T02:14:20.312039Z" - }, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "!echo %date% - %time%\n", - "\n", - "!C:\\BASINS41\\models\\HSPF\\bin\\WinHspfLt.exe test10.uci\n", - "\n", - "!echo %date% - %time%" - ] - }, - { - "cell_type": "raw", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Development (HSPF timing)\n", - "\n", - "SAVEALL = False\n", - "Tue 04/11/2017 - 17:46:59.22\n", - "Tue 04/11/2017 - 17:47:01.50\n", - "about 0.88 seconds" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "deletable": true, - "editable": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.14" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/tests/test10/notebooks-py2/ViewIMPLND.ipynb b/tests/test10/notebooks-py2/ViewIMPLND.ipynb deleted file mode 100755 index 9e077fa8..00000000 --- a/tests/test10/notebooks-py2/ViewIMPLND.ipynb +++ /dev/null @@ -1,561 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "\n", - "This Jupyter Notebook Copyright 2016 by RESPEC, INC. All rights reserved.\n", - "\n", - "$\\textbf{HSP}^{\\textbf{2}}\\ \\text{and}\\ \\textbf{HSP2}\\ $ Copyright 2016 by RESPEC INC. and released under this [License](LegalInformation/License.txt)/>" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# View IMPLND data saved in HDF5 " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This notebook displays IMPLND data from the specified HDF5 file.\n", - "\n", - "The Notebook demonstrates how monthly and annual summary results can be calculated via Pandas. It uses aggregation methods 'last' (for the last value at the end of each report interval) and\n", - "'sum (which sums the timeseries within each report interval). There are many other aggregation methods available (such as max, min, and mean). The user can create their own aggragation function as needed.\n", - "\n", - "This Notebook also demonstrates plotting capability in Pandas. These plots can be enhanced with titles, x & y axis labels, legends, line styles, point styles, etc. and saved in various formats (SVG, PDF, etc.). Matplotlib (the basis for these Pandas plots) can be used to make publication quality plots. See Tutorial 5 for more information." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Required Python imports and configuration" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "import shutil\n", - "import numpy as np\n", - "import pandas as pd\n", - "pd.options.display.max_rows = 16\n", - "pd.options.display.max_columns = 20\n", - "pd.options.display.float_format = '{:.2f}'.format # display 2 digits after the decimal point\n", - "\n", - "from matplotlib import pyplot as plt\n", - "\n", - "# replace with \"%matplotlib notebook\" for interactive plots\n", - "%matplotlib inline\n", - "\n", - "import HSP2\n", - "#HSP2.versions()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Set HDF5 filename and paths to the data\n", - "The following cell points to test 10 data to show how this utility works. Modify the cell as needed to point to your data. " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "hdfname = 'test10.h5'\n", - "segment = 'I001' # IMPLND id\n", - "\n", - "snow = '/RESULTS/IMPLND_' + segment + '/SNOW'\n", - "water = '/RESULTS/IMPLND_' + segment + '/IWATER'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### HPERSNO (SNOW) Results, Monthly and Annual reports, and plots" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Names of the possible HYDR timeseries created by HSP$^2$ - user may not save all these during a simulation run." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "state_variables = ['PACKF', 'PACKW', 'PACKI','PDEPTH','COVINX', 'NEGHTS', 'XLNMLT', 'RDENPF', 'SKYCLR', 'SNOCOV', \n", - " 'DULL', 'ALBEDO', 'PAKTMP', 'DEWTMP', 'SNOTMP']\n", - " \n", - "fluxes = ['SNOWF', 'PRAIN', 'SNOWE', 'WYIELD', 'MELT', 'RAINF']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Read what data is actually in the HDF5 file. Update the lists of column names to reflect only the available data." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "columns = pd.read_hdf(hdfname, snow).columns\n", - "\n", - "state_variables = [v for v in state_variables if v in columns]\n", - "fluxes = [v for v in fluxes if v in columns]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Read Snow State Variables from the HDF5 file\n", - "##### Raw Hourly Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "sv = pd.read_hdf(hdfname, snow)[state_variables]\n", - "sv.index.names = [segment]\n", - "sv" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "_ = sv.plot(subplots=True, figsize=[24,80])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### Monthly Report\n", - "Values are rounded to 2 digits after the decimal place using the round() function." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "sv = sv.resample('M').last()\n", - "sv.index.names = [segment]\n", - "sv" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Read Snow Flux Timeseries from the HDF5 file\n", - "\n", - "##### Raw Hourly Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx = pd.read_hdf(hdfname, snow)[fluxes]\n", - "flx.index.names = [segment]\n", - "flx" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "flx.plot(figsize=[24,10])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### Monthly Report\n", - "\n", - "The values are rounded to 2 decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx = flx.resample('M').sum()\n", - "flx.index.names = [segment]\n", - "flx" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "flx.plot(figsize=[24,10])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### Annual Report\n", - "\n", - "Annual reports follow calendar year by default, however you can easily select any month to start. These results are rounded to 2 decimal placed for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx.resample('A').sum() # Annual report, January start month" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### SNOW Water Balance (Monthly)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HSP2.snow_balance(hdfname, 'IMPLND', segment)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## HIMPWAT IWATER Results, Monthly and Annual reports, and plots" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Names of the possible results - user may not save all these during a simulation run." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "state_variables = ['RETS', 'SURS', 'PETADJ']\n", - "\n", - "fluxes = ['SUPY', 'SURO', 'PET', 'IMPEV', 'SURI']" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The user may not have saved all these desired values, so read what is actually in the HDF5 file. Update the lists of column names to reflect only those available." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "columns = pd.read_hdf(hdfname, water).columns\n", - "\n", - "state_variables = [v for v in state_variables if v in columns]\n", - "fluxes = [v for v in fluxes if v in columns]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Read Water State Variables from the HDF5 file\n", - "##### Raw Hourly Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "sv = pd.read_hdf(hdfname, water)[state_variables]\n", - "sv.index.names = [segment]\n", - "sv" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "_ = sv.plot(subplots=True, figsize=[18,10])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### Monthly Report\n", - "These values are rounded to 2 decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "sv.resample('M').last()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Read Water Flux Timeseries from the HDF5 file\n", - "##### Raw Hourly Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx = pd.read_hdf(hdfname, water)[fluxes]\n", - "flx.index.names = [segment]\n", - "flx" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Plot the results" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx.resample('M').sum().plot(figsize=[10,6])" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### Monthly Report\n", - "This data is rounded to 2 decimal points for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx.resample('M').sum()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### Annual Report\n", - "\n", - "Annual reports follow calendar year by default, however you can easily select any month to start. These values are rounded to 3 decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx.resample('A').sum()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### IMPLND Water Balance (Monthly)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "HSP2.iwater_balance(hdfname, segment)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/tests/test10/notebooks-py2/ViewPERLND.ipynb b/tests/test10/notebooks-py2/ViewPERLND.ipynb deleted file mode 100755 index bc92dfcd..00000000 --- a/tests/test10/notebooks-py2/ViewPERLND.ipynb +++ /dev/null @@ -1,718 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "\n", - "This Jupyter Notebook Copyright 2016 by RESPEC, INC. All rights reserved.\n", - "\n", - "$\\textbf{HSP}^{\\textbf{2}}\\ \\text{and}\\ \\textbf{HSP2}\\ $ Copyright 2016 by RESPEC INC. and released under this [License](LegalInformation/License.txt)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "# View PERLND data saved in HDF5 " - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "This notebook displays PERLND data from the specified HDF5 file.\n", - "\n", - "The Notebook demonstrates how monthly and annual summary results can be calculated via Pandas. It uses aggregation methods 'last' (for the last value at the end of each report interval) and\n", - "'sum (which sums the timeseries within each report interval). There are many other aggregation methods available (such as max, min, and mean). The user can create their own aggragation function as needed.\n", - "\n", - "This Notebook also demonstrates plotting capability in Pandas. These plots can be enhanced with titles, x & y axis labels, legends, line styles, point styles, etc. and saved in various formats (SVG, PDF, etc.). Matplotlib (the basis for these Pandas plots) can be used to make publication quality plots. See Tutorial 5 for more information." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Required Python imports and configuration" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "import numpy as np\n", - "import pandas as pd\n", - "pd.options.display.max_rows = 16\n", - "pd.options.display.max_columns = 20\n", - "pd.options.display.float_format = '{:.2f}'.format # display 2 digits after the decimal point\n", - "\n", - "from matplotlib import pyplot as plt\n", - "\n", - "# replace with \"%matplotlib notebook\" for interactive plots\n", - "%matplotlib inline\n", - "\n", - "#import HSP2\n", - "#HSP2.versions()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "hdfname = 'test10.h5'\n", - "segment = 'P001' \n", - "\n", - "snow = '/RESULTS/PERLND_' + segment + '/SNOW'\n", - "water = '/RESULTS/PERLND_' + segment + '/PWATER'" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "## HPERSNO (SNOW) Results, Monthly and Annual Reports, and plots" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Names of the possible timeseries created by HSP$^2$ - user may not save all these during a simulation run." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "deletable": true, - "editable": true - }, - "outputs": [], - "source": [ - "state_variables = ['PACKF', 'PACKW', 'PACKI','PDEPTH','COVINX', 'NEGHTS', 'XLNMLT', 'RDENPF', 'SKYCLR', 'SNOCOV', 'DULL',\n", - " 'ALBEDO', 'PAKTMP', 'DEWTMP', 'SNOTMP']\n", - " \n", - "fluxes = ['SNOWF', 'PRAIN', 'SNOWE', 'WYIELD', 'MELT', 'RAINF']" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Read what data is actually in the HDF5 file. Update the lists of column names to reflect only the available data." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "columns = pd.read_hdf(hdfname, snow).columns\n", - "\n", - "state_variables = [v for v in state_variables if v in columns]\n", - "fluxes = [v for v in fluxes if v in columns]" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Read Snow State Variables from the HDF5 file\n", - "##### Raw Hourly Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "sv = pd.read_hdf(hdfname, snow)[state_variables]\n", - "sv.index.names = [segment]\n", - "sv" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Plot these values" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "_ = sv.plot(subplots=True, figsize=[24,80])" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Monthly Report \n", - "\n", - "Values below are rounded to 2 digits. " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "sv = sv.resample('M').last()\n", - "sv.index.names = [segment]\n", - "sv" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Read Snow Flux Timeseries from the HDF5 file\n", - "\n", - "##### Raw Hourly Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "flx = pd.read_hdf(hdfname, snow)[fluxes]\n", - "flx.index.names = [segment]\n", - "flx" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Plot the flux values" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx.plot(figsize=[24,10])" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Monthly Report\n", - "\n", - "Values are displayed to 2 decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx = flx.resample('M').sum()\n", - "flx.index.names = [segment]\n", - "flx" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Annual Report\n", - "\n", - "Annual reports follow calendar year by default, however you can easily select any month to start. The data is rounded to 2 decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "flx.resample('A').sum()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### SNOW Water Balance (Monthly)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "HSP2.snow_balance(hdfname, 'PERLND', segment)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "## HPERWAT PWATER Results, Monthly and Annual reports, and plots" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Names of the possible results - user may not save all these during a simulation run." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "deletable": true, - "editable": true - }, - "outputs": [], - "source": [ - "state_variables = ['PERS', 'CEPS', 'SURS', 'UZS', 'IFWS', 'LZS', 'AGWS', 'GWVS', 'INFFAC', 'PETADJ', 'TGWS']\n", - "\n", - "fluxes = ['SUPY', 'SURO', 'IFWO', 'AGWO', 'PERO','IGWI','PET', 'CEPE', 'UZET', 'LZET', 'AGWET', 'BASET', \n", - " 'TAET','IFWI', 'UZI', 'INFIL', 'PERC', 'LZI', 'AGWI', 'SURI']" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Read what data is actually in the HDF5 file. Update the lists of column names to reflect only the available data. (User controls which series are stored in the HDF5 file.)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "columns = pd.read_hdf(hdfname, water).columns\n", - "\n", - "state_variables = [v for v in state_variables if v in columns]\n", - "fluxes = [v for v in fluxes if v in columns]" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Read Water State Variables from the HDF5 file\n", - "##### Hourly Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "pd.options.display.float_format = '{:.3f}'.format\n", - "\n", - "sv = pd.read_hdf(hdfname, water)[state_variables]\n", - "sv.index.names = [segment]\n", - "sv" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Plot the data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "_ = sv.plot(subplots=True, figsize=[24,30])" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Monthly Report\n", - "Values are displayed to 3 decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "pd.options.display.precision = 3\n", - "sv.resample('M').last()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Read Water Flux Timeseries from the HDF5 file\n", - "\n", - "##### Raw Hourly Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx = pd.read_hdf(hdfname, water)[fluxes]\n", - "flx.index.names = [segment]\n", - "flx" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Plot this data." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "_ = flx.plot(subplots=True, figsize=(20,100))" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Monthly Report\n", - "\n", - "Values are displayed to 3 decimal places. " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "fx = flx.resample('M').sum()\n", - "fx" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Annual Report" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx.resample('A').sum()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### PERLND Water Balance (Monthly)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "HSP2.pwater_balance(hdfname, segment)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "0.165/0.024, 0.525/0.132" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "deletable": true, - "editable": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.2" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/tests/test10/notebooks-py2/ViewRCHRES.ipynb b/tests/test10/notebooks-py2/ViewRCHRES.ipynb deleted file mode 100755 index c9b78416..00000000 --- a/tests/test10/notebooks-py2/ViewRCHRES.ipynb +++ /dev/null @@ -1,525 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "\n", - "This Jupyter Notebook Copyright 2016 by RESPEC, INC. All rights reserved.\n", - "\n", - "$\\textbf{HSP}^{\\textbf{2}}\\ \\text{and}\\ \\textbf{HSP2}\\ $ Copyright 2016 by RESPEC INC. and released under this [License](LegalInformation/License.txt)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "# View RCHRES Data Saved in HDF5 File" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "This notebook displays RCHRES data from the specified HDF5 file.\n", - "\n", - "The Notebook demonstrates how monthly and annual summary results can be calculated via Pandas. It uses aggregation methods 'last' (for the last value at the end of each report interval) and\n", - "'sum (which sums the timeseries within each report interval). There are many other aggregation methods available (such as max, min, and mean). The user can create their own aggragation function as needed.\n", - "\n", - "This Notebook also demonstrates plotting capability in Pandas. These plots can be enhanced with titles, x & y axis labels, legends, line styles, point styles, etc. and saved in various formats (SVG, PDF, etc.). Matplotlib (the basis for these Pandas plots) can be used to make publication quality plots. See Tutorial 5 for more information." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Required Python imports and configurations" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "import shutil\n", - "import numpy as np\n", - "import pandas as pd\n", - "pd.options.display.max_rows = 16\n", - "pd.options.display.max_columns = 20\n", - "pd.options.display.float_format = '{:.2f}'.format # display 2 digits after the decimal point\n", - "\n", - "from matplotlib import pyplot as plt\n", - "\n", - "# replace with \"%matplotlib notebook\" for interactive plots\n", - "%matplotlib inline\n", - "\n", - "#import HSP2\n", - "#HSP2.versions()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Set HDF5 filename and paths to the data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "hdfname = 'test10.h5'\n", - "segment = 'R001' # Reaches rid \n", - "\n", - "hydr = '/RESULTS/RCHRES_' + segment + '/HYDR'" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Names of the possible HYDR timeseries created by HSP$^2$ - user may not save all these during a simulation run." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "deletable": true, - "editable": true - }, - "outputs": [], - "source": [ - "state_variables = ['VOL', 'DEP', 'SAREA', 'USTAR', 'TAU', 'RO', 'O1', 'O2', 'O3', 'O4', 'O5']\n", - "fluxes = ['IVOL', 'PRSUPY', 'VOLEV', 'ROVOL', 'OVOL1', 'OVOL2', 'OVOL3', 'OVOL4', 'OVOL15']" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Read what data is actually in the HDF5 file. Update the lists of column names to reflect only the available data." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "columns = pd.read_hdf(hdfname, hydr).columns\n", - "\n", - "state_variables = [v for v in state_variables if v in columns]\n", - "fluxes = [v for v in fluxes if v in columns]" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Read HYDR State Variables from the HDF5 file\n", - "##### Computed Results, Generally Hourly" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "sv = pd.read_hdf(hdfname, hydr)[state_variables]\n", - "sv.index.names = [segment]\n", - "sv" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Monthly Report\n", - "These values are rounded to 3 decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "pd.options.display.float_format = '{:.3f}'.format \n", - "sv.resample('M').last()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Calculated results - not stored in HDF5 since it is simple to post process these results" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Conversion factors (from internal ft$^3$ to acre-ft)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "VFACT = 43560.0 #$162\n", - "AFACT = 43560.0 #$164" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "#### LEN (Length) of Reach (Necessary for the calculations)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "# First - need length of this reach - get it from HDF5 file\n", - "with pd.get_store(hdfname, mode='r') as store:\n", - " x = store['RCHRES/HYDR/PARAMETERS']\n", - " LEN = x.loc[segment, 'LEN'] \n", - "LEN = LEN * 5280.0" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Calculate Additional State Variables from simulation data saved in the HDF5 file\n", - "Note: The calculations are undefined when the flow or volumn is zero, so the fillna() function replaces NaNs with zeros, where needed.\n", - "\n", - "These calculations need the data associated with SAREA, VOL, and RO, so the calculations are conditional." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "if 'SAREA' in sv and 'VOL' in sv and 'RO' in sv:\n", - " sv['TWID'] = AFACT * sv['SAREA']/LEN\n", - " sv['AVDEP'] = (sv['VOL'] / sv['SAREA']).fillna(0.0)\n", - " sv['HRAD'] = (sv['AVDEP'] * sv['TWID']) / (2.0 * sv['AVDEP'] + sv['TWID']).fillna(0.0)\n", - " sv['AVVEL'] = ((LEN * sv['RO'] / sv['VOL']) / AFACT).fillna(0.0)\n", - " sv['AVSECT'] = AFACT * sv['VOL'] / LEN" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Update the state_variables list to reflect the actual available data. The data is also rounded to 2 decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - }, - "scrolled": true - }, - "outputs": [], - "source": [ - "pd.options.display.float_format = '{:.2f}'.format # display 2 digits after the decimal point\n", - "\n", - "state_variables = ['VOL', 'DEP', 'AVDEP', 'TWID', 'HRAD', 'SAREA', 'AVVEL', 'AVSECT', 'USTAR', 'TAU', 'RO']\n", - "state_variables = [v for v in state_variables if v in sv]\n", - "\n", - "sv[state_variables].resample('M').last()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Plot this data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "_ = sv.plot(subplots=True, figsize=[20,48])" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "### Read HYDR Flux Data from the HDF5 file\n", - "\n", - "##### Raw Hourly Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx = pd.read_hdf(hdfname, hydr)[fluxes]\n", - "flx.index.names = [segment]\n", - "flx" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "Plot this data." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "_ = flx.plot(figsize=[20,40], subplots=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Monthly Report\n", - "This data is rounded to s decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "pd.options.display.float_format = '{:.3f}'.format\n", - "\n", - "flx.resample('M').sum()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, - "source": [ - "##### Annual Report\n", - "\n", - "Annual reports follow calendar year by default, however you can easily select any month to start. These values are rounded to 2 decimal places for convenience." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, - "jupyter": { - "outputs_hidden": false - } - }, - "outputs": [], - "source": [ - "flx.resample('A').sum() # Annual report, January start month" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "deletable": true, - "editable": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.2" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/tests/test10/test.ipynb b/tests/test10/test.ipynb index 0aecb234..41f3faed 100644 --- a/tests/test10/test.ipynb +++ b/tests/test10/test.ipynb @@ -13,7 +13,8 @@ "metadata": {}, "outputs": [], "source": [ - "from HSP2 import versions, main as run\n", + "from HSP2 import main as run\n", + "from HSP2 import versions\n", "from HSP2tools import read_UCI, read_WDM\n", "\n", "versions()" @@ -32,7 +33,7 @@ "metadata": {}, "outputs": [], "source": [ - "readUCI('test10.uci', 'test10.h5')" + "readUCI(\"test10.uci\", \"test10.h5\")" ] }, { @@ -41,7 +42,7 @@ "metadata": {}, "outputs": [], "source": [ - "readWDM('test10.wdm', 'test10.h5')" + "readWDM(\"test10.wdm\", \"test10.h5\")" ] }, { @@ -50,7 +51,7 @@ "metadata": {}, "outputs": [], "source": [ - "main('test10.h5')" + "main(\"test10.h5\")" ] }, { diff --git a/tests/test10eq/HSP2results/TEST10_hsp2_compare.ipynb b/tests/test10eq/HSP2results/TEST10_hsp2_compare.ipynb new file mode 100644 index 00000000..165cafb7 --- /dev/null +++ b/tests/test10eq/HSP2results/TEST10_hsp2_compare.ipynb @@ -0,0 +1,3039 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# COMPARE HSP2 TO HSPF USING TEST10" + ] + }, + { + "attachments": { + "337b05b8-e081-4c20-b486-27045c75ea6d.png": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAZ4AAACICAYAAADXhI09AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAHK0SURBVHhe7V0HYFTF1v629/SeQBJC770ICCqCiuKz9/LsDfXp89kL9t5+e3u2p89n770BIihVmvSWhPSyve9/zuxdSNndbEICBO8HJ3fv3Htnbpk535yZMzOKEAEyZMiQ0QVomDBc+iVDRhghrxdK6bcMGTJkyGgHFNJWRvshE48MGTJktAMaYhwds04ohBTasagV0JEmVVGYTEaJQSYeGTJkyEgQRhVQ4QniopV2lCyqx+RfGvDgBid+r/ejxhsE91sYSKsyOckkFBtyH48MGTK6DAdKHw+TiJ4IZXGDD3dvdGEjkYyZwgIkbmnbW6vEUIsa/cwqDKPtAIuKiEoBdyAEr6xld4H7eGTikSFDRpfhQCAebkIjLsFbZR48udUNO6lMLVERkxHbOB7actMRK1ImIDVJukqJTJ1CENHRmRqMStVQKOAhEvLRiUEWEfLXg0w8MmTI6FJ0d+IhIwZOfwh3rHfi4wYvUolumFy0JKw4dQoFjsrU4g9bAFXeAOqIWPwUTjwliClsEYWgp+1BSRrMzNBicLIayWqF6B9iMBHRZX8ZyMQjQ4aMLkV3Jh5uWltpDeDBzS784fTBQFTioPCpSWosp3APEYqZiOfH8cmgDf6gsGVWPzY4/FhhC2IjERETkI6Et14SJqFUso+GWlQYTNbQ4CQVBppUKDCo4CUzyENm0IFuCcnEI0OGjC5FdyUe9lL7qcaLORtdsBIhcFMak8b5OXqcVaDHrMWN8FEYE88no5OgJwuGz2EjxkXnV3tD2OEKYlGdD19QPJsCQSIutpTC57ElFGASUiiRShcVEfHMyNTgkHQNUihxH/cLEQOxJXSgEZFMPDJkyOhSdFfiSSIimb3agW/qvYIwUlVKzOlrxNQMDSrJLDn8t0aijd3Eo1MpBEEwqXCfEB/jLUVDZKRAuTuA72r8+IZIqMwdRKM/RNZTmNBY+Hy2iLz0a4BWjWOzNBiXoiFLSCma5A4kS0gmHhkyZHQpuivxcB/MNWsd+KrWK6yTqwsMuKxYDxsRBssRv7cmHt6vIoZgK6WPSUVEEW46o9MFCbEVxSS0yRHAShuLD6tsQfzpDBAJBaEna4hdEDg9F12rpv2xZg1mZqkxLVMnXLk5vu4OJh4mWxkyZMiQEQNMKGy5+NgVjXeiQbJu5tf5cP4fNpy30obXS70odwaRolXCzMRE1zqJlfLIipmZrcF1JUY8PMCE14eacXNPI/rrVbBSAnYSjURCv9t9uGezCxdRfBuJsNj6oWS6PWTikSFDhow2EItvmkLJ5ETsUhYM4nerHw9sc2L6ikYMnVuPa8l6+rzKg+2uIKy+EPxkufD57HLd16zCGQU6vEeW05oJqXixvxmHpGqESzaTDKe9lqyiY1dY8co2tyC4bq24yeqTiUeGDBkyOglsj7C1wp5s3DeULEJC+LLWi2s3OnHaciuuJxJ6bKsTn1f6sNURFEpYRSzE1hAPNJ2UpsFTg0x4eZgZ5+fpYSJFzeRjoZge2e7CE1vc0NBF3dnykYlHhgwZMjoZTBQZahW0RBp1tMdje4xEFbz9ze7Hqzu9uIuI6Ko1dpy7wo7HN7uwg6yaJE2YUOgU5OiUuKJIjycGmtDHoBL9PuyW/XqFG//Z4UWyNA6oO0ImHhkyZMjoRDDpsKv1UVka/D4lFT8MT8I/CvQYYVEjS60UBMQEwu7ZZb4gVjr8eKncjSNXWHHwAitZQl4EQiFBQO4gMDRZjfdGJGFqkk7MksDW1P07nJhb4xNjjbojZOKRIUOGjE4Gk48nGELAH0IuWSsXFurx5jAz/k1yW28jzsvVYWKSGslKhRiIykgiqqkPBHHtJiduXOvEZrKAuEmNPdm8REQPDzRijEm9i3ye2OpCrZesoG5o+MjEI0OGDBlxEKJ/OiKIMD0kBuYCPV2jIlZgYmDLxeoH0rVKzCBL6KpiA+7pZ8ILQ8x4mrZHp2mFBcTNaRa69merD5evcqDMGQTxlnDJJmMJ1/UyIE9yOljrCuDnOp8YtNrdIBOPDBkyZLQBtjwSJR7mAZ4o9LNqD+7504HFDbxkAo/pCQmPNAbPz2YgRio2qnBwuhb3DzBh6fgUzM43QC95fdWQ9XPCcit2OAJizjieyYDneTs9n2eKC+PtUo8gtO6myGXikdEtwIXeF/hrTaYoo5uB8iZxhsirbJPUELu8XunB2WtsOHu5Dbf+6cSL29yYW+tDBZlAPCCUrSEmFDtl7ABdw5bQg/1NyJTaz7iv6I6NTtjoBwfxhKV/y9EhjRiM+4lWef3YTpZPhNC6C+SZC2Tsl6ipc2LV6vVYsmwZ1q9bj/LyMjidDmg0WqSkpKCkpARjxo7FoVMnIMkUnnJexv6HA2HmAh9RyZxiE07M08JLlR8bkUSrmQvofM6F7+704s6tDliIenj6G/Zi43A+l2ck4NkMUhRKpGsUyDcocWquDlPTNcICisxKYCJG+aHGh1vWOcBr/XAcNxUZcGKuHh5S1ymU1j+ke/NTfJfnGnF5Lx3IMOoWCPl8MvHI2H/goVrd/F8W4/0PPsbcuT9i88Y18LiogAeDUHJTB+VUHjzOUKrU0OktGDp8DC6/4iqceepRoolDxv6FvxrxvF/hxe1bHDBRbpyYrEUfkxLf13hhpWtsdC334XAzEwtfz44FRWo17u1nxLBklegLYiSRefPCdjee2uES+6lqJd4dYSZSUoq+nl/rvDj/z3A6vfUqfDQmCQ3MXt0ATDxyU5uMfQ4/FchPvpiP4048C7OOOQLPPXUvVq/4BS5HPZLTe2L4+FmYePi5tD0GKek54ppgwC+OL/rlG1x8wZm49vr7BXHJkNHV4AoOz6MWT82zlVJoIPLqayRSSMbTg8y4oZcRp2RqMYJMGp6XjQnNTNudVAAuXG3Dz7W73aO56e2UPJ2YvYCDttE5vEQDkw47GvQzq0Ua3Ny2zd1NTJ0mkIlHxj4DWzA/zF2GY447E6eePAtffvImnPZaCg/CnJSJ4868GQ/838e4/9GXMOfuR3DXgy/isuueRlZeHymGMJiAnnnyHtz30DNSiAwZXQMmGyaeeJ5kfIjPc3C/DbEEz0hQQmRzfK4GN/Yx4oH+Jrw8xIzL8g3CNZrPZ0Pn/k1ObHQGoaUA3ud52SanqcWs1Tz253siJuFdR5EnSeOBGFzf4r6fOLe030EmHhn7DO988B1OPOFYfPXpfwR5RJCWWYTZNzyLW2+9GccfMRiTR6Zj/NAUTBmViYv/fhwuv+ZBGIwp0tlheNx2PPXEQ1iyYoMUIkPGvgWTT2TLrWBOMky4HydFoxTzs80uNuCDYRYUasPu0aVEHq9sd5FFExk8GsIMspC4OY6b8RY3+sX8biJe2hppw7/FuURuvO0ukIlHxj7D2nUbUF9bJu2FwYRyyTUP4ZLzTsDQEgPSk5Uw6JTQU+E0GZTomaXA6ScfiQFDJ0lX7AbH9dnn30p7MmTsn+CGMZ6TzU5E08esxk29jaSIFWJut2/qfKKvhgmGm9SKKc/z+ayoa33EWk3YReoOEuBzuxNk4tkPQJUV1DW4UV5pxfayOlRU22BzcAvugQ2NWgulklupw+Df02edj/PPPg4FmYBq96FmKC7QYfCQoVCw72oTBAM+rFy5slmBjAX2qekKaQmn24PNpVVYsHwdvpi7FG9/OR+vffoz3vhsLj74/jf88NtqrNq4A7UNNumK5oiWRmeLjH0Hbo7jSUF7E8FwvrWRDbPOFnaP5k9jUofDGfylgk0sm+785brUq83p8sHtYfOwE/hNvO0Q1Xo10GhiaKQmcLn9cFH6SnZ+DzVXUO0GXR4MBmE26aDlkWR7CB6PsnrtZixeshyLFy/B9u3bULGzVLgL+3w+6HQ6JCenoKioD/oP6IchQwZj6OD+KCrMFZ2L8eClyO0OLynxTnjuOFBQ/BqNGmq6IS2PlusA7n7wZdx+06WCMBjZBf3x8uuf4qhDejet2EXFRbNvw0tP391Kcc487jx88O7L0LadRboM2yvqsHzdVixZuwXrt5ajoqYBDTY7lQUfvH4/5SVSHkSaapUSOo2G8pUBWakWItRsDOtbiNGDSjCopEDUers7DjSvNg+VXe6zOXaxFQ7Ke5YoXm13bHHQbwVOyNRiTj+TWDguHix07cMbXXilwk0kExKLzl1UqIeL0mIvzsGL6pFO8XF2WHxQCpxs+NDOxF8bxPUc+/djkqEnXZdIpWtfo0vdqTnSm+c8ha8++0AUMIk5OoxgMACtIQkP3n8PJk0YJIXGxuNP/xdvvPaScMPd06WTqF5Ikahx+5w5OHr6OCm0/ahr9ODTz77F/959BwsXzIXdXg+vK3pNNwKVWgeNzojMzFwMGzEKkyYdjClTJmPY4N4w6Fpr16++X4Lbb7uNlLmbnroTCD8GlPRNtTotzGYLUlJSUVRcgv79+mDkyKEY2K8wIaXZlHgUZO2ces71ePrJe5Bqlk6IAS6MR846A9989pYUshsnn3U13nrtsb0+f5XfH8CPv6/G5/OWYdHKDSitrIXX66O8ryJyVlGFRQM1iYr2+d1xdTYQCMBPFQWvj5QbEZKP4lCSRslMS8Yweoezpo7CzEkjYTTwzFzdEzLxtE08PG7nxW0ePFbqEprq4lwDruqlE31ClBSGyMSTOLhWf9Jpl+Djd5+XQvYcOkMy3njrI5z0t6lSSGxccuWdeP7/bpf29hw8buSpF/6HS887TgpJHG5vCP9993M8/+wzWLZkPjzu+GQTDyq1FkZzGs49fzYeffCmVhbQy29+jUvPPx4+r1MK2TtQKsn60ehgTkrDQRMPwemnn4rjZh0BvS42AzQlHoMpFc++8gnOObl1301L/LmxApMnTURN5WYpJAx+N9fd/Bjuu+MyKWTvYP6yP/HCu9/hlxXrycp3E8moYDSaiJTN9D6S6XuZYdAbodHqBPGw0mBtwZUpv98Ht9sFp8MOu9VKlREbHHYHXB6vIKuxQ3rjyjOOxOQR/cOJdTPIxNN+4rmEiOdKiXiYSEYubBDztx1IxNNlVeIInXHNl19YZ4CbzQLBxF4tm6xc0+y0tMl0CnD1o51Yu74Up591MS676Cws/OXLZqSjVqthMJJyMifBYNBDGIZtIOD3wtZQgeXLl5JykgKbgN+PiiISyq2TwHHxvcWLMhj0w+txoK56Bz776HWcd85pOPXMC7By7VbpjPjIyi3GyBGDpb34+Pb7n9HQwimBYbSkY9To0dJe14Pf9QvvfYeL73oR3y78g95PCLm5Oeg7cAgGjxwjpO/AwehRWIyMrCwkJVtgNBmhp2+tNxpgIkJKTU1Fbl4+evXui0FDhwurlvuvCnsUQKdRY/7Stbj07pfwzle/SqnK+KthH7Yadw1IkXQd8ZAMHDYeY6eeimHjZqKwZBiSU8lgbKdCtKRkobDPaAwaeThGH/Q3pKdnSUfio6TPIIw9+DSMmHAMivuMQmpaZrvbzE2kyHr0GkEKZAZGTzoR2Tn50pHE8Ckpi1nHHoeP3n0JLme4dsIwJ2dhBD3LsaffiNMvuhennH8Pjj71ejFQMjU9O6H71Gq0pOylnSbIysrB2MknY9TEv6HPoAnIyumZUJ9YS+j0JuT0GIjBY47EuKmnY8JhZ2Hw6MORnVcMnZbrdvHhdjXi4/f/jeOOPwkLF/8phTYHz0jAhMXoWdQXhfnNXaSjweEK4H/vvEWWQmvWHTx8EkaPHCrtdT2ee/db3PXCB7DZncjOykD/ISMwcMQ49OnXH2lp6QgplKIJjh0MGu0u1NtcqLMSOVudYaH9Bgp3ON2ib4+b4CxJFhQUFmLoiJFEREORnZmORqsdtz79Dr6Yv0xKWYaM5iCDqxtB0XVNbX4yLzfusGNruRM+rx819Q1YvWolPnzrMWxe95t0Vmxws83UIy/A4TNPRmHPfBiplphs0qFfsQXZ6fHbvPmJOO0tpU54fH40NFjx59o1eP8/T2DdqrnSWbHB3lVjp5yMWSdegKLCnrCYjTDo1ehXREohm50e28aLr32Af14zG9a6cikkHO+gUUfgtHP+IRRkZpoJep2Kas4hsl4CqKy2YvHipfjgnWexduk38PljD8U/7IjT8P57b9E7kQIklFe7sXaLTThW2B1ObN9Rii8+egO/fPcmfRMeihYfBlMaho09ApMPPRYDqLaekZ5C96ghgghRfC5s27YDv8z7Gj9+8W/U17S2OqJh4NCJ+Oyzj1DcI0MKCeO+R9/Aow/djlDAj2NPuhAvPn1rmzWhF1/7CLMvObtVc6XJkoGH/u8dXHzOoXvFVfPnJWtw4ZwX4PF4kZufR5bNUFgsSZjQLweje2fBHwjii8Wb8MOK7cJS5GIm+goZTYocW0l8nJc+5gqCgawcg04tmuu4Wc7WSOVm5SrsrKxC38I8/PfBqyn/J4cv7gaQm9ra39R2aa4Bs5s0tY1Z2CDG7PCxWE1tC8aniHPjp7R/IOT3Q3UHQdrvVPCLSbVo0TPXiOKCJPQpzMDw4UOg1OVgwc+fiiajeOg/bCrufvApzDh4AAb2SqHrk9GD4rKY1G1aTXw82ayh800oyjOjd1E6hg0dCEt6Ceb//DW8brt0ZnT0JCvnvodfxtGHD8fA3qno3dOCwjwTUijOttJmfPDpz7jkonNhb6iQQsIYe/DJuO2uJzFz2nD0KzQiN1ODrFR1WNI0lIYZffuWUM15KiqIhLZv/oN0VPSmxV69h+CUk0+AfvcM6QJGvQoFOUbx3CU9UzFoQDFZmyOx8Nd5bRIFW3cXX/MILr7kMhw+dQRGDMhEn55mFOebxPP3ou/Yt6SAauMHwZzeG2tW/g6XY7clFwu11Tvh9msx88hDROGJQK1PQ16vCRg3eRamHXowetH9cud6LJRVWnH5ZZehomyTFBIG9y8dc/JsXD37PCQbE/hAewhuYrvnxY/wx7otyM7OwtBRY6AzmDCmdybOOXQgMpIMyEoxYlhxFlZuq0F5vQNaNREJkYsQesbwb753qv1Jz8xk5aaKkofn/iGlplErYTKZYDAaUVdTjdKKWvoGWRjWr0ic3x3gfvk56Vf3Aq+l83WNDxvJwuYSeEiqFgMtVEkkzc6DQf9b7hEzBujo252Wp4Oavyftr7UH8FODj34rMJAY5ZAMrZh9Oh54yYOljQEstPpFpWmAUYXJ0sShTCQvlroFqXEuuaiHXoRzlnmFwiM4v0DfLUhHgMpPl1UOhbso1QL0OiUpQwVSk5QozAKOnjERGdmF0lnRwddOnjIdB43IoAIMWIw8gJA+kJoKaoJ6Ra2itLUKMegwxaxEAVW2px8yEsV9hkhnxAClPWLMZEwe2wPZqUASKTKDTgGdRkFKQjonDhYv24CrZl8KR2OVFBJGbs/BuO7GuzBtYgFy0yljU5ysfCLg++V0emarcDidc9sd92LitDPodtr3iXjhKb5Xo16JJJMS2fT+po7vgdHjJoVzaxyMGXeImBlgwrBUFOWoxHvjeDg+fpdm+g65GSoM76sXAzwvveZB4ejQFrg57YP3/4u163dbf4zhAwtwwRnTcOGZ0zBpbEmb3/auex7GutWtreWhY4/ClVdehbyMLsvOzVBeWYdVG7YJS7BHUTFZOsn0jAEMLcqUzgjDbNBiQv988Vy7SCeKsNJi0RATaej7sUHU6PTA6vAgGAiQ1ZmONBJWQ4v+2BiOXMZ+D/qUHfKuFATSRlnt7tg7JbUJeuQlIzc/PvGoVFr07dMLxra7EtqFvGwzevToKe1Fh1pNafftjZQWTViJwE1Vm5tuuQOl29ZKIWFwE9sRx5yGww/uA1MCnrEmPTBheDr+ef1ton9rT2ExAL1LSui9xnmhlM8N+pAgxbbG5WioQtGDdOwF5xyH6cecC0UCjMzW1o8/L5D2wmCizUhWkMWnJCW9u+YfDW++8xXe+PfTCASaD6wt7j8BN932AEYNzm5mTXUlquqtsDld0Gq1SE5KFoWIx6tVNbT2JLQRgbBVwwTD2+aijCrsHKKirdvrF010PBzBYjbTMQVqrXYxFkjG/g3OE3W+IBxknvCca2Yyh9iyYauozXx6YHOOwF4nHhOZkdwWHg/supySFP+cjoCHQyQlsWNibHCzTWpyx9J+98NvMPfHT6W93dAbk3HQ+LFISqx7SICV/yEHFeOUMy8lMiQm2kPwczedJaA1wrk90YoWn8dW0Vln/x2pmfErEgyfx4llyzrWOb5uYzluv/1mOO11UkgY2fkDcf1tj2H6lP6CrPcWuE+OrRImSnYIYCuT8fXSrdhRs7vviZvZ5q8tg16jFkTSWlpbP7slTEL8niMkxd+I+9pCPJBJxn4J/jT8dbgF/Od6v3CFPvI3K57c7MKKRh8a/SE6JyRmodYxEdH3TbDIHVDY68TD06BodfGr/dy8pO6AJ1Zb4LKrFR5Z8T81D/prL9g54PXXX4MnyoBQHgSan9u8Yz0RmOk1Hf+3mcjp0VcK6Th0Oi4KbWdxVqjtwaTxAzF63GHSXnxUV1e2e04pH1Xub7p1DrZsWC6FhJGe0xfX3PwkjjtyHJK553UvoulbZOcAJgY91RS2VDbinv8txAtfrcBTny3DIx/8JjzXeLYLvoaHAEb7x/1arSWslMJbPiuMyFbGfgaJcJhMArS10x5vuT60g3TDczs9OHW1HacuteGO9U68tsONBXV+1HuCopmdjP92ozvnhb1OPInoHT6nK2Z7EfEmoFl3eR+1AytXb8bvC6N7zAVDAZKONY8M7JOJ8ZNnSHt7AFJeXZFTs1KUmDr1MDG7Qltga7K9xPbYk//Gpx/+R7heR5CWXYLrbnsGZ5x4KDLb9sDuUghrhLY6tRJpZj3sTi++X7Ed81aXCssozWKAWa+B2cCibiHhMHYiaGYJCStKErJSOQ3+fDL2b3Cl6qA0NV4daMaVBQYMpm/rJF3CJMR5JIkKYAPl46/rfXiYiOemdQ5cucaBq1Y68GujHwm0wu8GpdXUZ6G95WpfY68Tz4GKpStWweVolPaaI+DzoLamRtprH0iXYdzY8WK1zf0VQ4cOhF7fdvOk2Zzc5lxzTfHD3BV44P458HkcUgiQklmEK//1qCCd3IzdlsDeBJNDBEwMTBBmow45aWYUZCahOCcZxdnJyE+3IDvFRGKWhPdJUnlrRmayiYjTJKwlJpZwk1pTq4eeTwqL1/8lY/8AE0EyZfBxKRpc0FOPV0eYsWR8Cl4bYMbxGTrka1Ww0LfktgduU7ESW6x3B/BtvRe/WX3Ccy0RcFZgnmHf3EiusNDF3Yl7ZOLpJGzauCnqoEYGu28v+u13aa/9GDSwH/TGzu/z6iwU9cxHahsDe9naKehRmDBR1NS58M9/Xou66m1SCJCe3Rv/vOUpnHfm0cgj0qEy3OXgcWBujxdub1h8gQBctI2AV0IN+smi5S1JiI4LCTaVoCThffaAYzd57stRS1YOk0vrfp6wtxsTkC/Qhk+ujP0C9LmE9cEu1GE3agXGpmpwd38jPhuThBeGmHFNkQHHZWowzKiGgY7zejt8aqQa1Zb1wk2w21yU3+g6PjWVAriC0p0gE08noa6uXiiVaGBF881Xn6C0IrpF1BZys9PF1DpN4fe1PRh0byGVau8mc3xi1OpNGDBggLQXH1yY5tzzMP5YurvpMr/XCNx014v4+xlHkVVBiroLy9mGbRV46r9f4cI5z+Osm57C2bc8jbNvjshTuPelD0UHMVshK5Yvx08//oB5P8/FvLlzMVfIvBYyH3Pn75af6Nxly1ZQSiGylpqM7xESJiIWjTrc11jT6ITD7RU13TC6l5L5q4AJYYM9gIUNfhhpJ5mHIdAn5LE/vPYODzztZVTh9HwdbutjwgMDjHh6sBn39TKhn0EtBqpy3tfQh47XJcBxf1nNTXMKsTrpcDJ3Ygz3228hE08ngZdNiJ1VgK0b/sAjjz4jvF7ai5QUI/oPGY+C4qHoWTICPXoNQ2ZukUhzf4DBoINBH99lLyuvN4YMGSjtxceX3y7Cv198EgFpuYTifuNw+z0v4fQTpyI3nZudRHCng8v621/+gjNu+j/c/fwH+PSnxZi/dI2YLy0iP/+2GivWbSXr1o8ASU1NDcrLy7Fz5844Qsf5nHL6TVJWVo7q2lpR+Jo2q0WECYj7fbxkSVXU2dHg8AiqEaIgotJ0cB0KGV0K/iorbAGcs9aGUb/U47wVdrxV6kW5OwiXVPB5ahtez437g9K0SgxNUuHkHjoMtajEgFTWIhna2JN9sgW8xRHA+zs9wnGBraWT8rRitdLuBJl4Oglp6RmI567M09U8+3/34V83PyRm7m4P0pMNuP6me3H3o+/jrof/hzsfeQ8XX3YttOr9g3jYCVAl1c6jgS2DiVOOQElxthQSG3UNHtx6661w2MJ9Yv2HT8Md972IE2aOBA+G7SLOEfj3Rz/ixifeRnllDbIyUjFsyCCMGzsa48aMkYR+0/6YUSMxePBgDBo0CEOHDsWwYcNIeBtLhmDoEJbBQkbQft/evUTfkJIUBzez8VgdXttIwx5wVCprbS5sqWyAzeUVZMRQKLXwOEqxZfEjKF3xKLYtiyaPY+f6/8Bes1JcI2MvQcqYbPVE/EcXWn24a5sDRyxrxIV/2PHgRic+rPBitc0PFzGPmU420Ldf0+jHV9U+cR2Tz5AkJfxS0WY68UtVWiY2XuL6ro0u2KmWxNbOQSY1BjNp7R+qIGF06UJw0cDtnrOOOxdff/KaFNIaWr0FL7z2Ic45OTE33UTB+v68i/6F1198mH5Ff2ytzoS7H3gO1111phSSGJ5/9UtcfdmpcLusUkh0cPynnnkxHnrgTmSlJzZKNRAIwukJwksvL9LJLKZTMYT7BhLBE8+/S890rhhPExUU7xnnXk2WxqNoryd7nS2Eww6bhuW//yCFNEdSaj6e+/dHOO3Y+INhvX7g0tk34tUXHhJ9IGMPPgnX3XgvDjmoF9IsiT1nR/H7qk0459ZnYLU7UNSzB8aMG4v0tDR6v8QCu4oIbaWfolEkatHhsBbhu3bDP6jQhc8ii1WhCKHW6hKLxPlpv5GsG25aszrdgnB6ZCSJSVm3b9mI7dsrMCBzB2aPeFc04bCreatboNfE9R+tIRVpBdPQa/QNsGSNlA7uffxV52qzUJWCCYN1Dhcn5gX2a+VcnENlN5usmgKjCgo6sJyIqIqYg0mnmArfGyPNormNizrP8zbu9waxHo+e9iekavFtHVVG6FxO7+6+JkzJ0LQ5Lc/+BJ6rTbZ4OgnDhw9Famb8WREYvHTAm68+iZNOOQsrVm2RQuODa8YWoxrpKVqkJWuEWExhN9v9AY2NVjTU10p7rXHIjFNxyORR0l5s3HnPE3j9lccF6Uw87CzcfvejmH5wSYdIpz31KS9pcJ5puqa+kSyddEyaPBF5uWydUa3S5xPHIxJesI1IgrY887SQQEDMqCCcDEhCVFHYLZKDgXA6CIfxXG9cmeC52ZwePxrsbjHwdH1pPbZUNAjy4Y7mqN+XzCEetKqk6q8pJQVJGdkkWbslLZMqbnq47fUoW/0uln46E9VbP5MulrG3QF8bQ81qHJqiQQpbNvQ92WLhL1pF5sxKZwBf1njxBZFIhUQ6TGLXlRhgoPOZR4ibsNLql+ZpU8BDWfo7Op/j4ePnFhgwI6vtueD2R8jE00kY0C8f0444fpdFEg/s/TT3+w9x7LHH4t0Po1sJ3QncZ8ETgUZDj5JRuPiSy5GVGv+9PPTEa3jw3htJMfsx/W9XYM49D+Hg0fliup9E8fk3C3H8qRfjgstuxc6q1gN5Y2H+0j8xb+lamA160STGc6N53F6yOjxkzZEQMTQXD+qJHBp4PjWXRxBFrc2N8no7ttVYsYHI48+yOqzZURuW7bVYvb0GK7dVYcWWSizZsBOL/izD/DU7MHfVdnGM+3IcHq/QTNzHEw/CXqJ81n/cBRh7zP0Ye+SdJHeF5ai7hQwYfxpMqRY46iuw6ttzYK1cLF0to6vBVR62dEZY1HhqhAWfjU7GQwOMuIiI4jAioiItVRrpuJvOZOHzh1FF8qH+JkxM2229aCgfvFXuhV7QDkMhrKcI6rwBuMj6alvj7H/4SxFPV34gng7nzLPOEWvYJIptm1fi3LNPxg23PoQG2773UuOlmTsyYcTSZSvgdrWe8dtoTicSuAmTxhUjni59691vcPvN/xC/Z512PW67fQ4mDMtq9zQ477//kVj7aP68nxBSJDoqAvhs3lI02hzIzs5ESUkxe4rA5fWLuff4tptKpPOftYXT48POeic27GwQ5LFqWw1ta/EnkQ1bLxvKJdlZh4203UTncb9NKZFTBZEUr8XDc7yxRxJbNxw3p5Eo1DozNMY0aAypTSQNprQSFI04BUMPvgrG5CQ4G+qwadEtZI25pCtl7A0I/vCHxNi1CakaXFGkxz39THh4oAlPDzTj3l5GIf83wEzEZML4NDWckpOARa3Ad2QRcTMc9/0wPXlJeMCGsIZp+1mVD4sbA2IOuO6G/fSWFdC34SXVEfDDqtWJK6T2YsLoXjjv0ptJ4aZKIW3Daa/FIw/chhNOOgO/LV0vhe4DhELYsX07aurbR4DcL/PlF5+3Wmpbrdbh+DOuxZmnzYIlDoF8+e1CzL7s7/D5XDjrkrtx2603Y+yQVDGvXntQVunATz9+LfpNBg0eitSUxPLP1vJqLFi+DlqNGsXFRbBYLKLpjD3KeA42FSkAburkPjUdsTLPRlDV6MI6IpLV22qJUBpQXudAg8MLt4+b3ILhfhdiELZ+mUyEELE0dZdmZwLecjgd7gBIFdGzhjsP6gHXnyTrSCgPecj69HmR2nM8eg07AWrSXNVbv0HNti/Dl8roUogKCsl6hx9/NPpFP42HvpOP8o6OKnbFRiXGpqhxbI5OyPhUNVIof7kkpyMmkuUNfjyw0UWfN0xEvABCb70a346y4FCyirhpzkrHPih3k4XU/ayeLluPJxbYp/3tdz7CpnU8jiE6uMAmpeahprYev/3+B5YsW73HsnT5GlLs6/DD999hx7boK2IyeN3+Qw8/GhPHt38lS50a6FnYDzVWDdatXig82RIBLxuwZdMafPr511DpUjFq5FBSStLBTsKiJWvw7VcfISi5KEfDjm0b8OuiZejVewCKeuZIofHx9nvf4OnH7xfEEQEv4nfkCVfi5huvR9+e+pjWzqKlG3DGGafA5XTjvNkP4crZl6N/UdjqErXFBOClx9myrQI33nw7Fsz9QpT64076O2YcOjqhwvjFvOV495tfkUKWwfgxo2Exm4Ql4/YS8UhEwUsVeIiIymrt2FzRSFaOHQ63X/TV7CIWSoxrokwiQijuRNKPjZBIP4nMPr4H7kNrbHQgx+LA+LzVVIsOIafXITAk9SCNVkvkU0aXkHoKOaiQNVDixDZKC8zJ+aivXAFbbR3l7SCy+5xEce/ZnbUHf9X1eAxEPduIbV6r9OCbCoqHSKjSE4KbIuMJQtmiYTAhcZxhegkTltUXxIUrHaigSgxbO7yo3BEZWjwywIgMYq4ktoaqfeIrbqYIZ2XpRFiiZWafg2pm+6VXG4OVlzLeNP4dhN/nFn0ssdBRr7YISD9h5UY7Hnv8aXz8zhOw1kfv+4gFncGCI48+GbffdjOGDy6WQvccbXq1NUFKej7OOudC/P2cMzF8aElMNfXpVwtw+WUXYceW1VIIFRKtAdNnXYIbb7oVY8hyibXEwvrN5Tjl5DOwfMlPSM/uhUHDDoKZjBSlgrNj/AF0DK6c8DlOpwObN65H6fYNYtyP3piCF179EGedNFU6Mz4uv/dl/I+eY8jAvjjm6CMpZQXq7C4xYwFbJT5/EOVEOKW1NthdYdImHgi/k2b3SL/FLv+J/GY03ZcCd10X2d/1J7yl/0xqSQYtslPDA4c3rF2FymobppTswPmD3qUakgajpt+NpOzBZDZvJm24jW5KaicVbXf0MnX9SVKxdflbWLvgdRhTMjH2xIUwJPcKn7cX8Ff2amNrhcmAvyxrHDZoMoigCoh58kimpmkxI0MDLVVsHBQnn8fEwy7TV6+x43dHQKw8mk7W0JODTOhjUsFFERL/4bglNiKdABx01QO9TGQ5acWx7gB2tNkvLR4Gj/bnVUo7W2Kt6BnBnlg8DFZK6claDBgyBsbUvti6eR1s9c1XIo0Hvsc/1yzD19/+jIzsYgwd3Fs6smdIxOKJwO2yYfGi+Xjvg4/w25K1qG0gRUw1BqvNhe1lVViwcAUeeOQp3HXHTaip3CpdFV7+4djT/okbbrwJIwYmQxej3lBe2YjTzzwPSxZ9K/Zdjnps2/QHNqz7A+v/XEnCv1fGlcg5Wzf/icaG6l3f1ZKcgyuuuBo98tqePbS2wYZn3vkW9Y02DBsyGCXFhfScPDUOkQ5bGQ4P1pbWY3uNbVfTW6L9MK14s+l+vGO0w4/Ci8KlJxvFPG5OhwM7y7ZRpU2DQ3ttQB/LFqiMGSgc8DfiH1JNfrJ4gmRxCuJhVuQtqTmFiWpwqZQnlajc+gM8ThvS8nn1WCKrvYS/qsXDWT9Do0QaCRnPuz6xm35UUwSbiCV+qPPh3Z1eMTlof4taDC5lctJTPhudrMHiej/qKcGGYAhmin9UilbcCzfF2YjJ5ll9YvYCHhd4XI5OWFPdAlQ4mGD3O4h2b+k3bztLGBS1qC13JXjlhX49tbj478fi9vtexZiDT4ZO176e8q0bl+Oi80/DBZfdiPKq+GODugLc/Mek8v5/X8BVl5+LGYdPxdSpU3DoIZNx5ul/w+svPwaHrVo6G0jNKsF5sx/G9dddg+H9LNDHIJ3aegcum30dFs3/ivJfM43bKcjLL0SPgsSaCbeUVaOqrgFGox7Z2RlSM1l4BdAtVTYs21yNaqtrV5NbW+BpdFgYTFJiQGh7RaWCQacWS2eb6CVyfFU7S+GmqnamyY1BaWtF82JK5iBozblcU6GE2RuOX3hTITUYJOuWapfmlCKYkvNBdRo0VrZewVVG54Mb2Q9N1+CL8cl4aagZswsNmEn7Aw1qaEkb8RgfzlG2QBA3b3Pitj8dwtKhbCOIrdiowln5WnEON7d9XOmDnaxvJjdunjsoRS3S4AaFVXbKA12r0jod+2VTGzsADBwxDUkpmVSu2q6hJ4LwLL9q7Nj8B7ZvXhFT6e1pU1tTcBJ19hB+W16BN9/8N7784FnU15RKRxMDrxo6atyhuOfeezBtSttjYWKhPU1t7QE3rfUbNhXnXnQDjpkxAYXZauh4AEIMzLnvWdx129XCsusKzDrxEvz3rWdhiEF8TfHRj4vxjwf+LRbJO+m4Y5CbnYmKeht+31CF0lo7leXwrALiQwrQVvyU9qXwSF7ipRGYNPQalbCYdnOVdH6L63bti5pqJIy+OaXJzXwcUlm2A6Vbt8Dl1+LYfr/jxD4/UhlSYeThc5BeOImq0JWkiXg5bI6E33vk3dO+wkDV5370kUxY9dPd2PrHD8jtPw2jZn3NBUI6r2vxV21q436ZEzK1uLOfSbg8s5XCsxHsJNYoJdPkT7KM3i7zYDtVDCx0Ls+/fmaWDv8s0cMvrQnDxeio362ooQttdA+v9DdjAjsWUDychYYsagC7MbGVtPSgVDEtz+5ctP+Cm9r2S+LRaI247cF3MX36NLhdzt3ldA/Ag+4USh0evf8WfPg2z1wQHZ1JPBE4yL7eXO7Fx5/9hLdeeQAbV88TAxHbg9SMAtz7wBO45LzjpZD2IRHiYcLnpjjKv21CRefmFQ7FUcddhJkzZ2L0kBxkp4a9tOLh9HOvwQf/fVqyOuOfmyi4mc3j8VLaKvzz5sfxwJ1XSEfi46UPfsDtz7yDgrwcnH7isVBpdPhxZSk2VzYKh4JdhnFTohA/pX0KF6tJEtEkG7Uw6TTCyhHPxqeK6yLSBE3j27XZHcYrjHo9blRVlBPxlMLh02JQ5g5cPvJDGBVuZJVMxZApN9Dbo/qvdytpNLY8uS7cFBQfk4uuN0kWti1/Davnv4gkskzHnvgLtMa2py/qDPzViWcOEQ97tUXAFg03qXHWYi+3Rza78W6VR1g2LA/R+ZPJMmKrhh0QntjswnPlbnH+yRk63NHfKCYc5WI2+dcGUd1g+XFMMnQUOf/e37HfEo9Wb8azL3+Ic0+fBj+95M64Q2764BrHRZdejzdeelAKbY2uIB5GgDJrZUMIC5duxxuvvoAfv3oVjXXtczwwmFJx5TW34babroSRXWPagUSIZ9jYY2BJTsXGNb/A7agn5eeCn4iI3394VVgjdMZkFPcZhbETZ2DS5CkYNbQIBZkamI1t3w97/77w5vf4ad4iaNThNWj2FGq1Fps3rsT8b/4NnT4ZTzz3Di44c7p0ND4ef/MLPPDKR+hXUoSZR87AhioHVu+ohdcXEAV7Fxk0JQrxU6pZUniyQYtUs46ehxQ/vSOv2wWHrQEuuw0+H/cphs9vG+FzOFm/z0dxWOF0eqi86NAnrRwXjvgMObp6aCy5GHH4/TCl9qLCVEvai2e/iKFuOHFtT7J6ClC9+Tss++42MfZnzPE/wZLZceu5PZCJpznxNAUTEDeVzdnoxCfVnA4wM42u6WugFCk+KlIrG/04ZbUNZtrvbVDhI0qr0RcmnumLGmGXaonfE/Fw35BMPDGQGPFY8OJrH+LsTp6rjT/KeRdfj9deeIh+RX/sriKeCKzOENZvo4z22Xf47+uPYsva+WLqlEShI1I+49wr8OSjd8FkiOEyFgWJEM8JZ1yDi664FatXr8LmTRtQW1UGj5fdpBUwGpOQm1+IouJe6N2rEIUFKchKUyHJoBSkngj4MWsa/KizcuNAE4uig+DrmXh+Wbgcr77yLPQ6A2696WpMGFUknREfj7z+GR559RMUFRWi/4gJsHkDqGpwCnfqeMTDRYbTTjPpkUKkw9a0z+tFzc5S1FWWC2cAry9I1hBHEu8hoxzjIEqDid6k9WJ07noc2+cXpOtsCGmSMezQW5HWcyIVJAfJNsrUPENDLNKnF67JIeIpgrVyKRZ/eRWCZGkPP+YLZBQeIZ3TtZCJJzbxMHT06TbaAvj7SruYaVpP8X0+Jkk4N3Aea/CGMHFJA1IoPh7rM3dC8i7iOZyIxyERzw9jyeKhwMQ1yb4DE0/b1dR9hNifquPgOPcyz7ZCklGBYX2MuPDcY3DnAy9j2qwrYElKl462DY/bjjdeeQI33fag8LDpTOi1wIRhKTjzhImYfckZuO66f+CmG2/GLTffjBv+dSUuPf94nHz0KEwelYm+Pbimz6tvxlOszUH6Gdlpagwo1JJo0L/nnkm/HhqU5AEzpgzAXfc8gNvnzEG/3hSQILRkdXHToJOnx3F5hAMBF/Z4iLxyXuY61cKko4Ld2oiNq5dh+4a1qCPi4m7joiwFxhZ7MLawEaMLGzCqZx1JLUb1qMHIHlUYWcBSQbKTpBwj81nKMCK3FOMKNuOYvr/hqjHv49whX5HCsUFlzsXQQ24n0plMJpGXpIZuhj3Z6KMpqAISS7iIh/xUs7aJplS2vH2uyvBDyNjn4Ca1IalqpGrCGa8yFES1OyCa5BjcgMp5jnet3GQTJX/ycZ7tuq28uz9hvyWeAxkaqh0VZChw5JReuOPOu3Dpv55GXmHiLq4+skJefPYhvPH251JIJ0Dk2hCMeiAzRYG+PbVEkCYMJ7N/aB8DBhTrUJSrQUYKd6DvobXCF3eWELLSdBg7KBmjBiQjNYl9gBKDxWQg4lGGx3WJwaBUIKQ4Y4ErLhaDRlg6CiKdxrpabFq1FPU1dXSxBiNzt2L2mM9w3Zg3cfHQ10newiVC3g7LsP/iUpbh/8UlQt6hsP/RviQj3sVFwz7CCX3mom9SGaWoREbJNIyc8RjSCw/mdjjKAJRWgD0dw8MLo4ogJCM9lxtwr4cy1EiVBJ1o7vR7E5/HTsZeADFHD71SOAmwQq6lT9xGNmyFyAwH3QUy8ewjcAd0skmJEf0tuOz8k3Dz3S9j1MS/Ua2Ua6ltw+VowMMPPYCaep5Mo/PAiikC9spii4YtFTF+pZ2FYW+B74vJXHSztOMeM1LMoq/J5/MJ70n+Juo4Fhwby1oim1SydnjlUIfViu3r/oDd7oZRG8IpA3/GZSM/woi0ddAHa6AMOKjG6iZrwwON0gut0icJz68VgE4VDItaEuILdkPX6nTQJuUjo/cRGDrtYQybOgemtL5EOGTh+MjSCdTTg0bIhbcthAePskebtxyw/yqsI15ATjgb0DOEQqziZOw3oG/CE4Iy+K8nyD08YSRCJ7uv7D6QiWcfQ0sKs2e2EicfMwZ3P/AsDj/2ChiM8ZeRjmD92iX4/KvvpT0Z7UV2RgpZeFqyADzwecLr3/A4mlhFWFg7Rg102jBZlfHgYJsLJn0IZw/5BkcWL4EqFIQhcyBKxlyMwYfdj6GHP07k8RgJb5+g/ScxbDrL/2H49KfCMuNpkmfoN8mMZzHyyBcwZuaLGHLoPcgonkallAjG20gEUkU1A7J0dhFOpEmNf1OYkiwcpYmIyQE4FgDWb+iaWnGcx2WFQn5BzEqyfGTs/whXdKSdAwwy8ewHYGWQkazAlDE5uPW223Hq+XfAaE6TjsYGOwr88P0P3czI3n+Qn5WG1CQzvDxbAc+uTR9CyyuACuZp/lbZj43H1vCgTgWZgg3VFWioqRJ9PLN6L8DEvD/hC6nRa/R5GHHE0ygafSWy+xxLxDEdGb1miG168eFIL5qGtEKWw5Da89Cw9DgEKT2mkkxBSsHBsOSMhtZcENY8XiIaJg8WIg5hySj0VHJpyySjNJPwxCp0075KwP4L0PgREc8SOt+z61jA5yaCdYlJDTT6xPsUZexb8IJwB2L5lolnD8GeWr8sWo0PP/0Jn34xT2wXLv5T6Iz2wkCV1lGDUnD9dbNxziV3wWBqe9qXtWtWob6RJ0uX0V5kpyUjLzsNXr8fLrtVqmHy7AHKVt+P9/VU/RQzVPv8qKsoh8enQr/0MhxauBQe4oSioWegePQ/oNJlc60A8NSRVLchNSREKt6GsFXDRCO2HEbHxHQ47InIVV/KIFxkeU6dAIWxBeReB9jmAg0fk3wQJh6erTriWMDkRFuP2yo879QaLXTGXAqTIWPfQSaePYTbC9x48x0447QTcMrJx4rtv264FbxUdUfApnWfAjWuvvIiHHXC5VSjjt/nU1tbjbp6ubO4I+DlDgYW5yMYDAni4XE33HejVYdnDWgJnZpXfVXC7bTDYbdBRfvjC9ZDrwzCkJKPnoPPJVLQECkQ6QSISMSs0bRtJUQsAbKwuOOfCcRHBMRLGth+JWvlS6DufZL/AfXv0f4nJJ+TfBq2ZJhc6ulY3Vv08d+m30w284i8NlFc7OVG6TNJMTnxVmkRxpC9sZJXSoDWkA29pe2VcmXI6ErIxLOH4AGuPOO1y1EnJrvkrbWxBk5nx6eE4X7GPj3UuPTSS1HUO/5AP7/fBy8viiOjQxjevwg6rUYM+PQ4bIJYjDoehdEcvM9NbWKQqMctlsG26HwoTK4G/URa7nioTD3C3hns5iwm7eT+F+6PkUSpIy7gpjGyQph0XGvDRFP7H5I3iUTeJWIhkrH9BDgWAc5ltF0eFucKklVhgvJsJbIia4jTEHfGZMMVFPrNphmTTtAXJh0VCRFhY+1WBAOAMaUvdOZ8OleGjH0HmXj2ENzhzFO1NIXd7iDi2TNvM1YnB43Mx4yZJ4s+hVjgBfM0Wm6CkdERDOtXhPzsdDhdTljrqsnSUcCoV4smNbaEImCPt8jM1IEArxrKK0t6oVU46RhgSCqik4hYWPGLSTuZbGhfeJlJhMN9M96yMNnUvBImG9vPRCRbKFKygtjbjD3PdjkM8LalUF6LiLgbBt8nWzgtRJNFfKQnQq1BAxEP32dq3mTaNs+vMmTsbcjE0wWortqJah7XsYfgPp9Dpk6G3pAshbRGUkoGzGZux5fREfTMycC4IX3gIauRZ2rwup3QqDVIs+ihFeQT5hKWZmAtTgo/Mhu1QkmkskuhM3kw8RBRqNgBwEjksg2oexuoejbsbcauzozIeZGiyNFFEowrfGNNJXItC+1zf5CaiIeIrLZyI5w2O3QmLdJ6JjadkAwZXQmZeLoAXpcVm7bskPb2DL17FcRdSrukZACSk6lGLaNDYP447rAxSLGYYauvR9WOzSLQRKyfm2pCTooBWckktBVExEo/KiiiXdZIxMpJCvfn1L0LVD5N1s0CMkTYEiZSEP0wtBGkQT86Is3YhslGEm5mU6eTpCDkc6GqbBV4Gabk7LFIyhxB58joTETsTm4ijzMxu4wI6B3JxNMF4Glt5s+fL+3tGZKTTWTxsEtsa2g0eowYPQ5GbuKX0WFMHtEfRx08Ag6XG5XbNwlhva7XaZFsMRApkZgNoi+Il9bgfqDW4DC2XEiEmzOJ43eg4jGg4QsiA/ZMo2OCaIgFmom3Y8JNekIojl3iCZOfrpCS04m+nbqqLVBRUFav46FUtW9dKBnxwZTv5bxCn5+nZPuxzkfVirALNIuMaFDIxNMV4Gn6v/vmc1TVxZ6QM1HwSqzsQBANGTm9MOXgydKejI6CieTas4/GqMElaLDasX3dSmz64zcioM2orSgjKRfCE4DWVZbB3tggXdkEom+GtDs3q/F4m5r/kJXzLGmlUgpnZU/H+RjPFq3t0YYURJFo57HQMZ4IVEh2OMw0mognjzKPFzs2LYDb6YUpvRDZvU8M36uMdoMNmVjGjJoOlLsCOGmJDT9Lq4/yQm88u7QwTGW0gkw8XYRN61fgw4+/kvY6jp07K0nR1Up7u6FSqTHj6NMwqL88JqMzwINJH7/uHBw6bghcHi9Kt23FhpVLsX7F71j/x2JJluDP5YtQtnWTmFHc5w+SYoloFi5KRCw8hqbySaDuw7AFItyb6Ry2UDQZgHksEcMYwDKOZHw7hM+PJnxsgiQHhfcNveh21CjduBA7t68Wd1cw6GLoLURKMtoNJhyeVV+rVMBIdYvIrEq8USkU+KrKi9OW2bHFGxCjrdjH9KQMLa4sMoqZrGW0xl4nHvHN2qgG8FxSPNitK8DeSEIRxAArEq93zwdk+rxOPP/cM6jeQ6vn118XUo21UdrbjfyiYTj9jDNhSbDlRDx3vNdOz82LqcWs1v0F0LcwDy/cfhHunn0qDhs/FD1yM5FiMZEYpS2LGSlJJqQmW8SWxwIJcJ9OoA6ofx+wLRSKX1hAnNebCZ1LFrHf44TPbSOxw+ex035Tce6SQEQoPzUXFwI+D4kXAb9/t1DedVorsHnl11i34guKP4SMnuPRY8hl4fuU0W7oqVC8V+HBLX868MFOHxw+tmbCzUW86udT292w07flosPNbNf2NOC2viZh8XCvm4zW2Ovr8bipEjj9yBMw7/sPpJDW4Hb0Ofc/h1uuO18K6RzwkrGnnn4JPnjneSmkNdQaHf5184O45/YrpZD4aLAFcfSs4/HLTx9LIbvBcV1w6Q149ok7pJD2obbBjekzjsbS35rPx2Ywp+GGOS/iqouPR3KCDm33PfJv3HbjZWLMUSxMmHIMvv7iI1gSWNTtQIc/EEBVrRV2l5v4goqI8GLbDXZJDrirUblgFtx1mzFw0tXo2Xsw0LgYYmJO4VnW5Bruy9H3BpLGwetqxMrf36MKhbV5f1GT0yM/d08XuRsiRLjw86/mxZdv1eu2wmV3IEhV79T8oRgy4z8wpyc++3lnoruux5OkVuDqNQ58WueBid4zv2X+omy/GikveJqoTZ5ylavJhVolHhtgQi+TSlhIiZJOCqV18Uo75jX64KKUXuhnxqT08BLXXF8cvKge6XQP/LWXH5yKRm/r9Xg+HZmEdJ2y05dK6QqEeCZ46fdeQ0OjG+Wl26S96OAJDX/84Vt4o3dtdBhOVxDlZfG9zXjp553l7VsZNBb8VCP99wuP4o57n2mhHhLDQ48+h5XLF0h7YWi0Bhx36j9w5qmzQBXuhLF9+zYxA3M8rF21FKvW8Pr9MtQqFfKyUskKykW/ojz0420T6dszCwN650Or0YS/rWs1aZ8K4gKpaS3iYdZMOJyUGFn01vpS1NfUor62erfU7JY6SeprqnZJXXUVGmqr0NhAUrsz3OdUQdsmUl+1U5COzpiEHsPOwPCjP9xnpNOdwTNEH5auxrQkLXrrVcIPkReE4xLEC8AxmAoi83wflabFe6MsKCbScdOn5q/d1WhdJek+2OsWz/ufzsOZpxwDN9X64kFvSML9j76Aqy45RQrZc/wwbyWOP3YGGuvjE8vAYRMx9+efkZ7Mtcr4iGfxRMBKYPY/bsWtN15NZMGeT23juVc+wD+vvhgOW40UQqRDFtSMv12B226/DSMHJInlChJBbYMP06YfgeW//yCFRAevenn0cefijVefR7Ilsfv8K8PnrsFv702EtWo9Bo08DD37H0YmfTlg/Zk4hlv6m3wgYfH0ERZPwOtA2bal8PKknS0sqXjggco2K1lZO1ZDqTGix6ALoTXkEJFxVzaD/yopv2UiKXM0LFkjRei+RHe1eBjsqcYGRTkxyRaqtK63+7HCFsBCskwa6V1zFYOb4W4sNuCYbJ2wQuIsNhoTHbF4uJ9pyq8Nggg5ye5m8XQ58fAkmjylSG1dA35bvBy33HwT1vzxq3Q0PkxJGbj08utwxuknoW/vIhj17eN4/gicdkODFUuXrcQdc+Zg8a/fhZtO4kCl1uH0cy7HZZdciP59i2Ex62Iq+USIh8GWysGHHo1/XvsPHDxpfMxnWbxsPV546VW8+dpzYgqeCHQGM4468Wpce801RDopYjG2WOCnY2vR6fJg0+bt+L//exZvvfGMsMDaAjcPHjr9eFw5+wqMGzMcqSnGhAnur4IgFRxe1tpl24kVn06FrXrDbuJxlYWnvIlKPP0A8zjaoULBc/Ax6SRc+ugatRrVO1Zh6bz/QGtMw/hTloRnTNiP0Z2Jh8GljAmFPddYbbDrtIcUy1oioR9qfDghV4d+5vY1rbVEe4mHVxvl9CYtbBA5jNOViacJnn7hf/jii0/gcbtRWrod27dubKZME4FKrUFqRgEGDRqCwqI+uPYfl2PooGLpaGy8/e63ePudt+By2lFWugNbN69vV9pcu7Sk5KBP3/7Izc2F0WTBbFLGE8cOlM4Ig4ln5jHHYcHPn0gh8WEwp2Ps2ImYcNBE9O3XDwaDEXabHeVlpVjxxwr8/NN3qK8pFW7UESSnFeCkc67HxReci0ElZiId6UAU/Pr7n3j4kcfgsDeitrYGGzeshbW+sll8icBI99mn70AU9CzGKaechrNO3Ttr9O+vYLLhNXhYeBkFf0ABp7UUW+f9Da76zRg0vCnx/BiFeGhfRyRhHEo7CXwLcT0VTTGrAakcXg5BY0Jl6UosX/g/aPUp6D/jayRnj4JaGRDLWvMy3vsbujvxtAS/Yf6qavrDSxZwk5xvDzVoosTD6S6bmoY19T7cscGJVc6AaAJk96WvR1iQoVfJxMPLg59wyiX45L3YHfnthcGUhtf+8wFOOnaKFBIbl1x1J1586s52K9xYUGv0ePK5t3DpecdJIWHUE/EcNfNY/Db/M5FJEgUTm1KlEc1bPO6Hl1/mvq2mUKu16DNkCv5+0Y2YddRkFOeqoJXWZo+FV978GpddeBKRfefNWH3+Zbfgpafvkvb+OuCi4ff7w+v1UOWJtx6PR2x9VOt023ei8Y9z4bNvw4Bhh+wmHmsUi4chxvq0CGsJLo68jg7PesBeceyezQNP2V3a1AeVO1ZgBRGPSpuE3PH/gyl9OLS8eqlOt0t4hu32NOF1JQ404ukKtCSeNwdYMJGIx0Eswnp0EBFPBhGPlr7pq0MtuGK1DTsp/zHpNND5RyZr8eAAI/3qHmv3dKlzAZcfVZzJLTuCUNAnbjoRiFaMTiIdBjsdNJ00MgJecvno487BuKknIye/BGazWSzB3BbEwFCfW7hd87Yp6XDtNb9oCM6+/CHc/8jLOOPEg9E7v23SYfDa68FA57qi7y9KbG+BCYctG4fDgcbGRtTX16OhoQF1dXW7pLqmhra1CDTLY5H8wXk0ijAZ8cwCsSTgpq0DSDsBKHmF5FUg60K6jtLg403A99jQQPdG98L3F7lHFr5vJkwZ3Q9GIo+XSj34otILG5ELG7Fc+lh89M0vWGlDFYfTPhPNtfkGPDDAJMpodyCdCLrM4nF5Qpj9zwfw3TcfhaeT30OwotboLLj33ntwwkxuJ4+Pf93+PN773+v04fb88Xh+LnbxvuGG23DBWYdLoWF4yR7eXhnAqg21WLNmHVYuX4Qt65eicucG2Bp2wu2yiaWV/UxcpD+i3Q1nLhVZN9wMl53fH6MmzMTUw47AuJElZOVokWxO/P29/t483DXnNgT8Lop3z997IBAky/UcPDjnEorvwCcgblJj64YtG5fL1WzL4ZFjbk8APlcFLPW3QOmtQP+hh6Jnv0Mki+d7+tBMNtL7ivnaWhzgtXlSyGoqeYkOcde1hK3XAe5NQPJIVO1YiRWL/kcZxoxQj8egSRoIg04JvV4vhC0e3hoMhl0WUPQpfvYOZIunbbDFc94KG+bbfMJ1m6uNTkErwCSzBkvtfmkaHqpUUhgvhtFLq8SNvY2YnKqBnSwjDu8u6NKmNrvTjzfem4/Fy9eRVbDnHlKsELQ6DU46ZjKmjC+RQqPDSx/izXcXYMFvq8UAvz2tsXPaHMesIybgyEMHCaKIgJtcNm6twbpNpSgrq0BlVQOsdg/sLh+s1gY01vPMAzVwWGvhcjbCy4MBRbNaUJCN3pgCS3IWUtPzkZXbEykpZmQkG1DUMwcDB/RGcU86lqSldygl2Aa++2UD3v9kHqUR2GOFw1mD73PCmIE4/fiJ0B/gMyDyszLJsERIhqXpfuS3y+2H31OLXO99UPt2ovegSeg1aDrEiqINX1NkkUXZCFzC2nx1dFKArJ0ec4Cci6UwCQ3fADX/BUxF2LllKVYu/pjM4iQ40u+DylgCo0G1i3iYcCK/m+7vK/KRiadt8GwIr2xz4z87vSilip6K8oKOMgw3nLA9zU1qnIG4NYP7cyZZ1PhXLwN6m1VwdF6jzl5DlxKPxxfChx9/g0W/zoWaiIcVN68rEy5/7VFgxPNcJsli0BstOOH4EzBiaHzi4Raxjz/7CfN+/p6Ih9Klmn9Y+GiiaYfTFf0vZKooiSRmzToOk8Y3HxPhdAXwxdc/YMXSBWRleOgqrpmoEeK1WJQGyjg6+EMasnh4XE8IAYrU5/eLuNkS1KiV7KwEjcIHZchGV3ooUQ80Gg2SU3NQ0ncYhgwZjLysJOEJ1xaH/rZ0PT784D34vGTxKLmtv73PzeC6Fb1HIi+eGmbywYdi1sxDEmpC7K5g0okQyy5yibJlYYuHPQb5d5HqeVhCa5GeW4yRE06jmEjBO9cC9uUUKdVddw30bOv9cya3h0mnZ4v+tMafSIN/RhnGiJW/fYCd21bDpy1CrekW6PTJRC5UgZFIpinxRPYjYfuiybS9xCPUEYm4131wv/sKrDXYU62G/iyo8+OrGh82UuWdG0yZW9ii4XVxz8sz4KIeeuFpuqdODfsKTDyqOwjSfqeCM05VdQ2cDisMOjUpLVJmQY/Ycu2dt22JShkk64I9dhRizZnMjEwMGjwAaSkWKZXo4PxaU1sHm7UeepE2BYbcIs5E01bQJ+frTEYDLBYz0tPSMaB/P2RlNl+iwOMNYOXKP1BZsV2QBQ885Os0qiDUCjfIEIZO4YRO5YBe7YRB40Fmig5FPdLRuzATfYsyiFQMYgYCrTqAoN9N988FD6KZrqqilCwoF9S6JJhMRujIxI5XHO0OJ6qqKqHTMKGxCyYRmoJMdap8R3vOaMLvXEnPbzTqkZKcjP79+qKoMK9N1dmdEXEiiAiTC0vT383E7YLDReog0IhM/Xo4nVaYzGkwp+YCKsojmjTKcz7SGGT58Dxtu9QHQbxI1hoRoXDRNEe/PZshZjgwkDDcWwHrt6R1/KjYtgJbNyyEivJHHSbBrhhKv/3CmYAtmqbCYU3DufLH270N98vPSb/aBpOOgmthpJjgIBLm96EMVxwPfCiEl1wqldsRKWqclq/DGbl6DDarYaFyzI6s1xUbcU5PPXhV/W5o6OwGf+eusngYjTYXrDYHFVIPbHYHSktL8efaP+CwNbRZCPi2WP3nF/RC334DkJOdCUuShUjHTGTSpP07Bmx2t0jbLaVdXl6GNav/gN1a12baXPvNyi5A/wFDkJ2dJRSwjmqMqUkmqj2GDd8IHE4fPvn0C6xdvUQU7pZgAuZn4aYvsyWFnmUQ+vTpTfFmUC1UR4qeDGvWNx4vGq0ObNm6DWvWrELlzu309OFPw38zsgoxcsxkDOxfRCTFlow41Aputw/1VjuRllusglpTV0f39gcqRHzh+4kHvk9eXI7vs7BnDyQR8aSlWpBkNkhnHJhggolYNCxOp7OZldNS+JjD6RXNbcPSXkeyuhJKrQkDhk1Hdv4getFU+/AT6fhqSapJaujlWiUiIkISREPg7yFWFqV8xctUk5UMPVn0SQfTPuVz3w4ygGuwY+sKbFo7jyomXjhCudgWvBxqfTaMBjXlT1Mri8doNDYL432uGO1ttMfiCdE3UA8fBf3Zf4d//ToEFi+Cb/FvCNmsUNAzgFfaZQuS3tm+sN72NlhL8Xxvwm07QNqQfrNV1N3RpU1t0eDxBbFo0RL8Mv8HsPtwrMzDt8R19f6DRmDy5InITE+SjnQc3BezZNkfmPvTd/B6uBkqOvmw4k1JzcSMI2eiT68eQi/Eg8Plw+eff40/1yyNSjxhAgXye/TCuLHj0bukp1hQLB4qqhvw66+LsGblUtoL5zQmw2SqTY8cMwlDBvVGMtWEEsXmbTvx5Refoa6mQtSCY4GfPTM7H4ccMg29inuQdXjgF+4I2IstGsGwtCSgpvt2ZwBGrMOw9A9gIKs2RO+3oHAEfe+hMCfx0tNUV+UafIA919hrjYiHt8IKopzB/UCCdEix8lgdNa9kSu+dzgt47Kir24nSbStRU7lF9C26Q2nY4jkTPs0AmI3sVBAmlQjJtCSgpsQTLX92NdpFPGRFaqYcBvPjz4T3KT/Sh4Hv90Xw//gNvHN/Qqi+Pvw+6VkUnJf/AgR0oKFLm9qiQa1SwGSyYPv2Uiq09l3mf0th5Ob1xOGHTyPSib3sc3ugolKblJSCHaXlsJPFFTttBXr3GYjxY0fSfvjaePARmW7avAX1dVWt4gwTq0KsEsrPUlyYS4q/7UjNJj0K8gvQQBZQfV21IAuOmxeYq6+rhcGUSlZIasLEwJZiXb0V1ZU7RfrRmmYYBoMJB085FIMGlIj39VcCfysmdxauLLT8LSoQLYTBzZJ2bxoaPBlI1pVDr3QQwZfTu14He2MVWSjsXUj5T60hw4aJhawabRpJZlg03CxHFSteOpusIC+RjbVuB8p3rMbmDYuwbdMSOK3cQgA0+kuw1XsKvOp+MOnDnmwRz7WIRAtj0ZK1sC+shPY0tfE0I6pevaGlig9l0nCfMOV7VWGRICT92edDN226OBbcvhUhl5POkcmn24HKzl4lHgZnlB2lZWior4mq/LlwcJvuoCEjMZAUYGdmKa4hVVRUo1aq+UdLm92m+/UfKPo0EoGfLKnNW7aivrY58XBcrJwKi/ti2mGHIrtF31Bb0GnVZHml0/1WitkX+H5Z2CuOZzpISctGcpKJ0pIuiANWfHUNNpSVbhdltOkzR4SRTWQ/btxY0S/2V0P42/Ng3t2kEtlGwOdEtpHzmci5T88VzEaVsxeCRB5GTR0UZLFYG6pRVbEelTvXoq56CxrrSuGwVsJpq4bTXkm/K2BvKKdjm1FZtgalW5dh2+ZF2LFlCWqrdsBLlTOGCzko907DzsAsqPQFsBhVZME0t2giFk5L4XAmnsg33ttoF/H4/VD36QvttCM4k0qBzaFIS4dm4sFQjz8Ivu++RshJ5EPlTkY3wr4gHi7L28t2Uq2wMqbVwZNhDhgwBDnZ6dJVnQUFSssrqDZaHjNtHrzZq6QP8nKzpGvigxcD27ptGxpbECkjNS0TU6ZMQX4u1Ww7ALPJCIfTg8qK8l1EyWm4SSHxHHiZWTkwGRJrt6+taxTTFnG/UTTSZcnvUYR+fXsLy/SvCH4H/G6aEktTiZA/f4PIlvtNWNjpA6oUNPj7o8FbAm+Q1+rxQaVwI+T3wOWwiqmL6mq2Uf7biKqd60nWiS03ozXUlhMh1cPndYvGVZ8iFbZQf1QGpqEqNBNe7QiYzRZYTFqYTCbRdNZUOCzSpMbSlIz4XvcV2ks8wuKZNiMm8USgzMiEZvxEeD/7mN6vX1hHscDHuclOQPq2MvYhiATif90ugCjATQpxNFFrtNCwG1Zng0hP1FDV2lZpRoSJR9GOZibOw9GeR0PPMGDgYPTsmZjlFA0cd35BgZgnrrniU6G8bItosmQCSgS8YmlEYcYSvU5P1tFfu1Dye2DFbbGQkidJSkpqJsnJyUhJSUFqaqqQtLQ0Ienp6cjKTEZOVip0KUNRrzkFW4NXYov/UpQFTkBtaALsit7wKjLhhwX+kIFEDx4yyCTjUvaAVTkS1YqZKMPF2KG4FtXayxCwzEByWiGyM8zISE8SaUXS5vvg+2GJ3GvkvnkGDSYezjfdHZ53/gPvz98jUNp8SRNV/wHQX3EVEZavlXUaAZOOMicX6rHjoCRrCS4XQnY7Qj5vzGtkdD32usUTCIawfUcpGuqqhSKM1CabChNDUXEJFbTO6d+JgPMZD/KsqeamttbpsrCC7lFYTNZWhnRVfPj9AWzdvh3Whrpdz8NISc3A2LFjYTYmuERoDASCCiKY7aImzEoxfI8q8BQ+7IKRm9dDuKu3hZq6BpSJdZCiWzxcC8zKKUDPHvl/uf6dluB3we+I+0UiFk1T4XCWSN9J02Ytg0EPk1FH1qoOemMyVPoeCGgHwKsZBZd6PJzqg+BQTySZBLt6CpyaQ+DQToNLexg8+skIGUdAbeoDoyVLNKWmJBmQZDHtIhUmlMg2lvC9cF7cH2r27bZ4SlpbPM4br4H7tVfgn/czVFQRUxX1ko7QtyLy9c3/Oez5JsZMtYDbDe2Rx8D0wGPQjBkP1YiRUBb0AKxWBInIQm5pKqIm70q2iLoY+8LiCRfqcJNRTGHF2AUfn+s3baZN0p6MJ56HMnzT65m88vILkJa658TJ8el1hmbxs7DC436y6ppa6cz44PtUS1ZPLAnzjVwLjIDfGb9nVuZsXbBVk5GRsUsyMzNbSVZWFrKzs4Vwc21+XjoK8tKQn5+JXMoTWXl9kJ47BGm5o8KSMxwZuf2Rk1eEvDy+Jh35uWnIy0mjOMLxsTRNg9OO3AtvWfj+uLmNibE9+bc7QEHPpTCaECwvg+uhe4XFEoGqZxEUOXnskhmuWbYEh5HwG2ELSXf032D8542wvP0hUr7/Fab7HyVCGgsFu7dzcxyJbAl1Pfa+HU4ftaWibikqkq4gHo6S5y+LlmZTac8cZ5xJuXYcuZZ/85if3NycTukr4fiVYnaD5vfICoatnob6OjGDbVvg99n0PqOJko6zG7uM5hCkTe+HLQm2PLi5K0I8EZLJyckRy2ewRH5Htnl5eUQouURCOSTZRERZJJnokU9bIiTe5/A8yjN8Xvja8PVNJZIWExGnz81tfD9sefG3PdAIpxn42eg5gzYbAuvWSIFhqHv0DBNMLER5LQp2uKDvojv2eJhfeB0pv68mMnof2mOOIyvJJZ0lo6uwX1o8rFS7ZG0RyptKSpvjj5ZuWNiNM/G0w8/TXKGzy3hKSvu82GLB4/WK8QxN448Iv0eH3Qqft+1xzPxMGk3rOCLC76SzZxM/UMFNk2wJcV8QK362OJgQ8vPzUVhYiJKSEvTt2xf9+/ffJQMGDNi1jSZNz2Xh6zkejo/jZbJhwuNmNm7S4/T5Pg5MNCcR4RwQpNqVIBeSliRDFlFnGOrqfgOhPelUhFwJEA/dA1cKI9LqnmTExT7JuW1ZPKz8O2Nm5VYgPkmE+NqjgFvGxyTEI8mNhj3r22FwVrY22uD3eaOSJYfxMX+zqfmjQ1g8La5vKfwcomZ5AEMoCWnbGRIPnDeYHCLvl78XC5MGS2SfJXJOW2QS7R72VPYf0L1Q+aGXIO2HoepRGCYfD89jSDZ5Uop0REInPkKooa7NMsADIHmWBXE/QtxiXwx4lZEQukC7twVeYiC+4mdpj9XRHrTV3KQmJdC+miQ3tTW3ogxUE2brYk9hc/hQXV1N5SDYLP6mwulzQWgLCTUxcqE/wMFkENl2hrSFyHmcpzjvRRM+xpJInJFzOlP2GzCBUD4PT6y6G6bHnkHaHxthfuU/MN3zIJR9+0lHJDgd9GKk3wmibnAv2K+4CJ6334B/5QoEa2tEuJiaJw4EARJZq8eOh+6Mc2C4/EpoZx0P9bARUFCZD9G98MTCMuJjrxMP5622iIcVeVcUCI4xTBLR02URiqAdafNgV1bqYpQ1CQVAS4VHWA97AJ7de+fOKtTXVcYkHRY+Jl5qG+B7i3Z9U2FLVIaMfYpYFhgVSc3osdAcfEgrjgls28oZXJS9RKFQqeGb9xMcd94K2wVnwnHVJXDccRN8n30ChT46+bBFo6D7M95xLyzP/Vs4KegvuAymOffB/OLrMD78JN3foTyB4y6CkhEde514OG9wP0s0xbdLKFN01frx3IwWNc0m0h7S4GUXcnJzxTQ7JZLk5eWL5Q46Cq8PqKppRHnZNvBqovGJh9fqaZsw+JmiXd9Uwq9cLiwyug+8c39E4M+17P4phURBlCwtmhjZwSCZPU8V8K9dA++H78Hz6UeAvnUzuWiW9Lihv/5m6I46RgrdDZ49QTthMsz/9zxM9z8CKrgIsZecTD5RsdeJh5GIEuyqprY2a/5k8bTHbOcxLzy9zvChAzFscH+MHDYIxUUFwqprLziPuj0hQTrbtmyCy9Eo+gKi3icJW2fChVbbdrMeP1K0OJqKaO5pz8PLkLEXEKyvk341R2D7Njj/dZWYXFRMGBoLUSwhVW6ecJ0O8vILfiIIyv+imY3iidraQudqho2EbsbRUkBsaGcei6S3PoAiJTVuv4/oFyLLaP/qZ9s72AcWD7d3h/tZmrZzt5R2WM3tALtyx25rFwpYwzX/9r0WvlW+36bSXnDec7qD2FlVi+1bN8DpqBNNgtHuk4VJgq2dlJTkhNy2uf+Gm9KixRURtkRlyNjf4Lz9RthvvBb+pb9LIWEos3OgGjlaDDyNDSpYVK5bwvz0izDd9wgMF14G9YBBgMtJFo2Hym6MshTwQ5lfAEVS85ny+ZpoxKjqNwDaQw8nwuJZyFuDSYebDpVZWUBDA4JWa5iImkxIK5TCAYq9rmn4XbLFE03xRUS4NHdEeycAtqSipblLSDnvbQXsC4TQaPeifGeFmArH7bIKyyvq/TURs8UiXGwTATddxnvvYWLi5z5wM7uM7gluSvN+/D5s556OQHWVFEplWaeD/m8nAXpdfAebKK0nqt59oT1iJgxXXgvzy28iee7vUI8eQ8pfmsmgJVhxGY3Szm5YT/0brLNmwHbxOQjWVkuhZKXV1sL74buiOS8a2AlBd+ElSPr4G1i++B7Gf94AVXGJIB+ebYElQkQHIvZBFZe92sID8uJJV/TxsEoVyjdKek2lKwavxgI7ETQ0ulFWWoqqim0IeF1R76mlcL9PTk4eLObWhSEaeHLQaPE0FSbcvfjoMmQkBrLseeYCbrbyvBBeqycC5eDBUObmEzvFcWVuoy6l4DkKU1KhMJnD44WigStljQ2tolIXFyNYXQn/wgVonDIe3q8/F+GOm/4p5oOLOo0Pg9fnp8oe9w2pe/WG/u8XIem9T5G27E+YnnsFuhNOgWrQEFEBF+OKDjDrZ68TT7ipLXY/S6QjvSvG8Yi0SVqm2VSYlOLNdNtZ8JOV43QFUVtrxc6ybbA2VCVEDix8j2np2eDZERIlirY8CVnY8omAJx/lFgwvEaPXF6T75bK9f2Z+LsNe6V7/iu3lBxSa5MGWEO7KDQ3SXhjKjGwozZbOUcyckWJBrYF/zWoEd2yXAsIw3DRHWCqkNIRTgvPu20lug3/5YtqP75odKz3t+Ikw3nonLGSJmR58HOoRoxB0OA4o62evEw9XGdryLBPKP1GN2g5wlJH+pXjSlRYPlw8fKUleNrmyuhqVFdvhcjYKSyzavbQUvv/k5FQUFvaEQd98Ge64oGeKZ+lpqGDRSfB4Q7A6eBluF+oaHagX4iSrzAGr3QO7yw+3Nxhzaqy2wNcwqXWmOF1esexDfaOVyEcexNd9QZmDrJu4aFEpVGjpfK2u3ZmxceZhcN53J/y/L5RCCIL0YpR9Osak4/3sIykgDF6ewXjPQ1Cmpgprift8PB++R9Hs+ZAQfjZ2Hze/8Bp0p56JEDe/xXpOCmeLsLuQ014nHv4WXLOOpvx2S9f18Yiaf1uTZXZBMx+DZ+ZmpV3fYEfFznLU1+xs0126qfB7S03LQFFRESzmNmpTLdB28yYVLLq/2roGured2Fm+A5U7t6OKiLGqYgeFbScpQ0VFBWpqG9Boc8PlDgjLLVFwoXG6vRKZdY40WJ2or29AFd/rTl7ZVp5nq9uCrQZWri0btNoqjh0orjz2x/Of12A94yTUDSyC7dLzENi4nogvuoeo0EdGI1yPPwhfU7IiaEaOhvnpl8Ku2dxMQOVZ3FI7dZhwVGhh0TEUFJ/p5jugO/wI4QTRCkw6JApOn/Rb0GYVrt+hBGY02VdQ0A23r6qwh+DUePnputoqQQLRwE1duXmFSEqy0Pmdw+CccTjtqsoqSrsydp6gA7m5BcjM6Jy51iLgirjL7YO1sRE2ax28Hlc4MyeA8CdSICWFZyzOIou+HZaOhLoGK8pKdxDR+WOmq1KF10Dy+6N74gjQtez4oNboYTBaYLaYYdTroNXw6Pv4z8OPUVlVg9ramoSfPREEqYAF2CWWkJvfA1kZiTlcyOh6NEwYLv1qG1xj574W1dBhUA8eCvWwkaKZyTprOgLlZZQxfdDOOBqmBx6VrgjDdv6Z8C9bIpwNWiLksEN39vlisGdT1I/oT5aSVugaYSXwmBuu8FKlNB6430aZmg7zy2+ImbGbwrdgPuzXXkE/vFBwC0KcPB6sq4PlrXehGTVOCqHLVq6A+/GHxLIP2mOOhXr4KOlIGKG6WtRPHgMFlTkeuL4LVLCYtAxXXStm4Pb//hv8q1YgsGSxICExIJYtQ+E0Fb6nzix/7YUgyb1NPNysWV5eIab0j/XwHG5JzoROxwO5OvP2FHDYG+F0NEr7rcEfNDs7F+npLeaD6iD47XIfCa8karPWw07pU06XjrYN/jxMCKlisbG0hAaLRkNDox3lZUQ8pKQ7I9OJzEPvSkuZOsmSKghIr2UPufhxV1ZVE/lXdMo9RBCJi+8pPT0LOTlZFCaCZOxjtId4GGLcC3uWcVOVxRIeC1NbTeFUZnhtnaNmwXTvQ9LZYcQkHsoPwnssCvHUDepFCpn0C1n7Iv8kmGGEuiQlr+rfD+b/exHKjOYrFXu/+hyO224QaYuxRTHiZa+3pA+/gHrQECmEiGfJ77BfdI5oUuOmO9NDT0AzYZJ0NAzr6ccjsO7PcBNjBJRWkCwh84NPEDEfFQ6ieww5HPReFsP343fw/fCtWLOICqh4t8Iq49/7AEKn7fWlr0kc9EJ8VCsQbrxU44gmfp8HHrej0yUQ8FH8YQeHWMLrr/CCXnsKJlmPJwCrzY7GhlpK30mVjvhpR4QLA2/1BiMRYQ7S06gmKGosHYPH44WLMmfLdNqSyH3wt+Lf4W34GN8PW1C8SF2AFIOCCDL8TWMXYm7m9FLNNUgKhpv4+Pw9lab3q9VqYDKZ496DjL2Hdi0ER2ALhJuW6MMKK0QoS6owCnKgY1zrDzY2iCYttk4UliTR7xLcWS48xFqB8pl2zASox02QAsLwLZwv4hTxk6IXoH2RThyI43RvobIy+H6ZKxaZEwQmgd20lenpQtmD7y9GfCEqi/ozzm5GXMGKCni/+UI8h1jYjtLRHHq4ZKOE4fttAYIbNoTfUROE2Bo8ZDpU0jx2HAcPiFX1KhHjifTnXwLtsSeErTRuTrQ2Cm+5veFIFQ17P1VmO3rY1n0MzYWVWpggOlcS6cTvjFkTuD+HO72t9IHttnoycnxUyYieXkthZarV6kTTWn5eHpKT2LSWIu4gWClHSyuW8D3wVq83Iik5FWnpmcjMykFmZjZZX+kwknJnZwXun+L36nbZ0FhfRxadK26/j16vQ3ZWtpjBO5JG0zQ7Ik3jCATZ8UF2MOjuYIXNipebrCLKm/eDDfXwPP8UWTlnwUbWgeO6K8OeZvTto4KzYpTybHnjfzA/+TxM9zwM3Vl/h7r/AGFpMKkJqyYGxDEWkwmBDevguP5qofSbQnf8KdBMnkqE1kZ/Y6xk+NnpuUNOp5gbrikUoY4rAlV+AXSnngHzY89Ay/1FHolw9wH2Cd1FUx77jajD2z0Bux27iHRsRDqskDnft0exGsjKSc8Irzap07W/Pyca2hw421ToXpkYws1WOUQUdC8ZaWR1pSCNJCsrQ4SnpaYT8Wh3Xef3u4lkG+B0uuOSDy8ZwQuZcVMqX8ckywTH1p2B0k1U9HqDiENNhZTj4XfMSkEmngMXgozMFtGRHqzcCe933yBIVlDcZqMox3hqKFWffmIQqfFfN4tJPpO//wXGO++HgogkGvmIMLLCFNxp7/WIcT++X+bBecfN4ROawHDr3aLJo+NeZiEoyHpvXeOMUa5EcOwy1xI8dimu+3gXY58QT1uThGpIuLnEbEnuVLGQsLKKlmZT2RN3am6Kdrm9VPO3IuD37FKICQlZD2ZLEinlTCSRldNWf0l7wZ5rUdMliXjWMQmkpqQig0gvJcVC74uJpXk24bvSkvWWmpqC5OSUZnFQbhaL0zldHmH1xYLJZCTLKRUaLc9FpyWrKoXILQtZme0QaVloXoiNF0fje+C85Q/Em0JFxoEAYRGxNaTXt0k6/q1bENiyCUGqCMYCD1BVUbnTzzoBIY6vJfHwPllEqp6FSF70B9STpoh9bs7yvPdfOB99QDoxDBXlS/3Z50X3QosFH1kgfI8uV3gGAyppiVADnyNUVgu9xc11zgfvFl54gfLSqGTaFpg4w/1FdoTstvCWnlv0xXUgvgj2iVeb1WaDkx4gVvsnhyclpUDXAe+teOBaDve3OB22mGnzWZakJJiM7XNXZvCr9HgDpHhtVDGKMfVGDHBTmMFggtFkkKau6Vy43B7K0/GbEVQqtXh2trJivZ2W4L6dhoYGeLkG2OSdclwmc5IYaxTzVRMcTidZSXZBGmY6X6vldnHpYDvg9frEfQSIdExUI7aY97x5Usaeo73OBZ0Oyu+sKNnxQDVoMJS9+0Hdr79YT4cXmGuJkNWKhkPHUwbmJvfd5VDMQsDebE8+J+Z2445712MPwP3mq2GvMVLOyXMXQZmZLV1BefL7b+C45goyfwyt9A2v/5P88ddQ8TxxEoI11fB98Sl8fyxHcN1qaM84D/pTz5COhuH419XwfvNls3WDuEwriKiMDzwWbkKTwK7Z9f0KoMjKhqqoGKqBQ6Du3QfqMePh+/oLuN96nQg3+swnQk/Qe+NCpB4zVtwnv8MQ6ZHgti3CmSPIa4VROWNyF0+XYIET90t/9i7xkNjtDripJhBT+VO4hZSQTte8A60zYHe4qBISm/SYeEzsXKCPPsdSPHATGztOeL3taztlS8doMIqO8a6Cx+MTVlisz83h3NxlsZikkMThIuvGQWTeEtwExn1BvERErPfN6TqJfHj8DXvv8SJ6OnoPCebhZrDZ7ZSvXFRh0VP+sXQoDhmdi31OPAzKY2JYBo/cZmuYrHpuqlOmpkE9cjS0Rx8H9ZCh4XOJQOrHDOb2YMo/YeIRzWVEQuY590IzPew1FoF33k9wEwH5161Dys9EPGQ1ReBbvAj22ZcQAwRadeJHI54IxFo+VDEnRSScBJrCfu1s+H74Jkx2EvjZFPRsxgceh3badCmU0iDrqWFEfygys8Lji9hlXEnV76RkoWNjORdwmWTLRjNiNAy33EGkVdLMi46XewhRWfP/tgDOO28lsiYrje5HWJ4JFDqOv/Or1gmAm5/iDpqM4w2yp2Cvsqhp7hJm746l7eePi2CUOGML96WwkuxK0mGIPp4o6UdEOAmolFxG2w12muC+npZxUhaDjywhHpgaC/ydeWkHJhx+dz4q+D4qRB2pDelIoXBTIecvTluGDAHKYzxnGtfYFVTBYxIJNTYisHkTPG+/CevxR6FuUDFsfz8d7ldfCvetNNEBQheRReH58XvKos37bLSTpyLpgy+RtnpzM9IRcFEFlDvwY+myWMFUdhTJKa1Ih+Ena4in74mOFnme+5ioIizugZ5ZWDc6vSCceKRDNUGynI6E5fV3oO47oLnrNoE96tjdWztjJlJ+WQr9tTeI+23PgNW9Tjz8rtuaL40l1rfaU3CTVlzSI2EvrfaCv1eAXnzi3mNcuzcR8RhIUXb9ZxDvnAg9+r2EJdy31X6FHc9TkOMLJsBmJioUenZLVRBZ+TxUMQ20mwSZAC08oDVK04YMGQKUL1jhCuVOClVBlR5lRoZwWPCvWAbX048jxH1HTfMP/6bzfV99DvsN/0i4hPiXLxF9NVHzIkeia19zvufrL4QHX9w+rSbgZzPcdFt41VaySLgpT/Q5Se8gKsiaURX3gvGOe6SAtmE490LojjsRcCfevbCPLJ74yyLw8Y4o/0SQiHdXx4iHzF3aRouvqUSIiZUsNyntTbT13vm5O6awwxWJ6HEqRb+LqEm1AR3VSHnhO77G5/cJ1+j2kA/fO18rk46M9kKQEVtEpKyj5R+hqClvct+I7ayTEKyqkI5EB4838nD/T4w+FME8omK2G4HNm+H573/C45RawPfzD3Ddc7sYVMvEkQjYMjFe+U+YHnoSSR99KSwY3cmnE3Gpo3rbiSY2Ih7t8SdByc1xCYLj8i2YJwalJoq93sfD4Captlxeud+jKzrZ/VSTZkUYD9wxzk1u7QF3svtb+PNHA2dqtnbaS24tv1J7dWsi98dKO+yZ1n5w8xjPihALib7TIGdibosWCBNamEykIBndCvtFH08nQqhLngeN8rv+5NOgO/0sKPMKhFecOO5ywf/najhmXxxuzmrRTBUBWx/JPyxo5uDAytt27mmij4fH3IhlEeh6//KlRHSVYrBstOa33X08j0E7bYYUGhsNMw9DiONrEReny4NfTU88LxwwmiKw/k+4/u8R+Bf9CkV6phjYqp11vDjP9cyTcD//VFQnimjgd7hPiIeVYDwlxWBF1RVWDyu2tkivI2knEi9/FLYCOlIj56/U8lO15x752nAfVGywguf76wja+qZhwm1daKKB3yO/zwj4e/D1HXhtMvYxDjTiiUBYDE4HKVsjNKNGQ5GTzxkVodLt8C1dzJk4JukwohLPwl9gv+yCsOXAzhBcXrnIU7mJ13HfHuJhN+jGo4l4ampaE4/XC1Wf/jC/9DqU7K3WBA2HjEOwmq5hC46enWdeUKali1mzebaFYFlZq9kUYoF10T5ramMlFE+6SslEFGA86UjaicTL0hHSCYNz4G5pbzSJ3B8TT0fBJBgtzoi0h9D43Mg14esizy1Dxv4B0TRnDjd7+cgK8H7wP3jffQu+334VYfFIJya4X5PJhq/nypZOHx6nRGUhboGnohHNfOAluT0fvx+OM4I4BMaRiD6vFqTjW7gAwR07RDgToHAuSEoWburul59HcOfOqJZYPOwT4mGEa7DxpSsQLZ1o0l5Ei6Ol7An4eiaGiHQkvqb3Eks6imhxtZT2gM/f0+eVIaOrEe4bInIgS4Cb28RvCksI2pZDNqRKZXinfdAQIbT0dnPYYb/gLNT1LUDjEQeHm8rm/ywsFipQ0klNQelHaQ7na4Q3YItrBNkQwYrnbWf53GfEI0OGDBl/Weh08P/0vbBKIgg3VXWwgsXKv2XTO7uQ8zITWdkI1tTC/cKzsF96HkJ1dbHJMarlVB+OPwpEhbADlUKZeGTIkCFjL4PneXM98TBsp58A65knwf36ywhs3dzuJqtdiEIYIlDqK2VSE7MM8KDU9loo7OzTQT6MBZl4ZMiQIWMvg5U/d/Szk0FgzSo4H7wXzrtvD/cNdcCCiAqyeKDVIOhwIOR2ifREzPHiZ6eGlugCJy+ZeGTIkCFjH4DJhy0cHj+k5EXvJGeFzoIiMxPmJ56D4fKroJk0lawetVhWgmczCEUbUsJp86wGYoLS3VCkpuyynDoD/IQy8ciQIUNGd4fQ5s3VOXvGaacfBcMls2F6+Ekkvf8FzK+8Bd0pp0NhNLcmH7qeB68GK3ZKAWGoR4wRk4NGdZ3rIGTikSFDhozuDuIEnn8uFoRVlZML7UGTYLx5DkyPP4OQtcXEvkoVgmWlYsBqU2inHwmFhYkq/jjF9kAmHhkyZMjoxhCeZcEgXC88Dcct/xLLHYh54vyxiYKXf2gJ4XRA5OKfP1cM8mwKw9X/EvO8xZpqp73W0D6ZuUCGDBl/DRyoMxfsdyA1LprOvLz0gRKKlBSx/IF64GBoD5sOzSHTwoNHJXgXzIP9vDPFLNNNIYjF60XS+59D1atECqXwQBCOm66F95MPwtMDRQai8vks3FfF+4n0UdG9ysQjQ4aMLoNMPHsZTEC8jRACr53j9Yh549SDh0JLBKQ+bAaCWzfDect1Yv63luAVR5VZmUj+aq4Ushued9+G+98vijV4Qn6fmMFAlVcA/6YN4Zm4W/QzRYVMPDJkyOhKyMSzn4AJiafO4WWsyTJSZuWI+daiEgWdG7TbYTj/Ihj+cb0UuBs8oNS/arnwgFP2LIK6/0DYr7gQvl/miSl+2oRMPDJkyOhKyMSzH4JJiJV/HOsk0uSmn/0PGM67WAqNDd+C+bCdcwoU6RnhJrd4oLRl5wIZMmTI+CuBiKGtJjFxXKuF6747Yb/yYrEUdjxoDpoEZX4P4ZyQCGTikSFDhgwZrcDkoyQLxvvjd7CdcSI8b70WXsU0BvTnXgC43dJefMhNbTJkyOgyyE1tBwC4ac7nFZYS9w2phgyDduJkqEp6A0YzghVl8P36K3zffimIqc355riZTyYeGTJkdBVk4jlwIPp9eLFH4SlHRMTNakwfZBmJOeZ4SYhEJjmViUeGDBldCZl4ZLQCUY7cxyNDhgwZMvYigP8H3VGICC23QzYAAAAASUVORK5CYII=" + } + }, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![HSP2new.png](attachment:337b05b8-e081-4c20-b486-27045c75ea6d.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Copyright 2020 for this Jupyter Notebook and YouTube Video by RESPEC, INC. All rights reserved.\n", + "\n", + "$\\textbf{HSP}^{\\textbf{2}}\\ \\text{and}\\ \\textbf{HSP2}\\ $ Copyright 2020 by RESPEC INC. and released under the *GNU AFFERO GENERAL PUBLIC LICENSE*" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This Notebook will compare the results of running HSPF and HSP$^2$ for the basic hydrology (PWATER, IWATER, and HYDR) to confirm the proper calculations of HSP$^2$\n", + "\n", + "Calleg is a real watershed and has\n", + "+ 27 IMPLND segments,\n", + "+ 129 PERLND segments,\n", + "+ 119 RCHRES segments,\n", + "+ 9 years of simulation time with hourly time steps (78,888 timesteps) from 1993-10-01 to 2002-10-01\n", + "\n", + "This Notebook assumes HSPF has been run and the HBN data saved to an HDF5 file in the **HSPF RUN** directory." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Required Python imports and setup" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:16:22.070310Z", + "iopub.status.busy": "2024-05-21T22:16:22.070084Z", + "iopub.status.idle": "2024-05-21T22:16:22.793186Z", + "shell.execute_reply": "2024-05-21T22:16:22.792716Z", + "shell.execute_reply.started": "2024-05-21T22:16:22.070294Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
version
name
Python3.10.14 | packaged by conda-forge | (main, Mar...
hsp2n/a
numpy1.26.4
numba0.59.1
pandas1.5.3
matplotlib3.8.4
osLinux-5.15.0-91-generic-x86_64-with-glibc2.35
processorx86_64
Date/Time2024-05-21T18:16:22.786814
\n", + "
" + ], + "text/plain": [ + " version\n", + "name \n", + "Python 3.10.14 | packaged by conda-forge | (main, Mar...\n", + "hsp2 n/a\n", + "numpy 1.26.4\n", + "numba 0.59.1\n", + "pandas 1.5.3\n", + "matplotlib 3.8.4\n", + "os Linux-5.15.0-91-generic-x86_64-with-glibc2.35\n", + "processor x86_64\n", + "Date/Time 2024-05-21T18:16:22.786814" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import os\n", + "\n", + "import pandas as pd\n", + "from matplotlib import pyplot as plt\n", + "\n", + "# Set display options for convenience, does't change the data\n", + "pd.options.display.max_rows = 150\n", + "pd.options.display.max_columns = 20\n", + "pd.options.display.float_format = (\n", + " \"{:.4f}\".format\n", + ") # display 4 digits after the decimal point\n", + "\n", + "%matplotlib inline\n", + "\n", + "from hsp2.hsp2 import main, versions\n", + "from hsp2.hsp2tools import readUCI, readWDM\n", + "\n", + "versions([\"matplotlib\"])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### If you get the HSP2 Not Found error:\n", + "```python\n", + "ModuleNotFoundError: No module named 'HSP2'\n", + "```\n", + "Then run the following terminal command with your local absolute path to this repo (enabled in this notebook with the `!` magic command), AND restart the kernel.\n", + "See https://github.com/LimnoTech/HSPsquared#4-add-your-hspsquared-path-to-anaconda-sites-packages" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "execution": { + "iopub.execute_input": "2024-04-28T16:45:34.246207Z", + "iopub.status.busy": "2024-04-28T16:45:34.245792Z", + "iopub.status.idle": "2024-04-28T16:45:34.364011Z", + "shell.execute_reply": "2024-04-28T16:45:34.363366Z", + "shell.execute_reply.started": "2024-04-28T16:45:34.246190Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/bin/bash: line 1: conda-develop: command not found\n" + ] + } + ], + "source": [ + "!conda-develop /Users/aaufdenkampe/Documents/Python/limno.HSPsquared/" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Convenient name strings to get to the data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:16:31.196161Z", + "iopub.status.busy": "2024-05-21T22:16:31.195656Z", + "iopub.status.idle": "2024-05-21T22:16:31.199544Z", + "shell.execute_reply": "2024-05-21T22:16:31.199047Z", + "shell.execute_reply.started": "2024-05-21T22:16:31.196142Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'hsp2_310'" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Confirm your active conda environment for this notebook.\n", + "os.environ[\"CONDA_DEFAULT_ENV\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:16:32.643829Z", + "iopub.status.busy": "2024-05-21T22:16:32.643618Z", + "iopub.status.idle": "2024-05-21T22:16:32.646567Z", + "shell.execute_reply": "2024-05-21T22:16:32.646182Z", + "shell.execute_reply.started": "2024-05-21T22:16:32.643818Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "data": { + "text/plain": [ + "PosixPath('/home/tim/programming/HSPsquared/tests/test10specl/HSP2results')" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from pathlib import Path\n", + "\n", + "# get current working directory\n", + "Path.cwd()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:17:23.831107Z", + "iopub.status.busy": "2024-05-21T22:17:23.830606Z", + "iopub.status.idle": "2024-05-21T22:17:23.833610Z", + "shell.execute_reply": "2024-05-21T22:17:23.833193Z", + "shell.execute_reply.started": "2024-05-21T22:17:23.831088Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "wdmname = \"test10.wdm\"\n", + "uciname = \"test10specl.uci\"\n", + "HBN = \"test10_hspf.h5\"\n", + "hdfname = \"test10_hsp2_dev2WDM_6.h5\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Run HSP2 on the calleg" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:17:26.288627Z", + "iopub.status.busy": "2024-05-21T22:17:26.287881Z", + "iopub.status.idle": "2024-05-21T22:17:26.290699Z", + "shell.execute_reply": "2024-05-21T22:17:26.290347Z", + "shell.execute_reply.started": "2024-05-21T22:17:26.288601Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "# Optional setting to testing Numba\n", + "os.environ[\"NUMBA_DISABLE_JIT\"] = \"0\" # '1' turns off Numba for this session only" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create HDF5 file" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:17:28.137137Z", + "iopub.status.busy": "2024-05-21T22:17:28.136607Z", + "iopub.status.idle": "2024-05-21T22:17:38.473173Z", + "shell.execute_reply": "2024-05-21T22:17:38.472872Z", + "shell.execute_reply.started": "2024-05-21T22:17:28.137119Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 3 µs, sys: 0 ns, total: 3 µs\n", + "Wall time: 5.96 µs\n" + ] + } + ], + "source": [ + "%time\n", + "readUCI(uciname, hdfname)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:17:42.981439Z", + "iopub.status.busy": "2024-05-21T22:17:42.981148Z", + "iopub.status.idle": "2024-05-21T22:17:45.893779Z", + "shell.execute_reply": "2024-05-21T22:17:45.893433Z", + "shell.execute_reply.started": "2024-05-21T22:17:42.981422Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 2 µs, sys: 0 ns, total: 2 µs\n", + "Wall time: 4.77 µs\n", + "39 reading from wdm\n", + "41 reading from wdm\n", + "42 reading from wdm\n", + "46 reading from wdm\n", + "113 reading from wdm\n", + "119 reading from wdm\n", + "121 reading from wdm\n", + "122 reading from wdm\n", + "123 reading from wdm\n", + "124 reading from wdm\n", + "125 reading from wdm\n", + "126 reading from wdm\n", + "127 reading from wdm\n", + "131 reading from wdm\n", + "132 reading from wdm\n", + "134 reading from wdm\n", + "135 reading from wdm\n", + "136 reading from wdm\n", + "140 reading from wdm\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StartStopFreqLengthTSTYPETFILLSTAIDSTNAM
TS0391976-01-01 00:00:001977-01-01 00:00:001h8784PREC-999.0000HOURLY PRECPRECIP TRAER IOWA
TS0411976-01-01 00:00:001977-01-01 00:00:001D366EVAP-999.0000DAILY EVAPFARMERS COOP WEATHER STN
TS0421976-01-01 00:00:001977-01-01 00:00:001D366WIND-999.0000DAILY WINDFARMERS COOP WEATHER STN
TS0461976-01-01 00:00:001977-01-01 00:00:002h4392SOLR-999.00002 HOUR RADFARMERS WEATHER STN
TS1131976-01-01 00:00:001977-01-01 00:00:001D366FLOW-999.0000DAILY FLOWIOWA RIVER MARSHALLTOWN
TS1191976-01-01 00:00:001977-01-01 00:00:001D366FLOW-999.0000DAILY FLOWIOWA RIVER MARENGO
TS1211976-01-01 00:00:001977-01-01 00:00:002h4392ATMP-999.00002 HOUR AIR TEMPCEDAR RAPIDS IOWA
TS1221976-01-01 00:00:001977-01-01 00:00:002h4392ATMP-999.00002 HOUR AIR TEMPIOWA FALLS IOWA
TS1231976-01-01 00:00:001977-01-01 00:00:002h4392ATMP-999.00002 HOUR AIR TEMPMARSHALLTOWN IOWA
TS1241976-01-01 00:00:001977-01-01 00:00:001D366DEWP-999.0000DAILY DEW PTCEDAR RAPIDS IOWA
TS1251976-01-01 00:00:001977-01-01 00:00:001D366DEWP-999.0000DAILY DEW PTIOWA FALLS IOWA
TS1261976-01-01 00:00:001977-01-01 00:00:001D366DEWP-999.0000DAILY DEW PTMARSHALLTOWN IOWA
TS1271976-01-01 00:00:001977-01-01 00:00:001D366SEDM-999.0000SEDIMENT CONCIOWA RIVER MARENGO
TS1311976-01-01 00:00:001977-01-01 00:00:001h8784PREC-999.0000HOURLY PRECPRECIP IOWA FALLS
TS1321976-01-01 00:00:001977-01-01 00:00:001h8784PREC-999.0000HOURLY PRECPRECIP SHEFFIELD
TS1341976-01-01 00:00:001977-01-01 00:00:001D366WTMP-999.0000WATER TEMPIOWA RIVER (ESTIMATED)
TS1351976-01-01 00:00:001977-01-01 00:00:001D366CLDC-999.0000CLOUD COVERWATERLOO (TENTHS)
TS1361976-01-01 00:00:001977-01-01 00:00:001D366FLOW-999.0000DAILY FLOWIOWA RIVER ROWAN
TS1401976-01-01 00:00:001977-01-01 00:00:001D366CLND-999.0000COLINDCOLUMN INDICATOR MEIER POND SUMMER-WINTER OUTLET
\n", + "
" + ], + "text/plain": [ + " Start Stop Freq Length TSTYPE TFILL \\\n", + "TS039 1976-01-01 00:00:00 1977-01-01 00:00:00 1h 8784 PREC -999.0000 \n", + "TS041 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 EVAP -999.0000 \n", + "TS042 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 WIND -999.0000 \n", + "TS046 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 SOLR -999.0000 \n", + "TS113 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 FLOW -999.0000 \n", + "TS119 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 FLOW -999.0000 \n", + "TS121 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 ATMP -999.0000 \n", + "TS122 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 ATMP -999.0000 \n", + "TS123 1976-01-01 00:00:00 1977-01-01 00:00:00 2h 4392 ATMP -999.0000 \n", + "TS124 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 DEWP -999.0000 \n", + "TS125 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 DEWP -999.0000 \n", + "TS126 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 DEWP -999.0000 \n", + "TS127 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 SEDM -999.0000 \n", + "TS131 1976-01-01 00:00:00 1977-01-01 00:00:00 1h 8784 PREC -999.0000 \n", + "TS132 1976-01-01 00:00:00 1977-01-01 00:00:00 1h 8784 PREC -999.0000 \n", + "TS134 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 WTMP -999.0000 \n", + "TS135 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 CLDC -999.0000 \n", + "TS136 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 FLOW -999.0000 \n", + "TS140 1976-01-01 00:00:00 1977-01-01 00:00:00 1D 366 CLND -999.0000 \n", + "\n", + " STAID STNAM \n", + "TS039 HOURLY PREC PRECIP TRAER IOWA \n", + "TS041 DAILY EVAP FARMERS COOP WEATHER STN \n", + "TS042 DAILY WIND FARMERS COOP WEATHER STN \n", + "TS046 2 HOUR RAD FARMERS WEATHER STN \n", + "TS113 DAILY FLOW IOWA RIVER MARSHALLTOWN \n", + "TS119 DAILY FLOW IOWA RIVER MARENGO \n", + "TS121 2 HOUR AIR TEMP CEDAR RAPIDS IOWA \n", + "TS122 2 HOUR AIR TEMP IOWA FALLS IOWA \n", + "TS123 2 HOUR AIR TEMP MARSHALLTOWN IOWA \n", + "TS124 DAILY DEW PT CEDAR RAPIDS IOWA \n", + "TS125 DAILY DEW PT IOWA FALLS IOWA \n", + "TS126 DAILY DEW PT MARSHALLTOWN IOWA \n", + "TS127 SEDIMENT CONC IOWA RIVER MARENGO \n", + "TS131 HOURLY PREC PRECIP IOWA FALLS \n", + "TS132 HOURLY PREC PRECIP SHEFFIELD \n", + "TS134 WATER TEMP IOWA RIVER (ESTIMATED) \n", + "TS135 CLOUD COVER WATERLOO (TENTHS) \n", + "TS136 DAILY FLOW IOWA RIVER ROWAN \n", + "TS140 COLIND COLUMN INDICATOR MEIER POND SUMMER-WINTER OUTLET " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%time\n", + "readWDM(wdmname, hdfname)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Using profiler" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:17:52.790472Z", + "iopub.status.busy": "2024-05-21T22:17:52.790005Z", + "iopub.status.idle": "2024-05-21T22:18:33.763504Z", + "shell.execute_reply": "2024-05-21T22:18:33.762890Z", + "shell.execute_reply.started": "2024-05-21T22:17:52.790454Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-05-21 18:17:52.79 Processing started for file test10_hsp2_dev2WDM_6.h5; saveall=True\n", + "STATE initializing contexts.\n", + "Looking for custom om loader in python code test10_hsp2_dev2WDM_6.py\n", + "Looking for custom om json test10_hsp2_dev2WDM_6.json\n", + "Loaded objects & paths: insures all paths are valid, connects models as inputs\n", + "Tokenizing models\n", + "Operational model status: enabled\n", + "op_tokens has 123 elements, with 4 executable elements\n", + "2024-05-21 18:18:02.30 Simulation Start: 1976-01-01 00:00:00, Stop: 1977-01-01 00:00:00\n", + "2024-05-21 18:18:02.30 PERLND P001 DELT(minutes): 60\n", + "2024-05-21 18:18:02.86 SNOW\n", + "2024-05-21 18:18:03.96 PWATER\n", + "2024-05-21 18:18:04.47 PSTEMP\n", + "2024-05-21 18:18:04.52 PWTGAS\n", + "2024-05-21 18:18:04.63 RCHRES R001 DELT(minutes): 60\n", + "2024-05-21 18:18:04.65 HYDR\n", + "2024-05-21 18:18:13.19 ADCALC\n", + "2024-05-21 18:18:13.21 CONS\n", + "2024-05-21 18:18:13.34 HTRCH\n", + "2024-05-21 18:18:13.42 SEDTRN\n", + "2024-05-21 18:18:13.62 RQUAL\n", + "2024-05-21 18:18:15.29 GQUAL\n", + "2024-05-21 18:18:17.12 GENER G001 DELT(minutes): 60\n", + "2024-05-21 18:18:17.12 RCHRES R002 DELT(minutes): 60\n", + "2024-05-21 18:18:17.14 HYDR\n", + "2024-05-21 18:18:22.25 ADCALC\n", + "2024-05-21 18:18:22.26 CONS\n", + "2024-05-21 18:18:22.29 HTRCH\n", + "2024-05-21 18:18:22.30 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-05-21 18:18:22.36 SEDTRN\n", + "2024-05-21 18:18:22.37 Error count 3598: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-05-21 18:18:22.51 RQUAL\n", + "2024-05-21 18:18:23.38 GQUAL\n", + "2024-05-21 18:18:24.14 RCHRES R003 DELT(minutes): 60\n", + "2024-05-21 18:18:24.16 HYDR\n", + "2024-05-21 18:18:24.24 ADCALC\n", + "2024-05-21 18:18:24.24 CONS\n", + "2024-05-21 18:18:24.27 HTRCH\n", + "2024-05-21 18:18:24.28 Error count 3: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-05-21 18:18:24.34 SEDTRN\n", + "2024-05-21 18:18:24.34 Error count 513: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-05-21 18:18:24.57 RQUAL\n", + "2024-05-21 18:18:25.75 GQUAL\n", + "2024-05-21 18:18:27.09 RCHRES R004 DELT(minutes): 60\n", + "2024-05-21 18:18:27.16 HYDR\n", + "2024-05-21 18:18:27.31 ADCALC\n", + "2024-05-21 18:18:27.31 CONS\n", + "2024-05-21 18:18:27.38 HTRCH\n", + "2024-05-21 18:18:27.38 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-05-21 18:18:27.49 SEDTRN\n", + "2024-05-21 18:18:27.50 Error count 6720: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-05-21 18:18:27.73 RQUAL\n", + "2024-05-21 18:18:29.05 GQUAL\n", + "2024-05-21 18:18:30.49 IMPLND I001 DELT(minutes): 60\n", + "2024-05-21 18:18:30.50 SNOW\n", + "2024-05-21 18:18:30.61 IWATER\n", + "2024-05-21 18:18:30.66 SOLIDS\n", + "2024-05-21 18:18:30.69 IWTGAS\n", + "2024-05-21 18:18:30.73 IQUAL\n", + "2024-05-21 18:18:30.79 RCHRES R005 DELT(minutes): 60\n", + "2024-05-21 18:18:30.81 HYDR\n", + "2024-05-21 18:18:30.90 ADCALC\n", + "2024-05-21 18:18:30.90 CONS\n", + "2024-05-21 18:18:30.94 HTRCH\n", + "2024-05-21 18:18:30.94 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-05-21 18:18:31.02 SEDTRN\n", + "2024-05-21 18:18:31.18 RQUAL\n", + "2024-05-21 18:18:32.08 GQUAL\n", + "2024-05-21 18:18:32.93 GENER G002 DELT(minutes): 60\n", + "2024-05-21 18:18:32.94 Done; Run time is about 00:40.1 (mm:ss)\n", + "\n", + "\n", + " version\n", + "name \n", + "Python 3.10.14 | packaged by conda-forge | (main, Mar...\n", + "hsp2 n/a\n", + "numpy 1.26.4\n", + "numba 0.59.1\n", + "pandas 1.5.3\n", + "jupyterlab 4.1.6\n", + "notebook 7.1.3\n", + "os Linux-5.15.0-91-generic-x86_64-with-glibc2.35\n", + "processor x86_64\n", + "Date/Time 2024-05-21T18:18:33.252471\n", + " \n", + "*** Profile printout saved to text file 'NumbaProfile.txt'.\n" + ] + } + ], + "source": [ + "%%prun -l 60 -T NumbaProfile.txt -q\n", + "main(hdfname, saveall=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:18:33.764922Z", + "iopub.status.busy": "2024-05-21T22:18:33.764597Z", + "iopub.status.idle": "2024-05-21T22:18:33.769555Z", + "shell.execute_reply": "2024-05-21T22:18:33.769078Z", + "shell.execute_reply.started": "2024-05-21T22:18:33.764907Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 69292273 function calls (66180498 primitive calls) in 40.441 seconds\n", + "\n", + " ncalls tottime percall cumtime percall filename:lineno(function)\n", + "107310/107286 5.062 0.000 6.031 0.000 ffi.py:190(__call__)\n", + " 5 2.519 0.504 4.409 0.882 GQUAL.py:243(_gqual_)\n", + " 17440 1.281 0.000 1.360 0.000 {method '_create_carray' of 'tables.hdf5extension.Array' objects}\n", + " 13784 0.816 0.000 0.816 0.000 {method '_g_close' of 'tables.hdf5extension.Leaf' objects}\n", + "1099645/185794 0.669 0.000 0.890 0.000 ir.py:318(_rec_list_vars)\n", + "9350662/9344872 0.643 0.000 0.886 0.000 {built-in method builtins.isinstance}\n", + " 69265 0.604 0.000 0.604 0.000 {method '_g_getattr' of 'tables.hdf5extension.AttributeSet' objects}\n", + " 1744 0.559 0.000 0.569 0.000 {method '_fill_col' of 'tables.tableextension.Row' objects}\n", + " 58232 0.551 0.000 0.551 0.000 {method '_g_get_objinfo' of 'tables.hdf5extension.Group' objects}\n", + " 34115 0.543 0.000 0.972 0.000 {method '_g_setattr' of 'tables.hdf5extension.AttributeSet' objects}\n", + " 2883 0.437 0.000 0.475 0.000 analysis.py:91(liveness)\n", + " 6320 0.421 0.000 0.499 0.000 {method '_open_array' of 'tables.hdf5extension.Array' objects}\n", + " 161458 0.388 0.000 1.922 0.000 typeddict.py:176(__getitem__)\n", + " 123804 0.377 0.000 0.377 0.000 {method 'reduce' of 'numpy.ufunc' objects}\n", + "2555197/2489109 0.351 0.000 4.476 0.000 {built-in method builtins.getattr}\n", + " 5 0.350 0.070 0.350 0.070 RQUAL.py:276(_rqual_run)\n", + " 61228 0.327 0.000 0.362 0.000 values.py:445(__init__)\n", + "847856/432971 0.310 0.000 1.113 0.000 {method 'format' of 'str' objects}\n", + " 6424 0.273 0.000 0.273 0.000 {method '_g_get_lchild_attr' of 'tables.hdf5extension.Group' objects}\n", + " 1161001 0.257 0.000 0.372 0.000 targetconfig.py:111(getter)\n", + " 1744 0.254 0.000 0.254 0.000 {tables.indexesextension.keysort}\n", + " 161458 0.243 0.000 0.332 0.000 typeddict.py:37(_getitem)\n", + " 77757 0.241 0.000 1.523 0.000 attributeset.py:277(__getattr__)\n", + "497125/250547 0.235 0.000 0.594 0.000 pprint.py:550(_safe_repr)\n", + "341283/340438 0.211 0.000 0.356 0.000 _utils.py:54(get_reference)\n", + " 216 0.211 0.001 0.211 0.001 {method '_g_flush' of 'tables.hdf5extension.Leaf' objects}\n", + " 166110 0.183 0.000 0.439 0.000 values.py:557(_set_name)\n", + " 5232 0.177 0.000 0.177 0.000 {method '_g_write_slice' of 'tables.hdf5extension.Array' objects}\n", + " 468730 0.176 0.000 0.438 0.000 event.py:243(notify)\n", + " 706895 0.175 0.000 0.176 0.000 serialize.py:30(_numba_unpickle)\n", + " 131760 0.172 0.000 0.227 0.000 GQUAL.py:1299(advqal)\n", + "463118/191977 0.165 0.000 1.103 0.000 _utils.py:44(__str__)\n", + " 118547 0.164 0.000 0.642 0.000 fromnumeric.py:71(_wrapreduction)\n", + " 88299 0.160 0.000 0.340 0.000 {built-in method builtins.sorted}\n", + " 186196 0.147 0.000 0.791 0.000 attributeset.py:47(issysattrname)\n", + " 3438 0.141 0.000 0.149 0.000 analysis.py:81(def_reach)\n", + " 179019 0.136 0.000 0.321 0.000 file.py:356(register_node)\n", + "27904/2392 0.135 0.000 9.155 0.004 node.py:182(__init__)\n", + " 126091 0.134 0.000 0.878 0.000 values.py:544(_to_string)\n", + " 14009 0.128 0.000 1.888 0.000 attributeset.py:188(__init__)\n", + " 34115 0.127 0.000 1.651 0.000 attributeset.py:379(_g__setattr)\n", + " 237521 0.126 0.000 0.264 0.000 group.py:800(__setattr__)\n", + " 178962 0.126 0.000 1.669 0.000 file.py:370(cache_node)\n", + " 306926 0.120 0.000 0.547 0.000 ssa.py:207(_run_ssa_block_pass)\n", + " 193541 0.120 0.000 0.120 0.000 {method 'match' of 're.Pattern' objects}\n", + " 1518660 0.119 0.000 0.196 0.000 {method 'get' of 'dict' objects}\n", + " 5295 0.118 0.000 0.143 0.000 instructions.py:693(__init__)\n", + " 240190 0.118 0.000 0.573 0.000 event.py:209(broadcast)\n", + " 31118 0.118 0.000 0.121 0.000 values.py:860(__init__)\n", + " 167455 0.117 0.000 0.492 0.000 dispatcher.py:724(typeof_pyval)\n", + " 48853 0.115 0.000 0.592 0.000 targetconfig.py:199()\n", + " 122533 0.113 0.000 0.551 0.000 instructions.py:13(__init__)\n", + "1436144/1322262 0.111 0.000 0.533 0.000 {built-in method builtins.len}\n", + "156636/87183 0.111 0.000 4.184 0.000 file.py:383(get_node)\n", + " 848400 0.107 0.000 0.107 0.000 {method 'startswith' of 'str' objects}\n", + " 1597427 0.107 0.000 0.107 0.000 {method 'append' of 'list' objects}\n", + " 418410 0.106 0.000 0.106 0.000 GQUAL.py:1426(light_factor)\n", + "134231/5308 0.103 0.000 1.166 0.000 pprint.py:167(_format)\n", + " 2398 0.101 0.000 0.111 0.000 controlflow.py:579(_find_back_edges)\n", + " 161494 0.101 0.000 0.178 0.000 _utils.py:24(deduplicate)\n", + "Cum Sum 55.91%\n" + ] + } + ], + "source": [ + "with open(\"NumbaProfile.txt\", \"r\") as f:\n", + " for line in f:\n", + " total = float(line.split()[7])\n", + " print(line)\n", + " f.readline()\n", + " f.readline()\n", + " f.readline()\n", + " f.readline()\n", + " print(f.readline().rstrip())\n", + " break\n", + " sum = 0.0\n", + " for line in f:\n", + " sum += float(line.split()[1])\n", + " print(line.rstrip())\n", + "\n", + " # Pareto rule, look for calls cumsum to 80% time, ignore the rest\n", + " if sum >= 0.8 * total:\n", + " break\n", + "print(f\"Cum Sum {100.0 * sum/total:.2f}%\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## BELOW HERE: Output from Steve's testing" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Normal run" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:18:33.770229Z", + "iopub.status.busy": "2024-05-21T22:18:33.770060Z", + "iopub.status.idle": "2024-05-21T22:18:45.602438Z", + "shell.execute_reply": "2024-05-21T22:18:45.601680Z", + "shell.execute_reply.started": "2024-05-21T22:18:33.770211Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-05-21 18:18:33.77 Processing started for file test10_hsp2_dev2WDM_6.h5; saveall=True\n", + "STATE initializing contexts.\n", + "Looking for custom om loader in python code test10_hsp2_dev2WDM_6.py\n", + "Looking for custom om json test10_hsp2_dev2WDM_6.json\n", + "Loaded objects & paths: insures all paths are valid, connects models as inputs\n", + "Tokenizing models\n", + "Operational model status: enabled\n", + "op_tokens has 123 elements, with 4 executable elements\n", + "2024-05-21 18:18:36.10 Simulation Start: 1976-01-01 00:00:00, Stop: 1977-01-01 00:00:00\n", + "2024-05-21 18:18:36.10 PERLND P001 DELT(minutes): 60\n", + "2024-05-21 18:18:36.13 SNOW\n", + "2024-05-21 18:18:36.21 PWATER\n", + "2024-05-21 18:18:36.35 PSTEMP\n", + "2024-05-21 18:18:36.37 PWTGAS\n", + "2024-05-21 18:18:36.45 RCHRES R001 DELT(minutes): 60\n", + "2024-05-21 18:18:36.46 HYDR\n", + "2024-05-21 18:18:36.55 ADCALC\n", + "2024-05-21 18:18:36.55 CONS\n", + "2024-05-21 18:18:36.59 HTRCH\n", + "2024-05-21 18:18:36.65 SEDTRN\n", + "2024-05-21 18:18:36.79 RQUAL\n", + "2024-05-21 18:18:37.78 GQUAL\n", + "2024-05-21 18:18:38.54 GENER G001 DELT(minutes): 60\n", + "2024-05-21 18:18:38.54 RCHRES R002 DELT(minutes): 60\n", + "2024-05-21 18:18:38.55 HYDR\n", + "2024-05-21 18:18:38.62 ADCALC\n", + "2024-05-21 18:18:38.63 CONS\n", + "2024-05-21 18:18:38.65 HTRCH\n", + "2024-05-21 18:18:38.66 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-05-21 18:18:38.70 SEDTRN\n", + "2024-05-21 18:18:38.71 Error count 3598: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-05-21 18:18:38.87 RQUAL\n", + "2024-05-21 18:18:40.16 GQUAL\n", + "2024-05-21 18:18:40.79 RCHRES R003 DELT(minutes): 60\n", + "2024-05-21 18:18:40.80 HYDR\n", + "2024-05-21 18:18:40.86 ADCALC\n", + "2024-05-21 18:18:40.86 CONS\n", + "2024-05-21 18:18:40.89 HTRCH\n", + "2024-05-21 18:18:40.89 Error count 3: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-05-21 18:18:40.94 SEDTRN\n", + "2024-05-21 18:18:40.95 Error count 513: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-05-21 18:18:41.05 RQUAL\n", + "2024-05-21 18:18:41.72 GQUAL\n", + "2024-05-21 18:18:42.17 RCHRES R004 DELT(minutes): 60\n", + "2024-05-21 18:18:42.20 HYDR\n", + "2024-05-21 18:18:42.27 ADCALC\n", + "2024-05-21 18:18:42.27 CONS\n", + "2024-05-21 18:18:42.30 HTRCH\n", + "2024-05-21 18:18:42.31 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-05-21 18:18:42.35 SEDTRN\n", + "2024-05-21 18:18:42.36 Error count 6720: SEDTRN: Warning -- bed storage of sediment size fraction sand is empty\n", + "2024-05-21 18:18:42.47 RQUAL\n", + "2024-05-21 18:18:43.19 GQUAL\n", + "2024-05-21 18:18:43.75 IMPLND I001 DELT(minutes): 60\n", + "2024-05-21 18:18:43.75 SNOW\n", + "2024-05-21 18:18:43.83 IWATER\n", + "2024-05-21 18:18:43.87 SOLIDS\n", + "2024-05-21 18:18:43.88 IWTGAS\n", + "2024-05-21 18:18:43.91 IQUAL\n", + "2024-05-21 18:18:43.95 RCHRES R005 DELT(minutes): 60\n", + "2024-05-21 18:18:43.97 HYDR\n", + "2024-05-21 18:18:44.04 ADCALC\n", + "2024-05-21 18:18:44.05 CONS\n", + "2024-05-21 18:18:44.07 HTRCH\n", + "2024-05-21 18:18:44.08 Error count 1: HTRCH: Water temperature is above 66 C (150 F) -- In most cases, this indicates an instability in advection\n", + "2024-05-21 18:18:44.12 SEDTRN\n", + "2024-05-21 18:18:44.25 RQUAL\n", + "2024-05-21 18:18:44.99 GQUAL\n", + "2024-05-21 18:18:45.56 GENER G002 DELT(minutes): 60\n", + "2024-05-21 18:18:45.57 Done; Run time is about 00:11.7 (mm:ss)\n", + "\n", + "\n", + " version\n", + "name \n", + "Python 3.10.14 | packaged by conda-forge | (main, Mar...\n", + "hsp2 n/a\n", + "numpy 1.26.4\n", + "numba 0.59.1\n", + "pandas 1.5.3\n", + "jupyterlab 4.1.6\n", + "notebook 7.1.3\n", + "os Linux-5.15.0-91-generic-x86_64-with-glibc2.35\n", + "processor x86_64\n", + "Date/Time 2024-05-21T18:18:45.579401\n" + ] + } + ], + "source": [ + "main(hdfname, saveall=True)" + ] + }, + { + "cell_type": "raw", + "metadata": {}, + "source": [ + "Development note:\n", + "\n", + "SAVEALL = FALSE (new SAVE table for hot restart by default)\n", + "2017-04-16 09:05:26.10 Run completed\n", + "1 loop, best of 3: 32.3 s per loop\n", + "Ratio of HSP2/HSPF 32.3/24.4 = 1.3\n", + "\n", + "SAVEALL = TRUE\n", + "2017-04-11 10:18:22.86 Run completed\n", + "1 loop, best of 3: 38.1 s per loop\n", + "Ratio of HSP2/HSPF 38.1/24.4 = 1.6\n", + "\n", + "04/25/2020 New Python 3 version is about 1.8x slower than HSPF - even when all tricks used.\n", + "However, the new Numba Dict and List implementations are SLOW in the code outside numba - on the order\n", + "of us vs ns which can easily explain a slight difference. Spotted warning messages in HSP2 log file.\n", + "\n", + "05/04/2020 new Calleg testing For reference the run time of HSPF is 32.2 seconds. Using to_hdf()\n", + "With Flush - create test10.h5 Run time is about 01:56.9 size 2,136,787 KB\n", + " existing test10.h5 Run time is about 01:15.2 size 2,136,836 KB\n", + "NO Flush - create test10.h5 Run time is about 01:19.1 size 2,136,787 KB Warning messages seen for closed node\n", + " existing test10.h5 Run time is about 01:14.4 size 2,236,836 KB\n", + "BLOSC - create test10.h5 Run time is about 01:29.0 size 1,156,499 KB No Flush, but no warning messages (Blosc in save_timeseries only)\n", + " existing test10.h5 Run time is about 01:26.2 size 1,156,796 KB\n", + " \n", + "BLOSC (wdm & main)\n", + " - create test10.h5 Run time is about 01:30.8 size 1,050,043 KB No Flush, no warning messages.\n", + " existing test10.h5 Run time is about 01:26.0 size 1,060,340 KB\n", + " existing test10.h5 Run time is about 01:23.6 (5/8/2020)\n", + " existing test10.h5 Run time is about 01:19.7 (5/8/2020) - no kernel restart from last run\n", + " \n", + "NO Numba - existing test10.h5 Run time is about 13:25.1 or x9.4 slower than with Numba.\n", + "\n", + "So current timing results show HSP2 is 2.8x slower than HSPF for this problem.\n", + "\n", + "Also tried return to store.put() with BLOSC (wdm & main) instead of to_hdf()\n", + " - existing test10.h5 Run time is about 01:28.0 but found warning messages for closed node. Speedup not worth it.\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Read Summary from HBN file" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Find the higest frequency data available." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:18:45.604032Z", + "iopub.status.busy": "2024-05-21T22:18:45.603921Z", + "iopub.status.idle": "2024-05-21T22:18:45.838952Z", + "shell.execute_reply": "2024-05-21T22:18:45.838529Z", + "shell.execute_reply.started": "2024-05-21T22:18:45.604023Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [ + { + "ename": "FileNotFoundError", + "evalue": "File test10_hspf.h5 does not exist", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[14], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m summary \u001b[38;5;241m=\u001b[39m \u001b[43mpd\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mread_hdf\u001b[49m\u001b[43m(\u001b[49m\u001b[43mHBN\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mSUMMARY\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 2\u001b[0m summary\u001b[38;5;241m.\u001b[39mFrequency\u001b[38;5;241m.\u001b[39munique()\n", + "File \u001b[0;32m~/anaconda3/envs/hsp2_310/lib/python3.10/site-packages/pandas/io/pytables.py:414\u001b[0m, in \u001b[0;36mread_hdf\u001b[0;34m(path_or_buf, key, mode, errors, where, start, stop, columns, iterator, chunksize, **kwargs)\u001b[0m\n\u001b[1;32m 411\u001b[0m exists \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mFalse\u001b[39;00m\n\u001b[1;32m 413\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m exists:\n\u001b[0;32m--> 414\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mFile \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath_or_buf\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m does not exist\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 416\u001b[0m store \u001b[38;5;241m=\u001b[39m HDFStore(path_or_buf, mode\u001b[38;5;241m=\u001b[39mmode, errors\u001b[38;5;241m=\u001b[39merrors, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 417\u001b[0m \u001b[38;5;66;03m# can't auto open/close if we are using an iterator\u001b[39;00m\n\u001b[1;32m 418\u001b[0m \u001b[38;5;66;03m# so delegate to the iterator\u001b[39;00m\n", + "\u001b[0;31mFileNotFoundError\u001b[0m: File test10_hspf.h5 does not exist" + ] + } + ], + "source": [ + "summary = pd.read_hdf(HBN, \"SUMMARY\")\n", + "summary.Frequency.unique()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "So the best available is monthly data." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Automate checking by output flow" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.792607Z", + "iopub.status.idle": "2024-04-28T16:47:35.792790Z", + "shell.execute_reply": "2024-04-28T16:47:35.792705Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.792697Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "def hsp2key(hspfkey):\n", + " op, activity, segment, _ = hspfkey.split(\"_\")\n", + " return f\"RESULTS/{op}_{op[0]}{segment:0>3s}/{activity}\"" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:20:52.323144Z", + "iopub.status.busy": "2024-05-21T22:20:52.322635Z", + "iopub.status.idle": "2024-05-21T22:20:52.327715Z", + "shell.execute_reply": "2024-05-21T22:20:52.327288Z", + "shell.execute_reply.started": "2024-05-21T22:20:52.323112Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "def monthlyoutflow(keys, flowname, how=\"sum\"):\n", + " concat = []\n", + " for key in keys.index:\n", + " hsp2 = (\n", + " pd.read_hdf(hdfname, hsp2key(key))[flowname].resample(\"M\").sum().to_numpy()\n", + " )\n", + " hspf = pd.read_hdf(HBN, key)[flowname].to_numpy()\n", + "\n", + " hsp2sum = hsp2.sum()\n", + " hspfsum = hspf.sum()\n", + "\n", + " segment = key.split(\"_\")[2]\n", + "\n", + " data = pd.DataFrame(index=[segment])\n", + " data[\"HSP2_SUM\"] = hsp2sum\n", + " data[\"HSPF_SUM\"] = hspfsum\n", + " data[\"Percent diff\"] = 100 * (hspfsum - hsp2sum) / hspfsum\n", + " data[\"abs(Percent diff)\"] = 100 * abs(hspfsum - hsp2sum) / hspfsum\n", + "\n", + " concat.append(data)\n", + "\n", + " return pd.concat(concat).sort_values(by=[\"abs(Percent diff)\"])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Define a function to plot HSPF and HSP2 data" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "execution": { + "iopub.execute_input": "2024-05-21T22:21:13.318802Z", + "iopub.status.busy": "2024-05-21T22:21:13.318576Z", + "iopub.status.idle": "2024-05-21T22:21:13.323178Z", + "shell.execute_reply": "2024-05-21T22:21:13.322666Z", + "shell.execute_reply.started": "2024-05-21T22:21:13.318786Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "def plot(operation, ils, activity, name, how=\"sum\"):\n", + " hspf = f\"{operation}_{activity}_{ils:0>3s}_4\"\n", + " tshspf = read_hdf(HBN, hspf)[name]\n", + "\n", + " hsp2 = f\"RESULTS/{operation}_{operation[0]}{ils:0>3s}/{activity}\"\n", + " if how == \"sum\":\n", + " tshsp2 = (\n", + " read_hdf(hdfname, hsp2)[f\"{name}_{how}\"].resample(\"M\").sum().shift(1, \"D\")\n", + " )\n", + " elif how == \"last\":\n", + " tshsp2 = (\n", + " read_hdf(hdfname, hsp2)[f\"{name}_{how}\"].resample(\"M\").last().shift(1, \"D\")\n", + " )\n", + "\n", + " plt.figure(figsize=(10, 8))\n", + " plt.plot(tshspf.index, tshspf, label=\"HSPF\", color=\"r\")\n", + " plt.plot(tshsp2.index, tshsp2, label=\"HSP2\", color=\"b\")\n", + " plt.legend()\n", + " plt.title(f\"{operation} {operation[0]}{ils:0>3s}, {activity} {name}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.794953Z", + "iopub.status.idle": "2024-04-28T16:47:35.795205Z", + "shell.execute_reply": "2024-04-28T16:47:35.795114Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.795106Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "def scatter(operation, ils, activity, name, how=\"sum\"):\n", + " hspf = f\"{operation}_{activity}_{ils:0>3s}_4\"\n", + " tshspf = read_hdf(HBN, hspf)[name]\n", + "\n", + " hsp2 = f\"RESULTS/{operation}_{operation[0]}{ils:0>3s}/{activity}\"\n", + " if how == \"sum\":\n", + " tshsp2 = (\n", + " read_hdf(hdfname, hsp2)[f\"{name}_{how}\"].resample(\"M\").sum().shift(1, \"D\")\n", + " )\n", + " elif how == \"last\":\n", + " tshsp2 = (\n", + " read_hdf(hdfname, hsp2)[f\"{name}_{how}\"].resample(\"M\").last().shift(1, \"D\")\n", + " )\n", + "\n", + " plt.scatter(tshspf, tshsp2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### IMPLND" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.795724Z", + "iopub.status.idle": "2024-04-28T16:47:35.795951Z", + "shell.execute_reply": "2024-04-28T16:47:35.795866Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.795858Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "implndkeys = summary[(summary.Frequency == \"Monthly\") & (summary.Operation == \"IMPLND\")]\n", + "implndkeys[0:10]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.796421Z", + "iopub.status.idle": "2024-04-28T16:47:35.796643Z", + "shell.execute_reply": "2024-04-28T16:47:35.796560Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.796552Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "delta = monthlyoutflow(implndkeys, \"SURO\")\n", + "delta" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Look at the statistics for the percent difference column" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.797125Z", + "iopub.status.idle": "2024-04-28T16:47:35.797416Z", + "shell.execute_reply": "2024-04-28T16:47:35.797332Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.797324Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "delta.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.797835Z", + "iopub.status.idle": "2024-04-28T16:47:35.798053Z", + "shell.execute_reply": "2024-04-28T16:47:35.797969Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.797961Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "delta[\"Percent diff\"].hist()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.798483Z", + "iopub.status.idle": "2024-04-28T16:47:35.798717Z", + "shell.execute_reply": "2024-04-28T16:47:35.798637Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.798629Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "ils = delta.index[-1]\n", + "print(\"WORST IMPLND SEGMENT IS\", ils)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### IMPLND IWATER SURO, Monthly" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.799127Z", + "iopub.status.idle": "2024-04-28T16:47:35.799401Z", + "shell.execute_reply": "2024-04-28T16:47:35.799320Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.799312Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"IMPLND\", ils, \"IWATER\", \"SURO\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.799811Z", + "iopub.status.idle": "2024-04-28T16:47:35.799997Z", + "shell.execute_reply": "2024-04-28T16:47:35.799937Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.799931Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"IMPLND\", ils, \"IWATER\", \"SURO\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### IMPLND IWATER IMPEV, Monthly" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.800364Z", + "iopub.status.idle": "2024-04-28T16:47:35.800525Z", + "shell.execute_reply": "2024-04-28T16:47:35.800472Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.800466Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"IMPLND\", ils, \"IWATER\", \"IMPEV\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.800820Z", + "iopub.status.idle": "2024-04-28T16:47:35.800925Z", + "shell.execute_reply": "2024-04-28T16:47:35.800875Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.800870Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"IMPLND\", ils, \"IWATER\", \"IMPEV\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### IMPLND IWATER PET, Monthly" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.801179Z", + "iopub.status.idle": "2024-04-28T16:47:35.801281Z", + "shell.execute_reply": "2024-04-28T16:47:35.801232Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.801227Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"IMPLND\", ils, \"IWATER\", \"PET\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.801629Z", + "iopub.status.idle": "2024-04-28T16:47:35.801742Z", + "shell.execute_reply": "2024-04-28T16:47:35.801689Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.801684Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"IMPLND\", ils, \"IWATER\", \"PET\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### IMPLND IWATER RETS, Monthly" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.802034Z", + "iopub.status.idle": "2024-04-28T16:47:35.802140Z", + "shell.execute_reply": "2024-04-28T16:47:35.802088Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.802084Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"IMPLND\", ils, \"IWATER\", \"RETS\", \"last\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.802456Z", + "iopub.status.idle": "2024-04-28T16:47:35.802559Z", + "shell.execute_reply": "2024-04-28T16:47:35.802511Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.802506Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"IMPLND\", ils, \"IWATER\", \"RETS\", \"last\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### IMPLND IWATER SUPY, Monthly" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.802805Z", + "iopub.status.idle": "2024-04-28T16:47:35.802909Z", + "shell.execute_reply": "2024-04-28T16:47:35.802861Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.802853Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"IMPLND\", ils, \"IWATER\", \"SUPY\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.803196Z", + "iopub.status.idle": "2024-04-28T16:47:35.803295Z", + "shell.execute_reply": "2024-04-28T16:47:35.803248Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.803243Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"IMPLND\", ils, \"IWATER\", \"SUPY\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### IMPLND IWATER SURS, Monthly" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.803608Z", + "iopub.status.idle": "2024-04-28T16:47:35.803715Z", + "shell.execute_reply": "2024-04-28T16:47:35.803666Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.803661Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"IMPLND\", ils, \"IWATER\", \"SURS\", \"last\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.804024Z", + "iopub.status.idle": "2024-04-28T16:47:35.804126Z", + "shell.execute_reply": "2024-04-28T16:47:35.804078Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.804073Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"IMPLND\", ils, \"IWATER\", \"SURS\", \"last\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Automate checking PERLNDs for PERO" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.804408Z", + "iopub.status.idle": "2024-04-28T16:47:35.804507Z", + "shell.execute_reply": "2024-04-28T16:47:35.804459Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.804455Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "perlndkeys = summary[(summary.Frequency == \"Monthly\") & (summary.Operation == \"PERLND\")]\n", + "perlndkeys[0:10]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.804766Z", + "iopub.status.idle": "2024-04-28T16:47:35.804863Z", + "shell.execute_reply": "2024-04-28T16:47:35.804817Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.804812Z" + }, + "scrolled": true, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "delta = monthlyoutflow(perlndkeys, \"PERO\")\n", + "delta" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Look at the statistics for the percent difference column" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.805199Z", + "iopub.status.idle": "2024-04-28T16:47:35.805309Z", + "shell.execute_reply": "2024-04-28T16:47:35.805260Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.805254Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "delta.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.805681Z", + "iopub.status.idle": "2024-04-28T16:47:35.805793Z", + "shell.execute_reply": "2024-04-28T16:47:35.805743Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.805737Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "delta[\"Percent diff\"].hist()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.806219Z", + "iopub.status.idle": "2024-04-28T16:47:35.806350Z", + "shell.execute_reply": "2024-04-28T16:47:35.806289Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.806283Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "pls = delta.index[-1]\n", + "print(\"WORST PERLND SEGMENT IS\", pls)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER AGWLI" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.806740Z", + "iopub.status.idle": "2024-04-28T16:47:35.806886Z", + "shell.execute_reply": "2024-04-28T16:47:35.806814Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.806808Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"AGWLI\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.807172Z", + "iopub.status.idle": "2024-04-28T16:47:35.807318Z", + "shell.execute_reply": "2024-04-28T16:47:35.807251Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.807244Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"AGWLI\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER SURLI" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.807945Z", + "iopub.status.idle": "2024-04-28T16:47:35.808090Z", + "shell.execute_reply": "2024-04-28T16:47:35.808026Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.808020Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"SURLI\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.808424Z", + "iopub.status.idle": "2024-04-28T16:47:35.808562Z", + "shell.execute_reply": "2024-04-28T16:47:35.808497Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.808491Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"SURLI\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER AGWO" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.809143Z", + "iopub.status.idle": "2024-04-28T16:47:35.809260Z", + "shell.execute_reply": "2024-04-28T16:47:35.809207Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.809202Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"AGWO\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.809599Z", + "iopub.status.idle": "2024-04-28T16:47:35.809703Z", + "shell.execute_reply": "2024-04-28T16:47:35.809653Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.809648Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"AGWO\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER BASET" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.810200Z", + "iopub.status.idle": "2024-04-28T16:47:35.810358Z", + "shell.execute_reply": "2024-04-28T16:47:35.810277Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.810270Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"BASET\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.810827Z", + "iopub.status.idle": "2024-04-28T16:47:35.810995Z", + "shell.execute_reply": "2024-04-28T16:47:35.810926Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.810920Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"BASET\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##### PERLND PWATER CEPE" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.811302Z", + "iopub.status.idle": "2024-04-28T16:47:35.811424Z", + "shell.execute_reply": "2024-04-28T16:47:35.811366Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.811361Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"CEPE\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.811817Z", + "iopub.status.idle": "2024-04-28T16:47:35.811925Z", + "shell.execute_reply": "2024-04-28T16:47:35.811875Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.811870Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"CEPE\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER IFWI" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.812350Z", + "iopub.status.idle": "2024-04-28T16:47:35.812455Z", + "shell.execute_reply": "2024-04-28T16:47:35.812403Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.812398Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"IFWI\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.812816Z", + "iopub.status.idle": "2024-04-28T16:47:35.812974Z", + "shell.execute_reply": "2024-04-28T16:47:35.812909Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.812901Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"IFWI\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER IFWO" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.813322Z", + "iopub.status.idle": "2024-04-28T16:47:35.813469Z", + "shell.execute_reply": "2024-04-28T16:47:35.813409Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.813403Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"IFWO\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.814100Z", + "iopub.status.idle": "2024-04-28T16:47:35.814241Z", + "shell.execute_reply": "2024-04-28T16:47:35.814178Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.814171Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"IFWO\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER IGWI" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.814642Z", + "iopub.status.idle": "2024-04-28T16:47:35.814781Z", + "shell.execute_reply": "2024-04-28T16:47:35.814719Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.814713Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"IGWI\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.815196Z", + "iopub.status.idle": "2024-04-28T16:47:35.815325Z", + "shell.execute_reply": "2024-04-28T16:47:35.815265Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.815259Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"IGWI\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER INFIL" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.815862Z", + "iopub.status.idle": "2024-04-28T16:47:35.815972Z", + "shell.execute_reply": "2024-04-28T16:47:35.815920Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.815915Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"INFIL\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.816307Z", + "iopub.status.idle": "2024-04-28T16:47:35.816446Z", + "shell.execute_reply": "2024-04-28T16:47:35.816359Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.816354Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"INFIL\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER LZET" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.816833Z", + "iopub.status.idle": "2024-04-28T16:47:35.816974Z", + "shell.execute_reply": "2024-04-28T16:47:35.816908Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.816901Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"LZET\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.817354Z", + "iopub.status.idle": "2024-04-28T16:47:35.817492Z", + "shell.execute_reply": "2024-04-28T16:47:35.817427Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.817420Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"LZET\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER PERC" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.817940Z", + "iopub.status.idle": "2024-04-28T16:47:35.818074Z", + "shell.execute_reply": "2024-04-28T16:47:35.818011Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.818005Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"PERC\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.818461Z", + "iopub.status.idle": "2024-04-28T16:47:35.818570Z", + "shell.execute_reply": "2024-04-28T16:47:35.818520Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.818515Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"PERC\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER PERO" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.819065Z", + "iopub.status.idle": "2024-04-28T16:47:35.819219Z", + "shell.execute_reply": "2024-04-28T16:47:35.819143Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.819136Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"PERO\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.819926Z", + "iopub.status.idle": "2024-04-28T16:47:35.820060Z", + "shell.execute_reply": "2024-04-28T16:47:35.819999Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.819993Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"PERO\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER PERS" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.820477Z", + "iopub.status.idle": "2024-04-28T16:47:35.820590Z", + "shell.execute_reply": "2024-04-28T16:47:35.820538Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.820533Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"PERS\", \"last\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.821046Z", + "iopub.status.idle": "2024-04-28T16:47:35.821151Z", + "shell.execute_reply": "2024-04-28T16:47:35.821101Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.821096Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"PERS\", \"last\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER PET, Monthly" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.821568Z", + "iopub.status.idle": "2024-04-28T16:47:35.821733Z", + "shell.execute_reply": "2024-04-28T16:47:35.821667Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.821660Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"PET\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.822186Z", + "iopub.status.idle": "2024-04-28T16:47:35.822327Z", + "shell.execute_reply": "2024-04-28T16:47:35.822262Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.822256Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"PET\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER SUPY" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.822942Z", + "iopub.status.idle": "2024-04-28T16:47:35.823084Z", + "shell.execute_reply": "2024-04-28T16:47:35.823020Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.823014Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"SUPY\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.823410Z", + "iopub.status.idle": "2024-04-28T16:47:35.823541Z", + "shell.execute_reply": "2024-04-28T16:47:35.823481Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.823475Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"SUPY\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER SURO" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.823928Z", + "iopub.status.idle": "2024-04-28T16:47:35.824052Z", + "shell.execute_reply": "2024-04-28T16:47:35.823994Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.823988Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"SURO\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.824587Z", + "iopub.status.idle": "2024-04-28T16:47:35.824696Z", + "shell.execute_reply": "2024-04-28T16:47:35.824646Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.824641Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"SURO\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER TAET" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.824966Z", + "iopub.status.idle": "2024-04-28T16:47:35.825072Z", + "shell.execute_reply": "2024-04-28T16:47:35.825022Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.825017Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"TAET\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.825613Z", + "iopub.status.idle": "2024-04-28T16:47:35.825757Z", + "shell.execute_reply": "2024-04-28T16:47:35.825690Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.825683Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"TAET\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER UZET" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.826143Z", + "iopub.status.idle": "2024-04-28T16:47:35.826253Z", + "shell.execute_reply": "2024-04-28T16:47:35.826203Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.826198Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"UZET\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.826578Z", + "iopub.status.idle": "2024-04-28T16:47:35.826714Z", + "shell.execute_reply": "2024-04-28T16:47:35.826648Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.826642Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"UZET\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### PERLND PWATER UZI" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.827027Z", + "iopub.status.idle": "2024-04-28T16:47:35.827177Z", + "shell.execute_reply": "2024-04-28T16:47:35.827115Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.827109Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"PERLND\", pls, \"PWATER\", \"UZI\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.827817Z", + "iopub.status.idle": "2024-04-28T16:47:35.827945Z", + "shell.execute_reply": "2024-04-28T16:47:35.827887Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.827881Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"PERLND\", pls, \"PWATER\", \"UZI\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## RCHRES" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.828529Z", + "iopub.status.idle": "2024-04-28T16:47:35.828662Z", + "shell.execute_reply": "2024-04-28T16:47:35.828598Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.828592Z" + }, + "scrolled": true, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "rchreskeys = summary[(summary.Frequency == \"Monthly\") & (summary.Operation == \"RCHRES\")]\n", + "rchreskeys[0:10]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.829109Z", + "iopub.status.idle": "2024-04-28T16:47:35.829220Z", + "shell.execute_reply": "2024-04-28T16:47:35.829168Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.829163Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "delta = monthlyoutflow(rchreskeys, \"ROVOL\")\n", + "delta" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Look at the statistics for the percent difference column" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.829520Z", + "iopub.status.idle": "2024-04-28T16:47:35.829624Z", + "shell.execute_reply": "2024-04-28T16:47:35.829575Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.829570Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "delta.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.829967Z", + "iopub.status.idle": "2024-04-28T16:47:35.830075Z", + "shell.execute_reply": "2024-04-28T16:47:35.830022Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.830017Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "delta[\"Percent diff\"].hist()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.830423Z", + "iopub.status.idle": "2024-04-28T16:47:35.830530Z", + "shell.execute_reply": "2024-04-28T16:47:35.830480Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.830475Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "rid = delta.index[-1]\n", + "print(\"WORST RCHRES SEGMENT IS\", rid)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### RCHRES HYDR IVOL" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.830926Z", + "iopub.status.idle": "2024-04-28T16:47:35.831031Z", + "shell.execute_reply": "2024-04-28T16:47:35.830981Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.830976Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"RCHRES\", rid, \"HYDR\", \"IVOL\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.831391Z", + "iopub.status.idle": "2024-04-28T16:47:35.831494Z", + "shell.execute_reply": "2024-04-28T16:47:35.831445Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.831440Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"RCHRES\", rid, \"HYDR\", \"IVOL\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### RCHRES HYDR PRSUPY" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.831747Z", + "iopub.status.idle": "2024-04-28T16:47:35.831846Z", + "shell.execute_reply": "2024-04-28T16:47:35.831799Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.831794Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"RCHRES\", rid, \"HYDR\", \"PRSUPY\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.832177Z", + "iopub.status.idle": "2024-04-28T16:47:35.832284Z", + "shell.execute_reply": "2024-04-28T16:47:35.832233Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.832227Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"RCHRES\", rid, \"HYDR\", \"PRSUPY\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### RCHRES HYDR ROVOL" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.832846Z", + "iopub.status.idle": "2024-04-28T16:47:35.832948Z", + "shell.execute_reply": "2024-04-28T16:47:35.832899Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.832894Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"RCHRES\", rid, \"HYDR\", \"ROVOL\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.833229Z", + "iopub.status.idle": "2024-04-28T16:47:35.833331Z", + "shell.execute_reply": "2024-04-28T16:47:35.833282Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.833277Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"RCHRES\", rid, \"HYDR\", \"ROVOL\", \"sum\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### RCHRES HYDR VOL" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.833627Z", + "iopub.status.idle": "2024-04-28T16:47:35.833835Z", + "shell.execute_reply": "2024-04-28T16:47:35.833733Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.833723Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"RCHRES\", rid, \"HYDR\", \"VOL\", \"last\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.834395Z", + "iopub.status.idle": "2024-04-28T16:47:35.834543Z", + "shell.execute_reply": "2024-04-28T16:47:35.834472Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.834467Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"RCHRES\", rid, \"HYDR\", \"VOL\", \"last\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### RCHRES HYDR VOLEV" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.835103Z", + "iopub.status.idle": "2024-04-28T16:47:35.835259Z", + "shell.execute_reply": "2024-04-28T16:47:35.835191Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.835185Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "plot(\"RCHRES\", rid, \"HYDR\", \"VOLEV\", \"sum\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "execution": { + "iopub.status.busy": "2024-04-28T16:47:35.835678Z", + "iopub.status.idle": "2024-04-28T16:47:35.835800Z", + "shell.execute_reply": "2024-04-28T16:47:35.835747Z", + "shell.execute_reply.started": "2024-04-28T16:47:35.835742Z" + }, + "vscode": { + "languageId": "python" + } + }, + "outputs": [], + "source": [ + "scatter(\"RCHRES\", rid, \"HYDR\", \"VOLEV\", \"sum\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.14" + }, + "toc-showmarkdowntxt": false + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/tests/test10eq/HSP2results/test10eq.json b/tests/test10eq/HSP2results/test10eq.json new file mode 100644 index 00000000..80bae7ed --- /dev/null +++ b/tests/test10eq/HSP2results/test10eq.json @@ -0,0 +1,23 @@ +{ + "RCHRES_R005": { + "name": "RCHRES_R005", + "object_class": "ModelObject", + "value": "0", + "RSED4": { + "name": "RSED4", + "object_class": "Equation", + "equation": "RSED4 + 250000.0" + }, + "RSED5": { + "name": "RSED5", + "object_class": "Equation", + "equation": "RSED5 + 689000.0" + }, + "RSED6": { + "name": "RSED6", + "object_class": "Equation", + "equation": "RSED6 + 401000.0" + } + } +} + diff --git a/tests/test10eq/HSP2results/test10eq.uci b/tests/test10eq/HSP2results/test10eq.uci new file mode 100644 index 00000000..df562c22 --- /dev/null +++ b/tests/test10eq/HSP2results/test10eq.uci @@ -0,0 +1,1015 @@ +RUN + +GLOBAL + Version 11 test run: PERLND and IMPLND w/ RCHRES (sediment, water quality) + START 1976 END 1976 + RUN INTERP OUTPUT LEVEL 3 + RESUME 0 RUN 1 UNIT SYSTEM 1 +END GLOBAL + + *** This test run uses MASS-LINK and SCHEMATIC blocks *** + +FILES + ***<----FILE NAME-------------------------------------------------> +WDM 21 test10eq.wdm +MESSU 22 test10eq.ech + 01 test10eq.out + 66 test10eq.d66 + 94 test10eq.p94 + 95 test10eq.p95 +BINO 81 test10eqP.hbn +BINO 82 test10eqI.hbn +BINO 83 test10eqR.hbn +END FILES + +OPN SEQUENCE + INGRP INDELT 01:00 + PERLND 1 + RCHRES 1 + DISPLY 5 + DISPLY 1 + GENER 1 + DISPLY 2 + RCHRES 2 + RCHRES 3 + RCHRES 4 + PLTGEN 2 + IMPLND 1 + RCHRES 5 + DISPLY 3 + GENER 2 + DISPLY 4 + PLTGEN 1 + END INGRP +END OPN SEQUENCE + +PERLND + ACTIVITY + Active Sections (1=Active, 0=Inactive) *** + # - # ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC *** + 1 1 1 1 1 + END ACTIVITY + + PRINT-INFO + Print-flags *** PIVL PYR + # - # ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC *** + 1 4 4 4 4 12 + END PRINT-INFO + + BINARY-INFO +*** < PLS> Binary Output Flags PIVL PYR +*** x - x ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC + 1 2 2 2 2 2 1 12 + END BINARY-INFO + + GEN-INFO + <-------Name-------> Unit-systems Printer BinaryOut *** + # - # t-series Engl Metr Engl Metr *** + in out *** + 1 BICKNELL FARM 1 1 1 0 81 0 + END GEN-INFO + + *** Section SNOW *** + + ICE-FLAG + 0= Ice formation not simulated, 1= Simulated *** + # - #ICEFG *** + 1 1 + END ICE-FLAG + + SNOW-PARM1 + Snow input info: Part 1 *** + # - # LAT MELEV SHADE SNOWCF COVIND *** + 1 42. 520. 0.0 1.45 0.5 + END SNOW-PARM1 + + SNOW-PARM2 + Snow input info: Part 2 *** + # - # RDCSN TSNOW SNOEVP CCFACT MWATER MGMELT *** + 1 0.12 32. 0.05 0.5 0.08 0.0001 + END SNOW-PARM2 + + SNOW-INIT1 + Initial snow conditions: Part 1 *** + # - # PACKSNOW PACKICE PACKWATER RDENPF DULL PAKTMP *** + 1 1.4 0.2 0.1 0.2 375. 27.5 + END SNOW-INIT1 + + SNOW-INIT2 + Initial snow conditions: Part 2 *** + # - # COVINX XLNMLT SKYCLR *** + 1 0.50 0.0 1.0 + END SNOW-INIT2 + + *** Section PWATER *** + + PWAT-PARM1 + PWATER variable monthly parameter value flags *** + # - # CSNO RTOP UZFG VCS VUZ VNN VIFW VIRC VLE *** + 1 1 0 0 1 1 1 0 0 1 + END PWAT-PARM1 + + PWAT-PARM2 + *** PWATER input info: Part 2 + # - # ***FOREST LZSN INFILT LSUR SLSUR KVARY AGWRC + 1 0.010 8.0 0.150 250. 0.050 0.5 0.98 + END PWAT-PARM2 + + PWAT-PARM3 + *** PWATER input info: Part 3 + # - # ***PETMAX PETMIN INFEXP INFILD DEEPFR BASETP AGWETP + 1 40. 35. 2.0 2.0 0.10 0.0 0.08 + END PWAT-PARM3 + + PWAT-PARM4 + PWATER input info: Part 4 *** + # - # CEPSC UZSN NSUR INTFW IRC LZETP *** + 1 0.01 0.1 1.0 0.60 + END PWAT-PARM4 + + MON-INTERCEP + Only required if VCSFG=1 in PWAT-PARM1 *** + # - # Interception storage capacity at start of each month *** + JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** + 1 0.04 0.04 0.03 0.03 0.03 0.03 0.10 0.17 0.19 0.14 0.05 0.04 + END MON-INTERCEP + + MON-UZSN + Only required if VUZFG=1 in PWAT-PARM1 *** + # - # Upper zone storage at start of each month *** + JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** + 1 0.4 0.4 0.4 0.4 1.6 1.1 1.1 1.3 1.3 1.3 1.1 0.9 + END MON-UZSN + + MON-MANNING + Only required if VNNFG=1 in PWAT-PARM1 *** + # - # Manning's n for overland flow at start of each month *** + JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** + 1 0.30 0.30 0.30 0.30 0.27 0.25 0.25 0.25 0.25 0.25 0.35 0.33 + END MON-MANNING + + MON-LZETPARM + Only required if VLEFG=1 in PWAT-PARM1 *** + # - # Lower zone ET parameter at start of each month *** + JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** + 1 0.20 0.20 0.20 0.23 0.23 0.25 0.60 0.80 0.75 0.50 0.30 0.20 + END MON-LZETPARM + + PWAT-STATE1 + *** Initial conditions at start of simulation + # - # *** CEPS SURS UZS IFWS LZS AGWS GWVS + 1 0.05 0.0 0.15 0.0 4.0 0.05 0.05 + END PWAT-STATE1 + + *** Section PSTEMP *** + + PSTEMP-PARM2 + *** + # - # ASLT BSLT ULTP1 ULTP2 LGTP1 LGTP2 *** + 1 14.5 .365 1.2 4.0 1.2 6.0 + END PSTEMP-PARM2 + + *** Section PWTGAS *** + + PWT-PARM2 + *** + # - # ELEV IDOXP ICO2P ADOXP ACO2P *** + 1 500. 6. .05 5. .05 + END PWT-PARM2 +END PERLND + +IMPLND + ACTIVITY + Active Sections *** + # - # ATMP SNOW IWAT SLD IWG IQAL *** + 1 1 1 1 1 1 + END ACTIVITY + + PRINT-INFO + Print-flags *** + # - # ATMP SNOW IWAT SLD IWG IQAL PIVL PYR *** + 1 4 4 4 4 4 12 + END PRINT-INFO + + BINARY-INFO +*** **** Binary-Output-flags **** PIVL PYR +*** x - x ATMP SNOW IWAT SLD IWG IQAL ********* + 1 2 2 2 2 2 1 12 + END BINARY-INFO + + GEN-INFO + <-------Name-------> Unit-systems Printer BinaryOut *** + # - # t-series Engl Metr Engl Metr *** + in out *** + 1 DONIGIAN INDUSTRY 1 1 1 0 82 0 + END GEN-INFO + + *** Section SNOW *** + + ICE-FLAG + 0= Ice formation not simulated, 1= Simulated *** + # - #ICEFG *** + 1 1 + END ICE-FLAG + + SNOW-PARM1 + Snow input info: Part 1 *** + # - # LAT MELEV SHADE SNOWCF COVIND *** + 1 42. 450. 0.0 1.45 0.5 + END SNOW-PARM1 + + SNOW-PARM2 + Snow input info: Part 2 *** + # - # RDCSN TSNOW SNOEVP CCFACT MWATER MGMELT *** + 1 0.12 32. 0.05 0.5 0.08 0.0001 + END SNOW-PARM2 + + SNOW-INIT1 + Initial snow conditions: Part 1 *** + # - # PACKSNOW PACKICE PACKWATER RDENPF DULL PAKTMP *** + 1 1.4 0.2 0.1 0.2 375. 27.5 + END SNOW-INIT1 + + SNOW-INIT2 + Initial snow conditions: Part 2 *** + # - # COVINX XLNMLT SKYCLR *** + 1 0.50 0.0 1.0 + END SNOW-INIT2 + + *** Section IWATER *** + + IWAT-PARM1 + Flags *** + # - # CSNO RTOP VRS VNN RTLI *** + 1 1 1 + END IWAT-PARM1 + + IWAT-PARM2 + *** + # - # LSUR SLSUR NSUR RETSC *** + 1 200. .010 .010 .01 + END IWAT-PARM2 + + IWAT-PARM3 + *** + # - # PETMAX PETMIN *** + 1 40. 35. + END IWAT-PARM3 + + IWAT-STATE1 + IWATER state variables *** + # - # RETS SURS *** + 1 .01 .01 + END IWAT-STATE1 + + *** Section SOLIDS *** + + SLD-PARM2 + *** + # - # KEIM JEIM ACCSDP REMSDP *** + 1 .08 1.9 .01 .5 + END SLD-PARM2 + + SLD-STOR + Solids storage (tons/acre) *** + # - # *** + 1 0.2 + END SLD-STOR + + *** Section IWTGAS *** + + IWT-PARM2 + *** + # - # ELEV AWTF BWTF *** + 1 410. 40. 0.8 + END IWT-PARM2 + + *** Section IQUAL *** + + NQUALS + *** + # - #NQUAL *** + 1 1 + END NQUALS + + QUAL-PROPS + Identifiers and Flags *** + # - #<--qualid--> QTID QSD VPFW QSO VQO *** + 1 COD LB 1 1 + END QUAL-PROPS + + QUAL-INPUT + Storage on surface and nonseasonal parameters *** + # - # SQO POTFW ACQOP SQOLIM WSQOP *** + 1 1.20 .175 .02 2.0 1.7 + END QUAL-INPUT +END IMPLND + +RCHRES + ACTIVITY + RCHRES Active Sections (1=Active, 0=Inactive) *** + # - # HYFG ADFG CNFG HTFG SDFG GQFG OXFG NUFG PKFG PHFG *** + 1 5 1 1 1 1 1 1 1 1 1 1 + END ACTIVITY + + PRINT-INFO + RCHRES Print-flags *** + # - # HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYR *** + 1 4 5 5 5 5 5 5 5 5 5 5 12 + 5 4 4 4 4 4 4 4 4 4 4 12 + END PRINT-INFO + + BINARY-INFO +*** RCHRES Binary Output level flags +*** x - x HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYR + 1 5 2 2 2 2 2 2 2 2 2 2 1 12 + END BINARY-INFO + + GEN-INFO + RCHRES<-------Name------->Nexit Unit Systems Printer BinaryOut *** + # - # t-series Engl Metr LKFG Engl Metr *** + in out *** + 1 MEIER POND 2 1 1 1 0 1 83 0 + 2 OUTLET 1 1 1 1 0 0 83 0 + 3 SPILLWAY 1 1 1 1 0 0 83 0 + 4 UPPER KITTLE CREEK 1 1 1 1 0 0 83 0 + 5 LOWER KITTLE CREEK 1 1 1 1 0 0 83 0 + END GEN-INFO + + *** Section HYDR *** + + HYDR-PARM1 + RCHRES Flags for HYDR section *** + # - # VC A1 A2 A3 ODFVFG for each ODGTFG for each *** FUNCT for each + FG FG FG FG possible exit possible exit *** possible exit + 1 2 3 4 5 1 2 3 4 5 *** + + 1 1 1 1 -1 6 + 2 5 1 1 1 4 + END HYDR-PARM1 + + HYDR-PARM2 + RCHRES *** + # - # DSN FTBN LEN DELTH STCOR KS DB50 *** + 1 00 1 0.5 1. .5 + 2 00 2 0.25 20. .5 + 3 00 3 0.25 30. .5 + 4 00 4 2.0 40. .5 + 5 00 5 3.0 40. .5 + END HYDR-PARM2 + + HYDR-INIT + RCHRES Initial conditions for HYDR section *** + # - # VOL Initial value of COLIND *** Initial value of OUTDGT + (ac-ft) for each possible exit *** for each possible exit + EX1 EX2 EX3 EX4 EX5 *** EX1 EX2 EX3 EX4 EX5 + 1 30. 4.0 5.0 + 2 5 0.0 4.0 + END HYDR-INIT + + *** Section CONS *** + + NCONS + RCHRES *** + # - #NCONS *** + 1 5 1 + END NCONS + + CONS-DATA + RCHRES Data for conservative constituent No. 3 *** + # - #<---Substance-id---> Conc ID CONV QTYID *** + 1 5 ALKALINITY 1000. MG/L 35.31 KG + END CONS-DATA + + *** Section HTRCH *** + + HEAT-PARM + RCHRES ELEV ELDAT CFSAEX KATRAD KCOND KEVAP *** + # - # *** + 1 5 450. 100. .95 + END HEAT-PARM + + HEAT-INIT + RCHRES TW AIRTMP *** + # - # *** + 1 5 60. 40. + END HEAT-INIT + + *** Section SEDTRN *** + + SANDFG + RCHRES *** + # - # SDFG *** + 1 2 1 + 3 4 2 + 5 3 + END SANDFG + + SED-GENPARM + RCHRES BEDWID BEDWRN POR *** + # - # *** + 1 200. 4. + 2 3 1.33 3. + 4 2.0 2. + 5 2.66 2. + END SED-GENPARM + + SAND-PM + RCHRES D W RHO KSAND EXPSND *** + # - # *** + 1 5 .014 2.5 1.5 1.2 + END SAND-PM + + SILT-CLAY-PM + RCHRES D W RHO TAUCD TAUCS M *** + # - # *** + 1 .00063 .0066 2.2 .2 .4 .5 + 2 3 .00063 .0066 2.2 1.E-10 500. .5 + 4 5 .00063 .0066 2.2 .2 .4 .5 + END SILT-CLAY-PM + + SILT-CLAY-PM + RCHRES D W RHO TAUCD TAUCS M *** + # - # *** + 1 .000055 .000034 2.0 .15 .3 .75 + 2 3 .000055 .000034 2.0 1.E-10 500. .75 + 4 5 .000055 .000034 2.0 .15 .3 .75 + END SILT-CLAY-PM + + SSED-INIT + RCHRES Suspended sed concs (mg/l) *** + # - # Sand Silt Clay *** + 1 5 5. 20. 30. + END SSED-INIT + + BED-INIT + RCHRES BEDDEP Initial bed composition *** + # - # (ft) Sand Silt Clay *** + 1 2. .8 .1 .1 + 2 3 2. .8 .1 .1 + 4 5 1. .8 .1 .1 + END BED-INIT + + *** Section GQUAL *** + + GQ-GENDATA + RCHRES NGQL TPFG PHFG ROFG CDFG SDFG PYFG LAT *** + # - # *** + 1 5 1 1 1 2 1 1 1 42 + END GQ-GENDATA + + GQ-QALDATA + RCHRES<-------GQID-------> DQAL CONCID CONV QTYID *** + # - # *** + 1 5 PESTICIDE B4 10. UG 1.E6 G + END GQ-QALDATA + + GQ-QALFG + RCHRES HDRL OXID PHOT VOLT BIOD GEN SDAS *** + # - # *** + 1 5 1 1 1 1 1 1 1 + END GQ-QALFG + + GQ-HYDPM + RCHRES KA KB KN THHYD *** + # - # *** + 1 5 .001 .01 .001 1.03 + END GQ-HYDPM + + GQ-ROXPM + RCHRES KOX THOX *** + # - # *** + 1 5 .1 1.03 + END GQ-ROXPM + + GQ-PHOTPM + # - #*** K1 K2 K3 K4 K5 K6 K7 + # - #*** K8 K9 K10 K11 K12 K13 K14 + # - #*** K15 K16 K17 K18 PHI THETA + 1 5 848. 544. 330. 195. 120. 68. 41. + 1 5 23. 13. 7. 4. 1. .1 + 1 5 .3 1.1 + END GQ-PHOTPM + + GQ-CFGAS + RCHRES CFGAS *** + # - # *** + 1 5 .001 + END GQ-CFGAS + + GQ-BIOPM + RCHRES BIOCON THBIO BIO *** + # - # *** + 1 5 .01 10. + END GQ-BIOPM + + GQ-GENDECAY + RCHRES FSTDEC THFST *** + # - # *** + 1 5 .2 + END GQ-GENDECAY + + GQ-SEDDECAY + RCHRES KSUSP THSUSP KBED THBED *** + # - # *** + 1 5 .002 + END GQ-SEDDECAY + + GQ-KD + RCHRES Partition coefficients *** + # - # ADPM(1,1) ADPM(2,1) ADPM(3,1) ADPM(4,1) ADPM(5,1) ADPM(6,1) *** + 1 .0001 .001 .001 .0001 .001 .001 + 2 3 .0001 .001 .001 1.E-10 1.E-10 1.E-10 + 4 5 .0001 .001 .001 .0001 .001 .001 + END GQ-KD + + GQ-ADRATE + RCHRES Adsorption/desorption rate parameters *** + # - # ADPM(1,2) ADPM(2,2) ADPM(3,2) ADPM(4,2) ADPM(5,2) ADPM(6,2) *** + 1 150. 150. 150. .25 .25 .25 + 2 3 150. 150. 150. 1000. 1000. 1000. + 4 5 150. 150. 150. .25 .25 .25 + END GQ-ADRATE + + GQ-SEDCONC + RCHRES SQAL1 SQAL2 SQAL3 SQAL4 SQAL5 SQAL6 *** + # - # *** + 1 .001 .01 .01 .001 .01 .01 + 2 3 .001 .01 .01 0. 0. 0. + 4 5 .001 .01 .01 .001 .01 .01 + END GQ-SEDCONC + + GQ-VALUES + RCHRES TWAT PHVAL ROC CLD SDCNC PHY *** + # - # *** + 1 5 1.E-5 + END GQ-VALUES + + GQ-ALPHA + RCHRES*** + # - #*** K1 K2 K3 K4 K5 K6 K7 + # - #*** K8 K9 K10 K11 K12 K13 K14 + # - #*** K15 K16 K17 K18 + 1 5 .008 .009 .010 .011 .011 .011 .012 + 1 5 .013 .015 .016 .017 .018 .019 .020 + 1 5 .021 .022 .024 .024 + END GQ-ALPHA + + GQ-GAMMA + RCHRES*** + # - #*** K1 K2 K3 K4 K5 K6 K7 + # - #*** K8 K9 K10 K11 K12 K13 K14 + # - #*** K15 K16 K17 K18 + 1 5 .001 .001 .001 .001 .001 .001 .001 + 1 5 .001 .002 .002 .002 .002 .002 .002 + 1 5 .002 .002 .002 .002 + END GQ-GAMMA + + GQ-DELTA + RCHRES*** + # - #*** K1 K2 K3 K4 K5 K6 K7 + # - #*** K8 K9 K10 K11 K12 K13 K14 + # - #*** K15 K16 K17 K18 + 1 5 .0007 .0007 .0007 .0007 .0007 .0007 .0007 + 1 5 .0007 .0007 .0007 .0007 .0007 .0007 .0007 + 1 5 .0007 .0007 .0007 .0007 + END GQ-DELTA + + GQ-CLDFACT + RCHRES*** + # - #*** F1 F2 F3 F4 F5 F6 F7 + # - #*** F8 F9 F10 F11 F12 F13 F14 + # - #*** F15 F16 F17 F18 + 1 5 .10 .10 .10 .15 .15 .15 .15 + 1 5 .17 .17 .17 .17 .18 .19 .20 + 1 5 .21 .21 .21 .21 + END GQ-CLDFACT + + *** Section RQUAL *** + + BENTH-FLAG + RCHRES BENF *** + # - # *** + 1 1 + 4 5 1 + END BENTH-FLAG + + SCOUR-PARMS + RCHRES SCRVEL SCRMUL *** + # - # *** + 1 5 3. + END SCOUR-PARMS + + *** Section OXRX *** + + OX-FLAGS + RCHRES REAM *** + # - # *** + 2 3 1 + 4 3 + 5 2 + END OX-FLAGS + + OX-GENPARM + RCHRES KBOD20 TCBOD KODSET SUPSAT *** + # - # /hr *** + 1 5 .1 8. + END OX-GENPARM + + OX-BENPARM + RCHRES BENOD TCBEN EXPOD BRBOD(1) BRBOD(2) EXPREL *** + # - # mg/m2.hr mg/m2.hr mg/m2.hr *** + 1 5 10. 1.1 1.2 20. 25. 1.3 + END OX-BENPARM + + OX-CFOREA + RCHRES CFOREA *** + # - # *** + 1 5. + END OX-CFOREA + + OX-REAPARM + RCHRES TCGINV REAK EXPRED EXPREV *** + # - # /hr *** + 4 2.0 -1.1 1.1 + END OX-REAPARM + + OX-INIT + RCHRES DOX BOD SATDO *** + # - # mg/l mg/l mg/l *** + 1 5 8. 100. + END OX-INIT + + *** Section NUTRX *** + + NUT-FLAGS + RCHRES TAM NO2 PO4 AMV DEN ADNH ADPO PHFL *** + # - # *** + 1 5 1 1 1 1 1 0 0 + END NUT-FLAGS + + NUT-BENPARM + RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** + # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** + 1 5 11.0 33.0 1.1 2.2 0.0005 + END NUT-BENPARM + + NUT-NITDENIT + RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** + # - # /hr /hr /hr mg/l *** + 1 5 .002 .004 1.07 .001 1.04 0.2 + END NUT-NITDENIT + + NUT-NH3VOLAT + RCHRES EXPNVG EXPNVL *** + # - # *** + 1 5 .50 0.6667 + END NUT-NH3VOLAT + + NUT-BEDCONC + RCHRES Bed concentrations of NH4 & PO4 (mg/mg) *** + # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** + 1 5 0.00001 0.00001 0.00001 0.00001 0.00001 0.00001 + END NUT-BEDCONC + + NUT-ADSPARM + RCHRES Partition coefficients for NH4 AND PO4 (l/mg) *** + # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** + 1 5 0.0001 0.0001 0.0001 10. 10. 10. + END NUT-ADSPARM + + NUT-DINIT + RCHRES NO3 TAM NO2 PO4 PHVAL *** + # - # mg/l mg/l mg/l mg/l ph units *** + 1 5 40. 10. 1. 50. 7.0 + END NUT-DINIT + + NUT-ADSINIT + RCHRES Initial suspended NH4 and PO4 concentrations (mg/mg) *** + # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** + 1 5 0. 0. 0. 0. 0. 0. + END NUT-ADSINIT + + *** Section PLANK *** + + PLNK-FLAGS + RCHRES PHYF ZOOF BALF SDLT AMRF DECF NSFG ZFOO *** + # - # *** + 1 5 1 1 1 1 1 1 + END PLNK-FLAGS + + PLNK-PARM1 + RCHRES RATCLP NONREF LITSED ALNPR EXTB MALGR *** + # - # /ft /hr *** + 1 5 4.5 + END PLNK-PARM1 + + PHYTO-PARM + RCHRES SEED MXSTAY OREF CLALDH PHYSET REFSET *** + # - # mg/l mg/l ug/l *** + 1 5 .1 .1 .5 .5 + END PHYTO-PARM + + ZOO-PARM1 + RCHRES MZOEAT ZFIL20 ZRES20 ZD OXZD *** + # - # mg/l.hr l/mgzoo.hr /hr /hr /hr *** + 1 5 .2 + END ZOO-PARM1 + + PLNK-INIT + RCHRES PHYTO ZOO BENAL ORN ORP ORC *** + # - # mg/l org/l mg/m2 mg/l mg/l mg/l *** + 1 5 40. 200. 5. 20. 20. 20. + END PLNK-INIT + + *** Section PHCARB *** + + PH-PARM1 + RCHRES PHCN ALKC *** + # - # *** + 1 5 50 + END PH-PARM1 + + PH-INIT + RCHRES TIC CO2 PH *** + # - # mg/l mg/l *** + 1 5 20. 5. 8.5 + END PH-INIT +END RCHRES + +FTABLES + FTABLE 1 + ROWS COLS *** + 14 6 + WINTER SUMMER SPLWAY *** + DEPTH AREA VOLUME OUTLET OUTLET DISCH *** + (FT) (ACRES) (AC-FT) DISCH DISCH (CFS) *** + (CFS) (CFS) *** + .000 .000 .0000 .0000 .0000 .0000 + 2.000 1.212 1.2120 0.0000 .0000 .0000 + 4.000 2.424 4.8480 0.0000 .0000 .0000 + 6.000 3.636 10.9080 0.0000 .0000 .0000 + 8.000 4.848 19.3920 0.0000 .0000 .0000 + 10.000 6.061 30.3050 0.0000 .0000 .0000 + 12.000 7.273 43.6380 5.0000 3.5000 .0000 + 14.000 8.485 59.3950 6.2500 4.3750 .0000 + 16.000 9.697 77.5760 7.5000 5.2500 .0000 + 18.000 10.909 98.1810 8.7500 6.1250 .0000 + 20.000 12.121 121.2100 10.0000 7.0000 .0000 + 21.000 12.727 133.6360 10.6250 7.4375 50.0000 + 22.000 13.333 146.6630 11.2500 7.8750 100.0000 + 23.000 13.939 160.3030 11.8750 8.3125 500.0000 + END FTABLE 1 + + FTABLE 2 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .167 .071 .0109 1.2241 6.5 + .333 .081 .0236 3.9148 4.4 + .500 .091 .0379 7.8193 3.5 + .667 .101 .0539 12.9032 3.0 + .833 .111 .0715 19.1853 2.7 + 1.000 .121 .0909 26.7046 2.5 + 1.333 .141 .1347 45.6529 2.1 + 1.667 .162 .1852 70.1757 1.9 + 2.000 .182 .2424 100.7192 1.7 + 2.667 .586 .4983 201.9005 1.8 + 3.333 .990 1.0236 344.6344 2.2 + 4.000 1.394 1.8182 537.0775 2.5 + END FTABLE 2 + + FTABLE 3 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .167 .071 .0109 1.4992 5.3 + .333 .081 .0236 4.7947 3.6 + .500 .091 .0379 9.5766 2.9 + .667 .101 .0539 15.8032 2.5 + .833 .111 .0715 23.4971 2.2 + 1.000 .121 .0909 32.7063 2.0 + 1.333 .141 .1347 55.9132 1.7 + 1.667 .162 .1852 85.9474 1.6 + 2.000 .182 .2424 123.3553 1.4 + 2.667 .586 .4983 247.2766 1.5 + 3.333 .990 1.0236 422.0892 1.8 + 4.000 1.394 1.8182 657.7828 2.0 + END FTABLE 3 + + FTABLE 4 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .250 .848 .1970 .9024 158.5 + .500 .970 .4242 2.8860 106.7 + .750 1.091 .6818 5.7642 85.9 + 1.000 1.212 .9697 9.5120 74.0 + 1.250 1.333 1.2879 14.1431 66.1 + 1.500 1.455 1.6364 19.6862 60.3 + 2.000 1.697 2.4242 33.6545 52.3 + 2.500 1.939 3.3333 51.7323 46.8 + 3.000 2.182 4.3636 74.2486 42.7 + 4.000 11.879 11.3939 155.5774 53.2 + 5.000 21.576 28.1212 296.8633 68.8 + 6.000 31.273 54.5454 522.1440 75.8 + END FTABLE 4 + + FTABLE 5 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .333 1.697 .5253 1.5869 240.3 + .667 1.939 1.1313 5.0752 161.8 + 1.000 2.182 1.8182 10.1370 130.2 + 1.333 2.424 2.5859 16.7279 112.2 + 1.667 2.667 3.4343 24.8719 100.2 + 2.000 2.909 4.3636 34.6200 91.5 + 2.667 3.394 6.4646 59.1848 79.3 + 3.333 3.879 8.8889 90.9763 70.9 + 4.000 4.364 11.6364 130.5731 64.7 + 5.333 36.687 39.0034 284.8886 99.4 + 6.667 69.010 109.4680 593.7734 133.8 + 8.000 101.333 223.0302 1129.6948 143.3 + END FTABLE 5 +END FTABLES + +DISPLY + DISPLY-INFO1 + # - #<----------Title----------->***TRAN PIVL DIG1 FIL1 PYR DIG2 FIL2 YRND + 1 O2 CONC, MEIER POND (mg/l) AVER 1 2 66 12 + 2 PEST SED CONC, POND (mg/kg) AVER 1 2 66 12 + 3 O2 CONC,LOWER KITTLE C(mg/l) AVER 1 2 66 12 + 4 PEST SED CONC,L KTL C(mg/kg) AVER 1 2 66 12 + 5 WATER TEMP,MEIER POND (DEGF) AVER 1 2 66 12 + END DISPLY-INFO1 +END DISPLY + +GENER + OPCODE + # - # Op- *** + code *** + 1 2 19 + END OPCODE +END GENER + +PLTGEN + PLOTINFO + # - # FILE NPT NMN LABL PYR PIVL *** + 1 94 2 24 + 2 95 3 1 6 + END PLOTINFO + + GEN-LABELS + # - #<----------------Title ----------------> *** <------Y axis------> + 1 SIMULATED FLOWS (CFS) CFS + 2 SIMULATED VALS RELATED TO TEMP&PH,RCH 4 + END GEN-LABELS + + SCALING + # - # YMIN YMAX IVLIN *** + 1 2 0. 150. 20. + END SCALING + + CURV-DATA (first curve) + <-Curve label--> Line Intg Col Tran *** + # - # type eqv code code *** + 1 TOTAL POND OUTFL 7 1 AVER + 2 AVDEP FOR RCH 4 7 1 LAST + END CURV-DATA + + CURV-DATA (second curve) + <-Curve label--> Line Intg Col Tran *** + # - # type eqv code code *** + 1 LOWER KITTLE CR 8 2 AVER + 2 TW FOR RCH 4 8 2 LAST + END CURV-DATA + + CURV-DATA (third curve) + <-Curve label--> Line Intg Col Tran *** + # - # type eqv code code *** + 2 PH FOR RCH 4 9 2 LAST + END CURV-DATA + + CURV-DATA (fourth curve) + <-Curve label--> Line Intg Col Tran *** + # - # type eqv code code *** + 2 HTEXCH FOR RCH 4 10 2 + END CURV-DATA +END PLTGEN + +EXT SOURCES +<-Volume-> SsysSgap<--Mult-->Tran <-Target vols> <-Grp> <-Member-> *** + # # tem strg<-factor->strg # # # # *** +WDM 39 PREC ENGLZERO SAME PERLND 1 EXTNL PREC +WDM 131 PREC ENGLZERO SAME IMPLND 1 EXTNL PREC +WDM 39 PREC ENGLZERO SAME RCHRES 1 3 EXTNL PREC +WDM 131 PREC ENGLZERO SAME RCHRES 4 5 EXTNL PREC +WDM 123 ATMP ENGL SAME PERLND 1 ATEMP AIRTMP +WDM 122 ATMP ENGL SAME IMPLND 1 ATEMP AIRTMP +WDM 123 ATMP ENGL SAME RCHRES 1 3 EXTNL GATMP +WDM 122 ATMP ENGL SAME RCHRES 4 5 EXTNL GATMP +WDM 41 EVAP ENGL .7 DIV PERLND 1 EXTNL PETINP +WDM 41 EVAP ENGL .7 DIV IMPLND 1 EXTNL PETINP +WDM 41 EVAP ENGL .7 DIV RCHRES 1 5 EXTNL POTEV +WDM 42 WIND ENGL DIV PERLND 1 EXTNL WINMOV +WDM 42 WIND ENGL DIV IMPLND 1 EXTNL WINMOV +WDM 42 WIND ENGL DIV RCHRES 1 5 EXTNL WIND +WDM 46 SOLR ENGL DIV PERLND 1 EXTNL SOLRAD +WDM 46 SOLR ENGL DIV IMPLND 1 EXTNL SOLRAD +WDM 46 SOLR ENGL DIV RCHRES 1 5 EXTNL SOLRAD +WDM 126 DEWP ENGL SAME PERLND 1 EXTNL DTMPG +WDM 125 DEWP ENGL SAME IMPLND 1 EXTNL DTMPG +WDM 126 DEWP ENGL SAME RCHRES 1 3 EXTNL DEWTMP +WDM 125 DEWP ENGL SAME RCHRES 4 5 EXTNL DEWTMP +WDM 140 CLND ENGL SAME RCHRES 1 EXTNL COLIND +WDM 135 CLDC ENGL SAME PERLND 1 EXTNL CLOUD +WDM 135 CLDC ENGL SAME IMPLND 1 EXTNL CLOUD +WDM 135 CLDC ENGL SAME RCHRES 1 5 EXTNL CLOUD +END EXT SOURCES + +SCHEMATIC +<-Source-> <--Area--> <-Target-> *** + # <-factor-> # # *** +PERLND 1 6000. RCHRES 1 1 +IMPLND 1 3000. RCHRES 5 2 +RCHRES 1 RCHRES 2 3 +RCHRES 1 RCHRES 3 4 +RCHRES 2 RCHRES 4 5 +RCHRES 3 RCHRES 4 5 +RCHRES 4 RCHRES 5 5 +END SCHEMATIC + +MASS-LINK + + MASS-LINK 1 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +PERLND PWATER PERO 0.0833333 RCHRES INFLOW IVOL +PERLND PWTGAS POHT RCHRES INFLOW IHEAT +PERLND PWTGAS PODOXM RCHRES INFLOW OXIF 1 +PERLND PWTGAS POCO2M RCHRES INFLOW PHIF 2 + END MASS-LINK 1 + + MASS-LINK 2 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +IMPLND IWATER SURO 0.0833333 RCHRES INFLOW IVOL +IMPLND SOLIDS SOSLD 0.10 RCHRES INFLOW ISED 1 +IMPLND SOLIDS SOSLD 0.46 RCHRES INFLOW ISED 2 +IMPLND SOLIDS SOSLD 0.44 RCHRES INFLOW ISED 3 +IMPLND IWTGAS SOHT RCHRES INFLOW IHEAT +IMPLND IWTGAS SODOXM RCHRES INFLOW OXIF 1 +IMPLND IWTGAS SOCO2M RCHRES INFLOW PHIF 2 +IMPLND IQUAL SOQUAL RCHRES INFLOW OXIF 2 + END MASS-LINK 2 + + MASS-LINK 3 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +RCHRES OFLOW 1 RCHRES INFLOW + END MASS-LINK 3 + + MASS-LINK 4 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +RCHRES OFLOW 2 RCHRES INFLOW + END MASS-LINK 4 + + MASS-LINK 5 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +RCHRES ROFLOW RCHRES INFLOW + END MASS-LINK 5 + +END MASS-LINK + +NETWORK +<-Volume-> <-Grp> <-Member-><--Mult-->Tran <-Target vols> <-Grp> <-Member-> *** + # # #<-factor->strg # # # # *** +RCHRES 1 HTRCH TW 1. DISPLY 5 INPUT TIMSER +RCHRES 1 OXRX DOX 1. DISPLY 1 INPUT TIMSER +RCHRES 1 GQUAL RSQAL 12 1. GENER 1 INPUT ONE +RCHRES 1 SEDTRN RSED 10 1. GENER 1 INPUT TWO +GENER 1 OUTPUT TIMSER 1.1 DISPLY 2 INPUT TIMSER +RCHRES 1 HYDR ROVOL 12.1 PLTGEN 1 INPUT MEAN 1 +RCHRES 4 HYDR AVDEP 1. PLTGEN 2 INPUT POINT 1 +RCHRES 4 HTRCH TW 1. PLTGEN 2 INPUT POINT 2 +RCHRES 4 PHCARB PHST 3 1. PLTGEN 2 INPUT POINT 3 +RCHRES 4 HTRCH HTEXCH 1. PLTGEN 2 INPUT MEAN 1 +RCHRES 5 OXRX DOX 1. DISPLY 3 INPUT TIMSER +RCHRES 5 GQUAL RSQAL 12 1. GENER 2 INPUT ONE +RCHRES 5 SEDTRN RSED 10 1. GENER 2 INPUT TWO +GENER 2 OUTPUT TIMSER 1.1 DISPLY 4 INPUT TIMSER +RCHRES 5 HYDR ROVOL 12.1 PLTGEN 1 INPUT MEAN 2 +END NETWORK + +END RUN diff --git a/tests/test10eq/HSP2results/test10eq.wdm b/tests/test10eq/HSP2results/test10eq.wdm new file mode 100644 index 00000000..8d0e2766 Binary files /dev/null and b/tests/test10eq/HSP2results/test10eq.wdm differ diff --git a/tests/test10eq/HSPFresults/test10eq.uci b/tests/test10eq/HSPFresults/test10eq.uci new file mode 100644 index 00000000..690ab448 --- /dev/null +++ b/tests/test10eq/HSPFresults/test10eq.uci @@ -0,0 +1,1023 @@ +RUN + +GLOBAL + Version 11 test run: PERLND and IMPLND w/ RCHRES (sediment, water quality) + START 1976 END 1976 + RUN INTERP OUTPUT LEVEL 3 + RESUME 0 RUN 1 UNIT SYSTEM 1 +END GLOBAL + + *** This test run uses MASS-LINK and SCHEMATIC blocks *** + +FILES + ***<----FILE NAME-------------------------------------------------> +WDM 21 test0eq.wdm +MESSU 22 test0eq.ech + 01 test0eq.out + 66 test0eq.d66 + 94 test0eq.p94 + 95 test0eq.p95 +BINO 81 test0eqP.hbn +BINO 82 test0eqI.hbn +BINO 83 test0eqR.hbn +END FILES + +OPN SEQUENCE + INGRP INDELT 01:00 + PERLND 1 + RCHRES 1 + DISPLY 5 + DISPLY 1 + GENER 1 + DISPLY 2 + RCHRES 2 + RCHRES 3 + RCHRES 4 + PLTGEN 2 + IMPLND 1 + RCHRES 5 + DISPLY 3 + GENER 2 + DISPLY 4 + PLTGEN 1 + END INGRP +END OPN SEQUENCE + +PERLND + ACTIVITY + Active Sections (1=Active, 0=Inactive) *** + # - # ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC *** + 1 1 1 1 1 + END ACTIVITY + + PRINT-INFO + Print-flags *** PIVL PYR + # - # ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC *** + 1 4 4 4 4 12 + END PRINT-INFO + + BINARY-INFO +*** < PLS> Binary Output Flags PIVL PYR +*** x - x ATMP SNOW PWAT SED PST PWG PQAL MSTL PEST NITR PHOS TRAC + 1 2 2 2 2 2 1 12 + END BINARY-INFO + + GEN-INFO + <-------Name-------> Unit-systems Printer BinaryOut *** + # - # t-series Engl Metr Engl Metr *** + in out *** + 1 BICKNELL FARM 1 1 1 0 81 0 + END GEN-INFO + + *** Section SNOW *** + + ICE-FLAG + 0= Ice formation not simulated, 1= Simulated *** + # - #ICEFG *** + 1 1 + END ICE-FLAG + + SNOW-PARM1 + Snow input info: Part 1 *** + # - # LAT MELEV SHADE SNOWCF COVIND *** + 1 42. 520. 0.0 1.45 0.5 + END SNOW-PARM1 + + SNOW-PARM2 + Snow input info: Part 2 *** + # - # RDCSN TSNOW SNOEVP CCFACT MWATER MGMELT *** + 1 0.12 32. 0.05 0.5 0.08 0.0001 + END SNOW-PARM2 + + SNOW-INIT1 + Initial snow conditions: Part 1 *** + # - # PACKSNOW PACKICE PACKWATER RDENPF DULL PAKTMP *** + 1 1.4 0.2 0.1 0.2 375. 27.5 + END SNOW-INIT1 + + SNOW-INIT2 + Initial snow conditions: Part 2 *** + # - # COVINX XLNMLT SKYCLR *** + 1 0.50 0.0 1.0 + END SNOW-INIT2 + + *** Section PWATER *** + + PWAT-PARM1 + PWATER variable monthly parameter value flags *** + # - # CSNO RTOP UZFG VCS VUZ VNN VIFW VIRC VLE *** + 1 1 0 0 1 1 1 0 0 1 + END PWAT-PARM1 + + PWAT-PARM2 + *** PWATER input info: Part 2 + # - # ***FOREST LZSN INFILT LSUR SLSUR KVARY AGWRC + 1 0.010 8.0 0.150 250. 0.050 0.5 0.98 + END PWAT-PARM2 + + PWAT-PARM3 + *** PWATER input info: Part 3 + # - # ***PETMAX PETMIN INFEXP INFILD DEEPFR BASETP AGWETP + 1 40. 35. 2.0 2.0 0.10 0.0 0.08 + END PWAT-PARM3 + + PWAT-PARM4 + PWATER input info: Part 4 *** + # - # CEPSC UZSN NSUR INTFW IRC LZETP *** + 1 0.01 0.1 1.0 0.60 + END PWAT-PARM4 + + MON-INTERCEP + Only required if VCSFG=1 in PWAT-PARM1 *** + # - # Interception storage capacity at start of each month *** + JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** + 1 0.04 0.04 0.03 0.03 0.03 0.03 0.10 0.17 0.19 0.14 0.05 0.04 + END MON-INTERCEP + + MON-UZSN + Only required if VUZFG=1 in PWAT-PARM1 *** + # - # Upper zone storage at start of each month *** + JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** + 1 0.4 0.4 0.4 0.4 1.6 1.1 1.1 1.3 1.3 1.3 1.1 0.9 + END MON-UZSN + + MON-MANNING + Only required if VNNFG=1 in PWAT-PARM1 *** + # - # Manning's n for overland flow at start of each month *** + JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** + 1 0.30 0.30 0.30 0.30 0.27 0.25 0.25 0.25 0.25 0.25 0.35 0.33 + END MON-MANNING + + MON-LZETPARM + Only required if VLEFG=1 in PWAT-PARM1 *** + # - # Lower zone ET parameter at start of each month *** + JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC *** + 1 0.20 0.20 0.20 0.23 0.23 0.25 0.60 0.80 0.75 0.50 0.30 0.20 + END MON-LZETPARM + + PWAT-STATE1 + *** Initial conditions at start of simulation + # - # *** CEPS SURS UZS IFWS LZS AGWS GWVS + 1 0.05 0.0 0.15 0.0 4.0 0.05 0.05 + END PWAT-STATE1 + + *** Section PSTEMP *** + + PSTEMP-PARM2 + *** + # - # ASLT BSLT ULTP1 ULTP2 LGTP1 LGTP2 *** + 1 14.5 .365 1.2 4.0 1.2 6.0 + END PSTEMP-PARM2 + + *** Section PWTGAS *** + + PWT-PARM2 + *** + # - # ELEV IDOXP ICO2P ADOXP ACO2P *** + 1 500. 6. .05 5. .05 + END PWT-PARM2 +END PERLND + +IMPLND + ACTIVITY + Active Sections *** + # - # ATMP SNOW IWAT SLD IWG IQAL *** + 1 1 1 1 1 1 + END ACTIVITY + + PRINT-INFO + Print-flags *** + # - # ATMP SNOW IWAT SLD IWG IQAL PIVL PYR *** + 1 4 4 4 4 4 12 + END PRINT-INFO + + BINARY-INFO +*** **** Binary-Output-flags **** PIVL PYR +*** x - x ATMP SNOW IWAT SLD IWG IQAL ********* + 1 2 2 2 2 2 1 12 + END BINARY-INFO + + GEN-INFO + <-------Name-------> Unit-systems Printer BinaryOut *** + # - # t-series Engl Metr Engl Metr *** + in out *** + 1 DONIGIAN INDUSTRY 1 1 1 0 82 0 + END GEN-INFO + + *** Section SNOW *** + + ICE-FLAG + 0= Ice formation not simulated, 1= Simulated *** + # - #ICEFG *** + 1 1 + END ICE-FLAG + + SNOW-PARM1 + Snow input info: Part 1 *** + # - # LAT MELEV SHADE SNOWCF COVIND *** + 1 42. 450. 0.0 1.45 0.5 + END SNOW-PARM1 + + SNOW-PARM2 + Snow input info: Part 2 *** + # - # RDCSN TSNOW SNOEVP CCFACT MWATER MGMELT *** + 1 0.12 32. 0.05 0.5 0.08 0.0001 + END SNOW-PARM2 + + SNOW-INIT1 + Initial snow conditions: Part 1 *** + # - # PACKSNOW PACKICE PACKWATER RDENPF DULL PAKTMP *** + 1 1.4 0.2 0.1 0.2 375. 27.5 + END SNOW-INIT1 + + SNOW-INIT2 + Initial snow conditions: Part 2 *** + # - # COVINX XLNMLT SKYCLR *** + 1 0.50 0.0 1.0 + END SNOW-INIT2 + + *** Section IWATER *** + + IWAT-PARM1 + Flags *** + # - # CSNO RTOP VRS VNN RTLI *** + 1 1 1 + END IWAT-PARM1 + + IWAT-PARM2 + *** + # - # LSUR SLSUR NSUR RETSC *** + 1 200. .010 .010 .01 + END IWAT-PARM2 + + IWAT-PARM3 + *** + # - # PETMAX PETMIN *** + 1 40. 35. + END IWAT-PARM3 + + IWAT-STATE1 + IWATER state variables *** + # - # RETS SURS *** + 1 .01 .01 + END IWAT-STATE1 + + *** Section SOLIDS *** + + SLD-PARM2 + *** + # - # KEIM JEIM ACCSDP REMSDP *** + 1 .08 1.9 .01 .5 + END SLD-PARM2 + + SLD-STOR + Solids storage (tons/acre) *** + # - # *** + 1 0.2 + END SLD-STOR + + *** Section IWTGAS *** + + IWT-PARM2 + *** + # - # ELEV AWTF BWTF *** + 1 410. 40. 0.8 + END IWT-PARM2 + + *** Section IQUAL *** + + NQUALS + *** + # - #NQUAL *** + 1 1 + END NQUALS + + QUAL-PROPS + Identifiers and Flags *** + # - #<--qualid--> QTID QSD VPFW QSO VQO *** + 1 COD LB 1 1 + END QUAL-PROPS + + QUAL-INPUT + Storage on surface and nonseasonal parameters *** + # - # SQO POTFW ACQOP SQOLIM WSQOP *** + 1 1.20 .175 .02 2.0 1.7 + END QUAL-INPUT +END IMPLND + +RCHRES + ACTIVITY + RCHRES Active Sections (1=Active, 0=Inactive) *** + # - # HYFG ADFG CNFG HTFG SDFG GQFG OXFG NUFG PKFG PHFG *** + 1 5 1 1 1 1 1 1 1 1 1 1 + END ACTIVITY + + PRINT-INFO + RCHRES Print-flags *** + # - # HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYR *** + 1 4 5 5 5 5 5 5 5 5 5 5 12 + 5 4 4 4 4 4 4 4 4 4 4 12 + END PRINT-INFO + + BINARY-INFO +*** RCHRES Binary Output level flags +*** x - x HYDR ADCA CONS HEAT SED GQL OXRX NUTR PLNK PHCB PIVL PYR + 1 5 2 2 2 2 2 2 2 2 2 2 1 12 + END BINARY-INFO + + GEN-INFO + RCHRES<-------Name------->Nexit Unit Systems Printer BinaryOut *** + # - # t-series Engl Metr LKFG Engl Metr *** + in out *** + 1 MEIER POND 2 1 1 1 0 1 83 0 + 2 OUTLET 1 1 1 1 0 0 83 0 + 3 SPILLWAY 1 1 1 1 0 0 83 0 + 4 UPPER KITTLE CREEK 1 1 1 1 0 0 83 0 + 5 LOWER KITTLE CREEK 1 1 1 1 0 0 83 0 + END GEN-INFO + + *** Section HYDR *** + + HYDR-PARM1 + RCHRES Flags for HYDR section *** + # - # VC A1 A2 A3 ODFVFG for each ODGTFG for each *** FUNCT for each + FG FG FG FG possible exit possible exit *** possible exit + 1 2 3 4 5 1 2 3 4 5 *** + + 1 1 1 1 -1 6 + 2 5 1 1 1 4 + END HYDR-PARM1 + + HYDR-PARM2 + RCHRES *** + # - # DSN FTBN LEN DELTH STCOR KS DB50 *** + 1 00 1 0.5 1. .5 + 2 00 2 0.25 20. .5 + 3 00 3 0.25 30. .5 + 4 00 4 2.0 40. .5 + 5 00 5 3.0 40. .5 + END HYDR-PARM2 + + HYDR-INIT + RCHRES Initial conditions for HYDR section *** + # - # VOL Initial value of COLIND *** Initial value of OUTDGT + (ac-ft) for each possible exit *** for each possible exit + EX1 EX2 EX3 EX4 EX5 *** EX1 EX2 EX3 EX4 EX5 + 1 30. 4.0 5.0 + 2 5 0.0 4.0 + END HYDR-INIT + + *** Section CONS *** + + NCONS + RCHRES *** + # - #NCONS *** + 1 5 1 + END NCONS + + CONS-DATA + RCHRES Data for conservative constituent No. 3 *** + # - #<---Substance-id---> Conc ID CONV QTYID *** + 1 5 ALKALINITY 1000. MG/L 35.31 KG + END CONS-DATA + + *** Section HTRCH *** + + HEAT-PARM + RCHRES ELEV ELDAT CFSAEX KATRAD KCOND KEVAP *** + # - # *** + 1 5 450. 100. .95 + END HEAT-PARM + + HEAT-INIT + RCHRES TW AIRTMP *** + # - # *** + 1 5 60. 40. + END HEAT-INIT + + *** Section SEDTRN *** + + SANDFG + RCHRES *** + # - # SDFG *** + 1 2 1 + 3 4 2 + 5 3 + END SANDFG + + SED-GENPARM + RCHRES BEDWID BEDWRN POR *** + # - # *** + 1 200. 4. + 2 3 1.33 3. + 4 2.0 2. + 5 2.66 2. + END SED-GENPARM + + SAND-PM + RCHRES D W RHO KSAND EXPSND *** + # - # *** + 1 5 .014 2.5 1.5 1.2 + END SAND-PM + + SILT-CLAY-PM + RCHRES D W RHO TAUCD TAUCS M *** + # - # *** + 1 .00063 .0066 2.2 .2 .4 .5 + 2 3 .00063 .0066 2.2 1.E-10 500. .5 + 4 5 .00063 .0066 2.2 .2 .4 .5 + END SILT-CLAY-PM + + SILT-CLAY-PM + RCHRES D W RHO TAUCD TAUCS M *** + # - # *** + 1 .000055 .000034 2.0 .15 .3 .75 + 2 3 .000055 .000034 2.0 1.E-10 500. .75 + 4 5 .000055 .000034 2.0 .15 .3 .75 + END SILT-CLAY-PM + + SSED-INIT + RCHRES Suspended sed concs (mg/l) *** + # - # Sand Silt Clay *** + 1 5 5. 20. 30. + END SSED-INIT + + BED-INIT + RCHRES BEDDEP Initial bed composition *** + # - # (ft) Sand Silt Clay *** + 1 2. .8 .1 .1 + 2 3 2. .8 .1 .1 + 4 5 1. .8 .1 .1 + END BED-INIT + + *** Section GQUAL *** + + GQ-GENDATA + RCHRES NGQL TPFG PHFG ROFG CDFG SDFG PYFG LAT *** + # - # *** + 1 5 1 1 1 2 1 1 1 42 + END GQ-GENDATA + + GQ-QALDATA + RCHRES<-------GQID-------> DQAL CONCID CONV QTYID *** + # - # *** + 1 5 PESTICIDE B4 10. UG 1.E6 G + END GQ-QALDATA + + GQ-QALFG + RCHRES HDRL OXID PHOT VOLT BIOD GEN SDAS *** + # - # *** + 1 5 1 1 1 1 1 1 1 + END GQ-QALFG + + GQ-HYDPM + RCHRES KA KB KN THHYD *** + # - # *** + 1 5 .001 .01 .001 1.03 + END GQ-HYDPM + + GQ-ROXPM + RCHRES KOX THOX *** + # - # *** + 1 5 .1 1.03 + END GQ-ROXPM + + GQ-PHOTPM + # - #*** K1 K2 K3 K4 K5 K6 K7 + # - #*** K8 K9 K10 K11 K12 K13 K14 + # - #*** K15 K16 K17 K18 PHI THETA + 1 5 848. 544. 330. 195. 120. 68. 41. + 1 5 23. 13. 7. 4. 1. .1 + 1 5 .3 1.1 + END GQ-PHOTPM + + GQ-CFGAS + RCHRES CFGAS *** + # - # *** + 1 5 .001 + END GQ-CFGAS + + GQ-BIOPM + RCHRES BIOCON THBIO BIO *** + # - # *** + 1 5 .01 10. + END GQ-BIOPM + + GQ-GENDECAY + RCHRES FSTDEC THFST *** + # - # *** + 1 5 .2 + END GQ-GENDECAY + + GQ-SEDDECAY + RCHRES KSUSP THSUSP KBED THBED *** + # - # *** + 1 5 .002 + END GQ-SEDDECAY + + GQ-KD + RCHRES Partition coefficients *** + # - # ADPM(1,1) ADPM(2,1) ADPM(3,1) ADPM(4,1) ADPM(5,1) ADPM(6,1) *** + 1 .0001 .001 .001 .0001 .001 .001 + 2 3 .0001 .001 .001 1.E-10 1.E-10 1.E-10 + 4 5 .0001 .001 .001 .0001 .001 .001 + END GQ-KD + + GQ-ADRATE + RCHRES Adsorption/desorption rate parameters *** + # - # ADPM(1,2) ADPM(2,2) ADPM(3,2) ADPM(4,2) ADPM(5,2) ADPM(6,2) *** + 1 150. 150. 150. .25 .25 .25 + 2 3 150. 150. 150. 1000. 1000. 1000. + 4 5 150. 150. 150. .25 .25 .25 + END GQ-ADRATE + + GQ-SEDCONC + RCHRES SQAL1 SQAL2 SQAL3 SQAL4 SQAL5 SQAL6 *** + # - # *** + 1 .001 .01 .01 .001 .01 .01 + 2 3 .001 .01 .01 0. 0. 0. + 4 5 .001 .01 .01 .001 .01 .01 + END GQ-SEDCONC + + GQ-VALUES + RCHRES TWAT PHVAL ROC CLD SDCNC PHY *** + # - # *** + 1 5 1.E-5 + END GQ-VALUES + + GQ-ALPHA + RCHRES*** + # - #*** K1 K2 K3 K4 K5 K6 K7 + # - #*** K8 K9 K10 K11 K12 K13 K14 + # - #*** K15 K16 K17 K18 + 1 5 .008 .009 .010 .011 .011 .011 .012 + 1 5 .013 .015 .016 .017 .018 .019 .020 + 1 5 .021 .022 .024 .024 + END GQ-ALPHA + + GQ-GAMMA + RCHRES*** + # - #*** K1 K2 K3 K4 K5 K6 K7 + # - #*** K8 K9 K10 K11 K12 K13 K14 + # - #*** K15 K16 K17 K18 + 1 5 .001 .001 .001 .001 .001 .001 .001 + 1 5 .001 .002 .002 .002 .002 .002 .002 + 1 5 .002 .002 .002 .002 + END GQ-GAMMA + + GQ-DELTA + RCHRES*** + # - #*** K1 K2 K3 K4 K5 K6 K7 + # - #*** K8 K9 K10 K11 K12 K13 K14 + # - #*** K15 K16 K17 K18 + 1 5 .0007 .0007 .0007 .0007 .0007 .0007 .0007 + 1 5 .0007 .0007 .0007 .0007 .0007 .0007 .0007 + 1 5 .0007 .0007 .0007 .0007 + END GQ-DELTA + + GQ-CLDFACT + RCHRES*** + # - #*** F1 F2 F3 F4 F5 F6 F7 + # - #*** F8 F9 F10 F11 F12 F13 F14 + # - #*** F15 F16 F17 F18 + 1 5 .10 .10 .10 .15 .15 .15 .15 + 1 5 .17 .17 .17 .17 .18 .19 .20 + 1 5 .21 .21 .21 .21 + END GQ-CLDFACT + + *** Section RQUAL *** + + BENTH-FLAG + RCHRES BENF *** + # - # *** + 1 1 + 4 5 1 + END BENTH-FLAG + + SCOUR-PARMS + RCHRES SCRVEL SCRMUL *** + # - # *** + 1 5 3. + END SCOUR-PARMS + + *** Section OXRX *** + + OX-FLAGS + RCHRES REAM *** + # - # *** + 2 3 1 + 4 3 + 5 2 + END OX-FLAGS + + OX-GENPARM + RCHRES KBOD20 TCBOD KODSET SUPSAT *** + # - # /hr *** + 1 5 .1 8. + END OX-GENPARM + + OX-BENPARM + RCHRES BENOD TCBEN EXPOD BRBOD(1) BRBOD(2) EXPREL *** + # - # mg/m2.hr mg/m2.hr mg/m2.hr *** + 1 5 10. 1.1 1.2 20. 25. 1.3 + END OX-BENPARM + + OX-CFOREA + RCHRES CFOREA *** + # - # *** + 1 5. + END OX-CFOREA + + OX-REAPARM + RCHRES TCGINV REAK EXPRED EXPREV *** + # - # /hr *** + 4 2.0 -1.1 1.1 + END OX-REAPARM + + OX-INIT + RCHRES DOX BOD SATDO *** + # - # mg/l mg/l mg/l *** + 1 5 8. 100. + END OX-INIT + + *** Section NUTRX *** + + NUT-FLAGS + RCHRES TAM NO2 PO4 AMV DEN ADNH ADPO PHFL *** + # - # *** + 1 5 1 1 1 1 1 0 0 + END NUT-FLAGS + + NUT-BENPARM + RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** + # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** + 1 5 11.0 33.0 1.1 2.2 0.0005 + END NUT-BENPARM + + NUT-NITDENIT + RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** + # - # /hr /hr /hr mg/l *** + 1 5 .002 .004 1.07 .001 1.04 0.2 + END NUT-NITDENIT + + NUT-NH3VOLAT + RCHRES EXPNVG EXPNVL *** + # - # *** + 1 5 .50 0.6667 + END NUT-NH3VOLAT + + NUT-BEDCONC + RCHRES Bed concentrations of NH4 & PO4 (mg/mg) *** + # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** + 1 5 0.00001 0.00001 0.00001 0.00001 0.00001 0.00001 + END NUT-BEDCONC + + NUT-ADSPARM + RCHRES Partition coefficients for NH4 AND PO4 (l/mg) *** + # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** + 1 5 0.0001 0.0001 0.0001 10. 10. 10. + END NUT-ADSPARM + + NUT-DINIT + RCHRES NO3 TAM NO2 PO4 PHVAL *** + # - # mg/l mg/l mg/l mg/l ph units *** + 1 5 40. 10. 1. 50. 7.0 + END NUT-DINIT + + NUT-ADSINIT + RCHRES Initial suspended NH4 and PO4 concentrations (mg/mg) *** + # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** + 1 5 0. 0. 0. 0. 0. 0. + END NUT-ADSINIT + + *** Section PLANK *** + + PLNK-FLAGS + RCHRES PHYF ZOOF BALF SDLT AMRF DECF NSFG ZFOO *** + # - # *** + 1 5 1 1 1 1 1 1 + END PLNK-FLAGS + + PLNK-PARM1 + RCHRES RATCLP NONREF LITSED ALNPR EXTB MALGR *** + # - # /ft /hr *** + 1 5 4.5 + END PLNK-PARM1 + + PHYTO-PARM + RCHRES SEED MXSTAY OREF CLALDH PHYSET REFSET *** + # - # mg/l mg/l ug/l *** + 1 5 .1 .1 .5 .5 + END PHYTO-PARM + + ZOO-PARM1 + RCHRES MZOEAT ZFIL20 ZRES20 ZD OXZD *** + # - # mg/l.hr l/mgzoo.hr /hr /hr /hr *** + 1 5 .2 + END ZOO-PARM1 + + PLNK-INIT + RCHRES PHYTO ZOO BENAL ORN ORP ORC *** + # - # mg/l org/l mg/m2 mg/l mg/l mg/l *** + 1 5 40. 200. 5. 20. 20. 20. + END PLNK-INIT + + *** Section PHCARB *** + + PH-PARM1 + RCHRES PHCN ALKC *** + # - # *** + 1 5 50 + END PH-PARM1 + + PH-INIT + RCHRES TIC CO2 PH *** + # - # mg/l mg/l *** + 1 5 20. 5. 8.5 + END PH-INIT +END RCHRES + +FTABLES + FTABLE 1 + ROWS COLS *** + 14 6 + WINTER SUMMER SPLWAY *** + DEPTH AREA VOLUME OUTLET OUTLET DISCH *** + (FT) (ACRES) (AC-FT) DISCH DISCH (CFS) *** + (CFS) (CFS) *** + .000 .000 .0000 .0000 .0000 .0000 + 2.000 1.212 1.2120 0.0000 .0000 .0000 + 4.000 2.424 4.8480 0.0000 .0000 .0000 + 6.000 3.636 10.9080 0.0000 .0000 .0000 + 8.000 4.848 19.3920 0.0000 .0000 .0000 + 10.000 6.061 30.3050 0.0000 .0000 .0000 + 12.000 7.273 43.6380 5.0000 3.5000 .0000 + 14.000 8.485 59.3950 6.2500 4.3750 .0000 + 16.000 9.697 77.5760 7.5000 5.2500 .0000 + 18.000 10.909 98.1810 8.7500 6.1250 .0000 + 20.000 12.121 121.2100 10.0000 7.0000 .0000 + 21.000 12.727 133.6360 10.6250 7.4375 50.0000 + 22.000 13.333 146.6630 11.2500 7.8750 100.0000 + 23.000 13.939 160.3030 11.8750 8.3125 500.0000 + END FTABLE 1 + + FTABLE 2 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .167 .071 .0109 1.2241 6.5 + .333 .081 .0236 3.9148 4.4 + .500 .091 .0379 7.8193 3.5 + .667 .101 .0539 12.9032 3.0 + .833 .111 .0715 19.1853 2.7 + 1.000 .121 .0909 26.7046 2.5 + 1.333 .141 .1347 45.6529 2.1 + 1.667 .162 .1852 70.1757 1.9 + 2.000 .182 .2424 100.7192 1.7 + 2.667 .586 .4983 201.9005 1.8 + 3.333 .990 1.0236 344.6344 2.2 + 4.000 1.394 1.8182 537.0775 2.5 + END FTABLE 2 + + FTABLE 3 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .167 .071 .0109 1.4992 5.3 + .333 .081 .0236 4.7947 3.6 + .500 .091 .0379 9.5766 2.9 + .667 .101 .0539 15.8032 2.5 + .833 .111 .0715 23.4971 2.2 + 1.000 .121 .0909 32.7063 2.0 + 1.333 .141 .1347 55.9132 1.7 + 1.667 .162 .1852 85.9474 1.6 + 2.000 .182 .2424 123.3553 1.4 + 2.667 .586 .4983 247.2766 1.5 + 3.333 .990 1.0236 422.0892 1.8 + 4.000 1.394 1.8182 657.7828 2.0 + END FTABLE 3 + + FTABLE 4 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .250 .848 .1970 .9024 158.5 + .500 .970 .4242 2.8860 106.7 + .750 1.091 .6818 5.7642 85.9 + 1.000 1.212 .9697 9.5120 74.0 + 1.250 1.333 1.2879 14.1431 66.1 + 1.500 1.455 1.6364 19.6862 60.3 + 2.000 1.697 2.4242 33.6545 52.3 + 2.500 1.939 3.3333 51.7323 46.8 + 3.000 2.182 4.3636 74.2486 42.7 + 4.000 11.879 11.3939 155.5774 53.2 + 5.000 21.576 28.1212 296.8633 68.8 + 6.000 31.273 54.5454 522.1440 75.8 + END FTABLE 4 + + FTABLE 5 + ROWS COLS *** + 13 4 + DEPTH AREA VOLUME DISCH FLO-THRU *** + (FT) (ACRES) (AC-FT) (CFS) (MIN) *** + .000 .000 .0000 .000 0.0 + .333 1.697 .5253 1.5869 240.3 + .667 1.939 1.1313 5.0752 161.8 + 1.000 2.182 1.8182 10.1370 130.2 + 1.333 2.424 2.5859 16.7279 112.2 + 1.667 2.667 3.4343 24.8719 100.2 + 2.000 2.909 4.3636 34.6200 91.5 + 2.667 3.394 6.4646 59.1848 79.3 + 3.333 3.879 8.8889 90.9763 70.9 + 4.000 4.364 11.6364 130.5731 64.7 + 5.333 36.687 39.0034 284.8886 99.4 + 6.667 69.010 109.4680 593.7734 133.8 + 8.000 101.333 223.0302 1129.6948 143.3 + END FTABLE 5 +END FTABLES + +DISPLY + DISPLY-INFO1 + # - #<----------Title----------->***TRAN PIVL DIG1 FIL1 PYR DIG2 FIL2 YRND + 1 O2 CONC, MEIER POND (mg/l) AVER 1 2 66 12 + 2 PEST SED CONC, POND (mg/kg) AVER 1 2 66 12 + 3 O2 CONC,LOWER KITTLE C(mg/l) AVER 1 2 66 12 + 4 PEST SED CONC,L KTL C(mg/kg) AVER 1 2 66 12 + 5 WATER TEMP,MEIER POND (DEGF) AVER 1 2 66 12 + END DISPLY-INFO1 +END DISPLY + +GENER + OPCODE + # - # Op- *** + code *** + 1 2 19 + END OPCODE +END GENER + +PLTGEN + PLOTINFO + # - # FILE NPT NMN LABL PYR PIVL *** + 1 94 2 24 + 2 95 3 1 6 + END PLOTINFO + + GEN-LABELS + # - #<----------------Title ----------------> *** <------Y axis------> + 1 SIMULATED FLOWS (CFS) CFS + 2 SIMULATED VALS RELATED TO TEMP&PH,RCH 4 + END GEN-LABELS + + SCALING + # - # YMIN YMAX IVLIN *** + 1 2 0. 150. 20. + END SCALING + + CURV-DATA (first curve) + <-Curve label--> Line Intg Col Tran *** + # - # type eqv code code *** + 1 TOTAL POND OUTFL 7 1 AVER + 2 AVDEP FOR RCH 4 7 1 LAST + END CURV-DATA + + CURV-DATA (second curve) + <-Curve label--> Line Intg Col Tran *** + # - # type eqv code code *** + 1 LOWER KITTLE CR 8 2 AVER + 2 TW FOR RCH 4 8 2 LAST + END CURV-DATA + + CURV-DATA (third curve) + <-Curve label--> Line Intg Col Tran *** + # - # type eqv code code *** + 2 PH FOR RCH 4 9 2 LAST + END CURV-DATA + + CURV-DATA (fourth curve) + <-Curve label--> Line Intg Col Tran *** + # - # type eqv code code *** + 2 HTEXCH FOR RCH 4 10 2 + END CURV-DATA +END PLTGEN + +EXT SOURCES +<-Volume-> SsysSgap<--Mult-->Tran <-Target vols> <-Grp> <-Member-> *** + # # tem strg<-factor->strg # # # # *** +WDM 39 PREC ENGLZERO SAME PERLND 1 EXTNL PREC +WDM 131 PREC ENGLZERO SAME IMPLND 1 EXTNL PREC +WDM 39 PREC ENGLZERO SAME RCHRES 1 3 EXTNL PREC +WDM 131 PREC ENGLZERO SAME RCHRES 4 5 EXTNL PREC +WDM 123 ATMP ENGL SAME PERLND 1 ATEMP AIRTMP +WDM 122 ATMP ENGL SAME IMPLND 1 ATEMP AIRTMP +WDM 123 ATMP ENGL SAME RCHRES 1 3 EXTNL GATMP +WDM 122 ATMP ENGL SAME RCHRES 4 5 EXTNL GATMP +WDM 41 EVAP ENGL .7 DIV PERLND 1 EXTNL PETINP +WDM 41 EVAP ENGL .7 DIV IMPLND 1 EXTNL PETINP +WDM 41 EVAP ENGL .7 DIV RCHRES 1 5 EXTNL POTEV +WDM 42 WIND ENGL DIV PERLND 1 EXTNL WINMOV +WDM 42 WIND ENGL DIV IMPLND 1 EXTNL WINMOV +WDM 42 WIND ENGL DIV RCHRES 1 5 EXTNL WIND +WDM 46 SOLR ENGL DIV PERLND 1 EXTNL SOLRAD +WDM 46 SOLR ENGL DIV IMPLND 1 EXTNL SOLRAD +WDM 46 SOLR ENGL DIV RCHRES 1 5 EXTNL SOLRAD +WDM 126 DEWP ENGL SAME PERLND 1 EXTNL DTMPG +WDM 125 DEWP ENGL SAME IMPLND 1 EXTNL DTMPG +WDM 126 DEWP ENGL SAME RCHRES 1 3 EXTNL DEWTMP +WDM 125 DEWP ENGL SAME RCHRES 4 5 EXTNL DEWTMP +WDM 140 CLND ENGL SAME RCHRES 1 EXTNL COLIND +WDM 135 CLDC ENGL SAME PERLND 1 EXTNL CLOUD +WDM 135 CLDC ENGL SAME IMPLND 1 EXTNL CLOUD +WDM 135 CLDC ENGL SAME RCHRES 1 5 EXTNL CLOUD +END EXT SOURCES + +SCHEMATIC +<-Source-> <--Area--> <-Target-> *** + # <-factor-> # # *** +PERLND 1 6000. RCHRES 1 1 +IMPLND 1 3000. RCHRES 5 2 +RCHRES 1 RCHRES 2 3 +RCHRES 1 RCHRES 3 4 +RCHRES 2 RCHRES 4 5 +RCHRES 3 RCHRES 4 5 +RCHRES 4 RCHRES 5 5 +END SCHEMATIC + +MASS-LINK + + MASS-LINK 1 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +PERLND PWATER PERO 0.0833333 RCHRES INFLOW IVOL +PERLND PWTGAS POHT RCHRES INFLOW IHEAT +PERLND PWTGAS PODOXM RCHRES INFLOW OXIF 1 +PERLND PWTGAS POCO2M RCHRES INFLOW PHIF 2 + END MASS-LINK 1 + + MASS-LINK 2 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +IMPLND IWATER SURO 0.0833333 RCHRES INFLOW IVOL +IMPLND SOLIDS SOSLD 0.10 RCHRES INFLOW ISED 1 +IMPLND SOLIDS SOSLD 0.46 RCHRES INFLOW ISED 2 +IMPLND SOLIDS SOSLD 0.44 RCHRES INFLOW ISED 3 +IMPLND IWTGAS SOHT RCHRES INFLOW IHEAT +IMPLND IWTGAS SODOXM RCHRES INFLOW OXIF 1 +IMPLND IWTGAS SOCO2M RCHRES INFLOW PHIF 2 +IMPLND IQUAL SOQUAL RCHRES INFLOW OXIF 2 + END MASS-LINK 2 + + MASS-LINK 3 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +RCHRES OFLOW 1 RCHRES INFLOW + END MASS-LINK 3 + + MASS-LINK 4 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +RCHRES OFLOW 2 RCHRES INFLOW + END MASS-LINK 4 + + MASS-LINK 5 + <-Grp> <-Member-><--Mult--> <-Grp> <-Member-> *** + # #<-factor-> # # *** +RCHRES ROFLOW RCHRES INFLOW + END MASS-LINK 5 + +END MASS-LINK + +NETWORK +<-Volume-> <-Grp> <-Member-><--Mult-->Tran <-Target vols> <-Grp> <-Member-> *** + # # #<-factor->strg # # # # *** +RCHRES 1 HTRCH TW 1. DISPLY 5 INPUT TIMSER +RCHRES 1 OXRX DOX 1. DISPLY 1 INPUT TIMSER +RCHRES 1 GQUAL RSQAL 12 1. GENER 1 INPUT ONE +RCHRES 1 SEDTRN RSED 10 1. GENER 1 INPUT TWO +GENER 1 OUTPUT TIMSER 1.1 DISPLY 2 INPUT TIMSER +RCHRES 1 HYDR ROVOL 12.1 PLTGEN 1 INPUT MEAN 1 +RCHRES 4 HYDR AVDEP 1. PLTGEN 2 INPUT POINT 1 +RCHRES 4 HTRCH TW 1. PLTGEN 2 INPUT POINT 2 +RCHRES 4 PHCARB PHST 3 1. PLTGEN 2 INPUT POINT 3 +RCHRES 4 HTRCH HTEXCH 1. PLTGEN 2 INPUT MEAN 1 +RCHRES 5 OXRX DOX 1. DISPLY 3 INPUT TIMSER +RCHRES 5 GQUAL RSQAL 12 1. GENER 2 INPUT ONE +RCHRES 5 SEDTRN RSED 10 1. GENER 2 INPUT TWO +GENER 2 OUTPUT TIMSER 1.1 DISPLY 4 INPUT TIMSER +RCHRES 5 HYDR ROVOL 12.1 PLTGEN 1 INPUT MEAN 2 +END NETWORK + +SPEC-ACTIONS +*** test special actions + RCHRES 5 RSED 4 += 2.50E+05 + RCHRES 5 RSED 5 += 6.89E+05 + RCHRES 5 RSED 6 += 4.01E+05 +END SPEC-ACTIONS + + +END RUN diff --git a/tests/test10eq/HSPFresults/test10eq.wdm b/tests/test10eq/HSPFresults/test10eq.wdm new file mode 100644 index 00000000..8d0e2766 Binary files /dev/null and b/tests/test10eq/HSPFresults/test10eq.wdm differ diff --git a/tests/test10eq/HSPFresults/test10eqI.hbn b/tests/test10eq/HSPFresults/test10eqI.hbn new file mode 100644 index 00000000..a4529a11 Binary files /dev/null and b/tests/test10eq/HSPFresults/test10eqI.hbn differ diff --git a/tests/test10eq/HSPFresults/test10eqP.hbn b/tests/test10eq/HSPFresults/test10eqP.hbn new file mode 100644 index 00000000..bfe0d3b0 Binary files /dev/null and b/tests/test10eq/HSPFresults/test10eqP.hbn differ diff --git a/tests/test10eq/HSPFresults/test10eqR.hbn b/tests/test10eq/HSPFresults/test10eqR.hbn new file mode 100644 index 00000000..45fa25d7 Binary files /dev/null and b/tests/test10eq/HSPFresults/test10eqR.hbn differ diff --git a/tests/test10specl/HSP2results/test10specl.uci b/tests/test10specl/HSP2results/test10specl.uci index 54b48e69..7e07bfc8 100644 --- a/tests/test10specl/HSP2results/test10specl.uci +++ b/tests/test10specl/HSP2results/test10specl.uci @@ -9,7 +9,7 @@ END GLOBAL *** This test run uses MASS-LINK and SCHEMATIC blocks *** -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 test10.wdm MESSU 22 test10.ech @@ -309,7 +309,7 @@ RCHRES ACTIVITY RCHRES Active Sections (1=Active, 0=Inactive) *** # - # HYFG ADFG CNFG HTFG SDFG GQFG OXFG NUFG PKFG PHFG *** - 1 5 1 1 1 1 1 1 1 1 1 1 + 1 5 1 1 1 1 1 1 1 1 1 1 END ACTIVITY PRINT-INFO @@ -618,8 +618,8 @@ RCHRES OX-BENPARM RCHRES BENOD TCBEN EXPOD BRBOD(1) BRBOD(2) EXPREL *** - # - # mg/m2.hr mg/m2.hr mg/m2.hr *** - 1 5 10. 1.1 1.2 20. 25. 1.3 + # - # mg/m2.hr mg/m2.hr mg/m2.hr *** + 1 5 10. 1.1 1.2 20. 25. 1.3 END OX-BENPARM OX-CFOREA @@ -649,46 +649,46 @@ RCHRES END NUT-FLAGS NUT-BENPARM - RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** - # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** + RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** + # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** 1 5 11.0 33.0 1.1 2.2 0.0005 - END NUT-BENPARM - + END NUT-BENPARM + NUT-NITDENIT - RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** - # - # /hr /hr /hr mg/l *** + RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** + # - # /hr /hr /hr mg/l *** 1 5 .002 .004 1.07 .001 1.04 0.2 END NUT-NITDENIT - + NUT-NH3VOLAT - RCHRES EXPNVG EXPNVL *** - # - # *** + RCHRES EXPNVG EXPNVL *** + # - # *** 1 5 .50 0.6667 - END NUT-NH3VOLAT - - NUT-BEDCONC + END NUT-NH3VOLAT + + NUT-BEDCONC RCHRES Bed concentrations of NH4 & PO4 (mg/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0.00001 0.00001 0.00001 0.00001 0.00001 0.00001 - END NUT-BEDCONC - - NUT-ADSPARM + END NUT-BEDCONC + + NUT-ADSPARM RCHRES Partition coefficients for NH4 AND PO4 (l/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0.0001 0.0001 0.0001 10. 10. 10. END NUT-ADSPARM - - NUT-DINIT + + NUT-DINIT RCHRES NO3 TAM NO2 PO4 PHVAL *** - # - # mg/l mg/l mg/l mg/l ph units *** + # - # mg/l mg/l mg/l mg/l ph units *** 1 5 40. 10. 1. 50. 7.0 END NUT-DINIT - - NUT-ADSINIT + + NUT-ADSINIT RCHRES Initial suspended NH4 and PO4 concentrations (mg/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0. 0. 0. 0. 0. 0. - END NUT-ADSINIT + END NUT-ADSINIT *** Section PLANK *** @@ -941,11 +941,11 @@ SCHEMATIC # <-factor-> # # *** PERLND 1 6000. RCHRES 1 1 IMPLND 1 3000. RCHRES 5 2 -RCHRES 1 RCHRES 2 3 -RCHRES 1 RCHRES 3 4 -RCHRES 2 RCHRES 4 5 -RCHRES 3 RCHRES 4 5 -RCHRES 4 RCHRES 5 5 +RCHRES 1 RCHRES 2 3 +RCHRES 1 RCHRES 3 4 +RCHRES 2 RCHRES 4 5 +RCHRES 3 RCHRES 4 5 +RCHRES 4 RCHRES 5 5 END SCHEMATIC MASS-LINK diff --git a/tests/test10specl/HSPFresults/test10specl.uci b/tests/test10specl/HSPFresults/test10specl.uci index 20e6eaf0..ce4f9621 100644 --- a/tests/test10specl/HSPFresults/test10specl.uci +++ b/tests/test10specl/HSPFresults/test10specl.uci @@ -9,7 +9,7 @@ END GLOBAL *** This test run uses MASS-LINK and SCHEMATIC blocks *** -FILES +FILES ***<----FILE NAME-------------------------------------------------> WDM 21 test10specl.wdm MESSU 22 test10specl.ech @@ -309,7 +309,7 @@ RCHRES ACTIVITY RCHRES Active Sections (1=Active, 0=Inactive) *** # - # HYFG ADFG CNFG HTFG SDFG GQFG OXFG NUFG PKFG PHFG *** - 1 5 1 1 1 1 1 1 1 1 1 1 + 1 5 1 1 1 1 1 1 1 1 1 1 END ACTIVITY PRINT-INFO @@ -618,8 +618,8 @@ RCHRES OX-BENPARM RCHRES BENOD TCBEN EXPOD BRBOD(1) BRBOD(2) EXPREL *** - # - # mg/m2.hr mg/m2.hr mg/m2.hr *** - 1 5 10. 1.1 1.2 20. 25. 1.3 + # - # mg/m2.hr mg/m2.hr mg/m2.hr *** + 1 5 10. 1.1 1.2 20. 25. 1.3 END OX-BENPARM OX-CFOREA @@ -649,46 +649,46 @@ RCHRES END NUT-FLAGS NUT-BENPARM - RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** - # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** + RCHRES BRTAM(1) BRTAM(2) BRPO4(1) BRPO4(2) ANAER *** + # - # mg/m2.hr mg/m2.hr mg/m2.hr mg/m2.hr mg/l *** 1 5 11.0 33.0 1.1 2.2 0.0005 - END NUT-BENPARM - + END NUT-BENPARM + NUT-NITDENIT - RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** - # - # /hr /hr /hr mg/l *** + RCHRES KTAM20 KNO220 TCNIT KNO320 TCDEN DENOXT *** + # - # /hr /hr /hr mg/l *** 1 5 .002 .004 1.07 .001 1.04 0.2 END NUT-NITDENIT - + NUT-NH3VOLAT - RCHRES EXPNVG EXPNVL *** - # - # *** + RCHRES EXPNVG EXPNVL *** + # - # *** 1 5 .50 0.6667 - END NUT-NH3VOLAT - - NUT-BEDCONC + END NUT-NH3VOLAT + + NUT-BEDCONC RCHRES Bed concentrations of NH4 & PO4 (mg/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0.00001 0.00001 0.00001 0.00001 0.00001 0.00001 - END NUT-BEDCONC - - NUT-ADSPARM + END NUT-BEDCONC + + NUT-ADSPARM RCHRES Partition coefficients for NH4 AND PO4 (l/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0.0001 0.0001 0.0001 10. 10. 10. END NUT-ADSPARM - - NUT-DINIT + + NUT-DINIT RCHRES NO3 TAM NO2 PO4 PHVAL *** - # - # mg/l mg/l mg/l mg/l ph units *** + # - # mg/l mg/l mg/l mg/l ph units *** 1 5 40. 10. 1. 50. 7.0 END NUT-DINIT - - NUT-ADSINIT + + NUT-ADSINIT RCHRES Initial suspended NH4 and PO4 concentrations (mg/mg) *** # - # NH4-sand NH4-silt NH4-clay PO4-sand PO4-silt PO4-clay *** 1 5 0. 0. 0. 0. 0. 0. - END NUT-ADSINIT + END NUT-ADSINIT *** Section PLANK *** @@ -941,11 +941,11 @@ SCHEMATIC # <-factor-> # # *** PERLND 1 6000. RCHRES 1 1 IMPLND 1 3000. RCHRES 5 2 -RCHRES 1 RCHRES 2 3 -RCHRES 1 RCHRES 3 4 -RCHRES 2 RCHRES 4 5 -RCHRES 3 RCHRES 4 5 -RCHRES 4 RCHRES 5 5 +RCHRES 1 RCHRES 2 3 +RCHRES 1 RCHRES 3 4 +RCHRES 2 RCHRES 4 5 +RCHRES 3 RCHRES 4 5 +RCHRES 4 RCHRES 5 5 END SCHEMATIC MASS-LINK diff --git a/tests/test_regression.py b/tests/test_regression.py index 02c0d02b..21051a77 100644 --- a/tests/test_regression.py +++ b/tests/test_regression.py @@ -1,7 +1,6 @@ from pathlib import Path import pytest - from hsp2.hsp2tools.commands import import_uci, run from hsp2.hsp2tools.HDF5 import HDF5 diff --git a/tests/testcbp/HSP2results/PL3_5250_0001.json.constant_wd b/tests/testcbp/HSP2results/PL3_5250_0001.json.constant_wd index 8a6d387e..3a4a0439 100644 --- a/tests/testcbp/HSP2results/PL3_5250_0001.json.constant_wd +++ b/tests/testcbp/HSP2results/PL3_5250_0001.json.constant_wd @@ -17,4 +17,3 @@ } } } - diff --git a/tests/testcbp/HSP2results/PL3_5250_0001.uci b/tests/testcbp/HSP2results/PL3_5250_0001.uci index 6c04b569..0f9de5ad 100644 --- a/tests/testcbp/HSP2results/PL3_5250_0001.uci +++ b/tests/testcbp/HSP2results/PL3_5250_0001.uci @@ -1,5 +1,5 @@ RUN - + GLOBAL PL3_5250_0 riv | P5 | hsp2_2022 | Occoquan START 2001/01/01 END 2001/12/31 @@ -54,7 +54,7 @@ RCHRES HYDR-PARM2 RCHRES *** # - # FTABNO LEN DELTH STCOR KS DB50 *** - 1 1. 10. 2. 0.5 + 1 1. 10. 2. 0.5 END HYDR-PARM2 HYDR-INIT @@ -68,7 +68,7 @@ RCHRES ADCALC-DATA RCHRES Data for section ADCALC *** # - # CRRAT VOL *** - 1 1.5 12175. + 1 1.5 12175. END ADCALC-DATA END RCHRES diff --git a/tests/testcbp/HSP2results/check_endpoint_ts.py b/tests/testcbp/HSP2results/check_endpoint_ts.py index 97ee7af5..f42e1d19 100644 --- a/tests/testcbp/HSP2results/check_endpoint_ts.py +++ b/tests/testcbp/HSP2results/check_endpoint_ts.py @@ -1,13 +1,15 @@ # Must be run from the HSPsquared source directory, the h5 file has already been setup with hsp import_uci test10.uci # bare bones tester - must be run from the HSPsquared source directory import os + +import numpy +from hsp2 import hsp2iO from hsp2.hsp2.main import * from hsp2.hsp2.om import * -from hsp2 import hsp2iO -import numpy from hsp2.hsp2io.hdf import HDF5 from hsp2.hsp2io.io import IOManager -fpath = './tests/test10/HSP2results/test10.h5' + +fpath = "./tests/test10/HSP2results/test10.h5" # try also: # fpath = './tests/testcbp/HSP2results/PL3_5250_0001.h5' # sometimes when testing you may need to close the file, so try: @@ -24,7 +26,7 @@ # now load state and the special actions state = init_state_dicts() state_initialize_om(state) -state['specactions'] = uci_obj.specactions # stash the specaction dict in state +state["specactions"] = uci_obj.specactions # stash the specaction dict in state state_siminfo_hsp2(uci_obj, siminfo) # Add support for dynamic functions to operate on STATE @@ -33,14 +35,24 @@ # Iterate through all segments and add crucial paths to state # before loading dynamic components that may reference them state_init_hsp2(state, opseq, activities) -state_load_dynamics_specl(state, io_manager, siminfo) # traditional special actions -state_load_dynamics_om(state, io_manager, siminfo) # operational model for custom python -state_om_model_run_prep(state, io_manager, siminfo) # this creates all objects from the UCI and previous loads +state_load_dynamics_specl(state, io_manager, siminfo) # traditional special actions +state_load_dynamics_om( + state, io_manager, siminfo +) # operational model for custom python +state_om_model_run_prep( + state, io_manager, siminfo +) # this creates all objects from the UCI and previous loads # state['model_root_object'].find_var_path('RCHRES_R001') # Get the timeseries naked, without an object -rchres1 = state['model_object_cache']['/STATE/RCHRES_R001'] -precip_ts = ModelLinkage('PRCP', rchres1, {'right_path':'/TIMESERIES/TS039', 'SVOLNO':'TS039', 'link_type':3}) -ts1 = precip_ts.read_ts() # same as precip_ts.ts_ix[precip_ts.ix], same as state['ts_ix'][precip_ts.ix] +rchres1 = state["model_object_cache"]["/STATE/RCHRES_R001"] +precip_ts = ModelLinkage( + "PRCP", + rchres1, + {"right_path": "/TIMESERIES/TS039", "SVOLNO": "TS039", "link_type": 3}, +) +ts1 = ( + precip_ts.read_ts() +) # same as precip_ts.ts_ix[precip_ts.ix], same as state['ts_ix'][precip_ts.ix] # NOTE: THIS SEEMS TO FAIL RIGHT NOW DUE TO WRITING THE TS VALUES BACK WITH A NAME OF tsvalue_0, and is now embeded @@ -53,15 +65,17 @@ # precip_ts.io_manager._input._store # write it back. We can give an arbitrary name or it will default to write back to the source path in right_path variable # we can specify a custom path to write this TS to -precip_ts.write_path = '/RESULTS/test_TS039' +precip_ts.write_path = "/RESULTS/test_TS039" precip_ts.write_ts() # precip_ts.write_ts is same as: # ts4 = precip_ts.format_ts(ts1, ['tsvalue'], siminfo['tindex']) # ts4.to_hdf(precip_ts.io_manager._output._store, precip_ts.write_path, format='t', data_columns=True, complevel=precip_ts.complevel) -tsdf = pd.DataFrame(data=ts1, index=siminfo['tindex'],columns=None) +tsdf = pd.DataFrame(data=ts1, index=siminfo["tindex"], columns=None) # verify -ts1 = precip_ts.read_ts() # same as precip_ts.ts_ix[precip_ts.ix], same as state['ts_ix'][precip_ts.ix] +ts1 = ( + precip_ts.read_ts() +) # same as precip_ts.ts_ix[precip_ts.ix], same as state['ts_ix'][precip_ts.ix] # Calls: # - ts = precip_ts.io_manager.read_ts(Category.INPUTS, None, precip_ts.ts_name) # - ts = transform(ts, self.ts_name, 'SAME', self.siminfo) @@ -74,36 +88,66 @@ ts4 = precip_ts.io_manager._output._store[precip_ts.write_path] exdd = defaultdict(list) -exdd[(precip_ts.SVOL, precip_ts.SVOLNO)].append(pd.DataFrame({'SVOL':precip_ts.SVOLNO, 'SVOLNO':precip_ts.SVOLNO, 'MFACTOR':precip_ts.MFACTOR, 'TMEMN':precip_ts.TMEMN, 'TMEMSB':precip_ts.TMEMSB})) -exdd[(precip_ts.SVOL, precip_ts.SVOLNO)].append({'SVOL':precip_ts.SVOLNO, 'SVOLNO':precip_ts.SVOLNO, 'MFACTOR':precip_ts.MFACTOR, 'TMEMN':precip_ts.TMEMN, 'TMEMSB':precip_ts.TMEMSB}) +exdd[(precip_ts.SVOL, precip_ts.SVOLNO)].append( + pd.DataFrame( + { + "SVOL": precip_ts.SVOLNO, + "SVOLNO": precip_ts.SVOLNO, + "MFACTOR": precip_ts.MFACTOR, + "TMEMN": precip_ts.TMEMN, + "TMEMSB": precip_ts.TMEMSB, + } + ) +) +exdd[(precip_ts.SVOL, precip_ts.SVOLNO)].append( + { + "SVOL": precip_ts.SVOLNO, + "SVOLNO": precip_ts.SVOLNO, + "MFACTOR": precip_ts.MFACTOR, + "TMEMN": precip_ts.TMEMN, + "TMEMSB": precip_ts.TMEMSB, + } +) exdd = defaultdict(list) -df = pd.DataFrame({'SVOL':[precip_ts.SVOLNO], 'SVOLNO':[precip_ts.SVOLNO], 'MFACTOR':[precip_ts.MFACTOR], 'TMEMN':[precip_ts.TMEMN], 'TMEMSB':[precip_ts.TMEMSB]}) +df = pd.DataFrame( + { + "SVOL": [precip_ts.SVOLNO], + "SVOLNO": [precip_ts.SVOLNO], + "MFACTOR": [precip_ts.MFACTOR], + "TMEMN": [precip_ts.TMEMN], + "TMEMSB": [precip_ts.TMEMSB], + } +) for row in df.itertuples(): exdd[(precip_ts.SVOL, precip_ts.SVOLNO)].append(row) for row in exdd: - data_frame = precip_ts.io_manager.read_ts(category=Category.INPUTS,segment=row.SVOLNO) + data_frame = precip_ts.io_manager.read_ts( + category=Category.INPUTS, segment=row.SVOLNO + ) xdr = list(df.itertuples()) xdr = precip_ts.ext_sourcesdd for row in xdr: - data_frame = precip_ts.io_manager.read_ts(category=Category.INPUTS,segment=row.SVOLNO) - clean_name(row.TMEMN,row.TMEMSB) + data_frame = precip_ts.io_manager.read_ts( + category=Category.INPUTS, segment=row.SVOLNO + ) + clean_name(row.TMEMN, row.TMEMSB) ext_sourcesdd = XDR ts = Dict.empty(key_type=types.unicode_type, value_type=types.float64[:]) -data_frame = precip_ts.io_manager.read_ts(category=Category.INPUTS,segment=row.SVOLNO) +data_frame = precip_ts.io_manager.read_ts(category=Category.INPUTS, segment=row.SVOLNO) if row.MFACTOR != 1.0: data_frame *= row.MFACTOR t = transform(data_frame, row.TMEMN, row.TRAN, siminfo) -tname = clean_name(row.TMEMN,row.TMEMSB) +tname = clean_name(row.TMEMN, row.TMEMSB) if tname in ts: ts[tname] += t else: - ts[tname] = t + ts[tname] = t # Debug: def read_ts(self, category:Category, operation:Union[str,None]=None, segment:Union[str,None]=None, activity:Union[str,None]=None, ...) @@ -111,6 +155,8 @@ for row in precip_ts.ext_sourcesdd[(precip_ts.SVOL, precip_ts.SVOLNO)]: print(str(row.SVOLNO)) precip_ts.io_manager.read_ts(Category.INPUTS, None, precip_ts.ts_name) -precip_ts.io_manager.read_ts(category=Category.INPUTS,segment=row.SVOLNO) -precip_ts.io_manager.read_ts(category=Category.INPUTS,segment=str(row.SVOLNO)) -precip_ts.io_manager.read_ts(category=Category.INPUTS, operation=None,segment=row.SVOLNO) +precip_ts.io_manager.read_ts(category=Category.INPUTS, segment=row.SVOLNO) +precip_ts.io_manager.read_ts(category=Category.INPUTS, segment=str(row.SVOLNO)) +precip_ts.io_manager.read_ts( + category=Category.INPUTS, operation=None, segment=row.SVOLNO +) diff --git a/tests/testcbp/HSP2results/check_equation.py b/tests/testcbp/HSP2results/check_equation.py index 40bb1f23..643967b4 100644 --- a/tests/testcbp/HSP2results/check_equation.py +++ b/tests/testcbp/HSP2results/check_equation.py @@ -1,12 +1,14 @@ # Must be run from the HSPsquared source directory, the h5 file has already been setup with hsp import_uci test10.uci # bare bones tester - must be run from the HSPsquared source directory import os + +import numpy from hsp2.hsp2.main import * from hsp2.hsp2.om import * -import numpy from hsp2.hsp2io.hdf import HDF5 from hsp2.hsp2io.io import IOManager -fpath = './tests/testcbp/HSP2results/JL1_6562_6560.h5' + +fpath = "./tests/testcbp/HSP2results/JL1_6562_6560.h5" # try also: # fpath = './tests/testcbp/HSP2results/JL1_6562_6560.h5' # sometimes when testing you may need to close the file, so try: @@ -23,7 +25,7 @@ # now load state and the special actions state = init_state_dicts() state_initialize_om(state) -state['specactions'] = uci_obj.specactions # stash the specaction dict in state +state["specactions"] = uci_obj.specactions # stash the specaction dict in state state_siminfo_hsp2(uci_obj, siminfo) # Add support for dynamic functions to operate on STATE @@ -32,30 +34,46 @@ # Iterate through all segments and add crucial paths to state # before loading dynamic components that may reference them state_init_hsp2(state, opseq, activities) -state_load_dynamics_specl(state, io_manager, siminfo) # traditional special actions -state_load_dynamics_om(state, io_manager, siminfo) # operational model for custom python -state_om_model_run_prep(state, io_manager, siminfo) # this creates all objects from the UCI and previous loads +state_load_dynamics_specl(state, io_manager, siminfo) # traditional special actions +state_load_dynamics_om( + state, io_manager, siminfo +) # operational model for custom python +state_om_model_run_prep( + state, io_manager, siminfo +) # this creates all objects from the UCI and previous loads # state['model_root_object'].find_var_path('RCHRES_R001') # Get the timeseries naked, without an object -Rlocal = state['model_object_cache']['/STATE/RCHRES_R001/Rlocal'] +Rlocal = state["model_object_cache"]["/STATE/RCHRES_R001/Rlocal"] Rlocal_ts = Rlocal.read_ts() -rchres1 = state['model_object_cache']['/STATE/RCHRES_R001'] -Rlocal_check = ModelLinkage('Rlocal1', rchres1, {'right_path':'/TIMESERIES/TS010', 'link_type':3}) +rchres1 = state["model_object_cache"]["/STATE/RCHRES_R001"] +Rlocal_check = ModelLinkage( + "Rlocal1", rchres1, {"right_path": "/TIMESERIES/TS010", "link_type": 3} +) # Calls: # - ts = Rlocal.io_manager.read_ts(Category.INPUTS, None, Rlocal.ts_name) # - ts = transform(ts, Rlocal.ts_name, 'SAME', Rlocal.siminfo) Rlocal.io_manager._output._store.keys() # write it back. We can give an arbitrary name or it will default to write back to the source path in right_path variable -ts1 = precip_ts.read_ts() # same as precip_ts.ts_ix[precip_ts.ix], same as state['ts_ix'][precip_ts.ix] +ts1 = ( + precip_ts.read_ts() +) # same as precip_ts.ts_ix[precip_ts.ix], same as state['ts_ix'][precip_ts.ix] # we can specify a custom path to write this TS to -precip_ts.write_path = '/RESULTS/test_TS039' +precip_ts.write_path = "/RESULTS/test_TS039" precip_ts.write_ts() # precip_ts.write_ts is same as: # ts4 = precip_ts.format_ts(ts1, ['tsvalue'], siminfo['tindex']) # ts4.to_hdf(precip_ts.io_manager._output._store, precip_ts.write_path, format='t', data_columns=True, complevel=precip_ts.complevel) start = time.time() -iterate_models(model_exec_list, op_tokens, state_ix, dict_ix, ts_ix, siminfo['steps'], -1) +iterate_models( + model_exec_list, op_tokens, state_ix, dict_ix, ts_ix, siminfo["steps"], -1 +) end = time.time() -print(len(model_exec_list), "components iterated over state_ix", siminfo['steps'], "time steps took" , end - start, "seconds") - +print( + len(model_exec_list), + "components iterated over state_ix", + siminfo["steps"], + "time steps took", + end - start, + "seconds", +) diff --git a/tests/testcbp/HSP2results/check_h5.R b/tests/testcbp/HSP2results/check_h5.R index 34eba646..14790c1f 100644 --- a/tests/testcbp/HSP2results/check_h5.R +++ b/tests/testcbp/HSP2results/check_h5.R @@ -1,11 +1,10 @@ -#!/usr/bin/R library("rhdf5") #https://bioc.ism.ac.jp/packages/3.4/bioc/vignettes/rhdf5/inst/doc/rhdf5.pdf # Find and load the h5 file # dir() # specify .h5 file -h5_file_name = "PL3_5250_0001.h5" +h5_file_name = "PL3_5250_0001.h5" # open the file in R h5f = H5Fopen(h5_file_name) @@ -45,4 +44,4 @@ tail(TS_table) # HYDR_table[1:10,] # tail(HYDR_table) # length(HYDR_table[,1]) -# write.csv(HYDR_table, "HYDR_table_vsetOUTDGT.csv") \ No newline at end of file +# write.csv(HYDR_table, "HYDR_table_vsetOUTDGT.csv")